@charset "UTF-8";
/* PCとSPの適用切り替え
--------------------------------- */
/* メディアクエリ調整関数
--------------------------------- */
/* 画面サイズ
--------------------------------- */
/* moreボタン
--------------------------------- */
/* カラー
--------------------------------- */
/* リセット
--------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: 400;
  background-color: #3E3A39;
  scroll-behavior: smooth;
}

body, div, section, h1, h2, h3, h4, h5, h6, p, ul, ol, li, span, figure {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.ff-dnp {
  font-family: dnp-shuei-gothic-gin-std;
}

ul, li {
  list-style: none;
}

img, figure {
  width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

a, a:visited {
  text-decoration: none;
  color: inherit;
}

/* ボタン
--------------------------------- */
.btn {
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover {
  opacity: 0.9;
}

/* 設定
--------------------------------- */
@media (min-width: 768px) {
  .link-disable-pc {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .link-disable-sp {
    pointer-events: none;
  }
}
html {
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%;
}

@media (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
html, body {
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.anchor {
  margin-top: -5rem;
  padding-top: 5rem;
}

@media (max-width: 767px) {
  .anchor {
    margin-top: max(-4rem, -56px);
    padding-top: min(4rem, 56px);
  }
}
/* pc sp
--------------------------------- */
.dp-pc {
  display: block;
}

.dp-sp {
  display: none;
}

.dp-pc-ib {
  display: inline-block;
}

.dp-pc-im {
  display: block !important;
}

.dp-sp-im {
  display: none !important;
}

@media (max-width: 767px) {
  .dp-pc {
    display: none;
  }
  .dp-pc-ib {
    display: none;
  }
  .dp-sp {
    display: block;
  }
  .dp-pc-im {
    display: none !important;
  }
  .dp-sp-im {
    display: block !important;
  }
}
.dp-n {
  display: none;
}

.dp-n-im {
  display: none !important;
}

/* font
--------------------------------- */
.ff-noto {
  font-family: "Noto Sans JP", sans-serif;
}

.ff-maru {
  font-family: "Zen Maru Gothic", sans-serif;
}

/* アニメーション
--------------------------------- */
.triger-by-scroll-in {
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 0.5s, transform 0.5s;
}
.triger-by-scroll-in.on {
  opacity: 1;
  transform: translateY(0);
}

/* header
--------------------------------- */
.header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 11.8rem;
  transition: all 0.3s;
}
.header.scrolled {
  height: 9.8rem;
  background-color: rgba(0, 0, 0, 0.8);
}
.header .header__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1146px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
}
.header .header__inner .header-login {
  display: none;
}
.header .header__inner .header__logo {
  z-index: 10;
  width: 18.3rem;
}
.header .header__inner .header-nav__display {
  z-index: 0;
  display: flex;
  align-items: center;
  column-gap: 3rem;
  margin-left: auto;
  margin-right: 7rem;
}
.header .header__inner .header-nav__display a {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  .header .header__inner .header-nav__display a:hover {
    opacity: 0.7;
  }
}
.header .header__inner .hamburger {
  z-index: 10;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
}
.header .header__inner .hamburger::before {
  position: absolute;
  content: "menu";
  bottom: 0;
  font-size: 1.4rem;
  font-weight: 400;
  transition: all 0.3s;
}
.header .header__inner .hamburger span {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.header .header__inner .hamburger span::before, .header .header__inner .hamburger span::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
  transition: all 0.3s;
}
.header .header__inner .hamburger span::before {
  top: 0;
}
.header .header__inner .hamburger span::after {
  top: 1rem;
}
.header .header__inner .hamburger.active::before {
  content: "close";
  bottom: -1rem;
}
.header .header__inner .hamburger.active span::before {
  top: 1rem;
  transform: translate(-50%, 0) rotate(30deg);
}
.header .header__inner .hamburger.active span::after {
  transform: translate(-50%, 0) rotate(-30deg);
}
.header .header__inner .hamburger.active ~ .header-nav {
  right: 0;
}
.header .header__inner .header-nav {
  z-index: 9;
  position: absolute;
  top: 0;
  right: -100%;
  display: flex;
  width: 100%;
  height: 100svh;
  background-color: #3E3A39;
  transition: all 0.3s;
}
.header .header__inner .header-nav .header-nav__container {
  width: 103rem;
  height: 32rem;
  margin: 0 auto;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list {
  position: relative;
  top: 23.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 5.5rem;
  height: 100%;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item {
  width: 22rem;
  flex-grow: 0;
  flex-shrink: 1;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item a {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  cursor: pointer;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item a span {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member {
  width: 32.4074074074%;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial a, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member a {
  position: relative;
  line-height: 1.1;
  font-weight: 200;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial a span, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member a span {
  margin-top: 1rem;
  font-weight: 300;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial a p, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member a p {
  position: relative;
  display: block;
  width: 13.3rem;
  font-size: 1.7rem;
  position: absolute;
  right: 0;
  top: 3.2rem;
  width: 42%;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial a p::before, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member a p::before {
  position: absolute;
  content: "";
  bottom: -0.8rem;
  left: 0;
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial a p::after, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member a p::after {
  position: absolute;
  content: "";
  bottom: -0.8rem;
  right: 0;
  transform: rotate(45deg);
  transform-origin: right center;
  display: block;
  width: 1rem;
  height: 0.1rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial a p, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member a p {
    width: 10.5rem;
    line-height: 1;
  }
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.mb100 {
  margin-bottom: 10rem;
}
.header .header__inner .header-nav .header-nav__container > .btn-trial,
.header .header__inner .header-nav .header-nav__container > .btn-member {
  display: none;
}
.header .header__inner .header-nav .header-nav__container .header-nav__note {
  position: absolute;
  bottom: 3rem;
  left: 7.2rem;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

@media (max-width: 767px) {
  .header {
    height: auto;
  }
  .header .header__inner {
    padding: 3.3rem 2.5rem 2rem;
  }
  .header .header__inner .header-login {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
  }
  .header .header__inner .header__logo {
    width: 9.56rem;
  }
  .header .header__inner .header__logo a {
    display: flex;
  }
  .header .header__inner .header-nav__display {
    display: none;
  }
  .header .header__inner .hamburger {
    width: 3.1rem;
    height: 3.2rem;
  }
  .header .header__inner .hamburger::before {
    font-size: 1.1rem;
  }
  .header .header__inner .hamburger span::before, .header .header__inner .hamburger span::after {
    height: 0.1rem;
  }
  .header .header__inner .header-nav {
    padding: 0 3rem 0 5rem;
    box-sizing: border-box;
  }
  .header .header__inner .header-nav .header-nav__container {
    position: relative;
    top: 13.5rem;
    width: 100%;
    height: calc(100svh - 14.5rem);
    padding-bottom: 2rem;
    overflow-y: scroll;
  }
  .header .header__inner .header-nav .header-nav__container .header-nav__list {
    top: 0;
    height: 35rem;
    row-gap: 3.5rem;
    margin-bottom: 8rem;
  }
  .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item {
    width: 50%;
  }
  .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item a {
    font-size: 1.9rem;
  }
  .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item a span {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member {
    display: none;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-trial,
  .header .header__inner .header-nav .header-nav__container > .btn-member {
    position: relative;
    display: block;
    width: 100%;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-trial a,
  .header .header__inner .header-nav .header-nav__container > .btn-member a {
    position: relative;
    font-size: 1.9rem;
    line-height: 1.1;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-trial a span,
  .header .header__inner .header-nav .header-nav__container > .btn-member a span {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-trial a p,
  .header .header__inner .header-nav .header-nav__container > .btn-member a p {
    position: relative;
    display: block;
    width: 13.3rem;
    font-size: 1.7rem;
    position: absolute;
    right: 0;
    top: 1.8rem;
    width: 13.5rem !important;
    font-size: 1.3rem;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-trial a p::before,
  .header .header__inner .header-nav .header-nav__container > .btn-member a p::before {
    position: absolute;
    content: "";
    bottom: -0.8rem;
    left: 0;
    display: block;
    width: 100%;
    height: 0.1rem;
    background-color: #fff;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-trial a p::after,
  .header .header__inner .header-nav .header-nav__container > .btn-member a p::after {
    position: absolute;
    content: "";
    bottom: -0.8rem;
    right: 0;
    transform: rotate(45deg);
    transform-origin: right center;
    display: block;
    width: 1rem;
    height: 0.1rem;
    background-color: #fff;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .header .header__inner .header-nav .header-nav__container > .btn-trial a p,
  .header .header__inner .header-nav .header-nav__container > .btn-member a p {
    width: 10.5rem;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .header .header__inner .header-nav .header-nav__container > .btn-trial {
    margin-bottom: 3rem;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-member {
    margin-bottom: 8rem;
  }
  .header .header__inner .header-nav .header-nav__container .header-nav__note {
    position: relative;
    bottom: 0;
    left: 0;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
  }
}
.header-form .header-form__inner {
  display: flex;
  justify-content: space-between;
  max-width: 972px;
  margin: 0 auto 15.1rem;
  padding: 5rem 1.5rem 0;
}
.header-form .header-form__inner .header-form__logo {
  display: flex;
  justify-content: flex-start;
}
.header-form .header-form__inner .header-form__logo a {
  display: block;
  width: 18.2rem;
}
.header-form .header-form__inner .header-form__contact p {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.header-form .header-form__inner .header-form__contact a {
  position: relative;
  padding-left: 2rem;
  font-family: dnp-shuei-gothic-gin-std;
  font-size: 1.8rem;
}
.header-form .header-form__inner .header-form__contact a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/parts/icon-phone.png) no-repeat center/contain;
}

.error404 .header-form .header-form__inner {
  justify-content: center;
}
.error404 .header-form .header-form__inner .header-form__contact {
  display: none;
}

@media (max-width: 767px) {
  .header-form .header-form__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    margin: 0 auto 7.36rem;
    padding-top: 3.5rem;
  }
  .header-form .header-form__inner .header-form__logo a {
    width: 11.1rem;
  }
  .header-form .header-form__inner .header-form__contact {
    text-align: center;
  }
  .header-form .header-form__inner .header-form__contact p {
    font-size: 0.9rem;
  }
  .header-form .header-form__inner .header-form__contact a {
    padding-left: 1.4rem;
    font-size: 1.3rem;
  }
  .header-form .header-form__inner .header-form__contact a::before {
    width: 1.1rem;
    height: 1.1rem;
  }
}
/* footer-links
--------------------------------- */
section.footer-links {
  margin-bottom: 9rem;
}
section.footer-links .footer-links__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: 1002px;
  padding-top: 5rem;
}
section.footer-links .footer-links__inner > div:not(:last-of-type) {
  margin-bottom: 7rem;
}
section.footer-links .footer-links__inner > div a {
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  section.footer-links .footer-links__inner > div a:hover {
    opacity: 0.7;
  }
}
section.footer-links .footer-links__inner .esforta-prime a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.footer-links .footer-links__inner .esforta-prime a span {
  width: 33.9rem;
  margin-right: 5rem;
}
section.footer-links .footer-links__inner .esforta-prime a div.footer-links__right {
  width: fit-content;
}
section.footer-links .footer-links__inner .esforta-prime a div.footer-links__right h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
section.footer-links .footer-links__inner .esforta-prime a div.footer-links__right p {
  font-size: 1.5rem;
  font-weight: 500;
}
section.footer-links .footer-links__inner .fitness-club {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 5rem;
}
section.footer-links .footer-links__inner .fitness-club h3 {
  width: 100%;
  margin-bottom: 2.4rem;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
section.footer-links .footer-links__inner .fitness-club .footer-links__left a {
  display: block;
  width: 16rem;
}
section.footer-links .footer-links__inner .fitness-club .footer-links__right {
  display: flex;
  align-items: center;
  column-gap: 3rem;
  width: 77.9342723005%;
}
section.footer-links .footer-links__inner .fitness-club .footer-links__right h4 {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
section.footer-links .footer-links__inner .personal {
  display: flex;
  column-gap: 5rem;
}
section.footer-links .footer-links__inner .personal > div {
  width: 16rem;
}
section.footer-links .footer-links__inner .personal > div h3 {
  margin-bottom: 2.4rem;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  text-align: center;
}
section.footer-links .footer-links__inner .indoor-golf {
  display: flex;
  align-items: center;
  column-gap: 5rem;
  flex-wrap: wrap;
}
section.footer-links .footer-links__inner .indoor-golf h3 {
  width: 100%;
  margin-bottom: 1.6rem;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
section.footer-links .footer-links__inner .indoor-golf .footer-links__left a {
  display: block;
  width: 16rem;
}
section.footer-links .footer-links__inner .indoor-golf .footer-links__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4.6rem;
  width: 62.9107981221%;
}
section.footer-links .footer-links__inner .indoor-golf .footer-links__right h4 {
  width: 19.8rem;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
section.footer-links .footer-links__inner .dance-studio {
  display: flex;
  align-items: center;
  column-gap: 5rem;
  flex-wrap: wrap;
}
section.footer-links .footer-links__inner .dance-studio h3 {
  width: 100%;
  margin-bottom: 2.4rem;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
section.footer-links .footer-links__inner .dance-studio .footer-links__left a {
  display: block;
  width: 16rem;
}
section.footer-links .footer-links__inner .dance-studio .footer-links__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4.6rem;
  width: 62.9107981221%;
}
section.footer-links .footer-links__inner .dance-studio .footer-links__right h4 {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

@media (max-width: 767px) {
  section.footer-links {
    margin-bottom: 5rem;
  }
  section.footer-links .footer-links__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 6.5rem 5rem 0 5rem;
    display: flex;
    flex-direction: column;
  }
  section.footer-links .footer-links__inner > div:not(:last-of-type) {
    margin-bottom: 5rem;
  }
  section.footer-links .footer-links__inner .esforta-prime a {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  section.footer-links .footer-links__inner .esforta-prime a span {
    width: 100%;
    height: 10rem;
    margin-right: 0;
    margin-bottom: 3rem;
  }
  section.footer-links .footer-links__inner .esforta-prime a span img {
    height: 100%;
  }
  section.footer-links .footer-links__inner .esforta-prime a div.footer-links__right {
    width: 100%;
  }
  section.footer-links .footer-links__inner .esforta-prime a div.footer-links__right h3 {
    font-size: 1.3rem;
  }
  section.footer-links .footer-links__inner .esforta-prime a div.footer-links__right p {
    font-size: 1.2rem;
    font-weight: 400;
  }
  section.footer-links .footer-links__inner .fitness-club {
    flex-wrap: wrap;
  }
  section.footer-links .footer-links__inner .fitness-club h3 {
    font-size: 1.1rem;
  }
  section.footer-links .footer-links__inner .fitness-club .footer-links__left {
    margin-bottom: 2.5rem;
  }
  section.footer-links .footer-links__inner .fitness-club .footer-links__left a {
    width: 14.5rem;
  }
  section.footer-links .footer-links__inner .fitness-club .footer-links__right {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }
  section.footer-links .footer-links__inner .fitness-club .footer-links__right h4 {
    font-size: 1.5rem;
    letter-spacing: 0.01em;
  }
  section.footer-links .footer-links__inner .personal {
    flex-wrap: wrap;
    row-gap: 5rem;
  }
  section.footer-links .footer-links__inner .personal > div {
    width: 14.5rem;
  }
  section.footer-links .footer-links__inner .personal > div h3 {
    font-size: 1.1rem;
    text-align: left;
  }
  section.footer-links .footer-links__inner .indoor-golf h3 {
    font-size: 1.1rem;
  }
  section.footer-links .footer-links__inner .indoor-golf .footer-links__left {
    margin-bottom: 2.5rem;
  }
  section.footer-links .footer-links__inner .indoor-golf .footer-links__left a {
    width: 14.5rem;
  }
  section.footer-links .footer-links__inner .indoor-golf .footer-links__right {
    width: 100%;
    row-gap: 1.2rem;
  }
  section.footer-links .footer-links__inner .indoor-golf .footer-links__right h4 {
    width: 100%;
    font-size: 1.3rem;
  }
  section.footer-links .footer-links__inner .dance-studio h3 {
    font-size: 1.1rem;
  }
  section.footer-links .footer-links__inner .dance-studio .footer-links__left {
    margin-bottom: 2.5rem;
  }
  section.footer-links .footer-links__inner .dance-studio .footer-links__left a {
    width: 14.5rem;
  }
  section.footer-links .footer-links__inner .dance-studio .footer-links__right {
    column-gap: 4rem;
    row-gap: 1.2rem;
    width: 100%;
  }
  section.footer-links .footer-links__inner .dance-studio .footer-links__right h4 {
    width: 100%;
    font-size: 1.3rem;
  }
}
/* footer
--------------------------------- */
.footer {
  padding-bottom: 8.4rem;
}
.footer .container {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: 1002px;
}
.footer .container h2 {
  width: 16rem;
  margin-bottom: 3.5rem;
}
.footer .container ul.footer-contents {
  display: flex;
  align-items: flex-start;
  column-gap: 8rem;
  margin-bottom: 11rem;
}
.footer .container ul.footer-contents li h3 {
  margin-bottom: 2.6rem;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.footer .container ul.footer-contents li p {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.footer .container ul.footer-contents li a {
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  .footer .container ul.footer-contents li a:hover {
    opacity: 0.7;
  }
}
.footer .container ul.footer-contents li:nth-child(1) {
  width: 20.4761904762%;
}
.footer .container ul.footer-contents li:nth-child(1) a {
  display: flex;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.footer .container ul.footer-contents li:nth-child(1) a:not(:last-of-type) {
  margin-bottom: 0.8rem;
}
.footer .container ul.footer-contents li:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.5rem;
  width: 46.6666666667%;
}
.footer .container ul.footer-contents li:nth-child(2) h3 {
  width: 100%;
}
.footer .container ul.footer-contents li:nth-child(3) {
  width: 11.4285714286%;
}
.footer .container ul.footer-contents li:nth-child(3) a {
  text-decoration: underline;
}
.footer .container ul.footer-bottom-links {
  display: flex;
  column-gap: 2.6rem;
}
.footer .container ul.footer-bottom-links li {
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}
.footer .container ul.footer-bottom-links li a {
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  .footer .container ul.footer-bottom-links li a:hover {
    opacity: 0.7;
  }
}
.footer .container p.copyright {
  margin-top: 8rem;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4666666667);
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .footer {
    padding-bottom: 15rem;
  }
  .footer .container {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-left: 5rem;
    padding-right: 3rem;
  }
  .footer .container h2 {
    width: 14.5rem;
  }
  .footer .container ul.footer-contents {
    flex-wrap: wrap;
    row-gap: 3.2rem;
    margin-bottom: 5rem;
  }
  .footer .container ul.footer-contents li {
    display: flex;
    flex-direction: column;
    row-gap: 1.6rem;
  }
  .footer .container ul.footer-contents li h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1;
  }
  .footer .container ul.footer-contents li p {
    font-size: 1.4rem;
    line-height: 1;
  }
  .footer .container ul.footer-contents li a {
    line-height: 1;
  }
  .footer .container ul.footer-contents li:nth-child(1) {
    width: 100%;
    margin-bottom: 0;
  }
  .footer .container ul.footer-contents li:nth-child(1) a {
    font-size: 1.4rem;
  }
  .footer .container ul.footer-contents li:nth-child(1) a:not(:last-of-type) {
    margin-bottom: 0;
  }
  .footer .container ul.footer-contents li:nth-child(2) {
    width: 100%;
    margin-bottom: 0;
  }
  .footer .container ul.footer-contents li:nth-child(2) h3 {
    width: 100%;
  }
  .footer .container ul.footer-contents li:nth-child(2) p {
    width: 100%;
  }
  .footer .container ul.footer-contents li:nth-child(3) {
    width: 100%;
  }
  .footer .container ul.footer-bottom-links {
    flex-direction: column;
    row-gap: 1.6rem;
    margin-bottom: 5.3rem;
  }
  .footer .container ul.footer-bottom-links li {
    font-size: 1.2rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.4666666667);
  }
  .footer .container p.copyright {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4666666667);
    letter-spacing: 0.03em;
  }
}
/* フォーム用フッター
--------------------------------- */
.form-footer {
  padding-bottom: 20rem;
}
.form-footer .form-footer__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1002px;
}
.form-footer .form-footer__inner .form-footer__logo a {
  display: block;
  width: 16.6rem;
  margin-bottom: 7.8rem;
}
.form-footer .form-footer__inner .form-footer__bottom-links {
  display: flex;
  column-gap: 2rem;
  margin-bottom: 12.3rem;
}
.form-footer .form-footer__inner .form-footer__bottom-links li {
  font-size: 1.4rem;
}
.form-footer .form-footer__inner .copyright {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4666666667);
}

.error404 .form-footer .form-footer__inner .form-footer__logo {
  margin-bottom: 21.5rem;
}

@media (max-width: 767px) {
  .form-footer {
    padding-bottom: 11rem;
  }
  .form-footer .form-footer__inner {
    width: 100%;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .form-footer .form-footer__inner .form-footer__logo a {
    width: 14.5rem;
    margin-bottom: 2rem;
  }
  .form-footer .form-footer__inner .form-footer__bottom-links {
    flex-direction: column;
    margin-bottom: 3.7rem;
  }
  .form-footer .form-footer__inner .form-footer__bottom-links li {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4666666667);
  }
  .form-footer .form-footer__inner .copyright {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4666666667);
  }
  .error404 .form-footer .form-footer__inner .form-footer__logo {
    margin-bottom: 10rem;
  }
}
/* topページ
--------------------------------- */
body.page-top,
body.page-concept,
body.page-simulation,
body.page-lesson,
body.page-facility,
body.page-price,
body.page-access {
  /*-----------------------------------
   MV
  -----------------------------------*/
  /*-----------------------------------
   フローティングボタン
  -----------------------------------*/
  /*-----------------------------------
   main
  -----------------------------------*/
}
body.page-top .mv,
body.page-concept .mv,
body.page-simulation .mv,
body.page-lesson .mv,
body.page-facility .mv,
body.page-price .mv,
body.page-access .mv {
  position: relative;
  width: 100%;
  height: 80rem;
}
body.page-top .mv .bg-slide,
body.page-top .mv .bg-slide-sp,
body.page-concept .mv .bg-slide,
body.page-concept .mv .bg-slide-sp,
body.page-simulation .mv .bg-slide,
body.page-simulation .mv .bg-slide-sp,
body.page-lesson .mv .bg-slide,
body.page-lesson .mv .bg-slide-sp,
body.page-facility .mv .bg-slide,
body.page-facility .mv .bg-slide-sp,
body.page-price .mv .bg-slide,
body.page-price .mv .bg-slide-sp,
body.page-access .mv .bg-slide,
body.page-access .mv .bg-slide-sp {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.page-top .mv .bg-slide img,
body.page-top .mv .bg-slide-sp img,
body.page-concept .mv .bg-slide img,
body.page-concept .mv .bg-slide-sp img,
body.page-simulation .mv .bg-slide img,
body.page-simulation .mv .bg-slide-sp img,
body.page-lesson .mv .bg-slide img,
body.page-lesson .mv .bg-slide-sp img,
body.page-facility .mv .bg-slide img,
body.page-facility .mv .bg-slide-sp img,
body.page-price .mv .bg-slide img,
body.page-price .mv .bg-slide-sp img,
body.page-access .mv .bg-slide img,
body.page-access .mv .bg-slide-sp img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 6s ease-in-out;
}
body.page-top .mv .bg-slide img:not(:first-child),
body.page-top .mv .bg-slide-sp img:not(:first-child),
body.page-concept .mv .bg-slide img:not(:first-child),
body.page-concept .mv .bg-slide-sp img:not(:first-child),
body.page-simulation .mv .bg-slide img:not(:first-child),
body.page-simulation .mv .bg-slide-sp img:not(:first-child),
body.page-lesson .mv .bg-slide img:not(:first-child),
body.page-lesson .mv .bg-slide-sp img:not(:first-child),
body.page-facility .mv .bg-slide img:not(:first-child),
body.page-facility .mv .bg-slide-sp img:not(:first-child),
body.page-price .mv .bg-slide img:not(:first-child),
body.page-price .mv .bg-slide-sp img:not(:first-child),
body.page-access .mv .bg-slide img:not(:first-child),
body.page-access .mv .bg-slide-sp img:not(:first-child) {
  display: none;
}
body.page-top .mv .bg-slide img.active,
body.page-top .mv .bg-slide-sp img.active,
body.page-concept .mv .bg-slide img.active,
body.page-concept .mv .bg-slide-sp img.active,
body.page-simulation .mv .bg-slide img.active,
body.page-simulation .mv .bg-slide-sp img.active,
body.page-lesson .mv .bg-slide img.active,
body.page-lesson .mv .bg-slide-sp img.active,
body.page-facility .mv .bg-slide img.active,
body.page-facility .mv .bg-slide-sp img.active,
body.page-price .mv .bg-slide img.active,
body.page-price .mv .bg-slide-sp img.active,
body.page-access .mv .bg-slide img.active,
body.page-access .mv .bg-slide-sp img.active {
  transform: translate(-50%, -50%) scale(1);
}
body.page-top .mv .bg-slide img.loaded,
body.page-top .mv .bg-slide-sp img.loaded,
body.page-concept .mv .bg-slide img.loaded,
body.page-concept .mv .bg-slide-sp img.loaded,
body.page-simulation .mv .bg-slide img.loaded,
body.page-simulation .mv .bg-slide-sp img.loaded,
body.page-lesson .mv .bg-slide img.loaded,
body.page-lesson .mv .bg-slide-sp img.loaded,
body.page-facility .mv .bg-slide img.loaded,
body.page-facility .mv .bg-slide-sp img.loaded,
body.page-price .mv .bg-slide img.loaded,
body.page-price .mv .bg-slide-sp img.loaded,
body.page-access .mv .bg-slide img.loaded,
body.page-access .mv .bg-slide-sp img.loaded {
  transform: translate(-50%, -50%) scale(1);
}
body.page-top .mv .bg-slide-sp,
body.page-concept .mv .bg-slide-sp,
body.page-simulation .mv .bg-slide-sp,
body.page-lesson .mv .bg-slide-sp,
body.page-facility .mv .bg-slide-sp,
body.page-price .mv .bg-slide-sp,
body.page-access .mv .bg-slide-sp {
  display: none;
}
body.page-top .mv .container,
body.page-concept .mv .container,
body.page-simulation .mv .container,
body.page-lesson .mv .container,
body.page-facility .mv .container,
body.page-price .mv .container,
body.page-access .mv .container {
  z-index: 2;
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  max-width: calc(972px + 3rem);
}
body.page-top .mv .container .mv__text,
body.page-concept .mv .container .mv__text,
body.page-simulation .mv .container .mv__text,
body.page-lesson .mv .container .mv__text,
body.page-facility .mv .container .mv__text,
body.page-price .mv .container .mv__text,
body.page-access .mv .container .mv__text {
  position: absolute;
  top: 40.2rem;
}
body.page-top .mv .container .mv__text h3,
body.page-top .mv .container .mv__text h2,
body.page-top .mv .container .mv__text p,
body.page-concept .mv .container .mv__text h3,
body.page-concept .mv .container .mv__text h2,
body.page-concept .mv .container .mv__text p,
body.page-simulation .mv .container .mv__text h3,
body.page-simulation .mv .container .mv__text h2,
body.page-simulation .mv .container .mv__text p,
body.page-lesson .mv .container .mv__text h3,
body.page-lesson .mv .container .mv__text h2,
body.page-lesson .mv .container .mv__text p,
body.page-facility .mv .container .mv__text h3,
body.page-facility .mv .container .mv__text h2,
body.page-facility .mv .container .mv__text p,
body.page-price .mv .container .mv__text h3,
body.page-price .mv .container .mv__text h2,
body.page-price .mv .container .mv__text p,
body.page-access .mv .container .mv__text h3,
body.page-access .mv .container .mv__text h2,
body.page-access .mv .container .mv__text p {
  line-height: 1;
}
body.page-top .mv .container .mv__text p:nth-of-type(1),
body.page-concept .mv .container .mv__text p:nth-of-type(1),
body.page-simulation .mv .container .mv__text p:nth-of-type(1),
body.page-lesson .mv .container .mv__text p:nth-of-type(1),
body.page-facility .mv .container .mv__text p:nth-of-type(1),
body.page-price .mv .container .mv__text p:nth-of-type(1),
body.page-access .mv .container .mv__text p:nth-of-type(1) {
  margin-bottom: 2rem;
  font-size: 1.7rem;
}
body.page-top .mv .container .mv__text h2,
body.page-concept .mv .container .mv__text h2,
body.page-simulation .mv .container .mv__text h2,
body.page-lesson .mv .container .mv__text h2,
body.page-facility .mv .container .mv__text h2,
body.page-price .mv .container .mv__text h2,
body.page-access .mv .container .mv__text h2 {
  margin-bottom: 1.8rem;
  font-size: 3.7rem;
}
body.page-top .mv .container .mv__text p:nth-of-type(2),
body.page-concept .mv .container .mv__text p:nth-of-type(2),
body.page-simulation .mv .container .mv__text p:nth-of-type(2),
body.page-lesson .mv .container .mv__text p:nth-of-type(2),
body.page-facility .mv .container .mv__text p:nth-of-type(2),
body.page-price .mv .container .mv__text p:nth-of-type(2),
body.page-access .mv .container .mv__text p:nth-of-type(2) {
  font-size: 1.8rem;
  font-weight: 300;
}
body.page-top .mv .container .mv__arrow,
body.page-concept .mv .container .mv__arrow,
body.page-simulation .mv .container .mv__arrow,
body.page-lesson .mv .container .mv__arrow,
body.page-facility .mv .container .mv__arrow,
body.page-price .mv .container .mv__arrow,
body.page-access .mv .container .mv__arrow {
  position: absolute;
  bottom: 4rem;
}
body.page-top .mv .container .mv__arrow span,
body.page-concept .mv .container .mv__arrow span,
body.page-simulation .mv .container .mv__arrow span,
body.page-lesson .mv .container .mv__arrow span,
body.page-facility .mv .container .mv__arrow span,
body.page-price .mv .container .mv__arrow span,
body.page-access .mv .container .mv__arrow span {
  display: block;
  width: 0.78rem;
  height: 15.5rem;
}
body.page-top .mv .container .mv__arrow span img,
body.page-concept .mv .container .mv__arrow span img,
body.page-simulation .mv .container .mv__arrow span img,
body.page-lesson .mv .container .mv__arrow span img,
body.page-facility .mv .container .mv__arrow span img,
body.page-price .mv .container .mv__arrow span img,
body.page-access .mv .container .mv__arrow span img {
  height: 100%;
}
body.page-top .mv .container .special-note,
body.page-concept .mv .container .special-note,
body.page-simulation .mv .container .special-note,
body.page-lesson .mv .container .special-note,
body.page-facility .mv .container .special-note,
body.page-price .mv .container .special-note,
body.page-access .mv .container .special-note {
  position: absolute;
  bottom: 4rem;
  border: 0.1rem solid #fff;
  width: fit-content;
  padding: 2rem 4rem 2rem 2rem;
  font-size: 1.7rem;
  line-height: 1.4705882353;
  font-weight: 400;
}
body.page-top .mv .container .special-note a,
body.page-concept .mv .container .special-note a,
body.page-simulation .mv .container .special-note a,
body.page-lesson .mv .container .special-note a,
body.page-facility .mv .container .special-note a,
body.page-price .mv .container .special-note a,
body.page-access .mv .container .special-note a {
  text-decoration: underline;
}
@media (max-width: 767px) {
  body.page-top .mv,
  body.page-concept .mv,
  body.page-simulation .mv,
  body.page-lesson .mv,
  body.page-facility .mv,
  body.page-price .mv,
  body.page-access .mv {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 58rem;
  }
  body.page-top .mv .bg-slide,
  body.page-concept .mv .bg-slide,
  body.page-simulation .mv .bg-slide,
  body.page-lesson .mv .bg-slide,
  body.page-facility .mv .bg-slide,
  body.page-price .mv .bg-slide,
  body.page-access .mv .bg-slide {
    display: none;
  }
  body.page-top .mv .bg-slide-sp,
  body.page-concept .mv .bg-slide-sp,
  body.page-simulation .mv .bg-slide-sp,
  body.page-lesson .mv .bg-slide-sp,
  body.page-facility .mv .bg-slide-sp,
  body.page-price .mv .bg-slide-sp,
  body.page-access .mv .bg-slide-sp {
    display: block;
  }
  body.page-top .mv .container,
  body.page-concept .mv .container,
  body.page-simulation .mv .container,
  body.page-lesson .mv .container,
  body.page-facility .mv .container,
  body.page-price .mv .container,
  body.page-access .mv .container {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-left: 5rem;
  }
  body.page-top .mv .container .mv__text,
  body.page-concept .mv .container .mv__text,
  body.page-simulation .mv .container .mv__text,
  body.page-lesson .mv .container .mv__text,
  body.page-facility .mv .container .mv__text,
  body.page-price .mv .container .mv__text,
  body.page-access .mv .container .mv__text {
    top: unset;
    bottom: 26rem;
  }
  body.page-top .mv .container .mv__text p:nth-of-type(1),
  body.page-concept .mv .container .mv__text p:nth-of-type(1),
  body.page-simulation .mv .container .mv__text p:nth-of-type(1),
  body.page-lesson .mv .container .mv__text p:nth-of-type(1),
  body.page-facility .mv .container .mv__text p:nth-of-type(1),
  body.page-price .mv .container .mv__text p:nth-of-type(1),
  body.page-access .mv .container .mv__text p:nth-of-type(1) {
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
  body.page-top .mv .container .mv__text h2,
  body.page-concept .mv .container .mv__text h2,
  body.page-simulation .mv .container .mv__text h2,
  body.page-lesson .mv .container .mv__text h2,
  body.page-facility .mv .container .mv__text h2,
  body.page-price .mv .container .mv__text h2,
  body.page-access .mv .container .mv__text h2 {
    margin-bottom: 1.8rem;
    font-size: 2.7rem;
  }
  body.page-top .mv .container .mv__text p:nth-of-type(2),
  body.page-concept .mv .container .mv__text p:nth-of-type(2),
  body.page-simulation .mv .container .mv__text p:nth-of-type(2),
  body.page-lesson .mv .container .mv__text p:nth-of-type(2),
  body.page-facility .mv .container .mv__text p:nth-of-type(2),
  body.page-price .mv .container .mv__text p:nth-of-type(2),
  body.page-access .mv .container .mv__text p:nth-of-type(2) {
    font-size: 1.9rem;
  }
  body.page-top .mv .container .mv__arrow,
  body.page-concept .mv .container .mv__arrow,
  body.page-simulation .mv .container .mv__arrow,
  body.page-lesson .mv .container .mv__arrow,
  body.page-facility .mv .container .mv__arrow,
  body.page-price .mv .container .mv__arrow,
  body.page-access .mv .container .mv__arrow {
    bottom: 2rem;
  }
  body.page-top .mv .container .mv__arrow ::before,
  body.page-concept .mv .container .mv__arrow ::before,
  body.page-simulation .mv .container .mv__arrow ::before,
  body.page-lesson .mv .container .mv__arrow ::before,
  body.page-facility .mv .container .mv__arrow ::before,
  body.page-price .mv .container .mv__arrow ::before,
  body.page-access .mv .container .mv__arrow ::before {
    content: none;
  }
  body.page-top .mv .container .mv__arrow span,
  body.page-concept .mv .container .mv__arrow span,
  body.page-simulation .mv .container .mv__arrow span,
  body.page-lesson .mv .container .mv__arrow span,
  body.page-facility .mv .container .mv__arrow span,
  body.page-price .mv .container .mv__arrow span,
  body.page-access .mv .container .mv__arrow span {
    height: 16rem;
  }
  body.page-top .mv .container .mv__arrow span::before,
  body.page-concept .mv .container .mv__arrow span::before,
  body.page-simulation .mv .container .mv__arrow span::before,
  body.page-lesson .mv .container .mv__arrow span::before,
  body.page-facility .mv .container .mv__arrow span::before,
  body.page-price .mv .container .mv__arrow span::before,
  body.page-access .mv .container .mv__arrow span::before {
    content: none;
  }
  body.page-top .mv .container .special-note,
  body.page-concept .mv .container .special-note,
  body.page-simulation .mv .container .special-note,
  body.page-lesson .mv .container .special-note,
  body.page-facility .mv .container .special-note,
  body.page-price .mv .container .special-note,
  body.page-access .mv .container .special-note {
    bottom: 2rem;
    left: 2.5rem;
    width: calc(100% - 8rem + 3rem);
    font-size: 1.45rem;
    line-height: 1.4;
    padding: 2rem 1.4rem;
  }
}
body.page-top .floating-btn,
body.page-concept .floating-btn,
body.page-simulation .floating-btn,
body.page-lesson .floating-btn,
body.page-facility .floating-btn,
body.page-price .floating-btn,
body.page-access .floating-btn {
  z-index: 5;
  position: fixed;
  bottom: 5rem;
  right: 0;
  width: 5.9rem;
}
body.page-top .floating-btn a,
body.page-concept .floating-btn a,
body.page-simulation .floating-btn a,
body.page-lesson .floating-btn a,
body.page-facility .floating-btn a,
body.page-price .floating-btn a,
body.page-access .floating-btn a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 0;
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  color: #3E3A39;
  letter-spacing: 0.3em;
  background-color: #FFF7DD;
  border: 0.1rem solid #3E3A39;
  transition: all 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  body.page-top .floating-btn a:hover,
  body.page-concept .floating-btn a:hover,
  body.page-simulation .floating-btn a:hover,
  body.page-lesson .floating-btn a:hover,
  body.page-facility .floating-btn a:hover,
  body.page-price .floating-btn a:hover,
  body.page-access .floating-btn a:hover {
    color: #FFF7DD;
    background-color: #3E3A39;
  }
}
@media (max-width: 767px) {
  body.page-top .floating-btn,
  body.page-concept .floating-btn,
  body.page-simulation .floating-btn,
  body.page-lesson .floating-btn,
  body.page-facility .floating-btn,
  body.page-price .floating-btn,
  body.page-access .floating-btn {
    bottom: 3rem;
    width: 5rem;
  }
  body.page-top .floating-btn a,
  body.page-concept .floating-btn a,
  body.page-simulation .floating-btn a,
  body.page-lesson .floating-btn a,
  body.page-facility .floating-btn a,
  body.page-price .floating-btn a,
  body.page-access .floating-btn a {
    font-size: 1.3rem;
  }
}
body.page-top main section.top-info-banner,
body.page-concept main section.top-info-banner,
body.page-simulation main section.top-info-banner,
body.page-lesson main section.top-info-banner,
body.page-facility main section.top-info-banner,
body.page-price main section.top-info-banner,
body.page-access main section.top-info-banner {
  display: flex;
  align-items: center;
  height: 6.2rem;
  background-color: #3E3A39;
}
body.page-top main section.top-info-banner .top-info-banner__inner,
body.page-concept main section.top-info-banner .top-info-banner__inner,
body.page-simulation main section.top-info-banner .top-info-banner__inner,
body.page-lesson main section.top-info-banner .top-info-banner__inner,
body.page-facility main section.top-info-banner .top-info-banner__inner,
body.page-price main section.top-info-banner .top-info-banner__inner,
body.page-access main section.top-info-banner .top-info-banner__inner {
  box-sizing: border-box;
  display: flex;
  align-items: baseline;
  width: 117.2rem;
  max-width: calc(1142px + 3rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.page-top main section.top-info-banner .top-info-banner__inner h2,
body.page-concept main section.top-info-banner .top-info-banner__inner h2,
body.page-simulation main section.top-info-banner .top-info-banner__inner h2,
body.page-lesson main section.top-info-banner .top-info-banner__inner h2,
body.page-facility main section.top-info-banner .top-info-banner__inner h2,
body.page-price main section.top-info-banner .top-info-banner__inner h2,
body.page-access main section.top-info-banner .top-info-banner__inner h2 {
  margin-right: 4.5rem;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-single,
body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-single,
body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-single,
body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-single,
body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-single,
body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-single,
body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-single {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-single time,
body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-single time,
body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-single time,
body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-single time,
body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-single time,
body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-single time,
body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-single time {
  height: 3.375rem;
  margin-right: 3.3rem;
  font-size: 1.7rem;
  line-height: 3.375rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
}
body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-single p,
body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-single p,
body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-single p,
body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-single p,
body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-single p,
body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-single p,
body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-single p {
  height: 3.375rem;
  margin-right: 2rem;
  font-size: 1.7rem;
  line-height: 3.375rem;
  letter-spacing: 0.1em;
}
@media (hover: hover) and (min-width: 768px) {
  body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-single:hover,
  body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-single:hover,
  body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-single:hover,
  body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-single:hover,
  body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-single:hover,
  body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-single:hover,
  body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-single:hover {
    opacity: 0.7;
  }
}
body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-archive,
body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-archive,
body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-archive,
body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-archive,
body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-archive,
body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-archive,
body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-archive {
  position: relative;
  width: 18.7rem;
  margin-left: auto;
  font-size: 1.7rem;
  transition: opacity 0.3s;
}
body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-archive::before,
body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-archive::before,
body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-archive::before,
body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-archive::before,
body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-archive::before,
body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-archive::before,
body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-archive::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 70%;
  height: 0.1rem;
  background-color: #fff;
}
body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-archive::after,
body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-archive::after,
body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-archive::after,
body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-archive::after,
body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-archive::after,
body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-archive::after,
body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-archive::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: right center;
  width: 1rem;
  height: 0.1rem;
  background-color: #fff;
}
@media (hover: hover) and (min-width: 768px) {
  body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-archive:hover,
  body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-archive:hover,
  body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-archive:hover,
  body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-archive:hover,
  body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-archive:hover,
  body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-archive:hover,
  body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-archive:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  body.page-top main section.top-info-banner,
  body.page-concept main section.top-info-banner,
  body.page-simulation main section.top-info-banner,
  body.page-lesson main section.top-info-banner,
  body.page-facility main section.top-info-banner,
  body.page-price main section.top-info-banner,
  body.page-access main section.top-info-banner {
    height: auto;
  }
  body.page-top main section.top-info-banner .top-info-banner__inner,
  body.page-concept main section.top-info-banner .top-info-banner__inner,
  body.page-simulation main section.top-info-banner .top-info-banner__inner,
  body.page-lesson main section.top-info-banner .top-info-banner__inner,
  body.page-facility main section.top-info-banner .top-info-banner__inner,
  body.page-price main section.top-info-banner .top-info-banner__inner,
  body.page-access main section.top-info-banner .top-info-banner__inner {
    position: relative;
    flex-direction: column;
    width: 100%;
    padding: 2.5rem 3rem;
  }
  body.page-top main section.top-info-banner .top-info-banner__inner h2,
  body.page-concept main section.top-info-banner .top-info-banner__inner h2,
  body.page-simulation main section.top-info-banner .top-info-banner__inner h2,
  body.page-lesson main section.top-info-banner .top-info-banner__inner h2,
  body.page-facility main section.top-info-banner .top-info-banner__inner h2,
  body.page-price main section.top-info-banner .top-info-banner__inner h2,
  body.page-access main section.top-info-banner .top-info-banner__inner h2 {
    margin-right: 0;
    margin-bottom: 1.5rem;
    font-size: 1.9rem;
    line-height: 1;
  }
  body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-single,
  body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-single,
  body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-single,
  body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-single,
  body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-single,
  body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-single,
  body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-single {
    flex-direction: column;
    align-items: flex-start;
  }
  body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-single time,
  body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-single time,
  body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-single time,
  body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-single time,
  body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-single time,
  body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-single time,
  body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-single time {
    height: auto;
    margin-right: 0;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    line-height: 1;
  }
  body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-single p,
  body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-single p,
  body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-single p,
  body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-single p,
  body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-single p,
  body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-single p,
  body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-single p {
    height: auto;
    margin-right: 0;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-archive,
  body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-archive,
  body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-archive,
  body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-archive,
  body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-archive,
  body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-archive,
  body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-archive {
    position: absolute;
    top: 2.5rem;
    right: 5rem;
    width: 13.5rem;
    line-height: 1;
  }
  body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-archive::before,
  body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-archive::before,
  body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-archive::before,
  body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-archive::before,
  body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-archive::before,
  body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-archive::before,
  body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-archive::before {
    top: 1.3rem;
    transform: translateY(0);
    width: 55%;
  }
  body.page-top main section.top-info-banner .top-info-banner__inner a.link-to-archive::after,
  body.page-concept main section.top-info-banner .top-info-banner__inner a.link-to-archive::after,
  body.page-simulation main section.top-info-banner .top-info-banner__inner a.link-to-archive::after,
  body.page-lesson main section.top-info-banner .top-info-banner__inner a.link-to-archive::after,
  body.page-facility main section.top-info-banner .top-info-banner__inner a.link-to-archive::after,
  body.page-price main section.top-info-banner .top-info-banner__inner a.link-to-archive::after,
  body.page-access main section.top-info-banner .top-info-banner__inner a.link-to-archive::after {
    top: 1.3rem;
    transform: translate(0, 0) rotate(45deg);
    width: 0.8rem;
  }
}
body.page-top main section.top-section-style,
body.page-concept main section.top-section-style,
body.page-simulation main section.top-section-style,
body.page-lesson main section.top-section-style,
body.page-facility main section.top-section-style,
body.page-price main section.top-section-style,
body.page-access main section.top-section-style {
  position: relative;
  aspect-ratio: 1280/550;
}
body.page-top main section.top-section-style .bg-slide,
body.page-concept main section.top-section-style .bg-slide,
body.page-simulation main section.top-section-style .bg-slide,
body.page-lesson main section.top-section-style .bg-slide,
body.page-facility main section.top-section-style .bg-slide,
body.page-price main section.top-section-style .bg-slide,
body.page-access main section.top-section-style .bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.page-top main section.top-section-style .bg-slide img,
body.page-concept main section.top-section-style .bg-slide img,
body.page-simulation main section.top-section-style .bg-slide img,
body.page-lesson main section.top-section-style .bg-slide img,
body.page-facility main section.top-section-style .bg-slide img,
body.page-price main section.top-section-style .bg-slide img,
body.page-access main section.top-section-style .bg-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.page-top main section.top-section-style .bg-slide img:not(:first-child),
body.page-concept main section.top-section-style .bg-slide img:not(:first-child),
body.page-simulation main section.top-section-style .bg-slide img:not(:first-child),
body.page-lesson main section.top-section-style .bg-slide img:not(:first-child),
body.page-facility main section.top-section-style .bg-slide img:not(:first-child),
body.page-price main section.top-section-style .bg-slide img:not(:first-child),
body.page-access main section.top-section-style .bg-slide img:not(:first-child) {
  display: none;
}
body.page-top main section.top-section-style .top-section-style__inner,
body.page-concept main section.top-section-style .top-section-style__inner,
body.page-simulation main section.top-section-style .top-section-style__inner,
body.page-lesson main section.top-section-style .top-section-style__inner,
body.page-facility main section.top-section-style .top-section-style__inner,
body.page-price main section.top-section-style .top-section-style__inner,
body.page-access main section.top-section-style .top-section-style__inner {
  z-index: 2;
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: 1002px;
  height: 100%;
}
body.page-top main section.top-section-style .top-section-style__inner .top-section-style__heading,
body.page-concept main section.top-section-style .top-section-style__inner .top-section-style__heading,
body.page-simulation main section.top-section-style .top-section-style__inner .top-section-style__heading,
body.page-lesson main section.top-section-style .top-section-style__inner .top-section-style__heading,
body.page-facility main section.top-section-style .top-section-style__inner .top-section-style__heading,
body.page-price main section.top-section-style .top-section-style__inner .top-section-style__heading,
body.page-access main section.top-section-style .top-section-style__inner .top-section-style__heading {
  margin-bottom: 5.3rem;
  padding-top: 15.7%;
}
body.page-top main section.top-section-style .top-section-style__inner .top-section-style__heading small,
body.page-concept main section.top-section-style .top-section-style__inner .top-section-style__heading small,
body.page-simulation main section.top-section-style .top-section-style__inner .top-section-style__heading small,
body.page-lesson main section.top-section-style .top-section-style__inner .top-section-style__heading small,
body.page-facility main section.top-section-style .top-section-style__inner .top-section-style__heading small,
body.page-price main section.top-section-style .top-section-style__inner .top-section-style__heading small,
body.page-access main section.top-section-style .top-section-style__inner .top-section-style__heading small {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}
body.page-top main section.top-section-style .top-section-style__inner .top-section-style__heading h2,
body.page-concept main section.top-section-style .top-section-style__inner .top-section-style__heading h2,
body.page-simulation main section.top-section-style .top-section-style__inner .top-section-style__heading h2,
body.page-lesson main section.top-section-style .top-section-style__inner .top-section-style__heading h2,
body.page-facility main section.top-section-style .top-section-style__inner .top-section-style__heading h2,
body.page-price main section.top-section-style .top-section-style__inner .top-section-style__heading h2,
body.page-access main section.top-section-style .top-section-style__inner .top-section-style__heading h2 {
  font-size: 3.7rem;
  letter-spacing: 0.05em;
}
body.page-top main section.top-section-style .top-section-style__inner .top-section-style__heading h3,
body.page-concept main section.top-section-style .top-section-style__inner .top-section-style__heading h3,
body.page-simulation main section.top-section-style .top-section-style__inner .top-section-style__heading h3,
body.page-lesson main section.top-section-style .top-section-style__inner .top-section-style__heading h3,
body.page-facility main section.top-section-style .top-section-style__inner .top-section-style__heading h3,
body.page-price main section.top-section-style .top-section-style__inner .top-section-style__heading h3,
body.page-access main section.top-section-style .top-section-style__inner .top-section-style__heading h3 {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
body.page-top main section.top-section-style .top-section-style__inner .btn-more a,
body.page-concept main section.top-section-style .top-section-style__inner .btn-more a,
body.page-simulation main section.top-section-style .top-section-style__inner .btn-more a,
body.page-lesson main section.top-section-style .top-section-style__inner .btn-more a,
body.page-facility main section.top-section-style .top-section-style__inner .btn-more a,
body.page-price main section.top-section-style .top-section-style__inner .btn-more a,
body.page-access main section.top-section-style .top-section-style__inner .btn-more a {
  position: relative;
  display: block;
  width: 13.3rem;
  font-size: 1.7rem;
  padding: 1rem 5rem 2rem 0;
  transition: opacity 0.3s;
}
body.page-top main section.top-section-style .top-section-style__inner .btn-more a::before,
body.page-concept main section.top-section-style .top-section-style__inner .btn-more a::before,
body.page-simulation main section.top-section-style .top-section-style__inner .btn-more a::before,
body.page-lesson main section.top-section-style .top-section-style__inner .btn-more a::before,
body.page-facility main section.top-section-style .top-section-style__inner .btn-more a::before,
body.page-price main section.top-section-style .top-section-style__inner .btn-more a::before,
body.page-access main section.top-section-style .top-section-style__inner .btn-more a::before {
  position: absolute;
  content: "";
  bottom: -0.8rem;
  left: 0;
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
}
body.page-top main section.top-section-style .top-section-style__inner .btn-more a::after,
body.page-concept main section.top-section-style .top-section-style__inner .btn-more a::after,
body.page-simulation main section.top-section-style .top-section-style__inner .btn-more a::after,
body.page-lesson main section.top-section-style .top-section-style__inner .btn-more a::after,
body.page-facility main section.top-section-style .top-section-style__inner .btn-more a::after,
body.page-price main section.top-section-style .top-section-style__inner .btn-more a::after,
body.page-access main section.top-section-style .top-section-style__inner .btn-more a::after {
  position: absolute;
  content: "";
  bottom: -0.8rem;
  right: 0;
  transform: rotate(45deg);
  transform-origin: right center;
  display: block;
  width: 1rem;
  height: 0.1rem;
  background-color: #fff;
}
body.page-top main section.top-section-style .top-section-style__inner .btn-more a::before,
body.page-concept main section.top-section-style .top-section-style__inner .btn-more a::before,
body.page-simulation main section.top-section-style .top-section-style__inner .btn-more a::before,
body.page-lesson main section.top-section-style .top-section-style__inner .btn-more a::before,
body.page-facility main section.top-section-style .top-section-style__inner .btn-more a::before,
body.page-price main section.top-section-style .top-section-style__inner .btn-more a::before,
body.page-access main section.top-section-style .top-section-style__inner .btn-more a::before {
  bottom: 1.2rem;
  width: calc(100% - 3rem);
}
body.page-top main section.top-section-style .top-section-style__inner .btn-more a::after,
body.page-concept main section.top-section-style .top-section-style__inner .btn-more a::after,
body.page-simulation main section.top-section-style .top-section-style__inner .btn-more a::after,
body.page-lesson main section.top-section-style .top-section-style__inner .btn-more a::after,
body.page-facility main section.top-section-style .top-section-style__inner .btn-more a::after,
body.page-price main section.top-section-style .top-section-style__inner .btn-more a::after,
body.page-access main section.top-section-style .top-section-style__inner .btn-more a::after {
  bottom: 1.2rem;
  right: 3rem;
}
@media (max-width: 767px) {
  body.page-top main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-concept main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-simulation main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-lesson main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-facility main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-price main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-access main section.top-section-style .top-section-style__inner .btn-more a {
    width: 10.5rem;
    line-height: 1;
  }
}
@media (hover: hover) and (min-width: 768px) {
  body.page-top main section.top-section-style .top-section-style__inner .btn-more a:hover,
  body.page-concept main section.top-section-style .top-section-style__inner .btn-more a:hover,
  body.page-simulation main section.top-section-style .top-section-style__inner .btn-more a:hover,
  body.page-lesson main section.top-section-style .top-section-style__inner .btn-more a:hover,
  body.page-facility main section.top-section-style .top-section-style__inner .btn-more a:hover,
  body.page-price main section.top-section-style .top-section-style__inner .btn-more a:hover,
  body.page-access main section.top-section-style .top-section-style__inner .btn-more a:hover {
    opacity: 0.7;
  }
}
body.page-top main section.concept .top-section-style__inner .concept__note,
body.page-concept main section.concept .top-section-style__inner .concept__note,
body.page-simulation main section.concept .top-section-style__inner .concept__note,
body.page-lesson main section.concept .top-section-style__inner .concept__note,
body.page-facility main section.concept .top-section-style__inner .concept__note,
body.page-price main section.concept .top-section-style__inner .concept__note,
body.page-access main section.concept .top-section-style__inner .concept__note {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-48vw);
  writing-mode: vertical-lr;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
body.page-top main section.facility,
body.page-concept main section.facility,
body.page-simulation main section.facility,
body.page-lesson main section.facility,
body.page-facility main section.facility,
body.page-price main section.facility,
body.page-access main section.facility {
  background: url(../img/top/top-bg-04.jpg) no-repeat center center/cover;
}
body.page-top main section.facility .top-section-style__inner .top-section-style__heading,
body.page-concept main section.facility .top-section-style__inner .top-section-style__heading,
body.page-simulation main section.facility .top-section-style__inner .top-section-style__heading,
body.page-lesson main section.facility .top-section-style__inner .top-section-style__heading,
body.page-facility main section.facility .top-section-style__inner .top-section-style__heading,
body.page-price main section.facility .top-section-style__inner .top-section-style__heading,
body.page-access main section.facility .top-section-style__inner .top-section-style__heading {
  padding-top: 18.5%;
}
@media (max-width: 767px) {
  body.page-top main section.top-section-style,
  body.page-concept main section.top-section-style,
  body.page-simulation main section.top-section-style,
  body.page-lesson main section.top-section-style,
  body.page-facility main section.top-section-style,
  body.page-price main section.top-section-style,
  body.page-access main section.top-section-style {
    aspect-ratio: 375/534;
  }
  body.page-top main section.top-section-style .top-section-style__inner,
  body.page-concept main section.top-section-style .top-section-style__inner,
  body.page-simulation main section.top-section-style .top-section-style__inner,
  body.page-lesson main section.top-section-style .top-section-style__inner,
  body.page-facility main section.top-section-style .top-section-style__inner,
  body.page-price main section.top-section-style .top-section-style__inner,
  body.page-access main section.top-section-style .top-section-style__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-left: 5.13rem;
    height: 100%;
  }
  body.page-top main section.top-section-style .top-section-style__inner .top-section-style__heading,
  body.page-concept main section.top-section-style .top-section-style__inner .top-section-style__heading,
  body.page-simulation main section.top-section-style .top-section-style__inner .top-section-style__heading,
  body.page-lesson main section.top-section-style .top-section-style__inner .top-section-style__heading,
  body.page-facility main section.top-section-style .top-section-style__inner .top-section-style__heading,
  body.page-price main section.top-section-style .top-section-style__inner .top-section-style__heading,
  body.page-access main section.top-section-style .top-section-style__inner .top-section-style__heading {
    margin-bottom: 5.3rem;
    padding-top: 18.3rem;
  }
  body.page-top main section.top-section-style .top-section-style__inner .top-section-style__heading small,
  body.page-concept main section.top-section-style .top-section-style__inner .top-section-style__heading small,
  body.page-simulation main section.top-section-style .top-section-style__inner .top-section-style__heading small,
  body.page-lesson main section.top-section-style .top-section-style__inner .top-section-style__heading small,
  body.page-facility main section.top-section-style .top-section-style__inner .top-section-style__heading small,
  body.page-price main section.top-section-style .top-section-style__inner .top-section-style__heading small,
  body.page-access main section.top-section-style .top-section-style__inner .top-section-style__heading small {
    margin-bottom: 1rem;
    font-size: 1.7rem;
    line-height: 1;
  }
  body.page-top main section.top-section-style .top-section-style__inner .top-section-style__heading h2,
  body.page-concept main section.top-section-style .top-section-style__inner .top-section-style__heading h2,
  body.page-simulation main section.top-section-style .top-section-style__inner .top-section-style__heading h2,
  body.page-lesson main section.top-section-style .top-section-style__inner .top-section-style__heading h2,
  body.page-facility main section.top-section-style .top-section-style__inner .top-section-style__heading h2,
  body.page-price main section.top-section-style .top-section-style__inner .top-section-style__heading h2,
  body.page-access main section.top-section-style .top-section-style__inner .top-section-style__heading h2 {
    margin-bottom: 1.4rem;
    font-size: 2.5rem;
    line-height: 1;
  }
  body.page-top main section.top-section-style .top-section-style__inner .top-section-style__heading h3,
  body.page-concept main section.top-section-style .top-section-style__inner .top-section-style__heading h3,
  body.page-simulation main section.top-section-style .top-section-style__inner .top-section-style__heading h3,
  body.page-lesson main section.top-section-style .top-section-style__inner .top-section-style__heading h3,
  body.page-facility main section.top-section-style .top-section-style__inner .top-section-style__heading h3,
  body.page-price main section.top-section-style .top-section-style__inner .top-section-style__heading h3,
  body.page-access main section.top-section-style .top-section-style__inner .top-section-style__heading h3 {
    font-size: 1.4rem;
    line-height: 1;
  }
  body.page-top main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-concept main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-simulation main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-lesson main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-facility main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-price main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-access main section.top-section-style .top-section-style__inner .btn-more a {
    position: relative;
    display: block;
    width: 13.3rem;
    font-size: 1.7rem;
  }
  body.page-top main section.top-section-style .top-section-style__inner .btn-more a::before,
  body.page-concept main section.top-section-style .top-section-style__inner .btn-more a::before,
  body.page-simulation main section.top-section-style .top-section-style__inner .btn-more a::before,
  body.page-lesson main section.top-section-style .top-section-style__inner .btn-more a::before,
  body.page-facility main section.top-section-style .top-section-style__inner .btn-more a::before,
  body.page-price main section.top-section-style .top-section-style__inner .btn-more a::before,
  body.page-access main section.top-section-style .top-section-style__inner .btn-more a::before {
    position: absolute;
    content: "";
    bottom: -0.8rem;
    left: 0;
    display: block;
    width: 100%;
    height: 0.1rem;
    background-color: #fff;
  }
  body.page-top main section.top-section-style .top-section-style__inner .btn-more a::after,
  body.page-concept main section.top-section-style .top-section-style__inner .btn-more a::after,
  body.page-simulation main section.top-section-style .top-section-style__inner .btn-more a::after,
  body.page-lesson main section.top-section-style .top-section-style__inner .btn-more a::after,
  body.page-facility main section.top-section-style .top-section-style__inner .btn-more a::after,
  body.page-price main section.top-section-style .top-section-style__inner .btn-more a::after,
  body.page-access main section.top-section-style .top-section-style__inner .btn-more a::after {
    position: absolute;
    content: "";
    bottom: -0.8rem;
    right: 0;
    transform: rotate(45deg);
    transform-origin: right center;
    display: block;
    width: 1rem;
    height: 0.1rem;
    background-color: #fff;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  body.page-top main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-concept main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-simulation main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-lesson main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-facility main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-price main section.top-section-style .top-section-style__inner .btn-more a,
  body.page-access main section.top-section-style .top-section-style__inner .btn-more a {
    width: 10.5rem;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  body.page-top main section.concept,
  body.page-concept main section.concept,
  body.page-simulation main section.concept,
  body.page-lesson main section.concept,
  body.page-facility main section.concept,
  body.page-price main section.concept,
  body.page-access main section.concept {
    background: url(../img/top/top-concept-bg-sp-01.jpg) no-repeat center center/cover;
  }
  body.page-top main section.concept .top-section-style__inner .concept__note,
  body.page-concept main section.concept .top-section-style__inner .concept__note,
  body.page-simulation main section.concept .top-section-style__inner .concept__note,
  body.page-lesson main section.concept .top-section-style__inner .concept__note,
  body.page-facility main section.concept .top-section-style__inner .concept__note,
  body.page-price main section.concept .top-section-style__inner .concept__note,
  body.page-access main section.concept .top-section-style__inner .concept__note {
    left: 2.5rem;
    top: 3.5rem;
    font-size: 0.9rem;
  }
  body.page-top main section.lesson,
  body.page-concept main section.lesson,
  body.page-simulation main section.lesson,
  body.page-lesson main section.lesson,
  body.page-facility main section.lesson,
  body.page-price main section.lesson,
  body.page-access main section.lesson {
    background: url(../img/top/top-lesson-bg-sp-01.jpg) no-repeat center center/cover;
  }
  body.page-top main section.simulation,
  body.page-concept main section.simulation,
  body.page-simulation main section.simulation,
  body.page-lesson main section.simulation,
  body.page-facility main section.simulation,
  body.page-price main section.simulation,
  body.page-access main section.simulation {
    background: url(../img/top/top-simulation-bg-sp-01.jpg) no-repeat center center/cover;
  }
  body.page-top main section.facility,
  body.page-concept main section.facility,
  body.page-simulation main section.facility,
  body.page-lesson main section.facility,
  body.page-facility main section.facility,
  body.page-price main section.facility,
  body.page-access main section.facility {
    background: url(../img/top/top-bg-04-sp.jpg) no-repeat center center/cover;
  }
  body.page-top main section.facility .top-section-style__inner .top-section-style__heading,
  body.page-concept main section.facility .top-section-style__inner .top-section-style__heading,
  body.page-simulation main section.facility .top-section-style__inner .top-section-style__heading,
  body.page-lesson main section.facility .top-section-style__inner .top-section-style__heading,
  body.page-facility main section.facility .top-section-style__inner .top-section-style__heading,
  body.page-price main section.facility .top-section-style__inner .top-section-style__heading,
  body.page-access main section.facility .top-section-style__inner .top-section-style__heading {
    padding-top: 20.3rem;
  }
}
body.page-top main section.access .access__inner,
body.page-concept main section.access .access__inner,
body.page-simulation main section.access .access__inner,
body.page-lesson main section.access .access__inner,
body.page-facility main section.access .access__inner,
body.page-price main section.access .access__inner,
body.page-access main section.access .access__inner {
  display: flex;
  width: 100%;
  height: 40.5rem;
}
body.page-top main section.access .access__inner .access__map,
body.page-concept main section.access .access__inner .access__map,
body.page-simulation main section.access .access__inner .access__map,
body.page-lesson main section.access .access__inner .access__map,
body.page-facility main section.access .access__inner .access__map,
body.page-price main section.access .access__inner .access__map,
body.page-access main section.access .access__inner .access__map {
  width: 60.9375%;
}
body.page-top main section.access .access__inner .access__map iframe,
body.page-concept main section.access .access__inner .access__map iframe,
body.page-simulation main section.access .access__inner .access__map iframe,
body.page-lesson main section.access .access__inner .access__map iframe,
body.page-facility main section.access .access__inner .access__map iframe,
body.page-price main section.access .access__inner .access__map iframe,
body.page-access main section.access .access__inner .access__map iframe {
  width: 100%;
  height: 100%;
}
body.page-top main section.access .access__inner .access__text,
body.page-concept main section.access .access__inner .access__text,
body.page-simulation main section.access .access__inner .access__text,
body.page-lesson main section.access .access__inner .access__text,
body.page-facility main section.access .access__inner .access__text,
body.page-price main section.access .access__inner .access__text,
body.page-access main section.access .access__inner .access__text {
  width: 39.0625%;
  padding: 7% 2rem 1rem 4%;
}
body.page-top main section.access .access__inner .access__text h2,
body.page-concept main section.access .access__inner .access__text h2,
body.page-simulation main section.access .access__inner .access__text h2,
body.page-lesson main section.access .access__inner .access__text h2,
body.page-facility main section.access .access__inner .access__text h2,
body.page-price main section.access .access__inner .access__text h2,
body.page-access main section.access .access__inner .access__text h2 {
  font-size: 3.7rem;
  letter-spacing: 0.05em;
}
body.page-top main section.access .access__inner .access__text p,
body.page-concept main section.access .access__inner .access__text p,
body.page-simulation main section.access .access__inner .access__text p,
body.page-lesson main section.access .access__inner .access__text p,
body.page-facility main section.access .access__inner .access__text p,
body.page-price main section.access .access__inner .access__text p,
body.page-access main section.access .access__inner .access__text p {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
body.page-top main section.access .access__inner .access__text ul li,
body.page-concept main section.access .access__inner .access__text ul li,
body.page-simulation main section.access .access__inner .access__text ul li,
body.page-lesson main section.access .access__inner .access__text ul li,
body.page-facility main section.access .access__inner .access__text ul li,
body.page-price main section.access .access__inner .access__text ul li,
body.page-access main section.access .access__inner .access__text ul li {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  body.page-top main section.access .access__inner,
  body.page-concept main section.access .access__inner,
  body.page-simulation main section.access .access__inner,
  body.page-lesson main section.access .access__inner,
  body.page-facility main section.access .access__inner,
  body.page-price main section.access .access__inner,
  body.page-access main section.access .access__inner {
    flex-direction: column;
    height: auto;
  }
  body.page-top main section.access .access__inner .access__map,
  body.page-concept main section.access .access__inner .access__map,
  body.page-simulation main section.access .access__inner .access__map,
  body.page-lesson main section.access .access__inner .access__map,
  body.page-facility main section.access .access__inner .access__map,
  body.page-price main section.access .access__inner .access__map,
  body.page-access main section.access .access__inner .access__map {
    order: 2;
    width: calc(100% - 5rem);
    height: 23.3rem;
    margin-left: auto;
  }
  body.page-top main section.access .access__inner .access__text,
  body.page-concept main section.access .access__inner .access__text,
  body.page-simulation main section.access .access__inner .access__text,
  body.page-lesson main section.access .access__inner .access__text,
  body.page-facility main section.access .access__inner .access__text,
  body.page-price main section.access .access__inner .access__text,
  body.page-access main section.access .access__inner .access__text {
    width: 100%;
    padding: 7.8rem 3.5rem 5.5rem 5rem;
  }
  body.page-top main section.access .access__inner .access__text h2,
  body.page-concept main section.access .access__inner .access__text h2,
  body.page-simulation main section.access .access__inner .access__text h2,
  body.page-lesson main section.access .access__inner .access__text h2,
  body.page-facility main section.access .access__inner .access__text h2,
  body.page-price main section.access .access__inner .access__text h2,
  body.page-access main section.access .access__inner .access__text h2 {
    font-size: 2.5rem;
  }
  body.page-top main section.access .access__inner .access__text p,
  body.page-concept main section.access .access__inner .access__text p,
  body.page-simulation main section.access .access__inner .access__text p,
  body.page-lesson main section.access .access__inner .access__text p,
  body.page-facility main section.access .access__inner .access__text p,
  body.page-price main section.access .access__inner .access__text p,
  body.page-access main section.access .access__inner .access__text p {
    font-size: 1.3rem;
  }
  body.page-top main section.access .access__inner .access__text ul li,
  body.page-concept main section.access .access__inner .access__text ul li,
  body.page-simulation main section.access .access__inner .access__text ul li,
  body.page-lesson main section.access .access__inner .access__text ul li,
  body.page-facility main section.access .access__inner .access__text ul li,
  body.page-price main section.access .access__inner .access__text ul li,
  body.page-access main section.access .access__inner .access__text ul li {
    font-size: 1.3rem;
  }
}
body.page-top main section.reservation .reservation__inner,
body.page-concept main section.reservation .reservation__inner,
body.page-simulation main section.reservation .reservation__inner,
body.page-lesson main section.reservation .reservation__inner,
body.page-facility main section.reservation .reservation__inner,
body.page-price main section.reservation .reservation__inner,
body.page-access main section.reservation .reservation__inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 40.5rem;
}
body.page-top main section.reservation .reservation__inner .reservation__left-blk,
body.page-concept main section.reservation .reservation__inner .reservation__left-blk,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk,
body.page-price main section.reservation .reservation__inner .reservation__left-blk,
body.page-access main section.reservation .reservation__inner .reservation__left-blk {
  width: 39.0625%;
  background-color: #1E664A;
}
body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__heading {
  display: none;
}
body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns {
  position: absolute;
  top: 14.5%;
  left: 50%;
  transform: translateX(calc(-50% - 24.4rem));
}
body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a {
  position: relative;
  display: block;
  width: 48rem;
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover,
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover {
    opacity: 0.7;
  }
}
body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child {
  margin-bottom: 3.5rem;
}
body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3 {
  margin-bottom: 0.8rem;
  font-size: 3.6rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1;
}
body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 21.2rem;
  font-size: 1.7rem;
  text-align: right;
}
body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after,
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after {
  position: absolute;
  content: "";
  bottom: -0.2rem;
  right: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
}
body.page-top main section.reservation .reservation__inner .reservation__image,
body.page-concept main section.reservation .reservation__inner .reservation__image,
body.page-simulation main section.reservation .reservation__inner .reservation__image,
body.page-lesson main section.reservation .reservation__inner .reservation__image,
body.page-facility main section.reservation .reservation__inner .reservation__image,
body.page-price main section.reservation .reservation__inner .reservation__image,
body.page-access main section.reservation .reservation__inner .reservation__image {
  width: 60.9375%;
  background: url(../img/top/top-bg-05.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  body.page-top main section.reservation .reservation__inner,
  body.page-concept main section.reservation .reservation__inner,
  body.page-simulation main section.reservation .reservation__inner,
  body.page-lesson main section.reservation .reservation__inner,
  body.page-facility main section.reservation .reservation__inner,
  body.page-price main section.reservation .reservation__inner,
  body.page-access main section.reservation .reservation__inner {
    flex-direction: column;
    height: auto;
    background-color: #1E664A;
  }
  body.page-top main section.reservation .reservation__inner .reservation__left-blk,
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk {
    width: 100%;
    padding-top: 6.1rem;
    padding-left: 5rem;
    padding-bottom: 5.9rem;
    padding: 6.1rem 5.2rem 5.9rem 5rem;
  }
  body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
  }
  body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a {
    width: 100%;
  }
  body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child {
    margin-bottom: 3rem;
  }
  body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3 {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    line-height: 1.1;
  }
  body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p {
    font-size: 1.4rem;
  }
  body.page-top main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span {
    top: 2rem;
    transform: none;
    width: 10.3rem;
    font-size: 1.3rem;
  }
  body.page-top main section.reservation .reservation__inner .reservation__image,
  body.page-concept main section.reservation .reservation__inner .reservation__image,
  body.page-simulation main section.reservation .reservation__inner .reservation__image,
  body.page-lesson main section.reservation .reservation__inner .reservation__image,
  body.page-facility main section.reservation .reservation__inner .reservation__image,
  body.page-price main section.reservation .reservation__inner .reservation__image,
  body.page-access main section.reservation .reservation__inner .reservation__image {
    width: calc(100% - 5rem);
    height: 23.5rem;
    margin-left: auto;
  }
}
body.page-top main section.info-blk .info-blk__inner,
body.page-concept main section.info-blk .info-blk__inner,
body.page-simulation main section.info-blk .info-blk__inner,
body.page-lesson main section.info-blk .info-blk__inner,
body.page-facility main section.info-blk .info-blk__inner,
body.page-price main section.info-blk .info-blk__inner,
body.page-access main section.info-blk .info-blk__inner {
  padding-top: 10.8rem;
  padding-bottom: 10rem;
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: 1002px;
}
body.page-top main section.info-blk .info-blk__inner h2,
body.page-concept main section.info-blk .info-blk__inner h2,
body.page-simulation main section.info-blk .info-blk__inner h2,
body.page-lesson main section.info-blk .info-blk__inner h2,
body.page-facility main section.info-blk .info-blk__inner h2,
body.page-price main section.info-blk .info-blk__inner h2,
body.page-access main section.info-blk .info-blk__inner h2 {
  margin-bottom: 4rem;
  font-size: 3.7rem;
  letter-spacing: 0.03em;
}
body.page-top main section.info-blk .info-blk__inner ul.info-blk__tab,
body.page-concept main section.info-blk .info-blk__inner ul.info-blk__tab,
body.page-simulation main section.info-blk .info-blk__inner ul.info-blk__tab,
body.page-lesson main section.info-blk .info-blk__inner ul.info-blk__tab,
body.page-facility main section.info-blk .info-blk__inner ul.info-blk__tab,
body.page-price main section.info-blk .info-blk__inner ul.info-blk__tab,
body.page-access main section.info-blk .info-blk__inner ul.info-blk__tab {
  display: flex;
  column-gap: 1.5rem;
  margin-bottom: 5rem;
}
body.page-top main section.info-blk .info-blk__inner ul.info-blk__tab li,
body.page-concept main section.info-blk .info-blk__inner ul.info-blk__tab li,
body.page-simulation main section.info-blk .info-blk__inner ul.info-blk__tab li,
body.page-lesson main section.info-blk .info-blk__inner ul.info-blk__tab li,
body.page-facility main section.info-blk .info-blk__inner ul.info-blk__tab li,
body.page-price main section.info-blk .info-blk__inner ul.info-blk__tab li,
body.page-access main section.info-blk .info-blk__inner ul.info-blk__tab li {
  padding: 1.4rem 1.7rem 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  border-radius: 2rem;
  background-color: #2E5042;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  body.page-top main section.info-blk .info-blk__inner ul.info-blk__tab li:hover,
  body.page-concept main section.info-blk .info-blk__inner ul.info-blk__tab li:hover,
  body.page-simulation main section.info-blk .info-blk__inner ul.info-blk__tab li:hover,
  body.page-lesson main section.info-blk .info-blk__inner ul.info-blk__tab li:hover,
  body.page-facility main section.info-blk .info-blk__inner ul.info-blk__tab li:hover,
  body.page-price main section.info-blk .info-blk__inner ul.info-blk__tab li:hover,
  body.page-access main section.info-blk .info-blk__inner ul.info-blk__tab li:hover {
    opacity: 0.7;
  }
}
body.page-top main section.info-blk .info-blk__inner ul.info-blk__tab li.active,
body.page-concept main section.info-blk .info-blk__inner ul.info-blk__tab li.active,
body.page-simulation main section.info-blk .info-blk__inner ul.info-blk__tab li.active,
body.page-lesson main section.info-blk .info-blk__inner ul.info-blk__tab li.active,
body.page-facility main section.info-blk .info-blk__inner ul.info-blk__tab li.active,
body.page-price main section.info-blk .info-blk__inner ul.info-blk__tab li.active,
body.page-access main section.info-blk .info-blk__inner ul.info-blk__tab li.active {
  background-color: #1E664A;
}
body.page-top main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child),
body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child),
body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child),
body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child),
body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child),
body.page-price main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child),
body.page-access main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child) {
  margin-bottom: 5.2rem;
}
body.page-top main section.info-blk .info-blk__inner .info-blk__info-list ul li a,
body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list ul li a,
body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list ul li a,
body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list ul li a,
body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list ul li a,
body.page-price main section.info-blk .info-blk__inner .info-blk__info-list ul li a,
body.page-access main section.info-blk .info-blk__inner .info-blk__info-list ul li a {
  transition: opacity 0.3s;
}
body.page-top main section.info-blk .info-blk__inner .info-blk__info-list ul li a time,
body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list ul li a time,
body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list ul li a time,
body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list ul li a time,
body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list ul li a time,
body.page-price main section.info-blk .info-blk__inner .info-blk__info-list ul li a time,
body.page-access main section.info-blk .info-blk__inner .info-blk__info-list ul li a time {
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
}
body.page-top main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4,
body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4,
body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4,
body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4,
body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4,
body.page-price main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4,
body.page-access main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4 {
  font-size: 1.9rem;
  letter-spacing: 0.1em;
}
@media (hover: hover) and (min-width: 768px) {
  body.page-top main section.info-blk .info-blk__inner .info-blk__info-list ul li a:hover,
  body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list ul li a:hover,
  body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list ul li a:hover,
  body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list ul li a:hover,
  body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list ul li a:hover,
  body.page-price main section.info-blk .info-blk__inner .info-blk__info-list ul li a:hover,
  body.page-access main section.info-blk .info-blk__inner .info-blk__info-list ul li a:hover {
    opacity: 0.7;
  }
}
body.page-top main section.info-blk .info-blk__inner .info-blk__info-list ul#category-info, body.page-top main section.info-blk .info-blk__inner .info-blk__info-list ul#category-topics,
body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list ul#category-info,
body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list ul#category-topics,
body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list ul#category-info,
body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list ul#category-topics,
body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list ul#category-info,
body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list ul#category-topics,
body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list ul#category-info,
body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list ul#category-topics,
body.page-price main section.info-blk .info-blk__inner .info-blk__info-list ul#category-info,
body.page-price main section.info-blk .info-blk__inner .info-blk__info-list ul#category-topics,
body.page-access main section.info-blk .info-blk__inner .info-blk__info-list ul#category-info,
body.page-access main section.info-blk .info-blk__inner .info-blk__info-list ul#category-topics {
  display: none;
}
body.page-top main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
body.page-price main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
body.page-access main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more {
  position: relative;
  display: block;
  width: 13.3rem;
  font-size: 1.7rem;
  margin-top: 5.8rem;
  transition: opacity 0.3s;
}
body.page-top main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before,
body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before,
body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before,
body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before,
body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before,
body.page-price main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before,
body.page-access main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before {
  position: absolute;
  content: "";
  bottom: -0.8rem;
  left: 0;
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
}
body.page-top main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after,
body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after,
body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after,
body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after,
body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after,
body.page-price main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after,
body.page-access main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after {
  position: absolute;
  content: "";
  bottom: -0.8rem;
  right: 0;
  transform: rotate(45deg);
  transform-origin: right center;
  display: block;
  width: 1rem;
  height: 0.1rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  body.page-top main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-price main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-access main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more {
    width: 10.5rem;
    line-height: 1;
  }
}
@media (hover: hover) and (min-width: 768px) {
  body.page-top main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more:hover,
  body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more:hover,
  body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more:hover,
  body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more:hover,
  body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more:hover,
  body.page-price main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more:hover,
  body.page-access main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  body.page-top main section.info-blk .info-blk__inner,
  body.page-concept main section.info-blk .info-blk__inner,
  body.page-simulation main section.info-blk .info-blk__inner,
  body.page-lesson main section.info-blk .info-blk__inner,
  body.page-facility main section.info-blk .info-blk__inner,
  body.page-price main section.info-blk .info-blk__inner,
  body.page-access main section.info-blk .info-blk__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 8rem 8rem 8rem 5rem;
  }
  body.page-top main section.info-blk .info-blk__inner h2,
  body.page-concept main section.info-blk .info-blk__inner h2,
  body.page-simulation main section.info-blk .info-blk__inner h2,
  body.page-lesson main section.info-blk .info-blk__inner h2,
  body.page-facility main section.info-blk .info-blk__inner h2,
  body.page-price main section.info-blk .info-blk__inner h2,
  body.page-access main section.info-blk .info-blk__inner h2 {
    margin-bottom: 5rem;
    font-size: 2.4rem;
  }
  body.page-top main section.info-blk .info-blk__inner ul.info-blk__tab,
  body.page-concept main section.info-blk .info-blk__inner ul.info-blk__tab,
  body.page-simulation main section.info-blk .info-blk__inner ul.info-blk__tab,
  body.page-lesson main section.info-blk .info-blk__inner ul.info-blk__tab,
  body.page-facility main section.info-blk .info-blk__inner ul.info-blk__tab,
  body.page-price main section.info-blk .info-blk__inner ul.info-blk__tab,
  body.page-access main section.info-blk .info-blk__inner ul.info-blk__tab {
    column-gap: 0.8rem;
    margin-bottom: 5rem;
  }
  body.page-top main section.info-blk .info-blk__inner ul.info-blk__tab li,
  body.page-concept main section.info-blk .info-blk__inner ul.info-blk__tab li,
  body.page-simulation main section.info-blk .info-blk__inner ul.info-blk__tab li,
  body.page-lesson main section.info-blk .info-blk__inner ul.info-blk__tab li,
  body.page-facility main section.info-blk .info-blk__inner ul.info-blk__tab li,
  body.page-price main section.info-blk .info-blk__inner ul.info-blk__tab li,
  body.page-access main section.info-blk .info-blk__inner ul.info-blk__tab li {
    padding: 0.7rem 1rem 0.8rem;
    font-size: 1.1rem;
    border-radius: 1.8rem;
  }
  body.page-top main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child),
  body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child),
  body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child),
  body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child),
  body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child),
  body.page-price main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child),
  body.page-access main section.info-blk .info-blk__inner .info-blk__info-list ul li:not(:last-child) {
    margin-bottom: 4.7rem;
  }
  body.page-top main section.info-blk .info-blk__inner .info-blk__info-list ul li a time,
  body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list ul li a time,
  body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list ul li a time,
  body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list ul li a time,
  body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list ul li a time,
  body.page-price main section.info-blk .info-blk__inner .info-blk__info-list ul li a time,
  body.page-access main section.info-blk .info-blk__inner .info-blk__info-list ul li a time {
    font-size: 1.48rem;
  }
  body.page-top main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4,
  body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4,
  body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4,
  body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4,
  body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4,
  body.page-price main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4,
  body.page-access main section.info-blk .info-blk__inner .info-blk__info-list ul li a h4 {
    font-size: 1.45rem;
  }
  body.page-top main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-price main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-access main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more {
    position: relative;
    display: block;
    width: 13.3rem;
    font-size: 1.7rem;
    margin-top: 5.8rem;
  }
  body.page-top main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before,
  body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before,
  body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before,
  body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before,
  body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before,
  body.page-price main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before,
  body.page-access main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::before {
    position: absolute;
    content: "";
    bottom: -0.8rem;
    left: 0;
    display: block;
    width: 100%;
    height: 0.1rem;
    background-color: #fff;
  }
  body.page-top main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after,
  body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after,
  body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after,
  body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after,
  body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after,
  body.page-price main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after,
  body.page-access main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more::after {
    position: absolute;
    content: "";
    bottom: -0.8rem;
    right: 0;
    transform: rotate(45deg);
    transform-origin: right center;
    display: block;
    width: 1rem;
    height: 0.1rem;
    background-color: #fff;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  body.page-top main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-concept main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-simulation main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-lesson main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-facility main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-price main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more,
  body.page-access main section.info-blk .info-blk__inner .info-blk__info-list a.btn-more {
    width: 10.5rem;
    line-height: 1;
  }
}
body.page-top main #access__map button.gm-svpc img,
body.page-top main #access-info__map button.gm-svpc img,
body.page-concept main #access__map button.gm-svpc img,
body.page-concept main #access-info__map button.gm-svpc img,
body.page-simulation main #access__map button.gm-svpc img,
body.page-simulation main #access-info__map button.gm-svpc img,
body.page-lesson main #access__map button.gm-svpc img,
body.page-lesson main #access-info__map button.gm-svpc img,
body.page-facility main #access__map button.gm-svpc img,
body.page-facility main #access-info__map button.gm-svpc img,
body.page-price main #access__map button.gm-svpc img,
body.page-price main #access-info__map button.gm-svpc img,
body.page-access main #access__map button.gm-svpc img,
body.page-access main #access-info__map button.gm-svpc img {
  object-fit: contain;
}
body.page-top main #access__map #map-label,
body.page-top main #access-info__map #map-label,
body.page-concept main #access__map #map-label,
body.page-concept main #access-info__map #map-label,
body.page-simulation main #access__map #map-label,
body.page-simulation main #access-info__map #map-label,
body.page-lesson main #access__map #map-label,
body.page-lesson main #access-info__map #map-label,
body.page-facility main #access__map #map-label,
body.page-facility main #access-info__map #map-label,
body.page-price main #access__map #map-label,
body.page-price main #access-info__map #map-label,
body.page-access main #access__map #map-label,
body.page-access main #access-info__map #map-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  margin: 1rem 0 0 1rem;
  padding: 1rem 4rem 1rem 1.1rem;
  color: #5b5b5b;
  background-color: #fff;
}
body.page-top main #access__map #map-label h3,
body.page-top main #access-info__map #map-label h3,
body.page-concept main #access__map #map-label h3,
body.page-concept main #access-info__map #map-label h3,
body.page-simulation main #access__map #map-label h3,
body.page-simulation main #access-info__map #map-label h3,
body.page-lesson main #access__map #map-label h3,
body.page-lesson main #access-info__map #map-label h3,
body.page-facility main #access__map #map-label h3,
body.page-facility main #access-info__map #map-label h3,
body.page-price main #access__map #map-label h3,
body.page-price main #access-info__map #map-label h3,
body.page-access main #access__map #map-label h3,
body.page-access main #access-info__map #map-label h3 {
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
  font-weight: 500;
}
body.page-top main #access__map #map-label p,
body.page-top main #access-info__map #map-label p,
body.page-concept main #access__map #map-label p,
body.page-concept main #access-info__map #map-label p,
body.page-simulation main #access__map #map-label p,
body.page-simulation main #access-info__map #map-label p,
body.page-lesson main #access__map #map-label p,
body.page-lesson main #access-info__map #map-label p,
body.page-facility main #access__map #map-label p,
body.page-facility main #access-info__map #map-label p,
body.page-price main #access__map #map-label p,
body.page-price main #access-info__map #map-label p,
body.page-access main #access__map #map-label p,
body.page-access main #access-info__map #map-label p {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
body.page-top main #access__map #map-label a,
body.page-top main #access-info__map #map-label a,
body.page-concept main #access__map #map-label a,
body.page-concept main #access-info__map #map-label a,
body.page-simulation main #access__map #map-label a,
body.page-simulation main #access-info__map #map-label a,
body.page-lesson main #access__map #map-label a,
body.page-lesson main #access-info__map #map-label a,
body.page-facility main #access__map #map-label a,
body.page-facility main #access-info__map #map-label a,
body.page-price main #access__map #map-label a,
body.page-price main #access-info__map #map-label a,
body.page-access main #access__map #map-label a,
body.page-access main #access-info__map #map-label a {
  font-size: 1.2rem;
  color: #1a73e8;
}
@media (max-width: 767px) {
  body.page-top main #access__map #map-label,
  body.page-top main #access-info__map #map-label,
  body.page-concept main #access__map #map-label,
  body.page-concept main #access-info__map #map-label,
  body.page-simulation main #access__map #map-label,
  body.page-simulation main #access-info__map #map-label,
  body.page-lesson main #access__map #map-label,
  body.page-lesson main #access-info__map #map-label,
  body.page-facility main #access__map #map-label,
  body.page-facility main #access-info__map #map-label,
  body.page-price main #access__map #map-label,
  body.page-price main #access-info__map #map-label,
  body.page-access main #access__map #map-label,
  body.page-access main #access-info__map #map-label {
    margin: 0.5rem 0 0 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.6rem;
  }
  body.page-top main #access__map #map-label h3,
  body.page-top main #access-info__map #map-label h3,
  body.page-concept main #access__map #map-label h3,
  body.page-concept main #access-info__map #map-label h3,
  body.page-simulation main #access__map #map-label h3,
  body.page-simulation main #access-info__map #map-label h3,
  body.page-lesson main #access__map #map-label h3,
  body.page-lesson main #access-info__map #map-label h3,
  body.page-facility main #access__map #map-label h3,
  body.page-facility main #access-info__map #map-label h3,
  body.page-price main #access__map #map-label h3,
  body.page-price main #access-info__map #map-label h3,
  body.page-access main #access__map #map-label h3,
  body.page-access main #access-info__map #map-label h3 {
    margin-bottom: 0rem;
    font-size: 1.2rem;
  }
  body.page-top main #access__map #map-label p,
  body.page-top main #access-info__map #map-label p,
  body.page-concept main #access__map #map-label p,
  body.page-concept main #access-info__map #map-label p,
  body.page-simulation main #access__map #map-label p,
  body.page-simulation main #access-info__map #map-label p,
  body.page-lesson main #access__map #map-label p,
  body.page-lesson main #access-info__map #map-label p,
  body.page-facility main #access__map #map-label p,
  body.page-facility main #access-info__map #map-label p,
  body.page-price main #access__map #map-label p,
  body.page-price main #access-info__map #map-label p,
  body.page-access main #access__map #map-label p,
  body.page-access main #access-info__map #map-label p {
    margin-bottom: 0.2rem;
    font-size: 1rem;
  }
  body.page-top main #access__map #map-label a,
  body.page-top main #access-info__map #map-label a,
  body.page-concept main #access__map #map-label a,
  body.page-concept main #access-info__map #map-label a,
  body.page-simulation main #access__map #map-label a,
  body.page-simulation main #access-info__map #map-label a,
  body.page-lesson main #access__map #map-label a,
  body.page-lesson main #access-info__map #map-label a,
  body.page-facility main #access__map #map-label a,
  body.page-facility main #access-info__map #map-label a,
  body.page-price main #access__map #map-label a,
  body.page-price main #access-info__map #map-label a,
  body.page-access main #access__map #map-label a,
  body.page-access main #access-info__map #map-label a {
    font-size: 1rem;
  }
}

body.page-concept .mv .container .mv__text h1,
body.page-simulation .mv .container .mv__text h1,
body.page-lesson .mv .container .mv__text h1,
body.page-facility .mv .container .mv__text h1,
body.page-price .mv .container .mv__text h1,
body.page-access .mv .container .mv__text h1 {
  line-height: 1;
}
body.page-concept .mv .container .mv__text h1,
body.page-simulation .mv .container .mv__text h1,
body.page-lesson .mv .container .mv__text h1,
body.page-facility .mv .container .mv__text h1,
body.page-price .mv .container .mv__text h1,
body.page-access .mv .container .mv__text h1 {
  font-size: 3.7rem;
}
body.page-concept .mv .container .mv__text h1 span,
body.page-simulation .mv .container .mv__text h1 span,
body.page-lesson .mv .container .mv__text h1 span,
body.page-facility .mv .container .mv__text h1 span,
body.page-price .mv .container .mv__text h1 span,
body.page-access .mv .container .mv__text h1 span {
  display: block;
  margin-top: 1.8rem;
  font-size: 1.8rem;
  font-weight: 300;
}
@media (max-width: 767px) {
  body.page-concept .mv .container .mv__text h1,
  body.page-simulation .mv .container .mv__text h1,
  body.page-lesson .mv .container .mv__text h1,
  body.page-facility .mv .container .mv__text h1,
  body.page-price .mv .container .mv__text h1,
  body.page-access .mv .container .mv__text h1 {
    font-size: 2.7rem;
  }
  body.page-concept .mv .container .mv__text h1 span,
  body.page-simulation .mv .container .mv__text h1 span,
  body.page-lesson .mv .container .mv__text h1 span,
  body.page-facility .mv .container .mv__text h1 span,
  body.page-price .mv .container .mv__text h1 span,
  body.page-access .mv .container .mv__text h1 span {
    font-size: 1.9rem;
  }
}
body.page-concept main section.reservation,
body.page-simulation main section.reservation,
body.page-lesson main section.reservation,
body.page-facility main section.reservation,
body.page-price main section.reservation,
body.page-access main section.reservation {
  background-color: #1E664A;
}
body.page-concept main section.reservation .reservation__inner,
body.page-simulation main section.reservation .reservation__inner,
body.page-lesson main section.reservation .reservation__inner,
body.page-facility main section.reservation .reservation__inner,
body.page-price main section.reservation .reservation__inner,
body.page-access main section.reservation .reservation__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  justify-content: center;
  flex-direction: column;
  max-width: calc(972px + 3rem);
  height: auto;
  padding: max(5.5vw, 50px) 1.5rem max(5.5vw, 50px) !important;
}
body.page-concept main section.reservation .reservation__inner .reservation__left-blk,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk,
body.page-price main section.reservation .reservation__inner .reservation__left-blk,
body.page-access main section.reservation .reservation__inner .reservation__left-blk {
  width: 100%;
}
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__heading {
  display: block;
  margin-bottom: 8.5rem;
  font-size: 3rem;
  font-weight: 500;
}
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns {
  position: relative;
  top: unset;
  left: unset;
  transform: none;
  display: flex;
  column-gap: 6rem;
}
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a {
  position: relative;
  display: block;
  width: 45rem;
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:hover {
    opacity: 0.7;
  }
}
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child {
  margin-bottom: 0;
}
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3 {
  margin-bottom: 0.8rem;
  font-size: 3.6rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1;
}
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 21.2rem;
  font-size: 1.7rem;
  text-align: right;
}
body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after,
body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after,
body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after,
body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after,
body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after,
body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span::after {
  position: absolute;
  content: "";
  bottom: -0.2rem;
  right: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
}
body.page-concept main section.reservation .reservation__inner .reservation__image,
body.page-simulation main section.reservation .reservation__inner .reservation__image,
body.page-lesson main section.reservation .reservation__inner .reservation__image,
body.page-facility main section.reservation .reservation__inner .reservation__image,
body.page-price main section.reservation .reservation__inner .reservation__image,
body.page-access main section.reservation .reservation__inner .reservation__image {
  display: none;
}
@media (max-width: 767px) {
  body.page-concept main section.reservation .reservation__inner,
  body.page-simulation main section.reservation .reservation__inner,
  body.page-lesson main section.reservation .reservation__inner,
  body.page-facility main section.reservation .reservation__inner,
  body.page-price main section.reservation .reservation__inner,
  body.page-access main section.reservation .reservation__inner {
    padding: 0 !important;
  }
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk {
    width: 100%;
    max-width: 1146px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding: 5rem 2.5rem 7rem 5rem !important;
  }
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__heading,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__heading {
    margin-bottom: 4.5rem;
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__heading span,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__heading span,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__heading span,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__heading span,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__heading span,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__heading span {
    display: block;
    margin-top: 1.2rem;
    font-size: 1.3rem;
  }
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns {
    flex-direction: column;
  }
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a {
    width: 100%;
  }
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a:first-child {
    margin-bottom: 3rem;
  }
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a h3 {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
  }
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a p {
    font-size: 1.4rem;
  }
  body.page-concept main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
  body.page-simulation main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
  body.page-lesson main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
  body.page-facility main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
  body.page-price main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span,
  body.page-access main section.reservation .reservation__inner .reservation__left-blk .reservation__btns a span {
    top: 35%;
    width: 45%;
    font-size: 1.3rem;
  }
}
body.page-concept main section.auto-teaup,
body.page-simulation main section.auto-teaup,
body.page-lesson main section.auto-teaup,
body.page-facility main section.auto-teaup,
body.page-price main section.auto-teaup,
body.page-access main section.auto-teaup {
  margin-bottom: 8.6rem;
  padding-top: 5.6rem;
  padding-bottom: 5.6rem;
  background-color: #302D2C;
}
body.page-concept main section.auto-teaup .auto-teaup__inner,
body.page-simulation main section.auto-teaup .auto-teaup__inner,
body.page-lesson main section.auto-teaup .auto-teaup__inner,
body.page-facility main section.auto-teaup .auto-teaup__inner,
body.page-price main section.auto-teaup .auto-teaup__inner,
body.page-access main section.auto-teaup .auto-teaup__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: calc(972px + 3rem);
  display: flex;
  align-items: center;
}
body.page-concept main section.auto-teaup .auto-teaup__inner .auto-teaup__heading,
body.page-simulation main section.auto-teaup .auto-teaup__inner .auto-teaup__heading,
body.page-lesson main section.auto-teaup .auto-teaup__inner .auto-teaup__heading,
body.page-facility main section.auto-teaup .auto-teaup__inner .auto-teaup__heading,
body.page-price main section.auto-teaup .auto-teaup__inner .auto-teaup__heading,
body.page-access main section.auto-teaup .auto-teaup__inner .auto-teaup__heading {
  width: 50%;
  padding-right: 6rem;
}
body.page-concept main section.auto-teaup .auto-teaup__inner .auto-teaup__heading h2,
body.page-simulation main section.auto-teaup .auto-teaup__inner .auto-teaup__heading h2,
body.page-lesson main section.auto-teaup .auto-teaup__inner .auto-teaup__heading h2,
body.page-facility main section.auto-teaup .auto-teaup__inner .auto-teaup__heading h2,
body.page-price main section.auto-teaup .auto-teaup__inner .auto-teaup__heading h2,
body.page-access main section.auto-teaup .auto-teaup__inner .auto-teaup__heading h2 {
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.75;
}
body.page-concept main section.auto-teaup .auto-teaup__inner .auto-teaup__heading p,
body.page-simulation main section.auto-teaup .auto-teaup__inner .auto-teaup__heading p,
body.page-lesson main section.auto-teaup .auto-teaup__inner .auto-teaup__heading p,
body.page-facility main section.auto-teaup .auto-teaup__inner .auto-teaup__heading p,
body.page-price main section.auto-teaup .auto-teaup__inner .auto-teaup__heading p,
body.page-access main section.auto-teaup .auto-teaup__inner .auto-teaup__heading p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
}
body.page-concept main section.auto-teaup .auto-teaup__inner .auto-teaup__img,
body.page-simulation main section.auto-teaup .auto-teaup__inner .auto-teaup__img,
body.page-lesson main section.auto-teaup .auto-teaup__inner .auto-teaup__img,
body.page-facility main section.auto-teaup .auto-teaup__inner .auto-teaup__img,
body.page-price main section.auto-teaup .auto-teaup__inner .auto-teaup__img,
body.page-access main section.auto-teaup .auto-teaup__inner .auto-teaup__img {
  width: 50%;
  height: 28.5rem;
  padding-left: 4.2rem;
}
body.page-concept main section.auto-teaup .auto-teaup__inner .auto-teaup__img img,
body.page-simulation main section.auto-teaup .auto-teaup__inner .auto-teaup__img img,
body.page-lesson main section.auto-teaup .auto-teaup__inner .auto-teaup__img img,
body.page-facility main section.auto-teaup .auto-teaup__inner .auto-teaup__img img,
body.page-price main section.auto-teaup .auto-teaup__inner .auto-teaup__img img,
body.page-access main section.auto-teaup .auto-teaup__inner .auto-teaup__img img {
  width: 44rem;
  height: 100%;
}
@media (max-width: 767px) {
  body.page-concept main section.auto-teaup,
  body.page-simulation main section.auto-teaup,
  body.page-lesson main section.auto-teaup,
  body.page-facility main section.auto-teaup,
  body.page-price main section.auto-teaup,
  body.page-access main section.auto-teaup {
    margin-bottom: 6rem;
    padding: 5rem !important;
  }
  body.page-concept main section.auto-teaup .auto-teaup__inner,
  body.page-simulation main section.auto-teaup .auto-teaup__inner,
  body.page-lesson main section.auto-teaup .auto-teaup__inner,
  body.page-facility main section.auto-teaup .auto-teaup__inner,
  body.page-price main section.auto-teaup .auto-teaup__inner,
  body.page-access main section.auto-teaup .auto-teaup__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 0 !important;
    flex-direction: column;
  }
  body.page-concept main section.auto-teaup .auto-teaup__inner .auto-teaup__heading,
  body.page-simulation main section.auto-teaup .auto-teaup__inner .auto-teaup__heading,
  body.page-lesson main section.auto-teaup .auto-teaup__inner .auto-teaup__heading,
  body.page-facility main section.auto-teaup .auto-teaup__inner .auto-teaup__heading,
  body.page-price main section.auto-teaup .auto-teaup__inner .auto-teaup__heading,
  body.page-access main section.auto-teaup .auto-teaup__inner .auto-teaup__heading {
    order: 2;
    width: 100%;
    padding-right: 0;
  }
  body.page-concept main section.auto-teaup .auto-teaup__inner .auto-teaup__heading h2,
  body.page-simulation main section.auto-teaup .auto-teaup__inner .auto-teaup__heading h2,
  body.page-lesson main section.auto-teaup .auto-teaup__inner .auto-teaup__heading h2,
  body.page-facility main section.auto-teaup .auto-teaup__inner .auto-teaup__heading h2,
  body.page-price main section.auto-teaup .auto-teaup__inner .auto-teaup__heading h2,
  body.page-access main section.auto-teaup .auto-teaup__inner .auto-teaup__heading h2 {
    margin-bottom: 2.3rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  body.page-concept main section.auto-teaup .auto-teaup__inner .auto-teaup__heading p,
  body.page-simulation main section.auto-teaup .auto-teaup__inner .auto-teaup__heading p,
  body.page-lesson main section.auto-teaup .auto-teaup__inner .auto-teaup__heading p,
  body.page-facility main section.auto-teaup .auto-teaup__inner .auto-teaup__heading p,
  body.page-price main section.auto-teaup .auto-teaup__inner .auto-teaup__heading p,
  body.page-access main section.auto-teaup .auto-teaup__inner .auto-teaup__heading p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
  body.page-concept main section.auto-teaup .auto-teaup__inner .auto-teaup__img,
  body.page-simulation main section.auto-teaup .auto-teaup__inner .auto-teaup__img,
  body.page-lesson main section.auto-teaup .auto-teaup__inner .auto-teaup__img,
  body.page-facility main section.auto-teaup .auto-teaup__inner .auto-teaup__img,
  body.page-price main section.auto-teaup .auto-teaup__inner .auto-teaup__img,
  body.page-access main section.auto-teaup .auto-teaup__inner .auto-teaup__img {
    width: calc(100% + 5rem);
    height: 18rem;
    margin-bottom: 4rem;
    padding-left: 0;
  }
  body.page-concept main section.auto-teaup .auto-teaup__inner .auto-teaup__img img,
  body.page-simulation main section.auto-teaup .auto-teaup__inner .auto-teaup__img img,
  body.page-lesson main section.auto-teaup .auto-teaup__inner .auto-teaup__img img,
  body.page-facility main section.auto-teaup .auto-teaup__inner .auto-teaup__img img,
  body.page-price main section.auto-teaup .auto-teaup__inner .auto-teaup__img img,
  body.page-access main section.auto-teaup .auto-teaup__inner .auto-teaup__img img {
    width: 100%;
  }
}

