@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Oooh+Baby&display=swap");
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  color: #333;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: m-plus-rounded-2p, sans-serif;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 600px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  text-decoration: none;
  color: #333;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.header {
  width: 100%;
  padding: 20px 5%;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
}
.header .site__title {
  font-weight: bold;
}
@media only screen and (max-width: 600px) {
  .header .site__title {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .header .header__nav {
    width: 100%;
    min-height: calc(100svh - 60px);
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    background: linear-gradient(to right, #F4D6DD, #D2E3F7, #D5ECEF);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
  }
  .header .header__nav.active {
    transform: translateX(0);
  }
}
.header .nav__list {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media only screen and (max-width: 768px) {
  .header .nav__list {
    width: 80%;
    flex-direction: column;
    row-gap: 1.5em;
  }
}
.header .nav__list .list__item {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .header .nav__list .list__item {
    font-size: 1.4rem;
    font-weight: normal;
  }
}
.header .nav__button {
  display: none;
}
@media only screen and (max-width: 768px) {
  .header .nav__button {
    width: 10%;
    padding: 0;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    row-gap: 6px;
  }
  .header .nav__button .nav__button__line {
    display: block;
    width: 32px;
    height: 2px;
    background: #707070;
  }
}
.header.active .header__nav {
  transform: translateY(0);
}
.header.active .btns__wrap {
  z-index: 1000;
}
.header.active .btns__wrap .btn--cart {
  mix-blend-mode: difference;
}
.header.active .btns__wrap .btn--cart .default {
  display: none;
}
.header.active .btns__wrap .btn--cart .active {
  display: block;
  width: 100%;
}
.header.active .nav__button .nav__button__line {
  background: #707070;
}
.header.active .nav__button .nav__button__line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.header.active .nav__button .nav__button__line:nth-child(2) {
  opacity: 0;
}
.header.active .nav__button .nav__button__line:nth-child(3) {
  transform: rotate(45deg) translate(-6.5px, -6.5px);
}

.main {
  overflow: hidden;
  margin-top: 80px;
}

.inner {
  width: calc(100% - 200px);
  max-width: 1280px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .inner {
    max-width: unset;
    width: 85%;
  }
}

.footer {
  margin-top: 10vw;
  padding-top: 70px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 8vw 8vw 10vw;
  }
}
.footer .footer__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.footer .--mirais {
  display: none;
  width: 40%;
  margin: 0 auto 50px;
}
.footer .banners__wrap {
  display: flex;
  justify-content: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  flex-flow: row wrap;
}
.footer .banners__wrap .banner {
  display: block;
  width: 45%;
}
@media only screen and (max-width: 600px) {
  .footer .banners__wrap .banner {
    margin-bottom: 1em;
  }
}
.footer .copyright {
  display: block;
  margin-top: 40px;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.045em;
}
@media only screen and (max-width: 768px) {
  .footer .copyright {
    margin-top: 13vw;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-size: 0.625vw;
  }
}

.tColor--yellow {
  color: #FFB43C;
}

.tColor--blue {
  color: #67ADFF;
}

.tColor--green {
  color: #95D672;
}

.tColor--pink {
  color: #EA7F7F;
}

.break--pc {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .break--pc {
    display: none;
  }
}

.break--sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .break--sp {
    display: block;
  }
}

.page__title {
  font-size: 4.8rem;
  text-align: center;
  margin: 5vw auto;
}

.post__head {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .post__head {
    display: block;
    margin: 9em 0;
  }
}
.post__head::after {
  display: block;
  content: "";
  width: 50vw;
  height: 15px;
  background: #FFB43C;
  position: absolute;
  top: 4em;
  right: 50%;
}
@media only screen and (max-width: 600px) {
  .post__head::after {
    top: 14em;
    height: 8px;
  }
}
.post__head .post__title {
  width: 50%;
  color: #FFB43C;
  font-size: 4rem;
}
@media only screen and (max-width: 600px) {
  .post__head .post__title {
    width: 100%;
    font-size: 2rem;
  }
}
.post__head .page__lead {
  width: 50%;
  margin-top: 1.2em;
  padding-left: 1em;
  box-sizing: border-box;
  color: #FFB43C;
  font-size: 3.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 600px) {
  .post__head .page__lead {
    width: 100%;
    font-size: 1.6rem;
    margin-top: 2em;
  }
}
@media only screen and (max-width: 600px) {
  .post__head .page__lead br {
    display: none;
  }
}

.section__title {
  margin-bottom: 1em;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
}

.txt--normal {
  font-size: 1.8rem;
  line-height: 1.5;
}

.posts__wrap {
  width: calc(100% - 100px);
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 110px 50px;
  box-sizing: border-box;
  background: #FFF8E8;
  border-radius: 80px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .posts__wrap {
    width: 100%;
    max-width: unset;
    padding: 15vw 7.5vw;
    border-radius: 0;
  }
}
.posts__wrap .post__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: row wrap;
  -moz-column-gap: 5%;
       column-gap: 5%;
  row-gap: 50px;
}
@media only screen and (max-width: 1024px) {
  .posts__wrap .post__list {
    flex-direction: column;
    row-gap: 10vw;
  }
}
.posts__wrap .post__list .list__item {
  width: 47.5%;
}
@media only screen and (max-width: 1024px) {
  .posts__wrap .post__list .list__item {
    width: 100%;
  }
}
.posts__wrap .post__list .list__item .post__title {
  margin-top: 0.25em;
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .posts__wrap .post__list .list__item .post__title {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.posts__wrap .post__list .list__item .post__txt--lead {
  margin-top: 1em;
}

.flow__lists {
  margin-top: 3em;
}
.flow__lists .list__item {
  padding: 20px 30px;
  background: #FFF8E8;
  border: 1px solid #E6CC8F;
  border-radius: 20px;
}
.flow__lists .list__item:not(:first-child) {
  margin-top: 100px;
  position: relative;
}
.flow__lists .list__item:not(:first-child)::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 45px 45px 0 45px;
  border-color: #FFB43C transparent transparent transparent;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%);
}

.btn {
  display: block;
  margin: 100px auto 0;
  box-sizing: border-box;
  background: #FFD084;
  border-radius: 22px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 3rem;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .btn {
    font-size: 18px;
    font-size: 0.9375vw;
  }
}
.btn.--more {
  width: 7em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: bold;
  font-family: "Abril Fatface", cursive;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .btn.--more {
    width: 100%;
    margin-top: 3em;
    padding: 0.5em 1em;
    border-radius: 1.5em;
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}

.article__wrap .article__head {
  margin-bottom: 2em;
  font-size: 2.2rem;
  font-weight: bold;
}
.article__wrap .flex__wrap {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.article__wrap .flex__wrap .img__wrap {
  width: 45%;
}
.article__wrap .flex__wrap .txt__wrap {
  width: 52%;
  padding-left: 3%;
  box-sizing: border-box;
}
.article__wrap .flex__wrap .txt__wrap .txt--head {
  font-size: 2.2rem;
  font-weight: bold;
}
.article__wrap .--info {
  margin-top: 80px;
}
.article__wrap .--info .txt--facilityName {
  font-size: 1.8rem;
  font-weight: bold;
}
.article__wrap .--info .txt--address,
.article__wrap .--info .txt--tel,
.article__wrap .--info .txt--siteLink {
  font-size: 1.8rem;
  font-weight: normal;
}
.article__wrap .wp-block-columns {
  margin-top: 80px;
}

.nav-links {
  margin-top: 3em;
}
.nav-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
.nav-links .page-numbers li span,
.nav-links .page-numbers li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 50px;
  border: 1px solid #FFB43C;
  background: #fff;
  color: #FFB43C;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
.nav-links .page-numbers li span.current,
.nav-links .page-numbers li a.current {
  background: #FFB43C;
  color: #fff;
}

.form__wrap {
  width: calc(100% - 100px);
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 40px;
  box-sizing: border-box;
  background: #FFF8E8;
  border: 1px solid #E6CC8F;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.form__wrap .txt--normal {
  margin-bottom: 2em;
}
.form__wrap .mw_wp_form {
  width: 100%;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}
.form__wrap .mw_wp_form .form_item + .form_item {
  margin-top: 1em;
}
.form__wrap .mw_wp_form input {
  width: 100%;
  padding: 1em;
  border: 1px solid #707070;
  box-sizing: border-box;
}
.form__wrap .mw_wp_form .btn__wrap {
  margin-top: 3em;
}

@media only screen and (max-width: 600px) {
  .first-img img {
    width: 25% !important;
  }
}

.filter__wrap .searchandfilter > div {
  margin-top: 80px;
  padding: 30px 5% 50px;
  border: 3px solid #E6CC8F;
  box-sizing: border-box;
  background: #FFF8E8;
}
@media only screen and (max-width: 1024px) {
  .filter__wrap .searchandfilter > div {
    padding-top: 5vw;
    padding-bottom: 7.5vw;
  }
}
.filter__wrap .searchandfilter > div > ul {
  display: flex;
  flex-direction: column;
}
.filter__wrap .searchandfilter > div > ul > li {
  margin-top: 1em;
  padding: 0;
}
.filter__wrap .searchandfilter > div > ul > li:first-child {
  margin-top: 0;
}
.filter__wrap .searchandfilter > div > ul > li h4 {
  margin: 0 auto;
  font-size: 2rem;
}
@media only screen and (max-width: 1024px) {
  .filter__wrap .searchandfilter > div > ul > li h4 {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.filter__wrap .searchandfilter > div > ul > li h4 + ul {
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 1.5em;
       column-gap: 1.5em;
  flex-wrap: wrap;
}
.filter__wrap .searchandfilter > div > ul > li h4 + ul > li {
  padding: 0;
}
@media only screen and (max-width: 1024px) {
  .filter__wrap .searchandfilter > div > ul > li h4 + ul > li {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.filter__wrap .searchandfilter input[type=submit] {
  display: block;
  width: 320px;
  margin: 50px auto 0;
  padding: 0.5em 1em;
  box-sizing: border-box;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #FFD084;
  border-radius: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .filter__wrap .searchandfilter input[type=submit] {
    margin-top: 1em;
    border-radius: 1.5em;
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
@media only screen and (max-width: 1024px) {
  .filter__wrap .searchandfilter input[type=checkbox i] {
    width: 2.5vw;
    height: 2.5vw;
  }
}

.page-top .--kv {
  padding: 35vw 5vw 0;
  box-sizing: border-box;
  background: url(../images/top/pic_top.png) no-repeat right bottom/80% auto;
  position: relative;
}
.page-top .--kv::before {
  display: block;
  content: "";
  width: 20vw;
  height: 17vw;
  background: url(../images/top/circle_pink.png) no-repeat center center/100% auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translate(-5%, -200%);
}
.page-top .--kv .txt__lead {
  display: inline-block;
  font-size: 3rem;
  background: #fff;
}
.page-top .--kv .kv--copy {
  font-size: 8.3rem;
  font-size: 84px;
  font-size: 4.375vw;
  font-weight: normal;
  letter-spacing: 0.2em;
  line-height: 1.3;
  position: relative;
  transform: translateY(-15%);
}
.page-top .--kv .kv--copy > span:first-child {
  display: inline-block;
  margin-bottom: 0.5em;
  background: #ffffff;
}
.page-top .--kv .kv--copy [class^=tColor] {
  font-size: 160px;
  font-size: 160px;
  font-size: 8.3333333333vw;
  letter-spacing: 0.2em;
  background: #ffffff;
}
.page-top .--kv .kv--copy::before {
  display: block;
  content: "";
  width: 20vw;
  height: 17vw;
  background: url(../images/top/circle_green.png) no-repeat center center/100% auto;
  position: absolute;
  top: -200%;
  left: 0;
  z-index: -1;
  -webkit-animation-name: rotation;
          animation-name: rotation;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: backwords;
          animation-fill-mode: backwords;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.page-top .--kv .kv--copy::after {
  display: block;
  content: "";
  width: 383px;
  height: 441px;
  background: url(../images/top/circle_orange.png) no-repeat right bottom/cover;
  position: absolute;
  top: 0;
  left: -6%;
  z-index: -1;
  -webkit-animation-name: rotation;
          animation-name: rotation;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: backwords;
          animation-fill-mode: backwords;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-top .--nav {
  margin-top: 170px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .page-top .--nav {
    margin-top: 15vw;
  }
}
.page-top .--nav::before {
  display: block;
  content: "";
  width: 494px;
  height: 420px;
  background: url(../images/top/circle_green.png) no-repeat center center/100% auto;
  position: absolute;
  top: -25%;
  right: 0;
  z-index: -1;
  -webkit-animation-name: rotation;
          animation-name: rotation;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: backwords;
          animation-fill-mode: backwords;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-top .--nav .head {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 930px;
  margin: 0 auto;
  background: #FFD084;
  border-radius: 35px;
  color: #fff;
  font-size: 4rem;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .page-top .--nav .head {
    width: 100%;
    padding: 0.5em;
    box-sizing: border-box;
    font-size: 20px;
    font-size: 5.1282051282vw;
    line-height: 1.5;
  }
}
.page-top .--nav .head::after {
  display: block;
  content: "";
  width: 62px;
  height: 34px;
  background: url(../images/arrow.png) no-repeat center bottom/cover;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 85%);
}
.page-top .--nav .links__wrap {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-top .--nav .links__wrap .link__item {
  display: block;
  width: 48.5%;
  padding: 5em 0;
  border: 14px solid #EA7F7F;
  border-radius: 55px;
  box-sizing: border-box;
  background: url(../images/top/bg_nursery.jpg) no-repeat center center/cover;
  color: #EA7F7F;
  font-size: 3rem;
  text-align: center;
}
.page-top .--nav .links__wrap .link__item:first-child {
  border-color: #67ADFF;
  color: #67ADFF;
  background: url(../images/top/bg_kindergarden.jpg) no-repeat center center/cover;
}
.page-top .--nav .links__wrap .link__item span {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
}
.page-top .--nav .banner {
  margin-top: 120px;
  background: #FFF8E8;
  border: 3px solid #E6CC8F;
  color: #FFB43C;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .page-top .--nav .banner {
    margin-top: 0;
  }
}
.page-top .--nav .banner::before {
  display: block;
  content: "";
  width: 178px;
  height: 177px;
  background: url(../images/top/circle04.png) no-repeat center center/100% auto;
  position: absolute;
  top: 0;
  left: -200px;
  z-index: -1;
  -webkit-animation-name: rotation;
          animation-name: rotation;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: backwords;
          animation-fill-mode: backwords;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.page-top .--nav .banner span {
  display: block;
}
.page-top .--nav .banner span:first-child {
  font-size: 5.5rem;
}
@media only screen and (max-width: 600px) {
  .page-top .--nav .banner span:first-child {
    font-size: 3.5rem;
    line-height: 1.5;
  }
}
.page-top .--nav .banner span:nth-child(2) {
  font-size: 2.3rem;
}
@media only screen and (max-width: 600px) {
  .page-top .--nav .banner span:nth-child(2) {
    font-size: 1.3rem;
  }
}
.page-top .--news {
  margin-top: 100px;
}
@media only screen and (max-width: 600px) {
  .page-top .--news {
    margin-top: 50px;
  }
}
.page-top .--news .section__title {
  margin-bottom: -13em;
  padding-top: 6em;
  padding-bottom: 15em;
  text-align: center;
  background: url(../images/bg_title.jpg) no-repeat center center/110% auto;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 600px) {
  .page-top .--news .section__title {
    margin-bottom: 0em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
}
.page-top .--news .section__title .en {
  display: block;
  font-size: 7rem;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .page-top .--news .section__title .en {
    font-size: 48px;
    font-size: 12.3076923077vw;
  }
}
.page-top .--news .section__title .ja {
  margin-top: 1em;
  display: block;
  font-size: 3rem;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .page-top .--news .section__title .ja {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}

.page-privacy-policy .inner {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .page-privacy-policy .inner {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 600px) {
  .page-privacy-policy .inner {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-privacy-policy .head {
  margin-top: 1em;
  font-weight: bold;
}
.page-privacy-policy .txt__wrap {
  margin-top: 0.5em;
}
.page-privacy-policy .txt__wrap ol {
  list-style: auto;
  padding-left: 2em;
}

.error404 .section__title {
  margin-bottom: 1em;
}
.error404 .btn {
  margin: 3em auto 0;
  padding: 1em;
  box-sizing: border-box;
}/*# sourceMappingURL=style.css.map */

.footer .--mirais
{display: none;}