@charset "UTF-8";
/* ----------------------------------------
   ■ default.css
---------------------------------------- */
/* RESET
---------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Original */
body {
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

hr {
  width: 100%;
  height: 0;
  background: none;
  border: none;
  outline: none;
}

/* BASE
---------------------------------------- */
html,
body {
  font-size: 10px;
}

body {
  position: relative;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
  background-color: #fff;
}
body * {
  box-sizing: border-box;
}

#container {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 1.6rem;
}

/* PARTS
---------------------------------------- */
/* Ancher */
a {
  text-decoration: underline;
  color: #262626;
}
a:hover {
  text-decoration: none;
}
a.inactive {
  pointer-events: none;
  cursor: default;
}
a[href^="tel:"] {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}
a:hover img {
  opacity: 0.8;
}

sup {
  vertical-align: top;
  font-size: 0.5em;
}

/* Note */
.note {
  letter-spacing: 0;
  font-size: 1.3rem;
}

.noteList {
  font-size: 1.3rem;
}
.noteList li {
  padding-left: 1em;
  letter-spacing: 0;
  line-height: 1.5;
  text-indent: -1em;
}

/* text-align */
.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.ta-l {
  text-align: left;
}

/* vertical-align */
.va-m {
  vertical-align: middle;
}

.va-t {
  vertical-align: top;
}

.va-b {
  vertical-align: bottom;
}

/* Table */
.tbl {
  display: table;
}
.tbl .row {
  display: table-row;
}
.tbl .cell {
  display: table-cell;
  vertical-align: middle;
}
.tbl .cell.top {
  vertical-align: top;
}
.tbl .cell.btm {
  vertical-align: bottom;
}
.tbl.top .cell {
  vertical-align: top;
}
.tbl.btm .cell {
  vertical-align: bottom;
}

/* Other */
.ib {
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

.sq::before, .sq > li::before {
  content: '■';
}

.dsk::before, .dsk > li::before {
  content: '●';
}

.dot::before {
  content: '・';
}

ul.dot::before {
  content: '';
}
ul.dot > li {
  padding-left: 1em;
  text-indent: -1em;
}
ul.dot > li::before {
  content: '・';
}

.tri::before, .tri > li::before {
  content: '▼';
  display: inline-block;
  margin-right: 5px;
  transform: rotate(-90deg);
}

noscript {
  display: block;
  padding: 20px;
  border: 3px solid #c00;
  font-size: 1.6rem;
}

#mq {
  width: 0;
  height: 0;
}