body.page-concept {
  /*-----------------------------------
   MV
  -----------------------------------*/
  /*-----------------------------------
   main
  -----------------------------------*/
}
body.page-concept .mv {
  background: url(../img/photo/concept-mv.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  body.page-concept .mv {
    background: url(../img/photo/concept-mv-sp.jpg) no-repeat center center/cover;
  }
}
body.page-concept main section.golf-life {
  background: url(../img/photo/concept-entrance.jpg) no-repeat center center/cover;
}
body.page-concept main section.golf-life .golf-life__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: calc(972px + 3rem);
  padding: 11.8rem 1.5rem 12rem !important;
  padding: 11.8rem;
}
body.page-concept main section.golf-life .golf-life__inner .golf-life__heading {
  width: 50%;
}
body.page-concept main section.golf-life .golf-life__inner .golf-life__heading h2 {
  margin-bottom: 6.6rem;
  font-size: 2.7rem;
  line-height: 1;
}
body.page-concept main section.golf-life .golf-life__inner .golf-life__heading p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  body.page-concept main section.golf-life {
    background: url(../img/photo/concept-entrance-sp.jpg) no-repeat center center/cover;
  }
  body.page-concept main section.golf-life .golf-life__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 9.5rem 5rem 6.6rem 5rem !important;
  }
  body.page-concept main section.golf-life .golf-life__inner .golf-life__heading {
    width: 100%;
  }
  body.page-concept main section.golf-life .golf-life__inner .golf-life__heading h2 {
    width: calc(100% + 1rem);
    margin-bottom: 6.2rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  body.page-concept main section.golf-life .golf-life__inner .golf-life__heading p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
}
body.page-concept main section.golf-lounge {
  background: url(../img/photo/concept-golf-space.jpg) no-repeat right center/50%;
}
body.page-concept main section.golf-lounge .golf-lounge__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: calc(972px + 3rem);
  padding: 0 1.5rem !important;
  display: flex;
  justify-content: center;
}
body.page-concept main section.golf-lounge .golf-lounge__inner .golf-lounge__heading {
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 41.1522633745%;
  padding-right: 8rem;
}
body.page-concept main section.golf-lounge .golf-lounge__inner .golf-lounge__heading h2 {
  margin-bottom: 6.6rem;
  font-size: 2.7rem;
  line-height: 1;
}
body.page-concept main section.golf-lounge .golf-lounge__inner .golf-lounge__heading p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.01em;
}
body.page-concept main section.golf-lounge .golf-lounge__inner .golf-lounge__img {
  width: 50%;
  height: 33.3333333333vw;
}
@media (max-width: 767px) {
  body.page-concept main section.golf-lounge {
    background: url(../img/photo/concept-golf-space.jpg) no-repeat top 4.5rem left/90%;
  }
  body.page-concept main section.golf-lounge .golf-lounge__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 31.4rem 5rem 10rem 5rem !important;
  }
  body.page-concept main section.golf-lounge .golf-lounge__inner .golf-lounge__heading {
    width: 100%;
    padding-right: 0;
  }
  body.page-concept main section.golf-lounge .golf-lounge__inner .golf-lounge__heading h2 {
    margin-bottom: 4.5rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  body.page-concept main section.golf-lounge .golf-lounge__inner .golf-lounge__heading p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
  body.page-concept main section.golf-lounge .golf-lounge__inner .golf-lounge__img {
    display: none;
  }
}
body.page-concept main section.instruction {
  background: url(../img/photo/concept-dress-room.jpg) no-repeat left bottom/50%;
}
body.page-concept main section.instruction .instruction__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: calc(972px + 3rem);
  padding: max(5vw, 40px) 1.5rem max(4.8vw, 40px) !important;
  padding: 11.8rem;
}
body.page-concept main section.instruction .instruction__inner .instruction__heading {
  width: 41.1522633745%;
  margin-left: auto;
}
body.page-concept main section.instruction .instruction__inner .instruction__heading h2 {
  margin-bottom: 4.8rem;
  font-size: 2.7rem;
  line-height: 1;
}
body.page-concept main section.instruction .instruction__inner .instruction__heading p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  body.page-concept main section.instruction {
    background: url(../img/photo/concept-dress-room.jpg) no-repeat left top/90%;
  }
  body.page-concept main section.instruction .instruction__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 30.6rem 5rem 10rem 5rem !important;
  }
  body.page-concept main section.instruction .instruction__inner .instruction__heading {
    width: 100%;
    margin-left: initial;
  }
  body.page-concept main section.instruction .instruction__inner .instruction__heading h2 {
    margin-bottom: 4.8rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  body.page-concept main section.instruction .instruction__inner .instruction__heading p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
}
body.page-concept main section.experience {
  background: url(../img/photo/concept-lesson.jpg) no-repeat right top/50%;
}
body.page-concept main section.experience .experience__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: calc(972px + 3rem);
  padding: 0 1.5rem 10rem !important;
  display: flex;
  justify-content: center;
  padding: 11.8rem;
}
body.page-concept main section.experience .experience__inner .experience__heading {
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 41.1522633745%;
  padding-right: 8rem;
}
body.page-concept main section.experience .experience__inner .experience__heading h2 {
  margin-bottom: 4.8rem;
  font-size: 2.7rem;
  line-height: 1.5;
}
body.page-concept main section.experience .experience__inner .experience__heading p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.01em;
}
body.page-concept main section.experience .experience__inner .experience__img {
  width: 50%;
  height: 33.3333333333vw;
}
@media (max-width: 767px) {
  body.page-concept main section.experience {
    background: url(../img/photo/concept-lesson.jpg) no-repeat top left/90%;
  }
  body.page-concept main section.experience .experience__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 30.6rem 5rem 10rem 5rem !important;
  }
  body.page-concept main section.experience .experience__inner .experience__heading {
    width: 100%;
    margin-left: initial;
    padding-right: 0;
  }
  body.page-concept main section.experience .experience__inner .experience__heading h2 {
    margin-bottom: 4.8rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  body.page-concept main section.experience .experience__inner .experience__heading p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
  body.page-concept main section.experience .experience__inner .experience__img {
    display: none;
  }
}
body.page-concept main section.life-style {
  margin-bottom: 10rem;
  background: url(../img/photo/concept-golfclub.jpg) no-repeat center/cover;
}
body.page-concept main section.life-style .life-style__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: calc(972px + 3rem);
  padding: max(5.5vw, 50px) 1.5rem max(5.5vw, 50px) !important;
  padding: 11.8rem;
}
body.page-concept main section.life-style .life-style__inner .life-style__heading {
  width: 41.1522633745%;
}
body.page-concept main section.life-style .life-style__inner .life-style__heading h2 {
  margin-bottom: 4.8rem;
  font-size: 2.7rem;
  line-height: 1.5;
}
body.page-concept main section.life-style .life-style__inner .life-style__heading p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  body.page-concept main section.life-style {
    margin-bottom: 8rem;
    background: url(../img/photo/concept-golfclub.jpg) no-repeat center/cover;
  }
  body.page-concept main section.life-style .life-style__inner {
    width: 100%;
    padding: 5.2rem 5.2rem 0 0 !important;
  }
  body.page-concept main section.life-style .life-style__inner .life-style__heading {
    width: 100%;
    padding: 5.2rem 5rem;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4666666667), rgba(8, 8, 8, 0.3333333333) 50%, rgba(84, 84, 84, 0.2) 100%);
  }
  body.page-concept main section.life-style .life-style__inner .life-style__heading b h2 {
    margin-bottom: 4.8rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  body.page-concept main section.life-style .life-style__inner .life-style__heading p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

body.page-simulation {
  /*-----------------------------------
   MV
  -----------------------------------*/
  /*-----------------------------------
   main
  -----------------------------------*/
}
body.page-simulation .mv {
  background: url(../img/photo/simulation-mv.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  body.page-simulation .mv {
    background: url(../img/photo/simulation-mv-sp.jpg) no-repeat center center/cover;
  }
}
body.page-simulation main section.simulator {
  background: url(../img/photo/simulation-simulator.jpg) no-repeat top center/cover;
}
body.page-simulation main section.simulator .simulator__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: calc(972px + 3rem);
  padding: 11.8rem 1.5rem 15.2rem !important;
  padding: 11.8rem;
}
body.page-simulation main section.simulator .simulator__inner .simulator__heading {
  width: 50%;
}
body.page-simulation main section.simulator .simulator__inner .simulator__heading h2 {
  margin-bottom: 6.6rem;
  font-size: 2.7rem;
  line-height: 1.75;
}
body.page-simulation main section.simulator .simulator__inner .simulator__heading p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  body.page-simulation main section.simulator {
    background: url(../img/photo/simulation-simulator-sp.jpg) no-repeat top center/cover;
  }
  body.page-simulation main section.simulator .simulator__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 9rem 5rem 10rem 5rem !important;
  }
  body.page-simulation main section.simulator .simulator__inner .simulator__heading {
    width: 100%;
  }
  body.page-simulation main section.simulator .simulator__inner .simulator__heading h2 {
    margin-bottom: 6.2rem;
    font-size: 1.8rem;
  }
  body.page-simulation main section.simulator .simulator__inner .simulator__heading p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
}
body.page-simulation main section.premium-room {
  padding-top: 11.8rem;
  padding-bottom: 11.3rem;
  border-bottom: 0.1rem solid #fff;
}
body.page-simulation main section.premium-room .premium-room__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: calc(972px + 3rem);
}
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1,
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 {
  display: flex;
  align-items: center;
}
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1:first-child,
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2:first-child {
  margin-bottom: 8rem;
}
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1 .premium-room__heading,
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__heading {
  width: 50%;
  padding-right: 6rem;
}
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1 .premium-room__heading h2,
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__heading h2 {
  margin-bottom: 4.4rem;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.75;
}
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1 .premium-room__heading p,
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__heading p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
}
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1 .premium-room__img,
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__img {
  position: relative;
  transform: scale(1.3, 1.1);
  transform-origin: left center;
  width: 50%;
  height: 45rem;
}
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1 .premium-room__img img,
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__img img {
  height: 100%;
}
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1 .premium-room__img .bg-slide,
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__img .bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1 .premium-room__img .bg-slide img,
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__img .bg-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1 .premium-room__img .bg-slide img:not(:first-child),
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__img .bg-slide img:not(:first-child) {
  display: none;
}
body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__img {
  height: 35rem;
}
@media (max-width: 767px) {
  body.page-simulation main section.premium-room {
    padding: 2.3rem 5rem 5rem 5rem;
  }
  body.page-simulation main section.premium-room .premium-room__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 0 !important;
  }
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1,
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 {
    flex-direction: column;
  }
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1:first-child,
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2:first-child {
    margin-bottom: 2.6rem;
  }
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1 .premium-room__heading,
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__heading {
    order: 2;
    width: 100%;
    padding-right: 0;
  }
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1 .premium-room__heading h2,
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__heading h2 {
    width: calc(100% + 1rem);
    font-size: 1.8rem;
  }
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1 .premium-room__heading p,
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__heading p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-1 .premium-room__img,
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__img {
    transform: none;
    width: calc(100% + 2.5rem + 5rem);
    height: 18rem;
    margin-left: 3.75rem;
    margin-bottom: 4rem;
  }
  body.page-simulation main section.premium-room .premium-room__inner .premium-room__blk-2 .premium-room__img {
    height: 18rem;
  }
}
body.page-simulation main section.private-room {
  padding-top: 11.8rem;
  padding-bottom: 11.3rem;
}
body.page-simulation main section.private-room .private-room__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: calc(972px + 3rem);
  display: flex;
  align-items: center;
}
body.page-simulation main section.private-room .private-room__inner .private-room__heading {
  order: 2;
  width: 50%;
  padding-left: 6rem;
}
body.page-simulation main section.private-room .private-room__inner .private-room__heading h2 {
  margin-bottom: 4.4rem;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.75;
}
body.page-simulation main section.private-room .private-room__inner .private-room__heading p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
}
body.page-simulation main section.private-room .private-room__inner .private-room__img {
  position: relative;
  transform: scale(1.3, 1.1);
  transform-origin: right center;
  width: 50%;
  height: 40rem;
}
body.page-simulation main section.private-room .private-room__inner .private-room__img img {
  height: 100%;
}
body.page-simulation main section.private-room .private-room__inner .private-room__img .bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.page-simulation main section.private-room .private-room__inner .private-room__img .bg-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.page-simulation main section.private-room .private-room__inner .private-room__img .bg-slide img:not(:first-child) {
  display: none;
}
@media (max-width: 767px) {
  body.page-simulation main section.private-room {
    padding: 5.3rem 5rem 10rem 5rem !important;
  }
  body.page-simulation main section.private-room .private-room__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 0 !important;
    flex-direction: column;
  }
  body.page-simulation main section.private-room .private-room__inner .private-room__heading {
    order: 2;
    width: 100%;
    padding-left: 0;
  }
  body.page-simulation main section.private-room .private-room__inner .private-room__heading h2 {
    margin-bottom: 4.2rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  body.page-simulation main section.private-room .private-room__inner .private-room__heading p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
  body.page-simulation main section.private-room .private-room__inner .private-room__img {
    transform: none;
    width: calc(100% + 2.5rem + 5rem);
    height: 18rem;
    margin-left: -3.75rem;
    margin-bottom: 4.9rem;
  }
}

