@charset "UTF-8";
/* 文字コードの指定 */
/* ページ全般の設定 */
* {
  box-sizing: border-box;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0;
  color: #505050;
}

@media (max-width: 767px) {
  main {
    margin-top: 6.7rem;
  }
}

li {
  list-style: none;
}

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

img {
  max-width: 100%;
  vertical-align: bottom;
}

address,
em {
  font-style: normal;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (max-width: 767px) {
  .tab-only {
    display: none;
  }
}
@media (min-width: 1025px) {
  .tab-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.flex {
  display: flex;
}
@media (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

.grid {
  display: grid;
}
@media (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.grid-2 {
  display: grid;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  display: grid;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.content-width {
  max-width: 120rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .content-width {
    width: 100%;
  }
}

.pink {
  color: #DD6261;
}

.hina {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.noto-serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.section-title {
  text-align: center;
}
.section-title .en img {
  display: block;
  margin: 0 auto 2.6rem;
}
@media (max-width: 767px) {
  .section-title .en img {
    margin: 0 auto 1.5rem;
  }
}
.section-title .ja {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 2.4rem;
  color: #202B60;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .section-title .ja {
    font-size: 1.8rem;
    margin-top: 2.4rem;
    display: block;
    letter-spacing: 0;
  }
}

/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.header {
  width: 100%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 2.8472222222vw 2.7777777778vw 1.4930555556vw;
  transition: 0.5s ease;
}
@media (min-width:1440px) {
  .header {
    padding: 4.1rem 4rem 2.15rem;
  }
}
@media (max-width: 767px) {
  .header {
    background: #fff;
    padding: 0 2rem;
    position: fixed;
  }
}
.header .header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .header .header__inner {
    height: 70px;
    width: 100%;
    align-items: center;
  }
}
.header .header__logo {
  max-width: 18.5416666667vw;
  width: 100%;
  display: flex;
}
@media (min-width:1440px) {
  .header .header__logo {
    max-width: 26.7rem;
  }
}
@media (max-width: 767px) {
  .header .header__logo {
    max-width: 26.7rem;
  }
}
.header .header__logo img {
  width: 18.5416666667vw;
}
@media (min-width:1440px) {
  .header .header__logo img {
    width: 26.7rem;
  }
}
@media (max-width: 767px) {
  .header .header__logo img {
    width: 26.7rem;
  }
}
.header .header__inner__right {
  display: flex;
  gap: 1.7361111111vw;
  align-items: center;
  justify-content: flex-end;
  width: 90%;
}
@media (min-width:1440px) {
  .header .header__inner__right {
    gap: 2.5rem;
  }
}
@media (max-width: 1024px) {
  .header .header__inner__right {
    display: none;
  }
}
.header .header__menu {
  display: flex;
  align-items: center;
  gap: 2.2222222222vw;
}
@media (min-width:1440px) {
  .header .header__menu {
    gap: 3.2rem;
  }
}
.header nav {
  text-align: center;
}
.header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
.header nav ul ul {
  display: block;
}
.header nav ul li {
  position: relative;
}
.header nav ul li a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.0416666667vw;
  font-weight: 700;
  line-height: 160%;
  color: #202B60;
}
@media (min-width:1440px) {
  .header nav ul li a {
    font-size: 1.5rem;
  }
}
.header .cta-btn {
  background: #DD6261;
  border-radius: 4px;
  font-size: 1.0416666667vw;
  font-weight: 700;
  color: #fff;
  line-height: 160%;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  max-width: 17.3611111111vw;
  width: 100%;
  height: 3.4722222222vw;
}
@media (min-width:1440px) {
  .header .cta-btn {
    max-width: 25rem;
    font-size: 1.5rem;
    height: 5rem;
  }
}

/*=================================================
    SP ハンバーガーメニュー
===================================================*/
/* ハンバーガーメニューボタン */
.hamburger-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3.2rem;
  height: 2.6rem;
  z-index: 100;
  cursor: pointer;
}
.hamburger-btn .hamburger-btn__line {
  width: 3.2rem;
  height: 2.6rem;
  position: relative;
  transform: translateY(-50%) translateX(-50%);
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 50%;
}
.hamburger-btn .hamburger-btn__line .line {
  position: absolute;
  content: "";
  background: #505050;
  height: 4px;
  left: 0;
  transition: 0.3s;
  width: 3.2rem;
}
.hamburger-btn .hamburger-btn__line .line:nth-child(1) {
  top: 0;
}
.hamburger-btn .hamburger-btn__line .line:nth-child(2) {
  bottom: 44%;
}
.hamburger-btn .hamburger-btn__line .line:nth-child(3) {
  bottom: 0;
}

/* ×　オープン */
.hamburger-btn.active .line:nth-child(1), .hamburger-btn.active .line:nth-child(2), .hamburger-btn.active .line:nth-child(3) {
  width: 4.1rem;
  top: 33%;
  left: 0;
}
.hamburger-btn.active .line:nth-child(1) {
  transform: rotate(-45deg);
}
.hamburger-btn.active .line:nth-child(2) {
  transform: rotate(45deg);
}
.hamburger-btn.active .line:nth-child(3) {
  transform: rotate(45deg);
}

/* メニューの中身 */
#hamburger-menu {
  width: 100%;
  height: 100%;
  background-color: #FFFAF8;
  position: fixed;
  top: 6.7rem;
  left: 0;
  z-index: 99;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s ease, opacity 0.3s ease;
  padding: 0 1.5rem 3rem;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item {
  border-bottom: solid 1px #202B60;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item:first-child {
  border-top: solid 1px #202B60;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item p,
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item a {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 160%;
  padding: 1.6rem 1.1rem 1.5rem;
  display: block;
  color: #202B60;
}
@media (max-width: 767px) {
  #hamburger-menu .hamburger-menu__list .hamburger-menu__list__item p,
  #hamburger-menu .hamburger-menu__list .hamburger-menu__list__item a {
    line-height: 110%;
  }
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item .js-accordion {
  position: relative;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item .js-accordion:before, #hamburger-menu .hamburger-menu__list .hamburger-menu__list__item .js-accordion:after {
  position: absolute;
  content: "";
  background: #DD6261;
  transform: translateY(-50%);
  top: 50%;
  right: 1.2rem;
  width: 2rem;
  height: 2px;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item .js-accordion:after {
  transform: translateY(-50%) rotate(90deg);
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item .js-accordion.open:before, #hamburger-menu .hamburger-menu__list .hamburger-menu__list__item .js-accordion.open:after {
  background: #202B60;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item .js-accordion.open::before {
  transform: rotate(-45deg);
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item .js-accordion.open:after {
  transform: rotate(45deg);
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item .child-list {
  padding-left: 1.3rem;
  display: none;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item .child-list li {
  margin-bottom: 1.5rem;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item .child-list li:last-child {
  margin-bottom: 2.1rem;
}
#hamburger-menu .hamburger-menu__list .hamburger-menu__list__item .child-list li a {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0;
}
#hamburger-menu .link-list {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.9rem;
}
#hamburger-menu .lesson-btn {
  max-width: 25rem;
  width: 100%;
  height: 4.1rem;
  margin: 2.7rem auto 7rem;
  font-size: 1.8rem;
  border-radius: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: solid 1px #DD6261;
  color: #DD6261;
  padding: 0 1.4rem 0 1.8rem;
  font-weight: 700;
}

/* ハンバーガーメニュー開いた時 */
#hamburger-menu.active {
  overflow: scroll;
  visibility: visible;
  transition: 0.5s ease;
  left: 0;
  -webkit-overflow-scrolling: touch;
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

body.active {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
body.active .header {
  background: #FFFAF8;
}

@media (min-width: 768px) {
  .hamburger-btn,
  .hamburger-menu {
    display: none;
  }
}
@media (max-width: 1024px) {
  .hamburger-btn,
  .hamburger-menu {
    display: block;
  }
}

.mv {
  position: relative;
}
.mv .mv__title {
  position: absolute;
  top: 16.0416666667vw;
  left: 11.5972222222vw;
  color: #202B60;
}
@media (max-width: 767px) {
  .mv .mv__title {
    top: 8.2666666667vw;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
.mv .mv__title span {
  display: block;
  font-size: 2.9166666667vw;
  line-height: 200%;
  font-weight: 400;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .mv .mv__title span {
    font-size: 5.6vw;
    text-align: center;
    line-height: 180%;
  }
}
.mv .mv__banner {
  position: absolute;
  bottom: 4.0277777778vw;
  left: 49.5%;
  right: 50%;
  transform: translateX(-50%);
  width: 47.2222222222vw;
}
@media (max-width: 767px) {
  .mv .mv__banner {
    width: 81.3333333333vw;
    bottom: 8.5333333333vw;
    left: 48.5%;
  }
}

.cover {
  background-color: #FFFAF8;
  position: relative;
}
@media (max-width: 767px) {
  .cover {
    background-color: #fff;
  }
}
.cover .cover__img {
  height: 34.8rem;
  background-size: cover;
}
@media (max-width: 767px) {
  .cover .cover__img {
    height: 17.5rem;
    background-size: cover;
  }
}
.cover .cover__title {
  color: #DD6261;
  font-weight: 700;
  font-size: 3.2rem;
  text-align: center;
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  bottom: 12.3rem;
}
@media (max-width: 767px) {
  .cover .cover__title {
    font-size: 2.8rem;
    bottom: 7.6rem;
  }
}

.page-instructor .cover .cover__img {
  background-image: url(../images/instructor_topimg_pc.webp);
  background-position: right;
}
@media (min-width: 768px) {
  .page-instructor .cover .cover__img {
    height: 34rem;
  }
}
@media (max-width: 767px) {
  .page-instructor .cover .cover__img {
    background-image: url(../images/instructor_topimg_sp.webp);
  }
}

.page-studio .cover .cover__img {
  background-image: url(../images/studio_topimg_pc.webp);
  background-position: right;
}
@media (min-width: 768px) {
  .page-studio .cover .cover__img {
    height: 33.8rem;
  }
}
@media (max-width: 767px) {
  .page-studio .cover .cover__img {
    background-image: url(../images/studio_topimg_sp.webp);
  }
}

.page-news .cover .cover__img {
  background-image: url(../images/infomation_topimg_pc.webp);
  background-position: right;
}
@media (max-width: 767px) {
  .page-news .cover .cover__img {
    background-image: url(../images/infomation_topimg_sp.webp);
  }
}

.page-contact .cover .cover__img {
  background-image: url(../images/contact_topimg_pc.webp);
  background-position: right;
}
@media (max-width: 767px) {
  .page-contact .cover .cover__img {
    background-image: url(../images/contact_topimg_sp.webp);
  }
}

.page-price .cover .cover__img {
  background-image: url(../images/price_topimg_pc.webp);
  background-position: center;
}
@media (min-width: 768px) {
  .page-price .cover .cover__img {
    height: 34rem;
  }
}
@media (max-width: 767px) {
  .page-price .cover .cover__img {
    background-image: url(../images/price_topimg_sp.webp);
  }
}

.page-faq .cover .cover__img {
  background-image: url(../images/faq_topimg_pc.webp);
  background-position: right;
}
@media (max-width: 767px) {
  .page-faq .cover .cover__img {
    background-image: url(../images/faq_topimg_sp.webp);
  }
}

.page-class .cover .cover__img {
  background-image: url(../images/class_topimg_pc.webp);
  background-position: top center;
}
@media (max-width: 767px) {
  .page-class .cover .cover__img {
    background-image: url(../images/class_topimg_sp.webp);
  }
}

.about {
  padding: 14.8rem 2rem 7.9rem;
}
@media (max-width: 767px) {
  .about {
    padding: 7rem 0 6rem;
  }
}
.about .section-title {
  text-align: center;
}
@media (max-width: 767px) {
  .about .section-title .en img {
    max-width: 19.3rem;
  }
}
.about .flex {
  margin-top: 10.4rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.7rem;
}
@media (max-width: 767px) {
  .about .flex {
    flex-direction: column-reverse;
    margin-top: 3.8rem;
    gap: 3.4rem;
  }
}
.about .about__inner {
  max-width: 125.4rem;
  margin: 0 auto;
}
.about .about__text {
  max-width: 60.3rem;
}
@media (min-width: 768px) {
  .about .about__text {
    padding-top: 7.2rem;
  }
}
@media (max-width: 767px) {
  .about .about__text {
    padding: 0 1.6rem;
  }
}
.about .about__text .about-title {
  text-align: center;
}
.about .about__text .about-title .en,
.about .about__text .about-title .ja {
  display: block;
}
@media (max-width: 767px) {
  .about .about__text .about-title .en {
    max-width: 27.6rem;
    margin: 0 auto;
  }
}
.about .about__text .about-title .ja {
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .about .about__text .about-title .ja {
    letter-spacing: 0.1em;
  }
}
@media (max-width: 767px) {
  .about .about__text .about-title .ja {
    font-size: 1.6rem;
    margin-top: 1.05rem;
  }
}
.about .about__text .about-text {
  margin-top: 5.7rem;
  font-size: 1.5rem;
  line-height: 240%;
  color: #202B60;
}
@media (max-width: 767px) {
  .about .about__text .about-text {
    line-height: 200%;
    margin-top: 2.8rem;
  }
}
.about .about__text .about-text p {
  margin-bottom: 1.8rem;
}
@media (max-width: 767px) {
  .about .about__text .about-text p {
    margin-bottom: 3rem;
  }
}
.about .about__text .about-text p:last-of-type {
  margin-bottom: 0;
}
.about .about__text .name {
  margin-top: 4.5rem;
  text-align: right;
  font-size: 1.8rem;
}
.about .about__img .about__img__top {
  max-width: 52.5rem;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .about .about__img .about__img__top img {
    border-radius: 4px;
  }
}
.about .about__img .about__img__top::after {
  position: absolute;
  content: "";
  background-image: url(../images/top_light01.svg);
  background-size: contain;
  width: 4.7rem;
  height: 6.4rem;
  bottom: 8.4rem;
  right: -1.4rem;
}
@media (max-width: 767px) {
  .about .about__img .about__img__top::after {
    width: 3.4rem;
    height: 4.6rem;
    bottom: -0.8rem;
    right: 2.7rem;
  }
}
.about .about__img .about__img__bottom {
  display: flex;
  align-items: flex-start;
  margin-top: 1.6rem;
  gap: 1.5rem;
  padding-left: 2.4rem;
}
@media (max-width: 767px) {
  .about .about__img .about__img__bottom {
    padding: 0 1.7rem;
    gap: 0.6rem;
    margin-top: -4.8rem;
  }
}
.about .about__img .about__img__bottom .left {
  max-width: 23.5rem;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .about .about__img .about__img__bottom .left {
    max-width: 14.5rem;
  }
}
.about .about__img .about__img__bottom .left img {
  border-radius: 4px;
}
.about .about__img .about__img__bottom .left::after {
  position: absolute;
  content: "";
  background-image: url(../images/top_light02.svg);
  background-size: contain;
  width: 4rem;
  height: 5.8rem;
  bottom: 7.7rem;
  left: -2.4rem;
}
@media (max-width: 767px) {
  .about .about__img .about__img__bottom .left::after {
    width: 2.5rem;
    height: 3.6rem;
    bottom: -4.5rem;
    left: 2.3rem;
  }
}
@media (max-width: 767px) {
  .about .about__img .about__img__bottom .right {
    margin-top: 5.2rem;
  }
}
.about .about__img .about__img__bottom .right .right-1 {
  max-width: 34rem;
  width: 100%;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .about .about__img .about__img__bottom .right .right-1 {
    max-width: 18.9rem;
    margin-bottom: 0.6rem;
  }
}
.about .about__img .about__img__bottom .right .right-1 img {
  border-radius: 4px;
}
.about .about__img .about__img__bottom .right .right-2 {
  max-width: 23rem;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .about .about__img .about__img__bottom .right .right-2 {
    max-width: 14.8rem;
  }
}
.about .about__img .about__img__bottom .right .right-2 img {
  border-radius: 4px;
}
.about .about__img .about__img__bottom .right .right-2::after {
  position: absolute;
  content: "";
  background-image: url(../images/top_light03.svg);
  background-size: contain;
  width: 2.3rem;
  height: 3.1rem;
  bottom: 6.6rem;
  left: -0.8rem;
}
@media (max-width: 767px) {
  .about .about__img .about__img__bottom .right .right-2::after {
    display: none;
  }
}

.home-news {
  padding: 12rem 2rem 9.4rem;
}
@media (max-width: 767px) {
  .home-news {
    padding: 4.8rem 1.6rem 6rem;
  }
}
.home-news .section-title {
  text-align: left;
}
@media (max-width: 767px) {
  .home-news .section-title {
    text-align: center;
  }
}
.home-news .section-title .en img {
  margin-right: auto;
  margin-left: 0;
}
@media (max-width: 767px) {
  .home-news .section-title .en img {
    max-width: 10.9rem;
    margin: 0 auto;
  }
}
.home-news .flex {
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-news .flex {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .home-news .news__right {
    max-width: 89.8rem;
    width: 100%;
  }
}
.home-news .news__right .more-btn {
  color: #202B60;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: flex-end;
  font-size: 1.4rem;
  font-weight: 500;
}
.home-news .news__right .news__list {
  margin-top: 2.7rem;
}
@media (max-width: 767px) {
  .home-news .news__right .news__list {
    margin-top: 2.8rem;
  }
}
.home-news .news__right .news__list li a {
  padding: 3rem 3.3rem 3.1rem 2.8rem;
  display: flex;
  align-items: center;
  gap: 3.4rem;
  border-bottom: solid 1px #505050;
}
@media (max-width: 767px) {
  .home-news .news__right .news__list li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.3rem;
    padding: 3rem 0 2.5rem;
  }
}
.home-news .news__right .news__list li a .date {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 160%;
}
@media (max-width: 767px) {
  .home-news .news__right .news__list li a .date {
    padding-left: 8.5rem;
  }
}
.home-news .news__right .news__list li a .list-title {
  font-weight: 400;
  font-size: 1.6rem;
}
.home-news .news__right .news__list li:first-child {
  border-top: solid 1px #505050;
}
@media (max-width: 767px) {
  .home-news .news__right .more-btn {
    margin: 3.3rem auto 0;
    justify-content: center;
  }
}

.archive {
  padding: 10.5rem 2rem 12rem;
}
@media (max-width: 767px) {
  .archive {
    padding: 3.4rem 2rem 0;
  }
}
.archive .archive-title {
  display: flex;
  align-items: center;
  gap: 2.0138888889vw;
  position: relative;
}
@media (min-width:1440px) {
  .archive .archive-title {
    gap: 2.9rem;
  }
}
@media (max-width: 767px) {
  .archive .archive-title {
    gap: 1.6rem;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .archive .archive-title .en img {
    max-width: 15rem;
  }
}
@media (max-width: 767px) {
  .archive .archive-title .en img {
    max-width: 10.9rem;
  }
}
.archive .archive-title .ja {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 2.4rem;
  color: #202B60;
}
@media (max-width: 767px) {
  .archive .archive-title .ja {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}
.archive .archive-title::after {
  position: absolute;
  content: "";
  background: #202B60;
  width: 57.4305555556vw;
  height: 1px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (min-width:1440px) {
  .archive .archive-title::after {
    width: 82.7rem;
  }
}
@media (max-width: 767px) {
  .archive .archive-title::after {
    width: 29.3333333333vw;
  }
}
.archive .archive__head {
  margin-top: 11.4rem;
}
@media (max-width: 767px) {
  .archive .archive__head {
    margin-top: 4.8rem;
  }
}
.archive .head-list {
  gap: 1.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .archive .head-list {
    gap: 1rem;
  }
}
.archive .head-list li {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 1.4rem;
  border-bottom: solid 1px #E5F1FF;
}
@media (max-width: 767px) {
  .archive .head-list li {
    font-size: 1.8rem;
    padding-bottom: 1rem;
  }
}
.archive .head-list li a {
  color: #202B60;
}
.archive .head-list .current {
  border-bottom: solid 1px #DD6261;
}
.archive .head-list .current a {
  color: #DD6261;
}
.archive .archive__list {
  margin-top: 5.8rem;
  -moz-column-gap: 2.8472222222vw;
       column-gap: 2.8472222222vw;
  row-gap: 4.3055555556vw;
}
@media (min-width:1440px) {
  .archive .archive__list {
    -moz-column-gap: 4.1rem;
         column-gap: 4.1rem;
    row-gap: 6.2rem;
  }
}
@media (max-width: 767px) {
  .archive .archive__list {
    margin-top: 3.9rem;
    gap: 3rem;
  }
}
.archive .archive__list .archive__img .category {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 10px;
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  background: #DD6261;
}
.archive .archive__list .archive__img .category--news-cate {
  background: #DD6261;
}
.archive .archive__list .archive__img .category--gallery-cate {
  background: #202B60;
}
.archive .archive__list .archive__img {
  display: block;
  position: relative;
}
.archive .archive__list .archive__img::before {
  content: "";
  display: block;
  padding-top: 73.5%;
}
@media (max-width: 767px) {
  .archive .archive__list .archive__img::before {
    padding-top: 59.8%;
  }
}
.archive .archive__list .archive__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive .archive__list .archive__text {
  padding: 2rem;
}
@media (max-width: 767px) {
  .archive .archive__list .archive__text {
    padding: 1.5rem 0;
  }
}
.archive .archive__list .archive__text .date {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.archive .archive__list .archive__text .news-title {
  margin-top: 1.7rem;
  font-size: 1.4rem;
  font-weight: 400;
}
.archive .pager {
  margin-top: 9.6rem;
}
@media (max-width: 767px) {
  .archive .pager {
    margin-top: 3.4rem;
  }
}
.archive .pager .wp-pagenavi,
.archive .pager .pager-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .archive .pager .wp-pagenavi,
  .archive .pager .pager-list {
    font-size: 2rem;
  }
}
.archive .pager .wp-pagenavi .current,
.archive .pager .pager-list .current {
  color: #DD6261;
}

.news-single {
  padding: 9.9rem 2rem 15rem;
}
@media (max-width: 767px) {
  .news-single {
    padding: 3.3rem 1.7rem 0;
  }
}
.news-single .article {
  max-width: 80rem;
  margin: 0 auto;
}
.news-single .article .single__img {
  max-width: 65rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .news-single .article .single__img {
    max-width: 100%;
  }
}
.news-single .article .article-title {
  margin-bottom: 3.9rem;
  color: #202B60;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 767px) {
  .news-single .article .article-title {
    margin-top: 1.9rem;
    font-size: 2.4rem;
    text-align: left;
  }
}
.news-single .article .article-content {
  margin-top: 3.9rem;
}
@media (max-width: 767px) {
  .news-single .article .article-content {
    margin-top: 1.5rem;
  }
}
.news-single .article .article-content h2,
.news-single .article .article-content h3,
.news-single .article .article-content h4,
.news-single .article .article-content h5,
.news-single .article .article-content h6 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #202B60;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .news-single .article .article-content h2,
  .news-single .article .article-content h3,
  .news-single .article .article-content h4,
  .news-single .article .article-content h5,
  .news-single .article .article-content h6 {
    margin-bottom: 1rem;
  }
}
.news-single .article .article-content p {
  font-size: 1.6rem;
  line-height: 200%;
  margin-bottom: 3.9rem;
}
@media (max-width: 767px) {
  .news-single .article .article-content p {
    font-size: 1.5rem;
    line-height: 180%;
  }
}
.news-single .article .wp-block-group {
  margin-top: 7rem;
}
@media (max-width: 767px) {
  .news-single .article .wp-block-group {
    margin-top: 1.8rem;
  }
}
.news-single .pager {
  max-width: 43rem;
  margin: 16rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .news-single .pager {
    margin: 6.7rem auto 0;
    gap: 4rem;
    justify-content: center;
  }
}
.news-single .pager a {
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: #000;
}
@media (max-width: 767px) {
  .news-single .pager a {
    font-size: 1.6rem;
  }
}

.gallery {
  background: #F7F7F7;
  padding: 13.7rem 2rem 15.1rem;
  position: relative;
}
@media (max-width: 767px) {
  .gallery {
    padding: 6.1rem 0 6rem;
  }
}
.gallery::before {
  position: absolute;
  content: "";
  background-image: url(../images/top_gallery_illust03.svg);
  background-size: contain;
  width: 17.7777777778vw;
  height: 18.9583333333vw;
  bottom: -12rem;
  left: 22.7083333333vw;
}
@media (min-width:1440px) {
  .gallery::before {
    width: 25.6rem;
    height: 27.3rem;
  }
}
@media (max-width: 767px) {
  .gallery::before {
    background-image: url(../images/top_studio_illust_sp.svg);
    width: 14rem;
    height: 16.5rem;
    bottom: -10.4rem;
    left: 0;
  }
}
.gallery .section-title {
  position: relative;
}
@media (max-width: 767px) {
  .gallery .section-title .en img {
    width: 17.1rem;
  }
}
.gallery .section-title::before {
  position: absolute;
  content: "";
  background-image: url(../images/top_gallery_illust01.svg);
  background-size: contain;
  width: 27.0833333333vw;
  height: 10.5555555556vw;
  left: 0;
}
@media (min-width: 768px) {
  .gallery .section-title::before {
    top: 36%;
    bottom: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width:1440px) {
  .gallery .section-title::before {
    width: 39rem;
    height: 15.2rem;
  }
}
@media (max-width: 767px) {
  .gallery .section-title::before {
    background-image: url(../images/top_gallery_illust01_sp.svg);
    width: 12.7rem;
    height: 5rem;
    bottom: 0.2rem;
    left: 1.1rem;
  }
}
.gallery .section-title::after {
  position: absolute;
  content: "";
  background-image: url(../images/top_gallery_illust02.svg);
  background-size: contain;
  width: 27.0833333333vw;
  height: 10.5555555556vw;
  right: 0;
}
@media (min-width: 768px) {
  .gallery .section-title::after {
    top: 36%;
    bottom: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width:1440px) {
  .gallery .section-title::after {
    width: 39rem;
    height: 15.2rem;
  }
}
@media (max-width: 767px) {
  .gallery .section-title::after {
    background-image: url(../images/top_gallery_illust02_sp.svg);
    width: 12.7rem;
    height: 5rem;
    bottom: 0;
    bottom: 0.2rem;
    right: 1.1rem;
  }
}
.gallery .more-btn {
  font-size: 1.4rem;
  display: table;
  color: #202B60;
  font-weight: 500;
  margin-top: -2.3rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .gallery .more-btn {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .gallery .more-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 6.2rem;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .gallery .gallery__flex {
    display: flex;
    flex-direction: column-reverse;
  }
}
.gallery .gallery__slider {
  margin-top: 3.8rem;
  position: relative;
  /* 前へ次への矢印カスタマイズ */
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
  /* 画像サイズ調整 */
}
@media (max-width: 767px) {
  .gallery .gallery__slider {
    padding: 0 2.6rem;
    margin-top: 4.3rem;
  }
}
.gallery .gallery__slider .swiper-slide .list-img {
  display: block;
  position: relative;
}
.gallery .gallery__slider .swiper-slide .list-img::before {
  content: "";
  display: block;
  padding-top: 73.8%;
}
@media (max-width: 767px) {
  .gallery .gallery__slider .swiper-slide .list-img::before {
    padding-top: 62%;
  }
}
.gallery .gallery__slider .swiper-slide .list-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery .gallery__slider .gallery__slider__text {
  padding: 2rem;
}
@media (max-width: 767px) {
  .gallery .gallery__slider .gallery__slider__text {
    padding: 1.9rem 0;
  }
}
.gallery .gallery__slider .gallery__slider__text .date {
  font-size: 1.8rem;
  font-weight: 500;
}
.gallery .gallery__slider .gallery__slider__text .list-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 1.7rem;
}
@media (max-width: 767px) {
  .gallery .gallery__slider .gallery__slider__text .list-title {
    margin-top: 1.2rem;
  }
}
.gallery .gallery__slider .swiper-pagination {
  bottom: -5.2rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .gallery .gallery__slider .swiper-pagination {
    bottom: -2.7rem;
  }
}
.gallery .gallery__slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 3.5px;
  opacity: 1;
  background-color: #D9D9D9;
}
.gallery .gallery__slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #DD6261;
}
.gallery .gallery__slider .swiper-button-prev,
.gallery .gallery__slider .swiper-button-next {
  width: 1.4rem;
  height: 2.8rem;
  top: 31.8%;
  z-index: 1;
}
@media (min-width: 768px) {
  .gallery .gallery__slider .swiper-button-prev,
  .gallery .gallery__slider .swiper-button-next {
    display: none;
  }
}
.gallery .gallery__slider .swiper-button-prev:after,
.gallery .gallery__slider .swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 1.4rem;
  height: 2.8rem;
  margin: auto;
}
.gallery .gallery__slider .swiper-button-next,
.gallery .gallery__slider .swiper-rtl .swiper-button-prev {
  right: 5px;
  left: auto;
}
.gallery .gallery__slider .swiper-button-prev,
.gallery .gallery__slider .swiper-rtl .swiper-button-next {
  left: 5px;
  right: auto;
}
.gallery .gallery__slider .swiper-button-prev:after {
  background-image: url(../images/arrow-prev.svg);
}
.gallery .gallery__slider .swiper-button-next:after {
  background-image: url(../images/arrow-next.svg);
}
.gallery .gallery__slider .swiper-slide img {
  height: auto;
  width: 100%;
}

.home-class {
  background: #FFFAF8;
  padding: 12.2rem 2rem 12.1rem;
  position: relative;
}
@media (max-width: 767px) {
  .home-class {
    padding: 6.6rem 1.6rem 7rem;
  }
}
.home-class::before {
  position: absolute;
  content: "";
  background-image: url(../images/top_class_illust01.svg);
  background-size: contain;
  width: 47.8rem;
  height: 44.1rem;
  top: 16.8rem;
  left: 0;
}
@media (max-width: 767px) {
  .home-class::before {
    background-image: url(../images/top_class_illust01_sp.svg);
    top: 1rem;
    width: 13.5rem;
    height: 16.6rem;
  }
}
.home-class::after {
  position: absolute;
  content: "";
  background-image: url(../images/top_class_illust02.svg);
  background-size: contain;
  width: 46.7rem;
  height: 14.1rem;
  bottom: 0.6rem;
  right: 0;
}
@media (max-width: 767px) {
  .home-class::after {
    background-image: url(../images/top_class_illust02_sp.svg);
    width: 18.8rem;
    height: 6.3rem;
    bottom: 2.1rem;
  }
}
.home-class .class__list {
  gap: 3.4722222222vw;
  margin-top: 9.2rem;
}
@media (min-width:1440px) {
  .home-class .class__list {
    gap: 5rem;
  }
}
@media (max-width: 767px) {
  .home-class .class__list {
    margin-top: 3rem;
    gap: 5.4rem;
  }
}
.home-class .class__list .list-title {
  text-align: center;
  color: #202B60;
  font-size: 2.4rem;
  letter-spacing: 0;
  margin-top: 2.1rem;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 767px) {
  .home-class .class__list .list-title {
    font-size: 2rem;
    margin-top: 2rem;
  }
}
.home-class .class__list p {
  max-width: 52.25rem;
  margin: 1.4rem auto 0;
  font-weight: 400;
}
@media (max-width: 767px) {
  .home-class .class__list p {
    margin-top: 1rem;
    line-height: 180%;
  }
}
.home-class .class-banner__list {
  max-width: 95rem;
  margin: 7.6rem auto 0;
  gap: 3.4722222222vw;
  position: relative;
  z-index: 1;
}
@media (min-width:1440px) {
  .home-class .class-banner__list {
    gap: 5rem;
  }
}
@media (max-width: 767px) {
  .home-class .class-banner__list {
    gap: 2rem;
    margin-top: 4rem;
    max-width: 31.3rem;
  }
}

.schedule {
  padding: 9.8rem 2rem 0;
}
@media (max-width: 767px) {
  .schedule {
    padding: 2.8rem 0 0;
  }
}
.schedule .section-title {
  text-align: center;
}
@media (max-width: 767px) {
  .schedule .section-title .en img {
    max-width: 20.3rem;
  }
}
@media (max-width: 767px) {
  .schedule .section-title .ja {
    margin-top: 1.6rem;
    letter-spacing: 0;
  }
}
.schedule .schedule__img {
  margin-top: 6.3rem;
}
@media (max-width: 767px) {
  .schedule .schedule__img {
    margin-top: 2.4rem;
    padding: 2.9rem 2rem 2.3rem;
    background: #F7F7F7 2rem;
  }
}

.class-intro {
  padding: 16.1rem 2rem 12rem;
}
@media (max-width: 767px) {
  .class-intro {
    padding: 5.7rem 0 0;
  }
}
.class-intro .section-title {
  margin-bottom: 6.2rem;
}
@media (max-width: 767px) {
  .class-intro .section-title {
    margin-bottom: 3.7rem;
  }
}
.class-intro .class-info__head {
  margin-bottom: 6rem;
  padding: 7.9rem 5rem 7.2rem;
  background-size: cover;
}
@media (max-width: 767px) {
  .class-intro .class-info__head {
    padding: 5.8rem 3rem 3.5rem;
    margin-bottom: 2.5rem;
  }
}
.class-intro .class-info__head .flex {
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .class-intro .class-info__head .flex {
    align-items: center;
  }
}
.class-intro .class-info__head .head-title {
  text-align: center;
}
.class-intro .class-info__head .head-title .en,
.class-intro .class-info__head .head-title .ja {
  display: block;
}
.class-intro .class-info__head .head-title .ja {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.1em;
  margin-top: 1.4rem;
}
@media (max-width: 767px) {
  .class-intro .class-info__head .head-title .ja {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
}
.class-intro .class-info__head p {
  max-width: 60rem;
  line-height: 200%;
  width: 100%;
}
@media (max-width: 767px) {
  .class-intro .class-info__head p {
    max-width: 100%;
    margin-top: 2.3rem;
  }
}
.class-intro .class-intro__list {
  gap: 3.4722222222vw;
}
@media (min-width:1440px) {
  .class-intro .class-intro__list {
    gap: 5rem;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__list {
    padding: 0 2rem;
    gap: 6.1rem;
  }
}
.class-intro .class-intro__list .list-title {
  color: #202B60;
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 4.7rem;
}
@media (max-width:1200px) {
  .class-intro .class-intro__list .list-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__list .list-title {
    margin-top: 1.4rem;
    font-size: 1.8rem;
  }
}
.class-intro .class-intro__list .list-title .small {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .class-intro .class-intro__list .list-title .small {
    font-size: 1.4rem;
  }
}
.class-intro .class-intro__list p {
  margin-top: 2.1rem;
}
@media (max-width: 767px) {
  .class-intro .class-intro__list p {
    margin-top: 1.3rem;
  }
}
.class-intro .class-intro__list .class-intro__list__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.class-intro .class-intro__list .class-intro__list__title .list-title {
  margin-top: 0;
}
.class-intro .class-intro__list .class-intro__list__detail {
  display: flex;
  align-items: center;
  gap: 2.0833333333vw;
}
@media (min-width:1440px) {
  .class-intro .class-intro__list .class-intro__list__detail {
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__list .class-intro__list__detail {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 2.8rem;
    gap: 1.2rem;
  }
}
.class-intro .class-intro__list .class-week,
.class-intro .class-intro__list .class-studio {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.6rem;
  height: 4.6rem;
  font-weight: 700;
}
@media (max-width:1200px) {
  .class-intro .class-intro__list .class-week,
  .class-intro .class-intro__list .class-studio {
    padding: 0 1rem;
    font-size: 1.3rem;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .class-intro .class-intro__list .class-week,
  .class-intro .class-intro__list .class-studio {
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__list .class-week,
  .class-intro .class-intro__list .class-studio {
    width: 100%;
    padding: 0 1.6rem;
    font-size: 1.6rem;
  }
}
.class-intro .class-intro__list .class-studio {
  font-size: 1.4rem;
  background: #fff;
  border: solid 2px #202B60;
  color: #202B60;
  padding-left: 5.5rem;
  position: relative;
}
@media (min-width:768px) and (max-width: 1024px) {
  .class-intro .class-intro__list .class-studio {
    font-size: 1.3rem;
    padding-left: 4.7rem;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__list .class-studio {
    font-size: 1.6rem;
    justify-content: center;
    padding: 0 0 0 1.7rem;
    text-align: center;
  }
}
.class-intro .class-intro__list .class-studio::after {
  position: absolute;
  content: "";
  background-image: url(../images/icon-shoes.svg);
  background-size: contain;
  width: 2.4rem;
  height: 2.8rem;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  left: 1.5rem;
}
@media (max-width: 767px) {
  .class-intro .class-intro__list .class-studio::after {
    left: 1.2rem;
  }
}
.class-intro .class-intro__list .flex {
  align-items: flex-start;
  gap: 3.4722222222vw;
  justify-content: space-between;
}
@media (min-width:1440px) {
  .class-intro .class-intro__list .flex {
    gap: 5rem;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__list .flex {
    gap: 1.7rem;
  }
}
.class-intro .class-intro__list .flex .list-img {
  max-width: 38.1944444444vw;
  width: 100%;
  flex-shrink: 0;
}
@media (min-width:1440px) {
  .class-intro .class-intro__list .flex .list-img {
    max-width: 55rem;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .class-intro .class-intro__list .flex .list-img {
    max-width: auto;
    width: 33%;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__list .flex .list-img {
    max-width: 100%;
  }
}
.class-intro .class-intro__list .flex .class-intro__list__right {
  max-width: 60rem;
}
@media (min-width:768px) and (max-width: 1024px) {
  .class-intro .class-intro__list .flex .class-intro__list__right {
    max-width: auto;
    width: 62%;
  }
}
.class-intro .grid-2 .class-intro__list__title {
  margin-top: 4.1rem;
}
@media (max-width: 767px) {
  .class-intro .grid-2 .class-intro__list__title {
    margin-top: 2rem;
  }
}
.class-intro .class-intro__list--row .class-intro__list__detail {
  margin-top: 0;
}
@media (max-width: 767px) {
  .class-intro .class-intro__list--row .class-intro__list__detail {
    margin-top: 2.9rem;
  }
}
@media (min-width: 768px) {
  .class-intro .class-intro__list--row .class-intro__list__right {
    height: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .class-intro .class-intro__list--row p {
    margin-top: 3rem;
  }
}
.class-intro .reserve-btn {
  color: #fff;
  margin-top: 0;
  padding: 0.6rem 2.7rem;
}
@media (max-width:1200px) {
  .class-intro .reserve-btn {
    padding: 0.6rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .class-intro .reserve-btn {
    max-width: 30rem;
    width: 100%;
    height: 8rem;
    margin: 2.9rem auto 0;
    font-size: 1.6rem;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.class-intro .class-intro__adult .class-info__head {
  background-image: url(../images/class_adult_title_pc.webp);
}
@media (max-width: 767px) {
  .class-intro .class-intro__adult .class-info__head {
    background-image: url(../images/class_adult_title_sp.webp);
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__adult .head-title .en img {
    max-width: 25.2rem;
  }
}
.class-intro .class-intro__adult .class-week {
  border: solid 2px #202B60;
  color: #202B60;
}
.class-intro .class-intro__adult .class-week {
  background: #E5F1FF;
}
.class-intro .class-intro__adult .class-intro__list--row {
  margin-top: 6rem;
}
@media (min-width: 768px) {
  .class-intro .class-intro__adult .class-intro__list--row li {
    border-top: solid 1px #C6C6C6;
    padding: 6rem 0;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__adult .class-intro__list--row li {
    margin-bottom: 6.8rem;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__adult .class-intro__list--row li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .class-intro .class-intro__adult .grid-2 p {
    min-height: 15.9rem;
  }
}
.class-intro .class-intro__adult .reserve-btn {
  background: #202B60;
}
.class-intro .class-intro__kids {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .class-intro .class-intro__kids {
    margin-top: 10rem;
  }
}
.class-intro .class-intro__kids .class-info__head {
  background-image: url(../images/class_kids_title_pc.webp);
}
@media (min-width: 768px) {
  .class-intro .class-intro__kids .class-info__head {
    padding: 8.2rem 0 7.2rem 8rem;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__kids .class-info__head {
    background-image: url(../images/class_kids_title_sp.webp);
    padding: 9.8rem 2rem 6.6rem;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__kids .class-info__head .head-title .en img {
    max-width: 21.2rem;
  }
}
.class-intro .class-intro__kids .class-info__head .head-title .ja {
  color: #D97A7A;
}
.class-intro .class-intro__kids .class-intro__list .list-title {
  color: #D97A7A;
}
.class-intro .class-intro__kids .class-week {
  border: solid 2px #D97A7A;
  color: #D97A7A;
  background: #FFFAF8;
}
.class-intro .class-intro__kids .class-intro__list--row {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .class-intro .class-intro__kids .class-intro__list--row {
    margin-top: 3.8rem;
  }
}
@media (min-width: 768px) {
  .class-intro .class-intro__kids .class-intro__list--row li {
    border-bottom: solid 1px #C6C6C6;
    padding: 6rem 0;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__kids .class-intro__list--row li {
    margin-bottom: 6.8rem;
  }
}
@media (max-width: 767px) {
  .class-intro .class-intro__kids .class-intro__list--row li:last-child {
    margin-bottom: 0;
  }
}
.class-intro .class-intro__kids .class-intro__list--row li:first-child {
  padding-top: 0;
}
.class-intro .class-intro__kids .grid-2 {
  margin-top: 6rem;
}
@media (min-width: 768px) {
  .class-intro .class-intro__kids .grid-2 p {
    min-height: 16.6rem;
  }
}
.class-intro .class-intro__kids .reserve-btn {
  background: #DD6261;
}

.reservation {
  background-image: url(../images/ft-banner_back.webp);
  background-size: cover;
  background-position: center;
  padding: 12.1rem 2rem 9.4rem;
}
@media (max-width: 767px) {
  .reservation {
    background-image: none;
    padding: 5.7rem 2rem 6.1rem;
  }
}
@media (max-width: 767px) {
  .reservation .section-title .en img {
    max-width: 26.4rem;
  }
}
@media (max-width: 767px) {
  .reservation .section-title .ja {
    margin-top: 1rem;
    letter-spacing: 0.05em;
  }
}
.reservation .reservation__list {
  background: #fff;
  padding: 3rem 3.1rem;
  gap: 2.0833333333vw;
  border-radius: 4px;
  margin: 6.6rem auto 0;
  max-width: 106rem;
}
@media (min-width:1440px) {
  .reservation .reservation__list {
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .reservation .reservation__list {
    margin-top: 2rem;
    gap: 1rem;
    padding: 0;
  }
}

.home-studio {
  padding: 13.4rem 2rem 8.3rem;
}
@media (max-width: 767px) {
  .home-studio {
    padding: 5.5rem 1.5rem 0;
  }
}
@media (max-width: 767px) {
  .home-studio .section-title .en img {
    max-width: 15.8rem;
  }
}
@media (max-width: 767px) {
  .home-studio .section-title .ja {
    font-size: 1.6rem;
    margin-top: 0;
  }
}
.home-studio .studio__list {
  gap: 2.7777777778vw;
  margin-top: 7rem;
}
@media (min-width:1440px) {
  .home-studio .studio__list {
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .home-studio .studio__list {
    gap: 4rem;
    margin-top: 2rem;
  }
}
.home-studio .studio__list .list-img {
  max-width: 27rem;
  width: 100%;
}
@media (max-width: 767px) {
  .home-studio .studio__list .list-img {
    max-width: 100%;
  }
}
.home-studio .studio__list .list-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 160%;
}
@media (min-width: 768px) {
  .home-studio .studio__list .list-title {
    min-height: 10.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .home-studio .studio__list .list-title {
    margin-top: 1.5rem;
  }
}
.home-studio .studio__list p {
  font-size: 1.4rem;
  line-height: 180%;
}
@media (max-width: 767px) {
  .home-studio .studio__list p {
    margin-top: 0.9rem;
    line-height: 160%;
  }
}

.studio {
  padding: 11rem 2rem 10rem;
}
@media (max-width: 767px) {
  .studio {
    padding: 2rem 0 0;
  }
}
.studio .studio__item {
  margin-bottom: 9.2rem;
}
@media (max-width: 767px) {
  .studio .studio__item {
    margin-bottom: 4rem;
  }
}
.studio .studio__item:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .studio .studio__item .studio__item__inner {
    padding: 0 1.5rem;
  }
}
.studio .section-head {
  background: #FFFAF8;
  color: #DD6261;
  font-weight: 700;
  font-size: 3.2rem;
  padding: 1rem 2rem 1.4rem;
  border-radius: 4px;
  line-height: 160%;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .studio .section-head {
    font-size: 2.4rem;
    padding: 2px 1rem 5px;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 767px) {
  .studio .section-head .small {
    font-size: 1.8rem;
  }
}
.studio .studio__access {
  align-items: flex-start;
  justify-content: space-between;
  gap: 6.1rem;
}
@media (max-width: 767px) {
  .studio .studio__access {
    gap: 1.3rem;
  }
}
.studio .studio__access .studio__access__map {
  max-width: 60rem;
  width: 100%;
}
.studio .studio__access .studio__access__map iframe {
  width: 100%;
  height: 36.3rem;
}
@media (max-width: 767px) {
  .studio .studio__access .studio__access__map iframe {
    height: 20rem;
  }
}
.studio .studio__access__addess {
  max-width: 53.9rem;
  width: 100%;
}
.studio .studio__access__addess address {
  font-size: 2rem;
  margin-top: 3.8rem;
  line-height: 160%;
}
@media (max-width: 767px) {
  .studio .studio__access__addess address {
    font-size: 1.5rem;
    margin-top: 1.7rem;
  }
}
.studio .studio__list {
  margin-top: 5.2rem;
}
@media (min-width: 768px) {
  .studio .studio__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .studio .studio__list {
    margin-top: 4.6rem;
  }
}
.studio .studio__list p {
  padding: 2rem 0;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .studio .studio__list p {
    font-size: 1.3rem;
    margin-top: 1.2rem;
    padding: 0 1.5rem 0;
    min-height: 12.2rem;
  }
}
@media (min-width: 768px) {
  .studio .studio__list--grid-2 {
    max-width: 79rem;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.profile {
  padding: 0 2rem;
}
.profile .content-width {
  padding: 9.9rem 0 8rem;
  border-bottom: solid 1px #C6C6C6;
}
@media (max-width: 767px) {
  .profile .content-width {
    padding: 2.2rem 0 4.5rem;
  }
}
.profile .flex {
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .profile .flex {
    flex-direction: column-reverse;
    gap: 0.9rem;
  }
}
.profile .profile__text {
  max-width: 60rem;
}
@media (min-width: 768px) {
  .profile .profile__text {
    padding-top: 2.3rem;
  }
}
.profile .profile__text p {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #202B60;
  line-height: 240%;
}
.profile .profile__text p:last-of-type {
  margin-bottom: 0;
  line-height: 180%;
}
.profile .profile__img {
  max-width: 55rem;
  width: 100%;
}
.profile .profile-title {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-weight: 400;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .profile .profile-title {
    gap: 1.6rem;
    margin-bottom: 1.7rem;
  }
}
.profile .profile-title .kanji {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .profile .profile-title .kanji {
    line-height: 160%;
    font-size: 2.8rem;
  }
}
.profile .profile-title .kana {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .profile .profile-title .kana {
    font-size: 1.6rem;
  }
}

.message {
  padding: 10.5rem 0 14.7rem;
}
@media (max-width: 767px) {
  .message {
    padding: 7rem 0 0;
  }
}
.message .section-title {
  text-align: center;
}
@media (max-width: 767px) {
  .message .section-title .en img {
    max-width: 17.4rem;
  }
}
.message .message__top {
  position: relative;
}
.message .message__top::before {
  position: absolute;
  content: "";
  background-image: url(../images/message_illust01_pc.svg);
  background-size: contain;
  height: 27.0138888889vw;
  width: 9.9305555556vw;
  top: 2.5rem;
  left: 0;
}
@media (min-width:1440px) {
  .message .message__top::before {
    height: 38.9rem;
    width: 14.3rem;
  }
}
@media (max-width: 767px) {
  .message .message__top::before {
    background-image: url(../images/message_illust01_sp.svg);
    height: 31.1rem;
    width: 6.7rem;
    top: 38rem;
  }
}
.message .message__top::after {
  position: absolute;
  content: "";
  background-image: url(../images/message_illust02_pc.svg);
  background-size: contain;
  height: 27.0138888889vw;
  width: 9.9305555556vw;
  top: 2.5rem;
  right: 0;
}
@media (min-width:1440px) {
  .message .message__top::after {
    height: 38.9rem;
    width: 14.3rem;
  }
}
@media (max-width: 767px) {
  .message .message__top::after {
    background-image: url(../images/message_illust02_sp.svg);
    height: 31.1rem;
    width: 7.5rem;
    top: 3.2rem;
  }
}
.message p {
  margin: 6.8rem auto 0;
  font-size: 1.5rem;
  color: #202B60;
  line-height: 240%;
  max-width: 75rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .message p {
    font-size: 1.4rem;
    line-height: 220%;
    margin-top: 2.9rem;
    padding: 0 2rem;
  }
}
.message p:last-of-type {
  margin-bottom: 0;
}
.message .message__img {
  background: #FFFAF8;
  margin-top: 12.3rem;
}
@media (max-width: 767px) {
  .message .message__img {
    margin-top: 4.8rem;
    padding: 3rem 2rem 7.7rem;
  }
}
.message .message__img .content-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}
@media (max-width: 767px) {
  .message .message__img .content-width {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.message .message__img .message-img {
  position: relative;
}
@media (max-width: 767px) {
  .message .message__img .message-img {
    width: 48%;
  }
}
@media (min-width: 768px) {
  .message .message__img .message-img:nth-of-type(1) {
    top: 0.6rem;
  }
}
@media (min-width: 768px) {
  .message .message__img .message-img:nth-of-type(2) {
    top: -1.5rem;
  }
}
@media (max-width: 767px) {
  .message .message__img .message-img:nth-of-type(2) {
    margin-bottom: -8.7rem;
  }
}
@media (min-width: 768px) {
  .message .message__img .message-img:nth-of-type(3) {
    top: 0.6rem;
  }
}
@media (min-width: 768px) {
  .message .message__img .message-img:nth-of-type(4) {
    bottom: -2.98rem;
  }
}
@media (max-width: 767px) {
  .message .message__img .message-img:nth-of-type(4) {
    margin-bottom: -8.9rem;
  }
}

.contact {
  padding: 10rem 2rem 12.5rem;
}
@media (max-width: 767px) {
  .contact {
    padding: 2.3rem 0 0;
  }
}
.contact .section-text {
  text-align: center;
  line-height: 200%;
}
@media (max-width: 767px) {
  .contact .section-text {
    font-size: 1.5rem;
    text-align: left;
    padding: 0 1.6rem;
  }
}
.contact .contact__btn {
  margin-top: 8.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}
@media (max-width: 767px) {
  .contact .contact__btn {
    margin-top: 2.2rem;
    gap: 1.2rem;
  }
}
.contact .contact__btn .btn {
  border-radius: 3.5rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1428571429;
  padding: 1.2rem 2.4rem;
}
@media (max-width: 767px) {
  .contact .contact__btn .btn {
    font-size: 1.3rem;
    line-height: 1.2307692308;
    padding: 1.2rem 3.2rem;
    text-align: center;
  }
}
.contact .contact__btn .btn--navy {
  background: #202B60;
}
.contact .contact__btn .btn--pink {
  background: #DD6261;
}
.contact .contact__form {
  background: #FFFAF8;
  padding: 8.1rem 2rem 8rem;
  max-width: 83rem;
  margin: 8rem auto 0;
}
@media (max-width: 767px) {
  .contact .contact__form {
    margin-top: 3rem;
    padding: 2rem 1.6rem 8rem;
  }
}
.contact .form-table {
  max-width: 59.9rem;
  margin: 0 auto;
  width: 100%;
}
.contact .form-table tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .contact .form-table tr {
    margin-bottom: 2rem;
  }
}
.contact .form-table tr:last-of-type {
  margin-bottom: 0;
}
.contact .form-table .select-wrap {
  position: relative;
}
.contact .form-table .select-wrap::after {
  position: absolute;
  content: "";
  background-image: url(../images/select-arrow.svg);
  background-size: contain;
  width: 1.6rem;
  height: 1.6rem;
  top: 2.9rem;
  bottom: 50%;
  transform: translateY(-50%);
  right: 1.8rem;
}
.contact .form-table th {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .contact .form-table th {
    line-height: 1.875;
    gap: 0.9rem;
  }
}
.contact .form-table td {
  width: 100%;
}
.contact .required {
  background: #DD6261;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  padding: 0.5rem;
  border-radius: 4px;
  display: inline-block;
  border-radius: 5px;
}
.contact select,
.contact textarea,
.contact .input-text {
  width: 100%;
  padding: 8px 15px;
  display: block;
  border: solid 1px #E1E1E1;
  border-radius: 5px;
  background: #fff;
  font-size: 16px;
  background-color: white;
}
@media (max-width: 767px) {
  .contact select,
  .contact textarea,
  .contact .input-text {
    padding: 10px 20px;
    text-align: left;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact input[type=date] {
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    width: 100%;
    box-sizing: border-box;
    height: 5.2rem;
    padding: 1.6rem 2rem;
    font-size: 1.6rem;
    line-height: 1.6rem;
    text-align: left;
    background-color: white;
  }
}
@media (max-width: 767px) {
  .contact input[type=date]::-webkit-date-and-time-value {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .contact input[type=date]::-webkit-inner-spin-button, .contact input[type=date]::-webkit-calendar-picker-indicator {
    margin-left: auto;
  }
}
.contact select,
.contact .input-text {
  height: 5.2rem;
  line-height: 1;
  color: #000;
}
.contact textarea {
  height: 20rem;
}
.contact textarea::-moz-placeholder, .contact input::-moz-placeholder {
  color: #A8A8A8;
}
.contact textarea::placeholder,
.contact input::placeholder {
  color: #A8A8A8;
}
.contact .submit-btn {
  display: block;
  width: 100%;
  height: 6rem;
  background: #DD6261;
  color: #fff;
  border-radius: 10rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.contact .submit-btn-wrap {
  max-width: 59.9rem;
  width: 100%;
  margin: 8rem auto 0;
}
@media (max-width: 767px) {
  .contact .submit-btn-wrap {
    max-width: 30rem;
    margin: 4.7rem auto 0;
  }
}

.contact-confirm .confirm__form {
  max-width: 60rem;
  margin: 0 auto;
  background: #fff;
}
.contact-confirm .confirm-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 160%;
  color: #202B60;
  padding-bottom: 3.8rem;
  border-bottom: solid 1px #202B60;
}
@media (max-width: 767px) {
  .contact-confirm .confirm-title {
    font-size: 2.4rem;
    padding-bottom: 2rem;
  }
}
.contact-confirm .form-table {
  margin-top: 3.9rem;
}
@media (max-width: 767px) {
  .contact-confirm .form-table {
    margin-top: 2.1rem;
  }
}
.contact-confirm .form-table tr {
  gap: 1.2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .contact-confirm .form-table tr {
    margin-bottom: 2rem;
  }
}
.contact-confirm .form-table th {
  color: #252D3E;
}
.contact-confirm .form-table td {
  color: #505050;
}
@media (min-width: 768px) {
  .contact-confirm .form-table .required {
    background: #7B7B7B;
  }
}
.contact-confirm .form-table .textarea {
  min-height: 26.4rem;
}
@media (max-width: 767px) {
  .contact-confirm .form-table .textarea {
    font-size: 1.5rem;
    min-height: 17rem;
  }
}
.contact-confirm .confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  margin-top: 4.2rem;
}
@media (max-width: 767px) {
  .contact-confirm .confirm-btn {
    margin-top: 2.5rem;
    gap: 0;
    justify-content: space-between;
  }
}
.contact-confirm .submit-btn {
  display: block;
  width: 100%;
  height: 7rem;
  background: #DD6261;
  color: #fff;
  border-radius: 3.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .contact-confirm .submit-btn {
    font-size: 1.5rem;
    height: 4.2rem;
  }
}
.contact-confirm .submit-btn-wrap {
  max-width: 19.4rem;
  width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .contact-confirm .submit-btn-wrap {
    max-width: 13rem;
  }
}
.contact-confirm .back-btn {
  display: block;
  width: 100%;
  height: 7rem;
  background: #202B60;
  color: #fff;
  border-radius: 3.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .contact-confirm .back-btn {
    font-size: 1.5rem;
    height: 4.2rem;
  }
}
.contact-confirm .back-btn-wrap {
  max-width: 19.4rem;
  width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .contact-confirm .back-btn-wrap {
    max-width: 13rem;
  }
}

.contact-thanks {
  padding: 19.3rem 2rem 10.7rem;
}
@media (max-width: 767px) {
  .contact-thanks {
    padding: 3.3rem 1.7rem 5.3rem;
  }
}
.contact-thanks .thanks-title {
  text-align: center;
  color: #DD6261;
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .contact-thanks .thanks-title {
    font-size: 1.8rem;
    line-height: 160%;
  }
}
.contact-thanks p {
  text-align: center;
  margin-top: 8.1rem;
  line-height: 240%;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .contact-thanks p {
    text-align: left;
    font-size: 1.5rem;
    line-height: 180%;
    margin-top: 2.9rem;
  }
}

.fee {
  padding: 10.6rem 2rem 12.1rem;
}
@media (max-width: 767px) {
  .fee {
    padding: 3.2rem 1.6rem 0;
  }
}
.fee .section-title {
  margin-bottom: 5.5rem;
}
@media (max-width: 767px) {
  .fee .section-title {
    margin-bottom: 2.7rem;
  }
}
@media (max-width: 767px) {
  .fee .section-title .en img {
    max-width: 21.8rem;
  }
}
@media (max-width: 767px) {
  .fee .section-title .ja {
    margin-top: 1.6rem;
  }
}
.fee .fee__table {
  width: 100%;
  margin-bottom: 7.9rem;
  border-spacing: 0;
}
@media (max-width: 767px) {
  .fee .fee__table {
    margin-bottom: 6rem;
  }
}
.fee .fee__table .th-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.6rem 0 1.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.7rem;
}
@media (max-width: 767px) {
  .fee .fee__table .th-title {
    padding: 2.6rem 0 2.5rem;
    gap: 1.4rem;
  }
}
.fee .fee__table .th-head {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  width: 33.33%;
  padding: 4.8rem 0 3.9rem;
}
@media (max-width: 767px) {
  .fee .fee__table .th-head {
    font-weight: 400;
    padding: 2.8rem 0 2.9rem;
  }
}
.fee .fee__table .th-time {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  width: 33.33%;
  height: 9rem;
}
@media (max-width: 767px) {
  .fee .fee__table .th-time {
    width: 50%;
    font-size: 1.5rem;
    padding: 1.2rem 0 1.1rem;
  }
}
.fee .fee__table .th-time .small {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .fee .fee__table .th-time .small {
    font-size: 1.2rem;
    line-height: 160%;
    display: block;
  }
}
.fee .fee__table .td-price {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  width: 33.33%;
}
@media (max-width: 767px) {
  .fee .fee__table .td-price {
    font-size: 2rem;
    width: 50%;
    padding: 1.2rem 0 1.4rem;
    height: 9rem;
  }
}
.fee .fee__table .td-price .small {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .fee .fee__table .td-price .small {
    font-size: 1.2rem;
    line-height: 160%;
    display: block;
  }
}
@media (max-width: 767px) {
  .fee .fee__table .td-price .small-10 {
    font-size: 1rem;
  }
}
.fee .fee__table:last-of-type {
  margin-bottom: 0;
}
.fee .fee__table--adult .th-title {
  background: #202B60;
}
@media (max-width: 767px) {
  .fee .fee__table--adult .th-title img {
    max-width: 9.7rem;
    width: 100%;
  }
}
.fee .fee__table--adult .th-head {
  background: #4B6596;
  border-bottom: solid 1px #202B60;
  border-left: solid 1px #202B60;
}
@media (max-width: 767px) {
  .fee .fee__table--adult .th-head {
    border-bottom: none;
  }
}
.fee .fee__table--adult .th-time {
  background: #E5F1FF;
  border-bottom: solid 1px #202B60;
}
@media (max-width: 767px) {
  .fee .fee__table--adult .th-time {
    border-left: solid 1px #202B60;
  }
}
.fee .fee__table--adult .td-price {
  border-bottom: solid 1px #202B60;
  border-right: solid 1px #202B60;
}
.fee .fee__table--adult .reserve-btn {
  color: #202B60;
}
.fee .fee__table--kids {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .fee .fee__table--kids {
    border-bottom: solid 1px #B15252;
  }
}
.fee .fee__table--kids .th-title {
  background: #D97A7A;
}
@media (min-width: 768px) {
  .fee .fee__table--kids .th-title {
    padding: 1.6rem 0 1rem;
  }
}
@media (max-width: 767px) {
  .fee .fee__table--kids .th-title {
    border-top: solid 1px #B15252;
    border-right: solid 1px #B15252;
    border-left: solid 1px #B15252;
    gap: 0.6rem;
  }
}
@media (max-width: 767px) {
  .fee .fee__table--kids .th-title img {
    max-width: 7.2rem;
    width: 100%;
  }
}
.fee .fee__table--kids .th-head {
  background: #DB8C8C;
  border-bottom: solid 1px #B15252;
  border-left: solid 1px #B15252;
}
@media (min-width: 768px) {
  .fee .fee__table--kids .th-head {
    padding: 3.2rem 0 3.2rem;
  }
}
@media (max-width: 767px) {
  .fee .fee__table--kids .th-head {
    border-right: solid 1px #B15252;
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  .fee .fee__table--kids .th-head--reserve {
    padding: 5.1rem 0 3.3rem;
  }
}
.fee .fee__table--kids .th-time {
  background: #F4E1E4;
  border-bottom: solid 1px #B15252;
}
@media (max-width: 767px) {
  .fee .fee__table--kids .th-time {
    border-left: solid 1px #B15252;
    border-bottom: none;
  }
}
.fee .fee__table--kids .td-price {
  border-bottom: solid 1px #B15252;
  border-right: solid 1px #B15252;
}
@media (max-width: 767px) {
  .fee .fee__table--kids .td-price {
    border-bottom: none;
  }
}
.fee .fee__table--kids .reserve-btn {
  color: #DD6261;
}

.reserve-btn {
  background: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.8rem 3.2rem;
  border-radius: 2.1rem;
  margin: 2.6rem auto 0;
  display: inline-block;
}
@media (max-width:1200px) {
  .reserve-btn {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .reserve-btn {
    margin: 2rem auto 0;
    max-width: 30rem;
    width: 100%;
    font-size: 1.6rem;
    padding: 1.7rem 0;
    border-radius: 3rem;
  }
}

.faq {
  padding: 12.1rem 2rem 9.9rem;
}
@media (max-width: 767px) {
  .faq {
    padding: 2.7rem 2rem 0;
  }
}
.faq .question-width {
  max-width: 95rem;
  margin: 0 auto;
}
.faq .question__item {
  margin-bottom: 1.3rem;
}
@media (max-width: 767px) {
  .faq .question__item {
    margin-bottom: 1.5rem;
  }
}
.faq .question__item:last-of-type {
  margin-bottom: 0;
}
.faq .question {
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  background: #F7F7F7;
  padding: 2.8rem 0 3.3rem 3rem;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .faq .question {
    padding: 2rem 1.6rem;
  }
}
.faq .question:before, .faq .question:after {
  position: absolute;
  content: "";
  background: #DD6261;
  transform: translateY(-50%);
  top: 50%;
  right: 3.5rem;
  width: 2.8rem;
  height: 1px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .faq .question:before, .faq .question:after {
    right: 1.1rem;
  }
}
.faq .question:after {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s;
}
.faq .question .q-title {
  font-weight: 700;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  color: #202B60;
}
@media (max-width: 767px) {
  .faq .question .q-title {
    font-size: 1.6rem;
    gap: 1.6rem;
    max-width: 26.4rem;
    width: 100%;
  }
}
.faq .q,
.faq .a {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 700;
  font-size: 3.2rem;
}
.faq .q {
  color: #202B60;
}
.faq .a {
  color: #DD6261;
}
.faq .answer {
  display: none;
  padding: 2.7rem 3.3rem 2.5rem 3rem;
  border-top: solid 1px #C6C6C6;
}
@media (max-width: 767px) {
  .faq .answer {
    padding: 2rem 1.6rem 3.5rem;
  }
}
.faq .answer__text {
  display: flex;
  align-items: flex-start;
  gap: 2.8rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .faq .answer__text {
    gap: 1.7rem;
    font-size: 1.5rem;
  }
}
.faq .answer__text p {
  max-width: 82.8rem;
  width: 100%;
}
@media (max-width: 767px) {
  .faq .answer__text p {
    max-width: 26.9rem;
  }
}

.question.open {
  background: #fff;
}
.question.open:before, .question.open:after {
  background: #202B60;
}
.question.open::before {
  transform: rotate(-45deg);
}
.question.open:after {
  transform: rotate(45deg);
}

.footer__banner {
  background: #DD6261;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__banner {
    display: none;
  }
}
.footer__banner a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.footer {
  background: #1B2233;
  color: #fff;
  padding: 7rem 2rem 3.5rem;
}
@media (max-width: 767px) {
  .footer {
    padding: 2.1rem 2rem 7.5rem;
  }
}
.footer a {
  color: #fff;
}
.footer .footer__logo {
  max-width: 13rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer .footer__logo {
    margin: 0 auto 0 4.6rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__logo {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.3rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__logo a {
    max-width: 13rem;
    width: 100%;
  }
}
.footer .footer__top__flex {
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer .footer__top__flex {
    padding-left: 2.7rem;
  }
}
.footer .footer__left {
  padding-right: 5rem;
  border-right: solid 1px #C6C6C6;
}
@media (max-width: 767px) {
  .footer .footer__left {
    border-right: none;
    padding-right: 0;
  }
}
.footer .footer__left .noto-serif {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin-top: 0.7rem;
  text-align: center;
}
@media (max-width: 767px) {
  .footer .footer__left .noto-serif {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-align: left;
    margin-top: 0;
  }
}
.footer .footer__left .footer__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
@media (max-width: 767px) {
  .footer .footer__left .footer__mail {
    gap: 0.6rem;
    margin-top: 1.1rem;
  }
}
.footer .footer__left .footer__mail .icon {
  width: 1.2rem;
}
@media (max-width: 767px) {
  .footer .footer__left .footer__mail .icon {
    width: 1.4rem;
  }
}
.footer .footer__left .footer__mail a {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .footer .footer__left .footer__mail a {
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  .footer .footer__left .footer__mail a {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
}
.footer .footer__rignt {
  padding-left: 5rem;
  padding-top: 2.1rem;
}
@media (max-width: 767px) {
  .footer .footer__rignt {
    display: none;
  }
}
.footer .footer__menu {
  align-items: flex-start;
  gap: 5.8rem;
}
.footer .menu-list li {
  margin-bottom: 1.8rem;
}
.footer .menu-list li a {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
}
.footer .menu-list li .child-list {
  margin-top: 0.9rem;
}
.footer .menu-list li .child-list li {
  margin-bottom: 0.7rem;
}
.footer .menu-list li .child-list li a {
  font-size: 1.4rem;
  font-weight: 400;
}
.footer .menu-list li:last-child {
  margin-bottom: 0;
}
.footer .link-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 5.9rem;
}
@media (max-width: 767px) {
  .footer .link-list {
    gap: 1.9rem;
    margin-top: 2.4rem;
  }
}
.footer .copyright {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .footer .copyright {
    margin-top: 1.3rem;
  }
}

.not-found {
  text-align: center;
  padding-bottom: calc(100vh - 800px);
}
@media (min-width:768px) and (max-width: 1024px) {
  .not-found {
    padding-bottom: calc(100vh - 800px);
  }
}
@media (max-width: 767px) {
  .not-found {
    padding-bottom: calc(100vh - 600px);
  }
}/*# sourceMappingURL=style.css.map */