/* ▼ @media : PC */
@media screen and (min-width: 769px) {
  #mq {
    display: block;
  }

  .sp, .sp2 {
    display: none;
  }
}
/* ▼ @media : SP */
@media screen and (max-width: 768px) {
  body {
    letter-spacing: 0;
    line-height: 1.5;
  }

  #mq,
  .pc {
    display: none;
  }

  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }

  .tbl.rsp,
  .tbl.rsp .row,
  .tbl.rsp .cell {
    display: block;
  }

  .tbl.rsp .row + .row {
    margin-top: 1em;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .sp2 {
    display: none;
  }
}
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 95px;
  padding: 0 10px;
  background: #004ea2;
  color: #fff;
  z-index: 100;
}
header .wrap {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: calc(100% - 13px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.72727%;
}
header .wrap h1 {
  position: relative;
  flex: 0 0 auto;
  max-width: 94px;
  margin: 0 0.9%;
  z-index: 2;
}
header .wrap h1 a {
  display: block;
}
header .wrap nav {
  flex: 0 0 auto;
  height: 40px;
}
header .wrap nav ul {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
}
header .wrap nav ul li {
  flex: 0 0 auto;
  height: 100%;
  border-left: 1px solid #fff;
}
header .wrap nav ul li a {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
  padding: 0 12px;
  line-height: 1.15;
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
}
header .wrap nav ul li a:hover {
  text-decoration: underline;
}
header .wrap nav ul li a.cur {
  color: #faee00;
}
header .wrap nav ul li a.inactive {
  opacity: 0.5;
}
header .wrap .btn {
  display: none;
}
header hr {
  max-width: 1000px;
  height: 8px;
  margin: 0 auto;
  background: url("../img/bg_header_line.png") repeat-x center center;
}

footer {
  position: relative;
  height: 125px;
  padding: 25px 10px;
  background: #e6e6e6;
  border-top: 5px solid #262626;
  z-index: 3;
}
footer::before {
  content: '';
  position: absolute;
  left: calc(50% - 82.5px - 40vw);
  top: -90px;
  width: 165px;
  height: 85px;
  background: url("../img/img_deco_02.png") no-repeat left top/100% auto;
  z-index: -1;
}
footer::after {
  content: '';
  position: absolute;
  left: calc(50% - 32px + 40vw);
  top: -67px;
  width: 64px;
  height: 64px;
  background: url("../img/img_deco_03.png") no-repeat left bottom/100% auto;
}
footer .logo {
  max-width: 84px;
  margin: auto;
}
footer .sns {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  left: calc(50% - 450px);
  top: calc(50% - 16px);
  width: 900px;
}
footer .sns li {
  width: 32px;
}
footer .sns li + li {
  margin-left: 15px;
}
footer .sns li.kidsbase {
  width: 100px;
}
footer .copyright {
  margin-top: 20px;
  line-height: 1.1;
  font-size: 1rem;
}

/* Sub Category
---------------------------------------- */
body.subCtg #container {
  padding-top: 92px;
}
body.subCtg main {
  min-height: calc(100vh - 95px - 125px);
}
body.subCtg #pageTitle {
  position: relative;
  height: 110px;
  background: #004ea2;
  z-index: 50;
}
body.subCtg #pageTitle::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4.3744331762962vw;
  width: 100%;
  height: 350%;
  background: #004ea2;
  transform: skewY(-5deg);
  z-index: 0;
}
body.subCtg #pageTitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4.3744331762962vw;
  width: 100%;
  height: 200%;
  background: #abc5e0;
  transform: skewY(5deg);
  z-index: -1;
}
body.subCtg #pageTitle > div {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
body.subCtg #pageTitle > div::after {
  content: '';
  position: absolute;
  right: 4.36364%;
  top: calc(50px + 8vw);
  width: 175px;
  height: 150px;
  background: url("../img/img_deco_01.png") no-repeat left top/100% auto;
  z-index: 0;
}
body.subCtg #pageTitle h1 {
  flex: 0 0 auto;
  position: relative;
  top: 0.5vw;
  max-width: 100%;
  line-height: 1.0;
  color: #fff;
}
body.subCtg #pageTitle h1 > span {
  display: block;
}
body.subCtg #pageTitle h1 > span.jp {
  margin-bottom: 0.5em;
  font-size: 2rem;
}
body.subCtg #pageTitle h1 > span.en {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.8rem;
}
body.subCtg #pageTitle h1 > span .red {
  color: #db0716;
}
body.subCtg #pageTitle h1 > span .yellow {
  color: #faee00;
}
body.subCtg #mainContents {
  padding: 8.5vw 10px 85px;
}