body.page-lesson {
  /*-----------------------------------
   MV
  -----------------------------------*/
  /*-----------------------------------
   main
  -----------------------------------*/
}
body.page-lesson .mv {
  background: url(../img/photo/lesson-mv.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  body.page-lesson .mv {
    background: url(../img/photo/lesson-mv-sp.jpg) no-repeat center center/cover;
  }
}
body.page-lesson main section.score-up .score-up__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: calc(972px + 3rem);
  padding: 11.8rem 1.5rem 11.2rem !important;
}
body.page-lesson main section.score-up .score-up__inner .score-up__heading {
  width: 50.9259259259%;
}
body.page-lesson main section.score-up .score-up__inner .score-up__heading h2 {
  margin-bottom: 6.6rem;
  font-size: 2.7rem;
  line-height: 1.75;
}
body.page-lesson main section.score-up .score-up__inner .score-up__heading p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.01em;
}
body.page-lesson main section.score-up .score-up__inner .score-up__img {
  position: absolute;
  top: 50%;
  right: -15.6rem;
  transform: translateY(-50%);
  width: 55rem;
  height: 36.7rem;
  background: url(../img/photo/lesson-equipment.jpg) no-repeat center/cover;
}
@media (max-width: 767px) {
  body.page-lesson main section.score-up .score-up__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 22.1rem 5rem 6rem !important;
  }
  body.page-lesson main section.score-up .score-up__inner .score-up__heading {
    width: 100%;
  }
  body.page-lesson main section.score-up .score-up__inner .score-up__heading h2 {
    margin-bottom: 4.9rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  body.page-lesson main section.score-up .score-up__inner .score-up__heading p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
  body.page-lesson main section.score-up .score-up__inner .score-up__img {
    position: absolute;
    top: 0;
    left: 0;
    right: unset;
    transform: unset;
    width: 90%;
    height: 18rem;
  }
}
body.page-lesson main section.lesson-style {
  padding-top: 11rem;
  padding-bottom: 11rem;
}
body.page-lesson main section.lesson-style .lesson-style__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: calc(972px + 3rem);
  display: flex;
  flex-direction: column;
  row-gap: 5.6rem;
}
body.page-lesson main section.lesson-style .lesson-style__inner .lesson-style__heading {
  width: 55%;
  padding-right: 6rem;
}
body.page-lesson main section.lesson-style .lesson-style__inner .lesson-style__heading h2,
body.page-lesson main section.lesson-style .lesson-style__inner .lesson-style__heading h3 {
  margin-bottom: 5.4rem;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.75;
}
body.page-lesson main section.lesson-style .lesson-style__inner .lesson-style__heading h3 {
  margin-bottom: 3.4rem;
}
body.page-lesson main section.lesson-style .lesson-style__inner .lesson-style__heading p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
}
body.page-lesson main section.analysis {
  background: url(../img/photo/lesson-analysis.jpg) no-repeat center/cover;
}
body.page-lesson main section.analysis .lesson-style__inner .lesson-style__heading h2 {
  margin-bottom: 0;
}
body.page-lesson main section.teaching {
  background: url(../img/photo/lesson-teaching-pro.jpg) no-repeat center/cover;
}
body.page-lesson main section.small-class {
  background: url(../img/photo/lesson-small-class.jpg) no-repeat center/cover;
}
@media (max-width: 767px) {
  body.page-lesson main section.lesson-style {
    padding: 25rem 5rem 8rem !important;
  }
  body.page-lesson main section.lesson-style .lesson-style__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 0 !important;
  }
  body.page-lesson main section.lesson-style .lesson-style__inner .lesson-style__heading {
    width: 100%;
    padding-right: 0;
  }
  body.page-lesson main section.lesson-style .lesson-style__inner .lesson-style__heading h2,
  body.page-lesson main section.lesson-style .lesson-style__inner .lesson-style__heading h3 {
    margin-bottom: 3.8rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  body.page-lesson main section.lesson-style .lesson-style__inner .lesson-style__heading h3 {
    margin-bottom: 2rem;
  }
  body.page-lesson main section.lesson-style .lesson-style__inner .lesson-style__heading p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
  body.page-lesson main section.analysis {
    background: url(../img/photo/lesson-analysis-sp.jpg) no-repeat top center/100%;
  }
  body.page-lesson main section.analysis .lesson-style__inner .lesson-style__heading h2 {
    margin-bottom: 0;
  }
  body.page-lesson main section.teaching {
    background: url(../img/photo/lesson-teaching-pro-sp.jpg) no-repeat top center/100%;
  }
  body.page-lesson main section.small-class {
    background: url(../img/photo/lesson-small-class-sp.jpg) no-repeat top center/100%;
  }
}
body.page-lesson main section.auto-teaup {
  margin-bottom: 0;
}
body.page-lesson main section.teacher {
  padding-top: 16.4rem;
  padding-bottom: 15.5rem;
}
body.page-lesson main section.teacher .teacher__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: calc(972px + 3rem);
}
body.page-lesson main section.teacher .teacher__inner h2 {
  margin-bottom: 9.5rem;
  font-size: 3.5rem;
}
body.page-lesson main section.teacher .teacher__inner ul.teacher__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 12.3rem;
}
body.page-lesson main section.teacher .teacher__inner ul.teacher__list li {
  width: 46%;
}
body.page-lesson main section.teacher .teacher__inner ul.teacher__list li > span {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-bottom: 2.8rem;
}
body.page-lesson main section.teacher .teacher__inner ul.teacher__list li h3 {
  margin-bottom: 1rem;
  font-size: 2.7rem;
}
body.page-lesson main section.teacher .teacher__inner ul.teacher__list li h3 span {
  font-size: 1.6rem;
}
body.page-lesson main section.teacher .teacher__inner ul.teacher__list li h4 {
  margin-bottom: 3rem;
  font-size: 1.6rem;
}
body.page-lesson main section.teacher .teacher__inner ul.teacher__list li p {
  font-size: 1.8rem;
  line-height: 2;
}
@media (max-width: 767px) {
  body.page-lesson main section.teacher {
    padding: 7rem 5rem 8rem !important;
  }
  body.page-lesson main section.teacher .teacher__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 0 !important;
  }
  body.page-lesson main section.teacher .teacher__inner h2 {
    margin-bottom: 5.6rem;
    font-size: 1.8rem;
  }
  body.page-lesson main section.teacher .teacher__inner ul.teacher__list {
    flex-direction: column;
    row-gap: 6.3rem;
  }
  body.page-lesson main section.teacher .teacher__inner ul.teacher__list li {
    width: 100%;
  }
  body.page-lesson main section.teacher .teacher__inner ul.teacher__list li > span {
    width: calc(100% + 5rem);
    height: 19.3rem;
  }
  body.page-lesson main section.teacher .teacher__inner ul.teacher__list li > span img {
    height: 100%;
  }
  body.page-lesson main section.teacher .teacher__inner ul.teacher__list li h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  body.page-lesson main section.teacher .teacher__inner ul.teacher__list li h3 span {
    font-size: 1.2rem;
  }
  body.page-lesson main section.teacher .teacher__inner ul.teacher__list li h4 {
    margin-bottom: 3rem;
    font-size: 1.3rem;
  }
  body.page-lesson main section.teacher .teacher__inner ul.teacher__list li p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
}
body.page-lesson main section.schedule {
  margin-bottom: 15.5rem;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #302D2C;
}
body.page-lesson main section.schedule .schedule__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: calc(972px + 3rem);
}
body.page-lesson main section.schedule .schedule__inner h2 {
  margin-bottom: 2.1rem;
  font-size: 3.5rem;
}
body.page-lesson main section.schedule .schedule__inner small {
  display: block;
  margin-bottom: 2rem;
  font-size: 1.7rem;
}
body.page-lesson main section.schedule .schedule__inner span {
  width: 100%;
}
body.page-lesson main section.schedule .schedule__inner span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.page-lesson main section.schedule .schedule__inner p.schedule-note {
  position: relative;
  top: -4rem;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  body.page-lesson main section.schedule {
    margin-bottom: 8.5rem;
    padding: 8rem 5rem 13rem;
  }
  body.page-lesson main section.schedule .schedule__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 0 !important;
  }
  body.page-lesson main section.schedule .schedule__inner h2 {
    margin-bottom: 2.1rem;
    font-size: 1.8rem;
  }
  body.page-lesson main section.schedule .schedule__inner small {
    display: block;
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }
  body.page-lesson main section.schedule .schedule__inner p.schedule-note {
    top: 4rem;
    font-size: 1.6rem;
  }
}