/* @media : PC
---------------------------------------- */
@media screen and (min-width: 2001px) {
  body.subCtg #mainContents {
    padding-top: 6.5vw;
  }
}
@media screen and (min-width: 1500px) and (max-width: 2000px) {
  body.subCtg #mainContents {
    padding-top: 7.5vw;
  }
}
@media screen and (max-width: 1020px) {
  header .wrap nav ul li a {
    padding: 0 10px;
    font-size: 1.3725490196vw;
  }
}
@media screen and (max-width: 900px) {
  footer .sns {
    left: 20px;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 920px) {
  body.subCtg #pageTitle > div::after {
    top: 110%;
    width: 120px;
    height: 120px;
  }
}
/* @media : SP
---------------------------------------- */
@media screen and (max-width: 768px) {
  header {
    height: 60px;
    padding: 0 0 0 10px;
    background: none;
  }

  header .wrap {
    padding: 0;
    height: 100%;
  }

  header .wrap h1 {
    width: 40px;
    max-width: none;
    margin: 0;
  }

  header .wrap nav {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    overflow: scroll;
    width: 100%;
    height: 100vh;
    background: #004ea2;
  }
  header .wrap nav ul {
    display: block;
    height: auto;
    margin-top: 60px;
  }
  header .wrap nav ul li {
    height: auto;
    border-left: none;
    border-top: 1px solid #fff;
  }
  header .wrap nav ul li:last-child {
    border-bottom: 1px solid #fff;
  }
  header .wrap nav ul li a {
    padding: 1.4em 0;
    font-size: 1.6rem;
  }
  header .wrap nav ul li a br {
    display: none;
  }

  header .wrap .btn {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
  }
  header .wrap .btn a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  header .wrap .btn a > div {
    position: absolute;
    left: calc(50% - 15px);
    top: calc(50% - 1px);
    width: 30px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
  }
  header .wrap .btn a > div:nth-child(1) {
    top: calc(50% - 1px - 10px);
  }
  header .wrap .btn a > div:nth-child(3) {
    top: calc(50% - 1px + 10px);
  }

  header hr {
    display: none;
  }

  body.subCtg #container {
    padding-top: 0;
  }
  body.subCtg.openNav {
    overflow: hidden;
  }
  body.subCtg.openNav header .btn a > div:nth-child(1) {
    top: calc(50% - 1px);
    transform: rotate(45deg);
  }
  body.subCtg.openNav header .btn a > div:nth-child(2) {
    transform: scale(0) rotate(90deg);
  }
  body.subCtg.openNav header .btn a > div:nth-child(3) {
    top: calc(50% - 1px);
    transform: rotate(135deg);
  }
  body.subCtg main {
    min-height: calc(100vh - 170px);
  }
  body.subCtg #pageTitle {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding-top: 38px;
  }
  body.subCtg #pageTitle > div::after {
    width: 100px;
    height: 88px;
    top: 120%;
  }
  body.subCtg #pageTitle h1 > span.jp {
    font-size: 2.0833333333vw;
  }
  body.subCtg #pageTitle h1 > span.en {
    font-size: 6.25vw;
  }
  body.subCtg #mainContents {
    padding-top: 180px;
  }

  footer {
    height: 170px;
  }

  footer:before {
    left: calc(50% - 50px - 40vw);
    top: -60px;
    width: 100px;
    height: 55px;
  }

  footer .sns {
    position: relative;
    left: auto;
    top: auto;
    width: 241px;
    margin: 10px auto 0;
  }
  footer .sns li {
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  body.subCtg main {
    min-height: calc(100vh - 120px);
  }

  body.subCtg #pageTitle {
    padding-top: 45px;
  }

  body.subCtg #pageTitle h1 > span.jp {
    font-size: 3.3333333333vw;
  }

  body.subCtg #pageTitle h1 > span.en {
    font-size: 8.3333333333vw;
  }

  body.subCtg #pageTitle > div::after {
    width: 50px;
    height: 44px;
    top: 130%;
  }

  body.subCtg #mainContents {
    padding-top: 150px;
  }

  footer {
    height: 120px;
    padding: 10px;
  }

  footer::before {
    left: calc(50% - 25px - 42vw);
    top: -35px;
    width: 50px;
    height: 30px;
  }

  footer::after {
    left: calc(50% - 16px + 45vw);
    top: -36px;
    width: 32px;
    height: 32px;
  }

  footer .logo {
    max-width: 50px;
  }

  footer .sns {
    width: 185px;
  }

  footer .sns li {
    width: 25px;
  }

  footer .sns li.kidsbase {
    width: 80px;
  }

  footer .sns li + li {
    margin-left: 10px;
  }

  footer .copyright {
    margin-top: 10px;
  }
}