body.page-facility {
  /*-----------------------------------
   MV
  -----------------------------------*/
  /*-----------------------------------
   main
  -----------------------------------*/
}
body.page-facility .mv {
  background: url(../img/photo/facility-mv.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  body.page-facility .mv {
    background: url(../img/photo/facility-mv-sp.jpg) no-repeat center center/cover;
  }
}
body.page-facility main section.facility-top .facility-top__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: calc(972px + 3rem);
  padding: 11.8rem 1.5rem 11.2rem !important;
}
body.page-facility main section.facility-top .facility-top__inner .facility-top__heading {
  width: 50.9259259259%;
}
body.page-facility main section.facility-top .facility-top__inner .facility-top__heading h2 {
  margin-bottom: 6.6rem;
  font-size: 2.7rem;
  line-height: 1.75;
}
body.page-facility main section.facility-top .facility-top__inner .facility-top__heading p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.01em;
}
body.page-facility main section.facility-top .facility-top__inner .facility-top__img {
  position: absolute;
  top: 50%;
  right: min(-1 * (100vw - 972px) / 2, 0rem);
  transform: translateY(-50%);
  width: 55rem;
  height: 36.7rem;
  background: url(../img/photo/facility-img-01.jpg) no-repeat center/cover;
}
@media (min-width: 1280px) {
  body.page-facility main section.facility-top .facility-top__inner .facility-top__img {
    right: -15.6rem;
  }
}
@media (max-width: 767px) {
  body.page-facility main section.facility-top .facility-top__inner {
    width: 100%;
    max-width: 1146px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding: 23rem 5rem 7rem !important;
  }
  body.page-facility main section.facility-top .facility-top__inner .facility-top__heading {
    width: 100%;
  }
  body.page-facility main section.facility-top .facility-top__inner .facility-top__heading h2 {
    margin-bottom: 4.9rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  body.page-facility main section.facility-top .facility-top__inner .facility-top__heading p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
  body.page-facility main section.facility-top .facility-top__inner .facility-top__img {
    position: absolute;
    top: 0;
    left: 0;
    right: unset;
    transform: none;
    width: 90%;
    height: 18rem;
  }
}
body.page-facility main section.floor-map {
  position: relative;
  padding-top: 2.6rem;
  padding-bottom: 3.4rem;
  background-color: #302D2C;
}
body.page-facility main section.floor-map .floor-map__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: calc(1162px + 3rem);
}
body.page-facility main section.floor-map .floor-map__inner img {
  width: 100%;
}
body.page-facility main section.floor-map .floor-map__inner h2.floor-map__title {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-350%);
  font-size: 2.7rem;
}
@media (max-width: 767px) {
  body.page-facility main section.floor-map {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  body.page-facility main section.floor-map .floor-map__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 0 1.5rem !important;
  }
  body.page-facility main section.floor-map .floor-map__inner h2.floor-map__title {
    bottom: 2rem;
    left: 2rem;
    transform: none;
    font-size: 1.8rem;
  }
}
body.page-facility main section.floor-panels {
  padding-bottom: 11em;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel {
  position: relative;
  display: flex;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(1) .floor-panels__img {
  aspect-ratio: 1.3/1;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(4) .floor-panels__img, body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(5) .floor-panels__img, body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(6) .floor-panels__img {
  aspect-ratio: 1.15/1;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__text p.floor-panels__deco span {
  margin-left: 2.6rem;
  font-size: 1.6rem;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__text .floor-panels__locker-note {
  width: calc(100% + 1.5rem);
  padding: 2rem;
  border: 0.1rem solid #fff;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__text .floor-panels__locker-note p:nth-of-type(1) {
  font-size: 1.6rem;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__text .floor-panels__locker-note p:nth-of-type(2) {
  margin-top: 3rem;
  font-size: 1.6rem;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__text .floor-panels__locker-note p:nth-of-type(3) {
  font-size: 1.5rem;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__text .floor-panels__locker-note p:nth-of-type(3) span {
  font-size: 1.8rem;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__img {
  width: 50%;
  aspect-ratio: 1/1;
  background: url(../img/photo/facility-premium-room.jpg) no-repeat center/cover;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__text {
  box-sizing: content-box;
  width: 40rem;
  padding: 7rem 1.5rem 1rem;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__text p.floor-panels__deco {
  position: relative;
  width: fit-content;
  margin-bottom: 3rem;
  font-size: 3.2rem;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__text p.floor-panels__deco::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -1rem;
  transform: translate(100%, -50%);
  width: 36rem;
  height: 0.1rem;
  background-color: #fff;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__text h3 {
  margin-bottom: 4.6rem;
  font-size: 2.7rem;
  line-height: 1.6666666667;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__text > p:nth-of-type(2) {
  font-size: 1.6rem;
  line-height: 2;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__text > p:nth-of-type(3) {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 2;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(odd) .floor-panels__text {
  padding-left: 9.1rem;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(even) .floor-panels__img {
  order: 2;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(even) .floor-panels__text {
  margin-left: auto;
  padding-right: 9.1rem;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(1) .floor-panels__img {
  background: url(../img/photo/facility-premium-room.jpg) no-repeat center/cover;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(2) .floor-panels__img {
  background: url(../img/photo/facility-private-room.jpg) no-repeat center/cover;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(3) .floor-panels__img {
  background: url(../img/photo/facility-lesson-booth.jpg) no-repeat center/cover;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(4) .floor-panels__img {
  background: url(../img/photo/facility-patter-area.jpg) no-repeat center/cover;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(5) .floor-panels__img {
  background: url(../img/photo/facility-locker.jpg) no-repeat center/cover;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(6) .floor-panels__img {
  background: url(../img/photo/facility-rental.jpg) no-repeat center/cover;
}
body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__img {
  background: url(../img/photo/facility-dress-room.jpg) no-repeat center/cover;
}
@media (max-width: 767px) {
  body.page-facility main section.floor-panels {
    padding-top: 4.3rem;
    padding-bottom: 7.3rem;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel {
    flex-direction: column;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__text {
    margin-bottom: 0;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__text p.floor-panels__deco span {
    margin-left: 1.2rem;
    font-size: 1.3rem;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__text .floor-panels__locker-note {
    width: 100%;
    padding: 2rem 1rem 2rem 1.5rem;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__text .floor-panels__locker-note p:nth-of-type(1) {
    font-size: 1.3rem;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__text .floor-panels__locker-note p:nth-of-type(2) {
    margin-top: 3rem;
    font-size: 1.3rem;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__text .floor-panels__locker-note p:nth-of-type(3) {
    font-size: 1.3rem;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__img {
    width: 90%;
    height: 18rem;
    aspect-ratio: unset;
    margin-bottom: 3.5rem;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__text {
    order: 2;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 6rem;
    padding: 0 5rem !important;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__text p.floor-panels__deco {
    margin-bottom: 3rem;
    font-size: 2.6rem;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__text p.floor-panels__deco::after {
    width: 9rem;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__text h3 {
    margin-bottom: 4rem;
    font-size: 1.8rem;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__text > p:nth-of-type(2),
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel .floor-panels__text > p:nth-of-type(3) {
    font-size: 1.3rem;
    line-height: 2.1;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(odd) .floor-panels__text {
    padding-left: 9.1rem;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(even) .floor-panels__img {
    order: 2;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(even) .floor-panels__text {
    margin-left: auto;
    padding-right: 9.1rem;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(1) .floor-panels__img {
    background: url(../img/photo/facility-premium-room-sp.jpg) no-repeat center/cover;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(2) .floor-panels__img {
    background: url(../img/photo/facility-private-room-sp.jpg) no-repeat center/cover;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(3) .floor-panels__img {
    background: url(../img/photo/facility-lesson-booth-sp.jpg) no-repeat center/cover;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(4) .floor-panels__img {
    background: url(../img/photo/facility-patter-area-sp.jpg) no-repeat center/cover;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(5) .floor-panels__img {
    background: url(../img/photo/facility-locker-sp.jpg) no-repeat center/cover;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(6) .floor-panels__img {
    background: url(../img/photo/facility-rental-sp.jpg) no-repeat center/cover;
  }
  body.page-facility main section.floor-panels .floor-panels__inner .floor-panels__panel:nth-child(7) .floor-panels__img {
    background: url(../img/photo/facility-dress-room-sp.jpg) no-repeat center/cover;
  }
}

body.page-price {
  /*-----------------------------------
   MV
  -----------------------------------*/
}
body.page-price .only-pc {
  display: block;
}
body.page-price .only-sp {
  display: none;
}
@media (max-width: 767px) {
  body.page-price .only-pc {
    display: none;
  }
  body.page-price .only-sp {
    display: block;
  }
}
body.page-price .mv {
  background: url(../img/photo/price-mv.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  body.page-price .mv {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 58rem;
    background: url(../img/photo/price-mv-sp.jpg) no-repeat center center/cover;
  }
  body.page-price .mv .container {
    width: 100%;
    padding-left: 5rem;
    padding-right: 3rem;
  }
}
body.page-price main section.price {
  background: url(../img/photo/price-price.jpg) no-repeat top center/cover;
}
body.page-price main section.price .price-outer {
  border-bottom: 1px solid #fff;
}
body.page-price main section.price .price-outer.last {
  border: none;
}
body.page-price main section.price .price__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: 1002px;
  padding: 7.3rem 1.5rem 10.3rem !important;
  padding: 11.8rem;
}
body.page-price main section.price .price__inner.first {
  padding: 10.3rem 1.5rem 7.3rem !important;
}
body.page-price main section.price .price__inner .price__heading {
  width: 100%;
  margin-bottom: 5rem;
}
body.page-price main section.price .price__inner .price__heading h2 {
  margin-bottom: 1.8rem;
  font-size: 2.7rem;
  line-height: 1;
}
body.page-price main section.price .price__inner .price__heading p {
  font-size: 1.8rem;
  line-height: 1;
}
body.page-price main section.price .price__inner .price__box {
  background: rgba(255, 255, 255, 0.85);
  padding: 1.8rem 2.8rem;
  color: #3E3A39;
  font-size: 1.8rem;
  display: inline-block;
  margin-right: 5rem;
  min-width: 34.5rem;
}
body.page-price main section.price .price__inner .price__box .kg {
  display: block;
  font-size: 1.6rem;
  margin-left: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
}
body.page-price main section.price .price__inner .price__box ul li {
  font-weight: 500;
}
body.page-price main section.price .price__inner .price__box.__small {
  padding: 1rem 1.8rem;
  margin-right: 0;
  min-width: 28.2rem;
  min-height: 10rem;
}
body.page-price main section.price .price__inner .price__box.__small .price__bttl {
  font-size: 1.3rem;
}
body.page-price main section.price .price__inner .price__box.__small .price_item {
  font-size: 2.3rem;
}
body.page-price main section.price .price__inner .price__box.__small .price_item .enn {
  font-size: 1.4rem;
  margin-left: 1rem;
}
body.page-price main section.price .price__inner .price__box.__small .price_item .zei {
  font-size: 1.4rem;
}
body.page-price main section.price .price__inner .price__box.__small .price__line {
  font-size: 1.1rem;
}
body.page-price main section.price .price__inner .price__lead {
  font-size: 2.7rem;
  margin-bottom: 4rem;
}
body.page-price main section.price .price__inner .price__lead span {
  font-size: 1.8rem;
  display: block;
  font-weight: 100;
}
body.page-price main section.price .price__inner .price__bttl {
  font-size: 1.6rem;
}
body.page-price main section.price .price__inner .price_item {
  font-size: 2.6rem;
}
body.page-price main section.price .price__inner .price_item .enn {
  font-size: 1.8rem;
  margin-left: 1rem;
}
body.page-price main section.price .price__inner .price_item .zei {
  font-size: 1.6rem;
}
body.page-price main section.price .price__inner .price__line {
  font-size: 1.3rem;
  position: relative;
}
body.page-price main section.price .price__inner .price__line::before {
  content: "";
  display: inline-block;
  width: 5.6rem;
  height: 1px;
  background: #3E3A39;
  margin-bottom: 0.5rem;
  margin-left: -2.5rem;
  margin-right: 0.5rem;
}
body.page-price main section.price .price__inner .price__box__flex {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
}
@media (max-width: 767px) {
  body.page-price main section.price {
    background: none;
  }
  body.page-price main section.price .price-outer {
    border: none;
  }
  body.page-price main section.price .price-outer.last {
    border-top: 1px solid #fff;
  }
  body.page-price main section.price .price__inner {
    width: 100%;
    max-width: 1146px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
    position: relative;
    max-width: 1002px;
    padding: 5rem 5.6rem 5rem 5rem !important;
  }
  body.page-price main section.price .price__inner.first {
    padding: 5rem !important;
    background: url(../img/photo/price-price.jpg) no-repeat top center/cover;
    padding: 5rem 5.6rem 5rem 5rem !important;
  }
  body.page-price main section.price .price__inner .price__heading {
    width: 100%;
    margin-left: 1rem;
    margin-bottom: 5rem;
  }
  body.page-price main section.price .price__inner .price__heading h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  body.page-price main section.price .price__inner .price__heading p {
    font-size: 1.3rem;
  }
  body.page-price main section.price .price__inner .price__box {
    background: rgba(255, 255, 255, 0.85);
    padding: 1.8rem 1rem;
    font-size: 1.3rem;
    display: block;
    margin-right: 0;
    min-width: 100%;
  }
  body.page-price main section.price .price__inner .price__box .kg {
    display: block;
    font-size: 1rem;
    margin-left: 1.2rem;
  }
  body.page-price main section.price .price__inner .price__box ul li {
    letter-spacing: -0.5pt;
  }
  body.page-price main section.price .price__inner .price__box.__small {
    padding: 1rem 1.8rem;
    margin-right: 0;
    min-width: 23.2rem;
    display: inline-block;
    margin-top: 1rem;
    min-height: unset;
  }
  body.page-price main section.price .price__inner .price__box.__small .price__bttl {
    font-size: 1rem;
  }
  body.page-price main section.price .price__inner .price__box.__small .price_item {
    font-size: 1.4rem;
  }
  body.page-price main section.price .price__inner .price__box.__small .price_item .enn {
    font-size: 1.3rem;
    margin-left: 1rem;
  }
  body.page-price main section.price .price__inner .price__box.__small .price_item .zei {
    font-size: 1rem;
  }
  body.page-price main section.price .price__inner .price__box.__small .price__line {
    font-size: 0.8rem;
  }
  body.page-price main section.price .price__inner .price__box.__small .price__line::before {
    width: 4.7rem;
  }
  body.page-price main section.price .price__inner .price__lead {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
  }
  body.page-price main section.price .price__inner .price__lead span {
    font-size: 1.2rem;
    display: block;
    font-weight: 100;
    margin-top: 1rem;
  }
  body.page-price main section.price .price__inner .price__bttl {
    font-size: 1.2rem;
  }
  body.page-price main section.price .price__inner .price_item {
    font-size: 1.8rem;
  }
  body.page-price main section.price .price__inner .price_item .enn {
    font-size: 1.5rem;
    margin-left: 1rem;
  }
  body.page-price main section.price .price__inner .price_item .zei {
    font-size: 1.2rem;
  }
  body.page-price main section.price .price__inner .price__line {
    font-size: 1rem;
  }
  body.page-price main section.price .price__inner .price__line::before {
    content: "";
    display: inline-block;
    width: 5.6rem;
    height: 1px;
    background: #3E3A39;
    margin-bottom: 0.3rem;
    margin-left: -2.5rem;
    margin-right: 0.5rem;
  }
  body.page-price main section.price .price__inner .price__box__flex {
    display: block;
  }
}
body.page-price main section.price-service {
  padding-top: 0;
  padding-bottom: 11.8rem;
}
body.page-price main section.price-service .price-service__box {
  display: flex;
  position: relative;
}
body.page-price main section.price-service .price-service__box.rev {
  flex-direction: row-reverse;
}
body.page-price main section.price-service .price-service__box .box__img {
  position: relative;
  width: 50%;
}
body.page-price main section.price-service .price-service__box .box__img .price-service__note {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}
body.page-price main section.price-service .price-service__box .box__txt {
  width: 50%;
}
body.page-price main section.price-service .price-service__box .box__txt h2 {
  font-size: 2.7rem;
  margin-bottom: 3rem;
}
body.page-price main section.price-service .price-service__box .box__txt p {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
body.page-price main section.price-service .price-service__box .box__txt ul {
  font-size: 1.6rem;
}
body.page-price main section.price-service .price-service__inner {
  position: absolute;
  width: 100%;
  max-width: 1002px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  left: 0;
  right: 0;
  top: 8rem;
  display: flex;
  justify-content: space-between;
}
body.page-price main section.price-service .price-service__inner div {
  position: relative;
  width: 50%;
}
body.page-price main section.price-service .price-service__inner div.rit {
  padding-right: 4rem;
}
body.page-price main section.price-service .price-service__inner div.lft {
  padding-left: 9rem;
}
@media (max-width: 767px) {
  body.page-price main section.price-service {
    padding-top: 0;
    padding-bottom: 0;
  }
  body.page-price main section.price-service .price-service__box {
    display: block;
  }
  body.page-price main section.price-service .price-service__box .box__img {
    width: 100%;
    padding-right: 5.6rem;
  }
  body.page-price main section.price-service .price-service__box .box__img .price-service__note {
    position: absolute;
    bottom: 0.5rem;
    right: unset;
    left: 1rem;
    font-size: 1.2rem;
  }
  body.page-price main section.price-service .price-service__box .box__txt {
    width: 100%;
    padding: 4rem 5.6rem 4rem 5rem;
  }
  body.page-price main section.price-service .price-service__box .box__txt h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  body.page-price main section.price-service .price-service__box .box__txt p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
  body.page-price main section.price-service .price-service__box .box__txt ul {
    font-size: 1.3rem;
  }
  body.page-price main section.price-service .price-service__inner {
    position: static;
    width: 100%;
    max-width: 1002px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    left: 0;
    right: 0;
    top: 8rem;
    display: block;
  }
  body.page-price main section.price-service .price-service__inner div {
    width: 100%;
  }
  body.page-price main section.price-service .price-service__inner div.rit {
    padding-right: 0;
  }
  body.page-price main section.price-service .price-service__inner div.lft {
    padding-left: 0;
  }
}

body.page-access {
  /*-----------------------------------
   MV
  -----------------------------------*/
}
body.page-access .only-pc {
  display: block;
}
body.page-access .only-sp {
  display: none;
}
@media (max-width: 767px) {
  body.page-access .only-pc {
    display: none;
  }
  body.page-access .only-sp {
    display: block;
  }
}
body.page-access .mv {
  background: url(../img/photo/access-mv.jpg) no-repeat center center/cover;
}
body.page-access .mv::before {
  content: "";
  filter: brightness(0.5);
}
body.page-access .mv .mv__text {
  z-index: 10;
}
@media (max-width: 767px) {
  body.page-access .mv {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 58rem;
    background: url(../img/photo/access-mv-sp.jpg) no-repeat center center/cover;
  }
  body.page-access .mv .container {
    width: 100%;
    padding-left: 5rem;
    padding-right: 3rem;
  }
}
body.page-access main section.access-info p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
body.page-access main section.access-info .access__inner {
  width: 100%;
  max-width: 1002px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-top: 8.5rem;
}
body.page-access main section.access-info .access__inner .access-info__map {
  width: 148%;
  height: 41.8rem;
}
body.page-access main section.access-info .access-info__box {
  display: flex;
}
body.page-access main section.access-info .access-info__box .access-info__img {
  width: 50%;
}
body.page-access main section.access-info .access-info__box .access-info__txt {
  width: 50%;
  padding: 5rem 0 0 5rem;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px solid #fff;
  margin: 0;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl:last-of-type {
  border: none;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl dt {
  width: 18%;
  font-size: 1.8rem;
  padding: 2rem 0;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl dd {
  width: 82%;
  font-size: 1.6rem;
  padding: 2.3rem 0 2rem;
  margin-inline-start: 0;
  font-weight: 400;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl dd a {
  transition: opacity 0.3s;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl dd a:hover {
  opacity: 0.7;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl dd div.date-width {
  display: inline-block;
  width: 5rem;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl dd .info__tel {
  display: block;
  background: url(../img/photo/icon-tel.png) no-repeat center left/1.3rem;
  padding-left: 2rem;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl dd .info__url {
  display: block;
  background: url(../img/photo/icon-mail.png) no-repeat center left/1.4rem;
  padding-left: 2rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl dd .info_coution {
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl dd .link-detail {
  position: relative;
  display: block;
  width: 13.3rem;
  font-size: 1.7rem;
  right: 0;
  width: 42%;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl dd .link-detail::before {
  position: absolute;
  content: "";
  bottom: -0.8rem;
  right: 0;
  top: 50%;
  display: block;
  width: 40%;
  height: 0.1rem;
  background-color: #fff;
}
body.page-access main section.access-info .access-info__box .access-info__txt dl dd .link-detail::after {
  position: absolute;
  content: "";
  bottom: -0.8rem;
  right: 0;
  transform: rotate(45deg);
  transform-origin: right center;
  display: block;
  width: 1rem;
  height: 0.1rem;
  background-color: #fff;
  top: 50%;
}
body.page-access main section.access-info .access__map {
  margin-bottom: 11.6rem;
}
@media (max-width: 1700px) {
  body.page-access main section.access-info .access__inner .access-info__map {
    width: 135%;
  }
}
@media (max-width: 1500px) {
  body.page-access main section.access-info .access__inner .access-info__map {
    width: 131%;
  }
}
@media (max-width: 1200px) {
  body.page-access main section.access-info .access__inner .access-info__map {
    width: 110.5%;
  }
}
@media (max-width: 974px) {
  body.page-access main section.access-info .access__inner .access-info__map {
    width: 101.5%;
  }
}
@media (max-width: 767px) {
  body.page-access main section.access-info p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  body.page-access main section.access-info .access__inner {
    padding-left: 5rem;
    padding-right: 5.6rem;
    margin-top: 6rem;
  }
  body.page-access main section.access-info .access__inner .access-info__map {
    width: 122%;
    height: 15rem;
  }
  body.page-access main section.access-info .access-info__box {
    display: block;
  }
  body.page-access main section.access-info .access-info__box .access-info__img {
    width: 100%;
    padding-right: 2.8rem;
  }
  body.page-access main section.access-info .access-info__box .access-info__txt {
    width: 100%;
    padding: 1rem 5.6rem 0 5rem;
  }
  body.page-access main section.access-info .access-info__box .access-info__txt dl dt {
    width: 22%;
    font-size: 1.3rem;
    padding: 1.5rem 0;
  }
  body.page-access main section.access-info .access-info__box .access-info__txt dl dd {
    width: 78%;
    font-size: 1.3rem;
    padding: 1.8rem 0 1.5rem;
    padding-left: 0.5rem;
    box-sizing: border-box;
  }
  body.page-access main section.access-info .access-info__box .access-info__txt dl dd .info__url {
    letter-spacing: 0;
  }
  body.page-access main section.access-info .access-info__box .access-info__txt dl dd .info_coution {
    font-size: 1.1rem;
    text-indent: -1.1rem;
    margin-left: 1.1rem;
    line-height: 1.5;
    margin-top: 1.5rem;
  }
  body.page-access main section.access-info .access-info__box .access-info__txt dl dd .link-detail {
    font-size: 1.3rem;
    width: 90%;
  }
}
body.page-access main section.access-root {
  padding-top: 11.8rem;
  padding-bottom: 1.6rem;
}
body.page-access main section.access-root .access-root__inner {
  width: 100%;
  max-width: 1002px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
body.page-access main section.access-root .access-root__inner .access-root__heading {
  margin-bottom: 5rem;
}
body.page-access main section.access-root .access-root__inner .access-root__heading h2 {
  margin-bottom: 1.8rem;
  font-size: 3.7rem;
  margin-bottom: 1rem;
}
body.page-access main section.access-root .access-root__inner .access-root__heading p {
  font-size: 1.8rem;
  line-height: 1;
}
body.page-access main section.access-root .access-root__inner .access-root__list {
  display: flex;
  flex-wrap: wrap;
  width: 120%;
  max-width: 1040rem;
}
body.page-access main section.access-root .access-root__inner .access-root__list li {
  margin-right: 10rem;
  max-width: 50.4rem;
  margin-bottom: 9.7rem;
  position: relative;
  width: 36.33333%;
}
body.page-access main section.access-root .access-root__inner .access-root__list li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 1.2rem solid transparent;
  border-bottom: 1.2rem solid transparent;
  border-left: 1.6rem solid #fff;
  border-right: 0;
  display: inline-block;
  right: -6rem;
  top: 50%;
}
body.page-access main section.access-root .access-root__inner .access-root__list li:last-child::after {
  display: none;
}
body.page-access main section.access-root .access-root__inner .access-root__list li h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
body.page-access main section.access-root .access-root__inner .access-root__list li h3 span {
  font-size: 2.6rem;
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  body.page-access main section.access-root {
    padding-top: 6.3rem;
    padding-bottom: 1.6rem;
  }
  body.page-access main section.access-root .access-root__inner {
    width: 100%;
    max-width: 1002px;
    margin: 0 auto;
    padding-left: 5rem;
    padding-right: 5.6rem;
  }
  body.page-access main section.access-root .access-root__inner .access-root__heading {
    margin-bottom: 5rem;
  }
  body.page-access main section.access-root .access-root__inner .access-root__heading h2 {
    margin-bottom: 1.8rem;
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  body.page-access main section.access-root .access-root__inner .access-root__heading p {
    font-size: 1.3rem;
  }
  body.page-access main section.access-root .access-root__inner .access-root__list {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  body.page-access main section.access-root .access-root__inner .access-root__list li {
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 6.3rem;
    width: 100%;
  }
  body.page-access main section.access-root .access-root__inner .access-root__list li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-top: 16px solid #fff;
    display: inline-block;
    right: 0;
    left: 0;
    bottom: -5.5rem;
    top: auto;
    margin: auto;
  }
  body.page-access main section.access-root .access-root__inner .access-root__list li:last-child::after {
    display: none;
  }
  body.page-access main section.access-root .access-root__inner .access-root__list li h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  body.page-access main section.access-root .access-root__inner .access-root__list li h3 span {
    font-size: 1.8rem;
    margin-right: 0.5rem;
  }
}

body.error404 .content-404 {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1002px;
  margin-bottom: 21.3rem;
}
body.error404 .content-404 h2 {
  margin-bottom: 3rem;
  font-size: 3.7rem;
  font-weight: 500;
}
body.error404 .content-404 h3 {
  margin-bottom: 4.2rem;
  font-size: 2.1rem;
  font-weight: 500;
}
body.error404 .content-404 p {
  margin-bottom: 5.3rem;
  font-size: 1.8rem;
}
body.error404 .content-404 .content-404__message h5 {
  margin-bottom: 2.7rem;
  font-size: 1.8rem;
}
body.error404 .content-404 .content-404__message ul li {
  font-size: 1.8rem;
}
body.error404 .content-404 .content-404__message ul li:not(:last-child) {
  margin-bottom: 0.8rem;
}

@media (max-width: 767px) {
  body.error404 .content-404 {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    margin-bottom: 14rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  body.error404 .content-404 h2 {
    margin-bottom: 2.5rem;
    font-size: 2.4rem;
  }
  body.error404 .content-404 h3 {
    margin-bottom: 5.3rem;
    font-size: 2rem;
  }
  body.error404 .content-404 p {
    font-size: 1.3rem;
  }
  body.error404 .content-404 .content-404__message h5 {
    margin-bottom: 2.7rem;
    font-size: 1.3rem;
  }
  body.error404 .content-404 .content-404__message ul li {
    font-size: 1.3rem;
  }
}