@charset "UTF-8";
/* fonts
------------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");
/* common
------------------------------------------ */
* {
  box-sizing: border-box;
}

body {
  font-family: YakuHanJP, "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #0b0c0e;
}

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

a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

.page {
  background-color: #ffffff;
  overflow: hidden;
}

.pc {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}
/* header
------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 0 3.125vw;
  width: 100%;
  height: 18.75vw;
}

.header__logo {
  position: relative;
  z-index: 30;
  width: 21.875vw;
}

.header__textbox {
  display: none;
  position: fixed;
  top: 52%;
  right: 0;
  left: 0;
  margin: auto;
  transform: translateY(-50%);
  transition: all 0.2s ease;
}

.header__nav ul {
  width: 87.5vw;
  margin: 0 auto;
}

.header__nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 15vw;
  font-size: 4.6875vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #f0f1f4;
}

.header__nav ul li a::after {
  content: "";
  width: 5.9375vw;
  height: 5.9375vw;
  background-image: url("../img/common/icon_arrow_1.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.header__sns {
  margin-top: 4.0625vw;
}

.header__sns ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__sns ul li {
  margin: 0 1.5625vw;
}

.header__sns ul li a {
  display: block;
  width: 14.6875vw;
}

.header__sns ul li:first-child a {
  width: 16.875vw;
}

.header .page__contact-btn {
  height: 31.25vw;
  margin-top: 4.0625vw;
}

.header__menu {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 50px;
  justify-content: center;
  position: relative;
  width: 50px;
  z-index: 300;
}

.header__menu__wrap {
  height: 22px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 32px;
}

.header__menu__wrap > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 3px;
  margin: auto;
  border-radius: 2px;
  transition: 0.2s ease-out;
}

.header__menu__wrap > span:nth-child(1) {
  bottom: auto;
  background-color: #40a9f5;
}

.header__menu__wrap > span:nth-child(2) {
  background-color: #d9e022;
}

.header__menu__wrap > span:nth-child(3) {
  top: auto;
  background-color: #ed1b25;
}

.header__contact__btn {
  display: none;
}

.header.is-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #a7b988;
  transform: translateY(0);
}

.header.is-open .header__inner {
  background-color: #a7b988;
}

.header.is-open .header__logo {
  opacity: 0;
}

.header.is-open .header__textbox {
  display: block;
}

.header.is-open .header__menu__wrap > span:nth-child(1) {
  transform: translateY(9px) rotate(-45deg);
}

.header.is-open .header__menu__wrap > span:nth-child(2) {
  transform: scaleX(0);
}

.header.is-open .header__menu__wrap > span:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .header__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 0 20px;
    height: 100px;
  }
  .header__logo {
    width: 129px;
  }
  .header__textbox {
    display: none;
    position: fixed;
    top: 52%;
    right: 0;
    left: 0;
    margin: auto;
    transform: translateY(-50%);
    transition: all 0.2s ease;
  }
  .header__nav ul {
    width: 80%;
    max-width: 700px;
    margin: 0 auto;
  }
  .header__nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #f0f1f4;
  }
  .header__nav ul li a::after {
    content: "";
    width: 19px;
    height: 19px;
    background-image: url("../img/common/icon_arrow_1.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .header__sns {
    margin-top: 30px;
  }
  .header__sns ul li {
    margin: 0 10px;
  }
  .header__sns ul li a {
    width: 45px;
  }
  .header__sns ul li:first-child a {
    width: 54px;
  }
  .header .page__contact-btn {
    width: 320px;
    height: 130px;
    margin: 30px auto 0;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
  .header .page__contact-btn a {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 100%;
    padding: 17px;
  }
  .header .page__contact-btn a::before {
    width: 43px;
    height: 43px;
  }
  .header .page__contact-btn a .textbox {
    text-align: center;
    margin: 0;
  }
  .header .page__contact-btn a .ttl {
    font-size: 18px;
  }
  .header .page__contact-btn a .num {
    margin-top: 10px;
    font-size: 25px;
  }
  .header .page__contact-btn a .note {
    margin-top: 3px;
    font-size: 12px;
  }
  .header .page__contact-btn a .description {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.4285714286;
  }
}
@media screen and (min-width: 1650px) {
  .header__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 0 20px;
    height: 100px;
  }
  .header__logo {
    width: 129px;
  }
  .header__textbox {
    display: block;
    position: static;
    height: 100%;
    margin: auto;
    transform: none;
    transition: all 0.2s ease;
  }
  .header__nav {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
  .header__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    max-width: initial;
    margin: 0 auto;
  }
  .header__nav ul li {
    margin: 0 22px;
  }
  .header__nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    font-size: 16px;
    border-bottom: 0;
  }
  .header__nav ul li a::after {
    display: none;
  }
  .header__sns {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 235px;
    margin: auto;
  }
  .header__sns ul {
    height: 100%;
  }
  .header__sns ul li {
    margin: 0 2px;
  }
  .header__sns ul li a {
    width: 47px;
  }
  .header__sns ul li:first-child a {
    width: 58px;
  }
  .header__menu {
    display: none;
  }
  .header__contact {
    position: absolute;
    top: 0;
    right: 0;
    height: 100px;
  }
  .header__contact__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 221px;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #ffe731;
    border-radius: 0;
    box-shadow: none;
  }
  .header__contact__btn::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("../img/common/icon_phone_1.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .header__contact__btn::after {
    content: "";
    width: 19px;
    height: 19px;
    margin-left: 16px;
    background-image: url("../img/common/icon_arrow_1.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .header__contact__btn .textbox {
    text-align: center;
    margin-left: 10px;
  }
  .header__contact__btn .ttl {
    display: block;
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
  .header__contact__btn .num {
    display: none;
  }
  .header__contact__btn .note {
    display: none;
  }
  .header__contact .page__contact-btn {
    display: none;
  }
}
/* footer
------------------------------------------ */
.contact {
  position: relative;
  padding: 11.875vw 0 12.5vw;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 122.5vw;
  background-color: #335183;
}

.contact__container {
  width: 87.5vw;
  margin: 0 auto;
}

.contact .page-index__ttl {
  color: #ffffff;
}

.contact__description {
  margin-top: 4.6875vw;
  font-size: 4.375vw;
  font-weight: 700;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.contact__btnarea {
  margin-top: 9.375vw;
}

@media screen and (min-width: 768px) {
  .contact {
    position: relative;
    padding: 64px 0;
  }
  .contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 262px;
  }
  .contact__container {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
  }
  .contact__thumb {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .contact__description {
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.5;
  }
  .contact__btnarea {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .contact {
    position: relative;
    padding: 112px 0 113px;
  }
  .contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 458px;
  }
  .contact__container {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
  }
  .contact__thumb {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .contact__description {
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.5;
  }
  .contact__btnarea {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    margin-top: 76px;
  }
}
.bnrarea {
  padding: 12.5vw 0;
  background-color: #f8f8f9;
}

.bnrarea__list {
  width: 87.5vw;
  margin: auto;
}

.bnrarea__list + .bnrarea__list {
  margin-top: 5vw;
}

.bnrarea__item:not(:last-child) {
  margin-bottom: 5vw;
}

@media screen and (min-width: 768px) {
  .bnrarea {
    padding: 139px 0 163px;
    background-color: #f8f8f9;
  }
  .bnrarea__list {
    display: flex;
    justify-content: center;
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
  }
  .bnrarea__list + .bnrarea__list {
    margin-top: 25px;
  }
  .bnrarea__item {
    width: calc(33.3333333333% - 30px);
  }
  .bnrarea__item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .bnrarea__item > a {
    display: block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  }
}
.footer {
  background-color: #f0f1f4;
}

.footer__inner {
  padding: 8.125vw 6.25vw 11.25vw;
}

.footer__logo {
  width: 31.25vw;
}

.footer__sns {
  margin-top: 5vw;
}

.footer__sns ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: -1.875vw;
}

.footer__sns ul li a {
  display: block;
  width: 11.5625vw;
}

.footer__sns ul li:first-child a {
  width: 13.4375vw;
}

.footer__middle {
  margin-top: 0.625vw;
}

.footer__info {
  font-size: 4.0625vw;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.footer__nav {
  display: none;
}

.footer__exterior {
  margin-top: 7.5vw;
  width: 60.3125vw;
}

.footer__operation {
  margin-top: 7.5vw;
}

.footer__operation .operation__list {
  list-style-type: none;
}

.footer__operation .operation__item {
  font-size: 3.75vw;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.footer__copyright {
  margin-top: 5.3125vw;
  font-size: 3.125vw;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 1040px;
    padding: 87px 20px;
    margin: 0 auto;
  }
  .footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer__logo {
    width: 180px;
  }
  .footer__sns {
    margin: 0;
  }
  .footer__sns ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer__sns ul li {
    margin: 0 2px;
  }
  .footer__sns ul li a {
    display: block;
    width: 38px;
  }
  .footer__sns ul li:first-child a {
    width: 49px;
  }
  .footer__middle {
    display: flex;
    align-items: center;
    margin-top: 29px;
  }
  .footer__info {
    padding-right: 13px;
    margin-right: 15px;
    font-size: 14px;
    line-height: 1.625;
    border-right: 1px solid #707070;
  }
  .footer__nav {
    display: flex;
  }
  .footer__nav .nav__list {
    flex-shrink: 0;
    padding-top: 4px;
  }
  .footer__nav .nav__list:not(:last-child) {
    margin-right: 22px;
  }
  .footer__nav .nav__item {
    position: relative;
    padding: 8px 0 8px 22px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  .footer__nav .nav__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 6px;
    height: 6px;
    margin: auto;
    border-radius: 50%;
    background-color: #004e93;
  }
  .footer__exterior {
    display: none;
    width: 100%;
    margin-top: 0;
    padding-left: 20px;
    margin-left: auto;
    max-width: 193px;
  }
  .footer__bottom {
    margin-top: 64px;
  }
  .footer__operation {
    margin-top: 0;
  }
  .footer__operation .operation__item {
    font-size: 12px;
  }
  .footer__copyright {
    margin-top: 0;
    font-size: 12px;
  }
}
@media screen and (min-width: 950px) {
  .footer__exterior {
    display: block;
  }
}
@media screen and (min-width: 1100px) {
  .footer__inner {
    max-width: 1040px;
    padding: 87px 20px;
    margin: 0 auto;
  }
  .footer__logo {
    width: 180px;
  }
  .footer__middle {
    display: flex;
    align-items: center;
    margin-top: 29px;
  }
  .footer__info {
    padding-right: 27px;
    margin-right: 30px;
    font-size: 15px;
    line-height: 1.625;
    border-right: 1px solid #707070;
  }
  .footer__nav {
    display: flex;
  }
  .footer__nav .nav__list {
    flex-shrink: 0;
    padding-top: 4px;
  }
  .footer__nav .nav__list:not(:last-child) {
    margin-right: 32px;
  }
  .footer__nav .nav__item {
    position: relative;
    padding: 8px 0 8px 22px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  .footer__nav .nav__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    width: 6px;
    height: 6px;
    margin: auto;
    border-radius: 50%;
    background-color: #004e93;
  }
  .footer__exterior {
    display: block;
    width: 100%;
    margin-top: 0;
    padding-left: 20px;
    margin-left: auto;
    max-width: 193px;
  }
  .footer__bottom {
    margin-top: 64px;
  }
  .footer__operation {
    margin-top: 0;
  }
  .footer__operation .operation__item {
    font-size: 12px;
  }
  .footer__copyright {
    margin-top: 0;
    font-size: 12px;
  }
}
/* parts
------------------------------------------ */
.page {
  margin-top: 18.75vw;
}

.page__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 50vw;
  text-align: center;
  background-image: url("../img/common/page_ttl_bg_sp.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page__thumb .en {
  font-size: 11.25vw;
  font-weight: bold;
  font-family: "Outfit", sans-serif;
}

.page__thumb .ja {
  margin-top: 0.625vw;
  font-size: 3.75vw;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.page__breadcrumb {
  padding: 4.375vw 6.25vw 0;
  margin: 0 0 4.375vw;
}

.page__breadcrumb ul {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  word-break: keep-all;
  white-space: nowrap;
}

.page__breadcrumb li {
  padding-right: 8.75vw;
  font-size: 3.75vw;
  font-weight: 500;
  color: #c6cad2;
}

.page__breadcrumb li:not(:last-child) {
  position: relative;
}

.page__breadcrumb li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 4.0625vw;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 0.9375vw;
  height: 1.875vw;
  background-image: url("../img/common/icon_arrow_2.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.page__morebtn,
.page__backbtn,
.page__connectbtn {
  width: 68.75vw;
  height: 15.625vw;
  margin: 7.5vw auto 0;
}

.page__morebtn > a,
.page__backbtn > a,
.page__connectbtn > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 4.375vw;
  letter-spacing: 0.1em;
  text-indent: -2.1875vw;
  font-weight: bold;
  line-height: 0;
  text-align: center;
  background-color: #ffe731;
  border-radius: 7.8125vw;
}

.page__morebtn > a::before,
.page__backbtn > a::before,
.page__connectbtn > a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 6.25vw;
  margin: auto;
  width: 6.25vw;
  height: 6.25vw;
  background-image: url("../img/common/icon_arrow_1.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.page__backbtn > a {
  text-indent: 2.1875vw;
}

.page__backbtn > a::before {
  right: auto;
  left: 6.25vw;
  transform: scale(-1);
}

.page__connectbtn {
  margin: 5vw auto 0;
}

.page__connectbtn > a {
  background-color: #ffffff;
}

.page__connect {
  width: 93.75vw;
  padding: 7.8125vw 0;
  margin: 10.3125vw auto 12.5vw;
  background-color: #a7b988;
}

.page__connect__ttl {
  font-size: 5vw;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.625;
}

.page__bg-plaid {
  background-image: url("../img/common/bg_plaid.jpg");
  background-size: 8%;
  background-position: top left;
  background-repeat: repeat;
}

.page__bg-gray {
  background-color: #f8f8f9;
}

.page__loop {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.page__loop img {
  height: 100%;
  padding: 0 10px;
  width: auto;
}

.page__loop img:first-child {
  animation: slide1 100s linear -50s infinite reverse;
}

.page__loop img:last-child {
  animation: slide2 100s linear infinite reverse;
}

.page__loop.page__loop--left img:first-child {
  animation: slide1 100s linear -50s infinite normal;
}

.page__loop.page__loop--left img:last-child {
  animation: slide2 100s linear infinite normal;
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.page__tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 3.125vw;
  margin-top: 5.9375vw;
}

.page__tab__item {
  width: calc(50% - 4px);
  height: 10vw;
  margin-bottom: 2.5vw;
}

.page__tab__item > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 0 0 3.125vw;
  font-size: 3.75vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #40a9f5;
  line-height: 1;
  border: 1px solid #40a9f5;
  border-radius: 5vw;
}

.page__tab__item > a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3.125vw;
  display: block;
  width: 4.0625vw;
  height: 4.0625vw;
  margin: auto;
  background-image: url("../img/common/icon_arrow_4.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.page__tab__item > a > span.small {
  font-size: 3.125vw;
}

.page__tab__item > a > span.middle {
  font-size: 2.5vw;
}

.page__tab__item.small > a {
  font-size: 3.4375vw;
}

.page__contact-btn {
  width: 87.5vw;
  height: 37.5vw;
  background-color: #ffffff;
  border-radius: 20px;
  margin: 7.5vw auto 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.page__contact-btn a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 6.5625vw 4.0625vw 6.5625vw 5.625vw;
}

.page__contact-btn a::before {
  content: "";
  flex-shrink: 0;
  width: 13.4375vw;
  height: 13.4375vw;
  background-image: url("../img/common/icon_phone_2.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.page__contact-btn a .textbox {
  width: 100%;
  text-align: center;
  margin-left: 1.875vw;
}

.page__contact-btn a .ttl {
  display: block;
  font-size: 5vw;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.page__contact-btn a .num {
  display: block;
  margin-top: 2.1875vw;
  font-size: 7.5vw;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fab03c;
}

.page__contact-btn a .note {
  display: block;
  margin-top: 0.625vw;
  font-size: 3.4375vw;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.6;
}

.page__contact-btn a .description {
  display: block;
  margin-top: 3.4375vw;
  font-size: 3.75vw;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.4166666667;
  text-align: center;
}

.page__contact-btn--faq a::before {
  background-image: url("../img/common/icon_faq.svg");
}

.page__photo-credit {
  position: relative;
}

.page__photo-credit::before {
  content: "写真撮影：中山保寛";
  position: absolute;
  right: 3px;
  bottom: 3px;
}

@media screen and (min-width: 768px) {
  .page {
    margin-top: 80px;
  }
  .page__thumb {
    height: min(400px, 20.8333333333vw);
    background-image: url("../img/common/page_ttl_bg_pc.jpg");
  }
  .page__thumb .en {
    font-size: min(96px, 5vw);
  }
  .page__thumb .ja {
    margin-top: min(8px, 0.4166666667vw);
    font-size: min(20px, 1.0416666667vw);
  }
  .page__breadcrumb {
    max-width: 1240px;
    display: flex;
    padding: 13px 20px 90px;
    margin: auto;
  }
  .page__breadcrumb li {
    padding-right: 28px;
    font-size: 12px;
  }
  .page__breadcrumb li:not(:last-child)::after {
    right: 13px;
    width: 3px;
    height: 6px;
  }
  .page__morebtn,
  .page__backbtn,
  .page__connectbtn {
    width: 240px;
    height: 60px;
    margin: min(56px, 2.9166666667vw) auto 0;
  }
  .page__morebtn > a,
  .page__backbtn > a,
  .page__connectbtn > a {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-indent: -5px;
    border-radius: 30px;
  }
  .page__morebtn > a::before,
  .page__backbtn > a::before,
  .page__connectbtn > a::before {
    right: 21px;
    margin: auto;
    width: 19px;
    height: 19px;
  }
  .page__backbtn > a {
    text-indent: -5px;
  }
  .page__backbtn > a::before {
    right: auto;
    left: 21px;
  }
  .page__connectbtn {
    margin: 26px auto 0;
  }
  .page__connect {
    width: 95%;
    max-width: 1000px;
    padding: 47px 0;
    margin: 141px auto 80px;
  }
  .page__connect__ttl {
    font-size: 24px;
    line-height: 1.25;
  }
  .page__bg-plaid {
    background-size: 3%;
  }
  .page__tab {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
  }
  .page__tab__item {
    width: calc(25% - 20.25px);
    height: 56px;
    margin-bottom: 16px;
  }
  .page__tab__item > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 1em 0 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #40a9f5;
    line-height: 1;
    border: 1px solid #40a9f5;
    border-radius: 28px;
  }
  .page__tab__item > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    display: block;
    width: 22px;
    height: 22px;
    margin: auto;
    background-image: url("../img/common/icon_arrow_4.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .page__tab__item > a > span.small {
    font-size: 16px;
  }
  .page__tab__item > a > span.middle {
    font-size: 13px;
    text-indent: -1em;
  }
  .page__tab__item.small > a {
    font-size: 16px;
  }
  .page__contact-btn {
    width: 320px;
    height: 130px;
    margin: 0 10px;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
  .page__contact-btn a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 17px;
  }
  .page__contact-btn a::before {
    width: 43px;
    height: 43px;
  }
  .page__contact-btn a .textbox {
    text-align: center;
    margin: 0;
  }
  .page__contact-btn a .ttl {
    font-size: 18px;
  }
  .page__contact-btn a .num {
    margin-top: 10px;
    font-size: 25px;
  }
  .page__contact-btn a .note {
    margin-top: 3px;
    font-size: 12px;
  }
  .page__contact-btn a .description {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.4285714286;
  }
  .page__contact-btn--faq a::before {
    background-image: url("../img/common/icon_faq.svg");
  }
}
@media screen and (min-width: 1100px) {
  .page {
    margin-top: 100px;
  }
  .page__thumb {
    height: min(400px, 20.8333333333vw);
    background-image: url("../img/common/page_ttl_bg_pc.jpg");
  }
  .page__thumb .en {
    font-size: min(96px, 5vw);
  }
  .page__thumb .ja {
    margin-top: min(8px, 0.4166666667vw);
    font-size: min(20px, 1.0416666667vw);
  }
  .page__breadcrumb {
    max-width: 1240px;
    display: flex;
    padding: 13px 20px 90px;
    margin: auto;
  }
  .page__breadcrumb li {
    padding-right: 28px;
    font-size: 12px;
  }
  .page__breadcrumb li:not(:last-child)::after {
    right: 13px;
    width: 3px;
    height: 6px;
  }
  .page__morebtn,
  .page__backbtn,
  .page__connectbtn {
    width: 240px;
    height: 60px;
    margin: min(56px, 2.9166666667vw) auto 0;
  }
  .page__morebtn > a,
  .page__backbtn > a,
  .page__connectbtn > a {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-indent: -5px;
    border-radius: 30px;
  }
  .page__morebtn > a::before,
  .page__backbtn > a::before,
  .page__connectbtn > a::before {
    right: 21px;
    margin: auto;
    width: 19px;
    height: 19px;
  }
  .page__backbtn > a {
    text-indent: -5px;
  }
  .page__backbtn > a::before {
    right: auto;
    left: 21px;
  }
  .page__connectbtn {
    margin: 26px auto 0;
  }
  .page__connect {
    width: 95%;
    max-width: 1000px;
    padding: 47px 0;
    margin: 141px auto 80px;
  }
  .page__connect__ttl {
    font-size: 24px;
    line-height: 1.25;
  }
  .page__bg-plaid {
    background-size: 3%;
  }
  .page__tab {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
  }
  .page__tab__item {
    width: calc(25% - 20.25px);
    height: 56px;
    margin-bottom: 16px;
  }
  .page__tab__item > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 1em 0 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #40a9f5;
    line-height: 1;
    border: 1px solid #40a9f5;
    border-radius: 28px;
  }
  .page__tab__item > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    display: block;
    width: 22px;
    height: 22px;
    margin: auto;
    background-image: url("../img/common/icon_arrow_4.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .page__tab__item > a > span.small {
    font-size: 16px;
  }
  .page__tab__item > a > span.middle {
    font-size: 13px;
    text-indent: -1em;
  }
  .page__tab__item.small > a {
    font-size: 16px;
  }
  .page__contact-btn {
    width: 320px;
    height: 223px;
    margin: 0 20px;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
  .page__contact-btn a {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 32px 0;
    margin: 0;
  }
  .page__contact-btn a::before {
    width: 51px;
    height: 51px;
  }
  .page__contact-btn a .textbox {
    text-align: center;
    margin: 11px 0 0;
  }
  .page__contact-btn a .ttl {
    font-size: 22px;
  }
  .page__contact-btn a .num {
    margin-top: 12px;
    font-size: 28px;
  }
  .page__contact-btn a .note {
    margin-top: 3px;
    font-size: 14px;
  }
  .page__contact-btn a .description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.4285714286;
  }
  .page__contact-btn--hidden {
    pointer-events: none;
  }
  .page__contact-btn--faq a::before {
    background-image: url("../img/common/icon_faq.svg");
  }
}
/* page-index
------------------------------------------ */
.page-index__ttl {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-index__ttl .en {
  font-size: 11.25vw;
  font-family: "Outfit", sans-serif;
  font-weight: bold;
}

.page-index__ttl .ja {
  font-size: 3.75vw;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.page-index .fv__shape {
  display: none;
}

.page-index .fv__ttl {
  width: 81.875vw;
  margin: 0 auto;
  padding-top: 7.5vw;
}

.page-index .fv__copy {
  margin: 5% auto 0;
  font-size: 5.3125vw;
  line-height: 1.4444444444;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

.page-index .fv__loop {
  height: 38.4375vw;
  margin-top: 5.625vw;
  padding-bottom: 6.25vw;
}

.page-index .fv__loop img:first-child {
  animation: slide1 160s linear -80s infinite reverse;
}

.page-index .fv__loop img:last-child {
  animation: slide2 160s linear infinite reverse;
}

.page-index .comingsoon {
  padding: 0 6.25vw;
  margin: 1em 0 4em;
}

.page-index .comingsoon p {
  padding: 0.8em;
  background-color: #f8f8f9;
  font-size: 5vw;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
}

.page-index .about {
  padding: 0 0 12.5vw;
}

.page-index .about__thumb {
  position: relative;
  width: 87.1875vw;
  margin: 0 auto 13.4375vw;
}

.page-index .about__thumb__loop {
  position: absolute;
  top: 28.125vw;
  left: 0;
  right: 0;
  z-index: 0;
  height: 27.1875vw;
  margin: auto;
}

.page-index .about__thumb__catch {
  position: relative;
  z-index: 1;
}

.page-index .about__ttl {
  font-size: 5.625vw;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4444444444;
}

.page-index .about__description {
  width: 87.5vw;
  margin: 7.8125vw auto 7.5vw;
  font-size: 4.375vw;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
  font-weight: 500;
}

.page-index .about__list {
  width: 88.4375vw;
  margin: 0 auto 15.625vw;
}

.page-index .about__item {
  text-align: center;
  margin-top: 10vw;
}

.page-index .about__item > h3 {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 6.25vw;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}

.page-index .about__item > h3::before {
  content: "";
  position: absolute;
  bottom: -2.1875vw;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 4.375vw;
  margin: auto;
  background-color: #ffe731;
}

.page-index .about__item > h3 > span {
  position: relative;
  z-index: 3;
}

.page-index .about__item > p {
  margin-top: 6.25vw;
  font-size: 4.375vw;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}

.page-index .about__images {
  height: 39.6875vw;
}

.page-index .about__images img {
  padding: 0 2.1875vw;
}

.page-index .about__note {
  width: 87.1875vw;
  margin: 0.7em auto 0;
  font-size: 2.8125vw;
  line-height: 1.4;
}

.page-index .program {
  position: relative;
  padding: 12.5vw 0 15vw;
  background-color: #f8f8f9;
  background-image: url("../img/index/program_bg_sp.svg");
  background-size: 39.375vw;
  background-position: top 21.25vw right -12.5vw;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-index .program__shape {
  position: absolute;
  display: block;
}

.page-index .program__shape--2 {
  top: 2%;
  left: -89%;
  right: 0;
  bottom: 0;
  width: 65.3125vw;
  z-index: 0;
  animation: move_item_2 5s 0.2s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
}

@keyframes move_item_2 {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  100% {
    transform: rotate(0deg) translateX(-50%);
  }
}
.page-index .program__shape--move {
  margin: auto;
}

.page-index .program__shape--move img {
  animation: rotate_logo 15s infinite linear;
  transform: center center;
}

@keyframes rotate_logo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-index .program .page-index__ttl {
  position: relative;
  z-index: 1;
}

.page-index .program__description {
  position: relative;
  z-index: 1;
  width: 87.5vw;
  margin: 7.8125vw auto 7.5vw;
  font-size: 4.375vw;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
  font-weight: 500;
}

.page-index .program__image {
  position: relative;
  z-index: 1;
  width: 87.5vw;
  margin: 12.5vw auto 0;
}

.page-index .program__list {
  position: relative;
  z-index: 1;
  width: 87.5vw;
  margin: 5vw auto 12.5vw;
}

.page-index .program__item {
  position: relative;
  margin-top: 3.125vw;
  padding-left: 7.8125vw;
  font-size: 5.625vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.page-index .program__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2.5vw;
  height: 2.5vw;
  margin: auto;
  background-color: #40a9f5;
  border-radius: 50%;
}

.page-index .reserve {
  background-color: #a7b988;
}

.page-index .reserve__container {
  padding: 12.5vw 0 85.9375vw;
  background-image: url("../img/index/reserve_bg_sp.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.page-index .reserve__textbox {
  width: 87.5vw;
  margin: 10.3125vw auto 0;
}

.page-index .reserve__textbox__ttl {
  font-size: 5.625vw;
  line-height: 1.5555555556;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.page-index .reserve__textbox__description {
  margin-top: 5.3125vw;
  font-size: 4.375vw;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
}

.page-index .reserve__textbox__description .tab {
  display: none;
}

.page-index .reserve__textbox__description a {
  text-decoration: underline;
  color: #ffffff;
}

.page-index .reserve .page__morebtn {
  margin-top: 10vw;
}

.page-index .reserve .page__morebtn > a {
  background-color: #ffffff;
}

.page-index .price {
  position: relative;
  padding: 12.5vw 0;
  background-color: #f8f8f9;
  overflow: hidden;
}

.page-index .price__shape {
  position: absolute;
  z-index: 0;
  margin: auto;
}

.page-index .price__shape--1 {
  top: -10.9375vw;
  left: -12.1875vw;
  width: 30.625vw;
}

.page-index .price__shape--2 {
  top: 22.1875vw;
  right: -20.3125vw;
  width: 36.5625vw;
}

.page-index .price__shape--3 {
  bottom: 53.125vw;
  left: -18.75vw;
  width: 36.5625vw;
}

.page-index .price__shape--4 {
  bottom: -15.625vw;
  left: -15.625vw;
  width: 30.625vw;
}

.page-index .price__shape--5 {
  bottom: -7%;
  right: -31%;
  width: 73.125vw;
  animation: move_item_1 5s 0.2s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
}

@keyframes move_item_1 {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  100% {
    transform: rotate(0deg) translateX(50%);
  }
}
.page-index .price__shape--move {
  margin: auto;
}

.page-index .price__shape--move img {
  animation: rotate_logo 15s infinite linear;
  transform: center center;
}

@keyframes rotate_logo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-index .price__ttl {
  position: relative;
  z-index: 1;
  margin-top: 10vw;
  font-size: 5.625vw;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  line-height: 1.5555555556;
}

.page-index .price__description {
  position: relative;
  z-index: 1;
  width: 87.5vw;
  margin: 5.3125vw auto 10vw;
  font-size: 4.375vw;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
  font-weight: 500;
}

.page-index .price__list {
  position: relative;
  z-index: 1;
  display: flex;
  overflow-x: auto;
  padding: 0 3.125vw 5vw;
}

.page-index .price__item {
  width: 75vw;
  margin-right: 3.125vw;
  border-radius: 6.25vw;
  background-color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.page-index .price__item .ttl {
  padding: 3.125vw 0;
  font-size: 5.625vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #ffffff;
  border-radius: 6.25vw 6.25vw 0 0;
}

.page-index .price__item .textbox {
  padding: 5vw 4.375vw 7.8125vw;
}

.page-index .price__item .description {
  font-size: 4.0625vw;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.7142857143;
}

.page-index .price__item .num {
  font-size: 6.25vw;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.page-index .price__item .note {
  margin-top: 4.375vw;
  font-size: 3.75vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
}

.page-index .price__item--red .ttl {
  background-color: #ed1b25;
}

.page-index .price__item--red .num {
  color: #ed1b25;
}

.page-index .price__item--green .ttl {
  background-color: #d9e022;
}

.page-index .price__item--green .num {
  color: #d9e022;
}

.page-index .price__item--orange .ttl {
  background-color: #fab03c;
}

.page-index .price__item--orange .num {
  color: #fab03c;
}

.page-index .price__item--blue .ttl {
  background-color: #40a9f5;
}

.page-index .price__item--blue .num {
  color: #40a9f5;
}

.page-index .access__bg {
  padding: 12.5vw 0;
}

.page-index .access__description {
  width: 87.5vw;
  margin: 10.3125vw auto 7.5vw;
  font-size: 4.375vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
}

.page-index .access__map {
  position: relative;
  width: 87.5vw;
  margin: 0 auto 10vw;
}

.page-index .access__map::before {
  content: "";
  display: block;
  padding-top: 51.7857142857%;
}

.page-index .access__map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-index .news {
  padding: 13.75vw 0;
  background-color: #f8f8f9;
}

.page-index .news__content {
  margin-top: 10.3125vw;
  padding: 0 6.25vw;
}

.page-index .news__top a {
  display: block;
  padding-bottom: 6.25vw;
  border-bottom: 1px solid #c6cad2;
}

.page-index .news__top__img img {
  max-width: 100%;
}

.page-index .news__top__date {
  margin-top: 3.125vw;
  font-size: 3.75vw;
  font-family: "Outfit", sans-serif;
  color: #434a56;
}

.page-index .news__top__ttl {
  margin-top: 2.1875vw;
  font-size: 4.375vw;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
  font-weight: 500;
}

.page-index .news__item:first-child {
  display: none;
}

.page-index .news__item a {
  display: block;
  position: relative;
  padding: 4.6875vw 15vw 4.6875vw 0;
  border-bottom: 1px solid #c6cad2;
}

.page-index .news__item a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 5.9375vw;
  height: 5.9375vw;
  margin: auto;
  background-image: url("../img/common/icon_arrow_1.svg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-index .news__item__date {
  font-size: 3.75vw;
  font-family: "Outfit", sans-serif;
  color: #434a56;
}

.page-index .news__item__ttl {
  margin-top: 2.1875vw;
  font-size: 4.375vw;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
  font-weight: 500;
}

.page-index .parking {
  position: fixed;
  z-index: 500;
  bottom: 2.5vw;
  right: 4.375vw;
}

.page-index .parking a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50.9375vw;
  height: 10vw;
  background: #0b0c0e;
  color: #ffffff;
  font-size: 3.4375vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.page-index .parking a::before {
  content: "";
  position: absolute;
  top: -2.8125vw;
  right: -2.1875vw;
  display: block;
  width: 7.1875vw;
  height: 7.1875vw;
  background-image: url("../img/common/icon_close_1.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .page-index__ttl .en {
    font-size: 40px;
  }
  .page-index__ttl .ja {
    margin-top: 5px;
    font-size: 16px;
  }
  .page-index__ttl--left {
    text-align: left;
  }
  .page-index .fv {
    position: relative;
  }
  .page-index .fv__shape {
    position: absolute;
    display: block;
  }
  .page-index .fv__shape--1 {
    top: min(-40px, -2.0833333333vw);
    right: min(-44px, -2.2916666667vw);
    width: min(515px, 26.8229166667vw);
    z-index: 0;
  }
  .page-index .fv__shape--2 {
    top: min(580px, 30.2083333333vw);
    left: min(260px, 13.5416666667vw);
    width: min(138px, 7.1875vw);
    z-index: 0;
  }
  .page-index .fv__shape--3 {
    top: 23%;
    right: -84%;
    left: 0;
    bottom: 0;
    width: min(515px, 26.8229166667vw);
    z-index: 3;
    animation: move_item_1 5s 0s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
  }
  @keyframes move_item_1 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(50%);
    }
  }
  .page-index .fv__shape--4 {
    top: -5%;
    left: -84%;
    right: 0;
    bottom: 0;
    width: min(602px, 31.3541666667vw);
    z-index: 3;
    animation: move_item_2 5s 0.2s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
  }
  @keyframes move_item_2 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(-50%);
    }
  }
  .page-index .fv__shape--move {
    margin: auto;
  }
  .page-index .fv__shape--move img {
    animation: rotate_logo 15s infinite linear;
    transform: center center;
  }
  @keyframes rotate_logo {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .page-index .fv__ttl {
    position: relative;
    z-index: 5;
    width: min(1096px, 57.0833333333vw);
    margin: 0 auto;
    padding-top: 65px;
  }
  .page-index .fv__copy {
    margin: 3% auto 4%;
    font-size: min(32px, 1.6666666667vw);
    line-height: 1.3125;
  }
  .page-index .fv__copy .sp {
    display: none;
  }
  .page-index .fv__loop {
    display: flex;
    height: min(417px, 21.71875vw);
    margin-top: 3px;
    padding-bottom: min(74px, 3.8541666667vw);
    overflow: hidden;
    width: 100%;
  }
  .page-index .fv__loop img {
    height: 100%;
    padding: 0 10px;
    width: auto;
  }
  .page-index .comingsoon {
    max-width: 600px;
    padding: 0;
    margin: 0 auto 4em;
  }
  .page-index .comingsoon p {
    padding: 0.8em;
    font-size: 24px;
  }
  .page-index .about {
    padding: 0 0 112px;
  }
  .page-index .about__thumb {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .page-index .about__thumb__loop {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    z-index: 0;
    height: 378px;
    margin: auto;
  }
  .page-index .about__thumb__catch {
    position: relative;
    z-index: 1;
  }
  .page-index .about__thumb .about__note {
    padding: 0;
  }
  .page-index .about__ttl {
    font-size: 32px;
  }
  .page-index .about__description {
    max-width: 800px;
    margin: 33px auto 45px;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.7142857143;
    font-weight: 500;
  }
  .page-index .about__list {
    display: flex;
    justify-content: space-between;
    max-width: 1040px;
    padding: 0 20px 80px;
    margin: 0 auto;
  }
  .page-index .about__item {
    width: 30%;
    max-width: 282px;
    text-align: center;
    margin-top: 0;
  }
  .page-index .about__item > h3 {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: center;
  }
  .page-index .about__item > h3::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 14px;
    margin: auto;
    background-color: #ffe731;
  }
  .page-index .about__item > h3 > span {
    position: relative;
    z-index: 3;
  }
  .page-index .about__item > p {
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.7142857143;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: center;
  }
  .page-index .about__images {
    margin: 48px 0 0;
    height: 284px;
  }
  .page-index .about__images img {
    padding: 0 15px;
  }
  .page-index .about__note {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto 0;
    padding: 0 20px;
    font-size: 10px;
    text-align: right;
  }
  .page-index .program {
    position: relative;
    padding: 90px 0 123px;
    background-color: #f8f8f9;
    background-image: url("../img/index/program_bg_pc.svg");
    background-size: 1890px;
    background-position: top 47% left 54%;
    overflow: hidden;
  }
  .page-index .program__shape {
    position: absolute;
    display: block;
  }
  .page-index .program__shape--1 {
    top: 82%;
    right: -84%;
    left: 0;
    bottom: 0;
    width: min(515px, 26.8229166667vw);
    z-index: 3;
    animation: move_item_1 5s 0s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
  }
  @keyframes move_item_1 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(50%);
    }
  }
  .page-index .program__shape--2 {
    top: 2%;
    left: -84%;
    right: 0;
    bottom: 0;
    width: min(602px, 31.3541666667vw);
    z-index: 3;
    animation: move_item_2 5s 0.2s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
  }
  @keyframes move_item_2 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(-50%);
    }
  }
  @keyframes move_item_2 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(-50%);
    }
  }
  .page-index .program__description {
    width: auto;
    margin: 80px auto 58px;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
  }
  .page-index .program__image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 804px;
    padding: 0 40px;
    margin: 42px auto 0;
  }
  .page-index .program__list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 890px;
    padding: 0 20px;
    margin: 69px auto 89px;
  }
  .page-index .program__item {
    position: relative;
    width: 47%;
    margin-top: 25px;
    padding-left: 32px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .page-index .program__item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 16px;
    height: 16px;
    margin: auto;
    background-color: #40a9f5;
    border-radius: 50%;
  }
  .page-index .program__item:nth-child(2),
  .page-index .program__item:nth-child(5) {
    width: 40%;
  }
  .page-index .program__item:nth-child(3) {
    width: 13%;
  }
  .page-index .reserve {
    position: relative;
    background-image: url("../img/index/reserve_bg_pc.png");
    background-size: contain;
    background-position: bottom 0 right -200px;
    background-repeat: no-repeat;
  }
  .page-index .reserve__container {
    max-width: 1240px;
    margin: auto;
    padding: 60px 0;
    background-image: none;
    overflow: visible;
  }
  .page-index .reserve .page-index__ttl {
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
  }
  .page-index .reserve__textbox {
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 40px auto 0;
  }
  .page-index .reserve__textbox__ttl {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
  .page-index .reserve__textbox__description {
    margin-top: 33px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.1em;
  }
  .page-index .reserve__textbox__description .tab {
    display: inline;
  }
  .page-index .reserve .page__morebtn {
    margin: 74px 0 0;
  }
  .page-index .reserve .page__morebtn > a {
    background-color: #ffffff;
  }
  .page-index .price {
    padding: 112px 0;
  }
  .page-index .price__shape {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 0;
    margin: auto;
  }
  .page-index .price__shape--1 {
    top: -8%;
    left: 44%;
    width: min(197px, 10.2604166667vw);
  }
  .page-index .price__shape--2 {
    top: 6%;
    right: -86%;
    width: min(138px, 7.1875vw);
  }
  .page-index .price__shape--3 {
    bottom: 2%;
    left: 50%;
    width: min(117px, 6.09375vw);
  }
  .page-index .price__shape--4 {
    bottom: 11%;
    left: -73%;
    width: min(138px, 7.1875vw);
  }
  .page-index .price__shape--5 {
    top: 49%;
    right: -84%;
    left: 0;
    bottom: 0;
    width: min(602px, 31.3541666667vw);
    z-index: 3;
    animation: move_item_1 5s 0s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
  }
  @keyframes move_item_1 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(50%);
    }
  }
  .page-index .price__shape--6 {
    top: 2%;
    left: -84%;
    right: 0;
    bottom: 0;
    width: min(514px, 26.7708333333vw);
    z-index: 3;
    animation: move_item_2 5s 0.2s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
  }
  @keyframes move_item_2 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(-50%);
    }
  }
  @keyframes move_item_2 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(-50%);
    }
  }
  .page-index .price__shape--move {
    margin: auto;
  }
  .page-index .price__shape--move img {
    animation: rotate_logo 15s infinite linear;
    transform: center center;
  }
  @keyframes rotate_logo {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .page-index .price__ttl {
    margin-top: 68px;
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: center;
    line-height: 1.5555555556;
  }
  .page-index .price__description {
    width: auto;
    padding: 0 20px;
    margin: 26px auto 47px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.7142857143;
    font-weight: 500;
    text-align: center;
  }
  .page-index .price__slider {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 20px;
  }
  .page-index .price__slider__wrap {
    position: relative;
    width: calc(100% + (100vw - 100%) / 2);
    z-index: 3;
  }
  .page-index .price__list {
    display: block;
    overflow-x: visible;
    margin: 0 auto;
    padding: 0;
    visibility: hidden;
  }
  .page-index .price__list.slick-initialized {
    visibility: visible;
    /*slick-initializedが付与されたら表示*/
  }
  .page-index .price__list .slick-list {
    padding: 30px;
    margin: -30px;
  }
  .page-index .price__list .slick-arrow {
    position: absolute;
    top: -25px;
    bottom: 0;
    width: 46px;
    margin: auto;
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .page-index .price__list .slick-arrow:hover {
    opacity: 0.7;
  }
  .page-index .price__list .prev-arrow {
    left: -23px;
  }
  .page-index .price__list .next-arrow {
    right: calc(100vw - 100% - 142px);
  }
  .page-index .price__item {
    width: 360px;
    margin-right: 60px;
    border-radius: 20px;
    background-color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
  .page-index .price__item .ttl {
    padding: 17px 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    color: #ffffff;
    border-radius: 20px 20px 0 0;
  }
  .page-index .price__item .textbox {
    padding: 24px 32px;
  }
  .page-index .price__item .description {
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 1.625;
  }
  .page-index .price__item .num {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }
  .page-index .price__item .note {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.8333333333;
  }
  .page-index .access__bg {
    padding: 112px 0;
  }
  .page-index .access__container {
    max-width: 1240px;
    padding: 0 20px;
    margin: auto;
  }
  .page-index .access__thumb {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page-index .access__description {
    width: auto;
    max-width: 736px;
    margin: 16px auto 0;
    font-size: 16px;
    line-height: 1.75;
  }
  .page-index .access__map {
    position: relative;
    max-width: 1240px;
    padding: 0 20px;
    margin: 55px auto 80px;
  }
  .page-index .access__map::before {
    content: "";
    display: block;
    padding-top: 51.7857142857%;
  }
  .page-index .access__map > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .page-index .news {
    padding: min(112px, 5.8333333333vw) 0;
  }
  .page-index .news__content {
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: min(67px, 3.4895833333vw) auto 0;
    padding: 0 20px;
  }
  .page-index .news__top {
    width: 460px;
    flex-shrink: 0;
    margin-right: 0;
  }
  .page-index .news__top a {
    padding-bottom: 0;
    border-bottom: 0;
    margin: auto;
  }
  .page-index .news__top__date {
    margin-top: 22px;
    font-size: 16px;
  }
  .page-index .news__top__ttl {
    margin-top: 11px;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.6666666667;
  }
  .page-index .news__list {
    max-width: 660px;
    width: 100%;
    padding-left: 5%;
  }
  .page-index .news__item:first-child {
    display: none;
  }
  .page-index .news__item:nth-child(2) {
    border-top: 1px solid #c6cad2;
  }
  .page-index .news__item a {
    display: block;
    position: relative;
    padding: 32px 97px 32px 0;
  }
  .page-index .news__item a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 19px;
    height: 19px;
    margin: auto;
    background-image: url("../img/common/icon_arrow_1.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .page-index .news__item__date {
    font-size: 16px;
  }
  .page-index .news__item__ttl {
    margin-top: 16px;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.6666666667;
  }
  .page-index .parking {
    position: fixed;
    bottom: 23px;
    right: 23px;
  }
  .page-index .parking a {
    width: 300px;
    height: 51px;
    font-size: 18px;
  }
  .page-index .parking a::before {
    top: -14px;
    right: -10px;
    width: 36px;
    height: 36px;
  }
}
@media screen and (min-width: 1100px) {
  .page-index__ttl .en {
    font-size: min(96px, 5vw);
  }
  .page-index__ttl .ja {
    margin-top: min(17px, 0.8854166667vw);
    font-size: min(20px, 1.5625vw);
  }
  .page-index__ttl--left {
    text-align: left;
  }
  .page-index .fv {
    position: relative;
  }
  .page-index .fv__shape {
    position: absolute;
    display: block;
  }
  .page-index .fv__shape--1 {
    top: min(-40px, -2.0833333333vw);
    right: min(-44px, -2.2916666667vw);
    width: min(515px, 26.8229166667vw);
    z-index: 0;
  }
  .page-index .fv__shape--2 {
    top: min(580px, 30.2083333333vw);
    left: min(260px, 13.5416666667vw);
    width: min(138px, 7.1875vw);
    z-index: 0;
  }
  .page-index .fv__shape--3 {
    top: 23%;
    right: -84%;
    left: 0;
    bottom: 0;
    width: min(515px, 26.8229166667vw);
    z-index: 3;
    animation: move_item_1 5s 0s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
  }
  @keyframes move_item_1 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(50%);
    }
  }
  .page-index .fv__shape--4 {
    top: -5%;
    left: -84%;
    right: 0;
    bottom: 0;
    width: min(602px, 31.3541666667vw);
    z-index: 3;
    animation: move_item_2 5s 0.2s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
  }
  @keyframes move_item_2 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(-50%);
    }
  }
  .page-index .fv__shape--move {
    margin: auto;
  }
  .page-index .fv__shape--move img {
    animation: rotate_logo 15s infinite linear;
    transform: center center;
  }
  @keyframes rotate_logo {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .page-index .fv__ttl {
    position: relative;
    z-index: 5;
    width: min(1096px, 57.0833333333vw);
    margin: 0 auto;
    padding-top: 65px;
  }
  .page-index .fv__copy {
    margin: 3% auto 4%;
    font-size: min(32px, 1.6666666667vw);
    line-height: 1.3125;
  }
  .page-index .fv__copy .sp {
    display: none;
  }
  .page-index .fv__loop {
    display: flex;
    height: min(417px, 21.71875vw);
    margin-top: 3px;
    padding-bottom: min(74px, 3.8541666667vw);
    overflow: hidden;
    width: 100%;
  }
  .page-index .fv__loop img {
    height: 100%;
    padding: 0 10px;
    width: auto;
  }
  .page-index .comingsoon {
    max-width: 600px;
    padding: 0;
    margin: 0 auto 4em;
  }
  .page-index .comingsoon p {
    padding: 0.8em;
    font-size: 24px;
  }
  .page-index .about {
    padding: 0 0 112px;
  }
  .page-index .about__thumb {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .page-index .about__thumb__loop {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    z-index: 0;
    height: 378px;
    margin: auto;
  }
  .page-index .about__thumb__catch {
    position: relative;
    z-index: 1;
  }
  .page-index .about__thumb .about__note {
    padding: 0;
  }
  .page-index .about__ttl {
    font-size: 32px;
  }
  .page-index .about__description {
    max-width: 800px;
    margin: 33px auto 45px;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.7142857143;
    font-weight: 500;
  }
  .page-index .about__list {
    display: flex;
    justify-content: space-between;
    max-width: 1040px;
    padding: 0 20px 80px;
    margin: 0 auto;
  }
  .page-index .about__item {
    width: 30%;
    max-width: 282px;
    text-align: center;
    margin-top: 0;
  }
  .page-index .about__item > h3 {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: center;
  }
  .page-index .about__item > h3::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 14px;
    margin: auto;
    background-color: #ffe731;
  }
  .page-index .about__item > h3 > span {
    position: relative;
    z-index: 3;
  }
  .page-index .about__item > p {
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.7142857143;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: center;
  }
  .page-index .about__images {
    margin: 48px 0 0;
    height: 284px;
  }
  .page-index .about__images img {
    padding: 0 15px;
  }
  .page-index .about__note {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto 0;
    padding: 0 20px;
    font-size: 10px;
    text-align: right;
  }
  .page-index .program {
    position: relative;
    padding: 90px 0 123px;
    background-color: #f8f8f9;
    background-image: url("../img/index/program_bg_pc.svg");
    background-size: 1890px;
    background-position: top 47% left 54%;
    overflow: hidden;
  }
  .page-index .program__shape {
    position: absolute;
    display: block;
  }
  .page-index .program__shape--1 {
    top: 82%;
    right: -84%;
    left: 0;
    bottom: 0;
    width: min(515px, 26.8229166667vw);
    z-index: 3;
    animation: move_item_1 5s 0s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
  }
  @keyframes move_item_1 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(50%);
    }
  }
  .page-index .program__shape--2 {
    top: 2%;
    left: -84%;
    right: 0;
    bottom: 0;
    width: min(602px, 31.3541666667vw);
    z-index: 3;
    animation: move_item_2 5s 0.2s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
  }
  @keyframes move_item_2 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(-50%);
    }
  }
  @keyframes move_item_2 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(-50%);
    }
  }
  .page-index .program__description {
    width: auto;
    margin: 80px auto 58px;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
  }
  .page-index .program__image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 804px;
    padding: 0 40px;
    margin: 42px auto 0;
  }
  .page-index .program__list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 890px;
    padding: 0 20px;
    margin: 69px auto 89px;
  }
  .page-index .program__item {
    position: relative;
    width: 47%;
    margin-top: 25px;
    padding-left: 32px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .page-index .program__item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 16px;
    height: 16px;
    margin: auto;
    background-color: #40a9f5;
    border-radius: 50%;
  }
  .page-index .program__item:nth-child(2),
  .page-index .program__item:nth-child(5) {
    width: 40%;
  }
  .page-index .program__item:nth-child(3) {
    width: 13%;
  }
  .page-index .reserve {
    position: relative;
    background-image: url("../img/index/reserve_bg_pc.png");
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
  }
  .page-index .reserve__container {
    max-width: 1240px;
    margin: auto;
    padding: 107px 0 205px;
    background-image: none;
    overflow: visible;
  }
  .page-index .reserve .page-index__ttl {
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
  }
  .page-index .reserve__textbox {
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 120px auto 0;
  }
  .page-index .reserve__textbox__ttl {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
  .page-index .reserve__textbox__description {
    margin-top: 33px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.1em;
  }
  .page-index .reserve__textbox__description .tab {
    display: none;
  }
  .page-index .reserve .page__morebtn {
    margin: 74px 0 0;
  }
  .page-index .reserve .page__morebtn > a {
    background-color: #ffffff;
  }
  .page-index .price {
    padding: 112px 0;
  }
  .page-index .price__shape {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 0;
    margin: auto;
  }
  .page-index .price__shape--1 {
    top: -8%;
    left: 44%;
    width: min(197px, 10.2604166667vw);
  }
  .page-index .price__shape--2 {
    top: 6%;
    right: -86%;
    width: min(138px, 7.1875vw);
  }
  .page-index .price__shape--3 {
    bottom: 2%;
    left: 50%;
    width: min(117px, 6.09375vw);
  }
  .page-index .price__shape--4 {
    bottom: 11%;
    left: -73%;
    width: min(138px, 7.1875vw);
  }
  .page-index .price__shape--5 {
    top: 49%;
    right: -84%;
    left: 0;
    bottom: 0;
    width: min(602px, 31.3541666667vw);
    z-index: 3;
    animation: move_item_1 5s 0s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
  }
  @keyframes move_item_1 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(50%);
    }
  }
  .page-index .price__shape--6 {
    top: 2%;
    left: -84%;
    right: 0;
    bottom: 0;
    width: min(514px, 26.7708333333vw);
    z-index: 3;
    animation: move_item_2 5s 0.2s infinite cubic-bezier(0.44, 0.04, 0.57, 1) alternate;
  }
  @keyframes move_item_2 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(-50%);
    }
  }
  @keyframes move_item_2 {
    0% {
      transform: rotate(0deg) translateX(0);
    }
    100% {
      transform: rotate(0deg) translateX(-50%);
    }
  }
  .page-index .price__shape--move {
    margin: auto;
  }
  .page-index .price__shape--move img {
    animation: rotate_logo 15s infinite linear;
    transform: center center;
  }
  @keyframes rotate_logo {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .page-index .price__ttl {
    margin-top: 68px;
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: center;
    line-height: 1.5555555556;
  }
  .page-index .price__description {
    width: auto;
    padding: 0 20px;
    margin: 26px auto 47px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.7142857143;
    font-weight: 500;
    text-align: center;
  }
  .page-index .price__slider {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 20px;
  }
  .page-index .price__slider__wrap {
    position: relative;
    width: calc(100% + (100vw - 100%) / 2);
    z-index: 3;
  }
  .page-index .price__list {
    display: block;
    overflow-x: visible;
    margin: 0 auto;
    padding: 0;
    visibility: hidden;
  }
  .page-index .price__list.slick-initialized {
    visibility: visible;
    /*slick-initializedが付与されたら表示*/
  }
  .page-index .price__list .slick-list {
    padding: 30px;
    margin: -30px;
  }
  .page-index .price__list .slick-arrow {
    position: absolute;
    top: -25px;
    bottom: 0;
    width: 46px;
    margin: auto;
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .page-index .price__list .slick-arrow:hover {
    opacity: 0.7;
  }
  .page-index .price__list .prev-arrow {
    left: -23px;
  }
  .page-index .price__list .next-arrow {
    right: calc(100vw - 100% - 142px);
  }
  .page-index .price__item {
    width: 360px;
    margin-right: 60px;
    border-radius: 20px;
    background-color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
  .page-index .price__item .ttl {
    padding: 17px 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    color: #ffffff;
    border-radius: 20px 20px 0 0;
  }
  .page-index .price__item .textbox {
    padding: 24px 32px;
  }
  .page-index .price__item .description {
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 1.625;
  }
  .page-index .price__item .num {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }
  .page-index .price__item .note {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.8333333333;
  }
  .page-index .access__bg {
    padding: 112px 0;
  }
  .page-index .access__container {
    max-width: 1240px;
    padding: 0 20px;
    margin: auto;
  }
  .page-index .access__thumb {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page-index .access__description {
    width: auto;
    max-width: 736px;
    margin: 16px auto 0;
    font-size: 16px;
    line-height: 1.75;
  }
  .page-index .access__map {
    position: relative;
    max-width: 1240px;
    padding: 0 20px;
    margin: 55px auto 80px;
  }
  .page-index .access__map::before {
    content: "";
    display: block;
    padding-top: 51.7857142857%;
  }
  .page-index .access__map > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .page-index .news {
    padding: min(112px, 5.8333333333vw) 0;
  }
  .page-index .news__content {
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: min(67px, 3.4895833333vw) auto 0;
    padding: 0 20px;
  }
  .page-index .news__top {
    width: 460px;
    flex-shrink: 0;
    margin-right: 0;
  }
  .page-index .news__top a {
    padding-bottom: 0;
    border-bottom: 0;
    margin: auto;
  }
  .page-index .news__top__date {
    margin-top: 22px;
    font-size: 16px;
  }
  .page-index .news__top__ttl {
    margin-top: 11px;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.6666666667;
  }
  .page-index .news__list {
    max-width: 660px;
    width: 100%;
    padding-left: 5%;
  }
  .page-index .news__item:first-child {
    display: none;
  }
  .page-index .news__item:nth-child(2) {
    border-top: 1px solid #c6cad2;
  }
  .page-index .news__item a {
    display: block;
    position: relative;
    padding: 32px 97px 32px 0;
  }
  .page-index .news__item a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 19px;
    height: 19px;
    margin: auto;
    background-image: url("../img/common/icon_arrow_1.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .page-index .news__item__date {
    font-size: 16px;
  }
  .page-index .news__item__ttl {
    margin-top: 16px;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.6666666667;
  }
  .page-index .parking {
    position: fixed;
    bottom: 23px;
    right: 23px;
  }
  .page-index .parking a {
    width: 300px;
    height: 51px;
    font-size: 18px;
  }
  .page-index .parking a::before {
    top: -14px;
    right: -10px;
    width: 36px;
    height: 36px;
  }
}
/* page-news
------------------------------------------ */
.page-news {
  padding-bottom: 17.5vw;
}

.page-news .news {
  padding: 0 6.25vw;
}

.page-news .news__list {
  border-top: 1px solid #c6cad2;
}

.page-news .news__item {
  position: relative;
  padding: 5vw 12.5vw 4.375vw 0;
  border-bottom: 1px solid #c6cad2;
}

.page-news .news__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 6.25vw;
  height: 6.25vw;
  background-image: url("../img/common/icon_arrow_3.svg");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-news .news__item__date {
  font-size: 3.75vw;
  font-family: "Outfit", sans-serif;
  color: #434a56;
}

.page-news .news__item__ttl {
  margin-top: 1.875vw;
  font-size: 4.375vw;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
  font-weight: 500;
}

.page-news .news__pagenation {
  margin-top: 12.5vw;
}

.page-news .news__pagenation ul.page-numbers {
  display: flex;
  justify-content: center;
}

.page-news .news__pagenation ul.page-numbers .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.5625vw;
  height: 11.5625vw;
  margin: 0.625vw;
  border: 1px solid #c6cad2;
  border-radius: 6px;
  font-size: 3.75vw;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  line-height: 0;
  color: #335183;
}

.page-news .news__pagenation ul.page-numbers .page-numbers.current {
  background-color: #335183;
  color: #ffffff;
}

.page-news .news__pagenation ul.page-numbers .page-numbers.prev,
.page-news .news__pagenation ul.page-numbers .page-numbers.next {
  font-size: 0;
  position: relative;
}

.page-news .news__pagenation ul.page-numbers .page-numbers.prev::before,
.page-news .news__pagenation ul.page-numbers .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 2.8125vw;
  height: 2.8125vw;
  background-image: url("../img/common/icon_arrow_7.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-news .news__pagenation ul.page-numbers .page-numbers.prev {
  margin-right: 3.75vw;
}

.page-news .news__pagenation ul.page-numbers .page-numbers.prev::before {
  right: -1.25vw;
}

.page-news .news__pagenation ul.page-numbers .page-numbers.next {
  margin-left: 3.75vw;
}

.page-news .news__pagenation ul.page-numbers .page-numbers.next::before {
  right: 1.25vw;
  transform: scaleX(-1);
}

.page-news .page__morebtn {
  margin-top: 12.5vw;
}

@media screen and (min-width: 768px) {
  .page-news {
    padding-bottom: 233px;
  }
  .page-news .news {
    max-width: 1040px;
    margin: auto;
    padding: 0 20px;
  }
  .page-news .news__list {
    border-top: 1px solid #c6cad2;
  }
  .page-news .news__item {
    padding: 20px 0;
    border-bottom: 1px solid #c6cad2;
  }
  .page-news .news__item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .page-news .news__item > a {
    display: flex;
    align-items: center;
  }
  .page-news .news__item__date {
    font-size: 16px;
    margin-right: 27px;
  }
  .page-news .news__item__ttl {
    margin-top: 0;
    font-size: 14px;
  }
  .page-news .news__pagenation {
    margin-top: 81px;
  }
  .page-news .news__pagenation ul.page-numbers .page-numbers {
    width: 50px;
    height: 50px;
    margin: 2px;
    border: 1px solid #c6cad2;
    border-radius: 4px;
    font-size: 16px;
  }
  .page-news .news__pagenation ul.page-numbers .page-numbers.prev::before,
  .page-news .news__pagenation ul.page-numbers .page-numbers.next::before {
    width: 13px;
    height: 13px;
  }
  .page-news .news__pagenation ul.page-numbers .page-numbers.prev {
    margin-right: 38px;
  }
  .page-news .news__pagenation ul.page-numbers .page-numbers.prev::before {
    top: 2px;
    right: -2px;
  }
  .page-news .news__pagenation ul.page-numbers .page-numbers.next {
    margin-left: 38px;
  }
  .page-news .news__pagenation ul.page-numbers .page-numbers.next::before {
    top: 2px;
    right: 5px;
  }
  .page-news .page__morebtn {
    margin-top: 112px;
  }
}
/* page-news-single
------------------------------------------ */
.page-news-single {
  padding-bottom: 17.5vw;
}

.page-news-single .content {
  padding: 0 6.25vw;
}

.page-news-single .content__date {
  margin-top: 2.5vw;
  font-size: 4.375vw;
  font-family: "Outfit", sans-serif;
}

.page-news-single .content__ttl {
  margin-top: 10vw;
  font-size: 5.625vw;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  font-weight: bold;
}

.page-news-single .content__main {
  margin-top: 7.8125vw;
}

.page-news-single .content__main p:not(:has(img)) {
  font-size: 4.375vw;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.8571428571;
  margin-top: 0.5em;
}

.page-news-single .content__main p:has(img) {
  margin: 4.6875vw 0;
}

.page-news-single .page__backbtn {
  margin-top: 12.5vw;
}

.page-news-single .page__morebtn {
  margin-top: 5vw;
}

@media screen and (min-width: 768px) {
  .page-news-single {
    padding-bottom: 236px;
  }
  .page-news-single .content {
    max-width: 1040px;
    padding: 0 20px;
    margin: auto;
  }
  .page-news-single .content__date {
    font-size: 18px;
  }
  .page-news-single .content__ttl {
    margin-top: 29px;
    font-size: 24px;
  }
  .page-news-single .content__main {
    max-width: 800px;
    margin: 49px auto 0;
  }
  .page-news-single .content__main p:not(:has(img)) {
    font-size: 14px;
  }
  .page-news-single .content__main p:has(img) {
    margin: 20px auto;
  }
  .page-news-single .btnarea {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 112px;
  }
  .page-news-single .page__backbtn {
    margin: 0 40px 0 0;
  }
  .page-news-single .page__morebtn {
    margin: 0;
  }
}
/* page-notfound
------------------------------------------ */
.page-notfound {
  padding: 0 0 16.875vw;
}

.page-notfound .notfound__title {
  text-align: center;
  font-size: 7.5vw;
  font-weight: 700;
  line-height: 1.4166666667;
}

.page-notfound .notfound__description {
  width: 87.5vw;
  margin: 5.3125vw auto 12.5vw;
  font-size: 4.375vw;
  color: #222222;
  font-weight: 300;
  line-height: 1.7142857143;
}

@media screen and (min-width: 768px) {
  .page-notfound {
    padding: 0 0 182px;
  }
  .page-notfound .notfound__title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
  }
  .page-notfound .notfound__description {
    width: auto;
    margin: 63px 0 162px;
    font-size: 18px;
    text-align: center;
    line-height: 1.5555555556;
    font-weight: 400;
  }
}
/* page-sitemap
------------------------------------------ */
.page-sitemap {
  padding: 0 0 17.5vw;
}

.page-sitemap .sitemap {
  padding: 0 6.25vw;
  margin-top: 10vw;
  margin-bottom: 12.8125vw;
}

.page-sitemap .sitemap__item {
  position: relative;
  margin-bottom: 5vw;
  font-size: 5.625vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 6.875vw;
}

.page-sitemap .sitemap__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 1.875vw;
  height: 1.875vw;
  margin: auto;
  border-radius: 50%;
  background-color: #004e93;
}

@media screen and (min-width: 768px) {
  .page-sitemap {
    padding: 0 0 134px;
  }
  .page-sitemap .sitemap {
    display: flex;
    max-width: 1080px;
    padding: 0 20px;
    margin: 90px auto 255px;
  }
  .page-sitemap .sitemap__list {
    width: 25%;
    height: 164px;
    padding-left: 32px;
    border-left: 1px solid #c6cad2;
  }
  .page-sitemap .sitemap__item {
    margin-bottom: 38px;
    font-size: 18px;
    padding-left: 16px;
  }
  .page-sitemap .sitemap__item::before {
    width: 6px;
    height: 6px;
  }
}
/* page-about
------------------------------------------ */
.page-about__bg--gray {
  padding-bottom: 17.5vw;
}

.page-about .thumb {
  padding: 0 0 12.5vw;
}

.page-about .thumb__loop {
  height: 54.6875vw;
}

.page-about .thumb__loop img:first-child {
  animation: slide1 160s linear -80s infinite reverse;
}

.page-about .thumb__loop img:last-child {
  animation: slide2 160s linear infinite reverse;
}

.page-about .thumb__note {
  width: 87.1875vw;
  margin: 0.7em auto 0;
  font-size: 2.8125vw;
  line-height: 1.4;
}

.page-about .thumb__ttl {
  margin-top: 10vw;
  font-size: 5.625vw;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4444444444;
}

.page-about .thumb__subttl {
  width: 87.5vw;
  margin: 7.8125vw auto 7.5vw;
  font-size: 4.375vw;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
  font-weight: 500;
}

.page-about .thumb__list {
  width: 88.4375vw;
  margin: 0 auto;
}

.page-about .thumb__item {
  text-align: center;
  margin-top: 10vw;
}

.page-about .thumb__item > h3 {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 6.25vw;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}

.page-about .thumb__item > h3::before {
  content: "";
  position: absolute;
  bottom: -2.1875vw;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 4.375vw;
  margin: auto;
  background-color: #ffe731;
}

.page-about .thumb__item > h3 > span {
  position: relative;
  z-index: 3;
}

.page-about .thumb__item > p {
  margin-top: 6.25vw;
  font-size: 4.375vw;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}

.page-about .map {
  width: 87.5vw;
  margin: auto;
  padding-bottom: 12.5vw;
}

.page-about .map__toggle {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: auto;
}

.page-about .map__ttl {
  font-size: 6.875vw;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.page-about .map__arrow {
  width: 8.4375vw;
  height: 8.4375vw;
  margin-left: 3.75vw;
  transform: scaleY(-1);
}

.page-about .map__toggle.is-open .map__arrow {
  transform: scaleY(1);
}

.page-about .map__description {
  margin-top: 6.875vw;
  font-size: 4.375vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
}

.page-about .map__images {
  margin-top: 7.5vw;
}

.page-about .map__image {
  margin-top: 5vw;
}

.page-about .facility {
  padding: 10vw 0 0;
  margin-bottom: 12.5vw;
}

.page-about .facility__ttl {
  font-size: 6.875vw;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.page-about .facility__note {
  width: 87.5vw;
  margin: 1.2em auto 0;
  font-size: 2.8125vw;
  line-height: 1.4;
}

.page-about .facility__content {
  width: 87.5vw;
  margin: 10vw auto 0;
}

.page-about .facility__item {
  margin: 0 0 12.5vw;
}

.page-about .facility__item .ttl {
  margin-bottom: 5.3125vw;
  font-size: 5.625vw;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.page-about .facility__item .description {
  font-size: 4.375vw;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.page-about .facility__item .note {
  margin: 4.375vw 0 6.875vw;
  font-size: 3.75vw;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.page-about .facility__item .capacity {
  margin-top: 5vw;
  padding: 5vw;
  font-size: 3.75vw;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.4;
  background-color: #ffffff;
}

.page-about .facility__item .img {
  margin-top: 7.5vw;
}

.page-about .facility .machine {
  width: 93.75vw;
  margin: auto;
  padding: 9.375vw 5vw 0.3125vw;
  background-color: #ffffff;
}

.page-about .facility .machine__ttl {
  margin-bottom: 5.3125vw;
  font-size: 5.625vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5555555556;
}

.page-about .facility .machine__description {
  margin-bottom: 6.5625vw;
  font-size: 4.375vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
}

.page-about .facility .machine__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6.5625vw;
}

.page-about .facility .machine__item {
  margin-bottom: 5.3125vw;
  width: calc(50% - 2.65625vw);
}

.page-about .facility .machine__item:not(:nth-child(2n)) {
  margin-right: 5.3125vw;
}

.page-about .facility .machine__item .ttl {
  margin-top: 2.5vw;
  font-size: 3.75vw;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.6666666667;
}

.page-about .comingsoon {
  padding: 0 6.25vw;
  margin: 1em 0 12.5vw;
}

.page-about .comingsoon p {
  padding: 1em;
  background-color: #ffffff;
  font-size: 4.375vw;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .page-about__bg--gray {
    padding-bottom: 180px;
    background-color: #f8f8f9;
  }
  .page-about .thumb {
    padding: 0 0 185px;
  }
  .page-about .thumb__loop {
    height: 480px;
  }
  .page-about .thumb__note {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto 0;
    padding: 0 20px;
    font-size: 10px;
    text-align: right;
  }
  .page-about .thumb__ttl {
    margin-top: 58px;
    font-size: 32px;
  }
  .page-about .thumb__subttl {
    max-width: 800px;
    margin: 33px auto 45px;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.7142857143;
    font-weight: 500;
  }
  .page-about .thumb__list {
    display: flex;
    justify-content: space-between;
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
  }
  .page-about .thumb__item {
    width: 30%;
    max-width: 282px;
    text-align: center;
    margin-top: 0;
  }
  .page-about .thumb__item > h3 {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: center;
  }
  .page-about .thumb__item > h3::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 14px;
    margin: auto;
    background-color: #ffe731;
  }
  .page-about .thumb__item > h3 > span {
    position: relative;
    z-index: 3;
  }
  .page-about .thumb__item > p {
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.7142857143;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: center;
  }
  .page-about .map {
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: auto;
    padding-bottom: 112px;
  }
  .page-about .map__toggle {
    max-width: 800px;
  }
  .page-about .map__ttl {
    font-size: 32px;
  }
  .page-about .map__arrow {
    width: 46px;
    height: 46px;
    margin-left: 55px;
  }
  .page-about .map__description {
    margin-top: 29px;
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
  }
  .page-about .map__images {
    margin-top: 54px;
    display: flex;
    justify-content: space-between;
  }
  .page-about .map__image {
    width: 48%;
    max-width: 560px;
    margin-top: 0;
  }
  .page-about .facility {
    padding: 112px 0 0;
    margin-bottom: 80px;
  }
  .page-about .facility__ttl {
    font-size: 32px;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
  .page-about .facility__note {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 20px;
    font-size: 10px;
    text-align: center;
  }
  .page-about .facility__content {
    max-width: 1040px;
    padding: 0 20px;
    margin: 72px auto 0;
  }
  .page-about .facility__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 72px;
  }
  .page-about .facility__item .textbox {
    width: 50%;
    max-width: 484px;
    flex-shrink: 0;
  }
  .page-about .facility__item .ttl {
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 1.2857142857;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
  .page-about .facility__item .description {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
  .page-about .facility__item .note {
    margin: 10px 0 10px;
    font-size: 12px;
  }
  .page-about .facility__item .capacity {
    margin-top: 24px;
    margin-bottom: 0;
    padding: 20px 24px;
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 1.4;
    background-color: #ffffff;
  }
  .page-about .facility__item:nth-child(odd) .textbox {
    margin-right: 57px;
  }
  .page-about .facility__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page-about .facility__item:nth-child(even) .textbox {
    margin-left: 57px;
  }
  .page-about .facility__item .img {
    margin-top: 0;
  }
  .page-about .facility .machine {
    max-width: 1040px;
    margin: auto;
    padding: 46px 40px 32px;
    background-color: #ffffff;
  }
  .page-about .facility .machine__ttl {
    margin-bottom: 17px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.6363636364;
  }
  .page-about .facility .machine__description {
    margin-bottom: 27px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.75;
  }
  .page-about .facility .machine__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 27px;
    margin-bottom: 48px;
  }
  .page-about .facility .machine__list:last-child {
    margin-bottom: 0;
  }
  .page-about .facility .machine__item {
    margin-bottom: 24px;
    width: calc(25% - 27px);
  }
  .page-about .facility .machine__item:not(:nth-child(4n)) {
    margin-right: 36px;
  }
  .page-about .facility .machine__item .ttl {
    margin-top: 16px;
    font-size: 14px;
    letter-spacing: 0.05em;
    font-weight: 700;
    line-height: 1.7142857143;
  }
  .page-about .comingsoon {
    max-width: 600px;
    padding: 0;
    margin: 0 auto 80px;
  }
  .page-about .comingsoon p {
    padding: 1em;
    font-size: 18px;
  }
}
/* page-access
------------------------------------------ */
.page-access__bg {
  padding: 0 0 17.5vw;
}

.page-access .map {
  width: 93.75vw;
  margin: 0 auto 12.5vw;
}

.page-access .map__iframe {
  position: relative;
}

.page-access .map__iframe::before {
  content: "";
  display: block;
  padding-top: 51.6666666667%;
}

.page-access .map__iframe > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-access .map__description {
  margin-top: 5vw;
  font-size: 4.375vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
}

.page-access .movie__mp4 {
  width: 93.75vw;
  margin: 0 auto 12.5vw;
}

.page-access .movie__mp4 video {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .page-access__bg {
    padding: 0 0 120px;
  }
  .page-access .map {
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto 40px;
  }
  .page-access .map__iframe {
    position: relative;
  }
  .page-access .map__iframe::before {
    content: "";
    display: block;
    padding-top: 51.7%;
  }
  .page-access .map__iframe > iframe {
    width: 100%;
    height: 100%;
  }
  .page-access .map__description {
    margin-top: 32px;
    font-size: 14px;
  }
  .page-access .movie__mp4 {
    width: 90%;
    max-width: 300px;
    margin: 0 auto 80px;
  }
}
/* page-faq
------------------------------------------ */
.page-faq__bg {
  padding: 0 0 21.5625vw;
}

.page-faq .faq {
  margin-bottom: 12.5vw;
}

.page-faq .faq__list {
  padding: 0 3.125vw;
}

.page-faq .faq__item {
  margin-bottom: 5vw;
  border-radius: 20px;
  overflow: hidden;
}

.page-faq .faq__item > dt {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 4.0625vw 15vw 4.0625vw 5vw;
  font-size: 4.375vw;
  font-weight: 700;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  background-color: #f8f8f9;
  cursor: pointer;
}

.page-faq .faq__item > dt::before {
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 13.125vw;
  height: 13.125vw;
  margin-right: 5vw;
  font-size: 7.1875vw;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1;
  background-color: #d9e022;
  border-radius: 50%;
}

.page-faq .faq__item > dt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5vw;
  width: 5.9375vw;
  height: 5.9375vw;
  margin: auto;
  background-image: url("../img/common/icon_arrow_5.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform-origin: center center;
  transform: scale(-1);
}

.page-faq .faq__item > dd {
  padding: 5vw;
  font-size: 3.75vw;
  font-weight: 500;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
  background-color: #f0f1f4;
}

.page-faq .faq__item > dd > a {
  color: #40a9f5;
  text-decoration: underline;
}

.page-faq .faq__item.is-open > dt::after {
  transform: scale(1);
}

.page-faq .faq__ttl {
  padding: 0 6.25vw;
  margin: 20.3125vw auto 5vw;
  font-size: 5vw;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .page-faq__bg {
    padding: 0 0 134px;
  }
  .page-faq .faq {
    margin-bottom: 64px;
  }
  .page-faq .faq__list {
    max-width: 1040px;
    padding: 0 20px;
    margin: auto;
  }
  .page-faq .faq__item {
    margin-bottom: 24px;
  }
  .page-faq .faq__item > dt {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 11px 90px 11px 32px;
    font-size: 16px;
  }
  .page-faq .faq__item > dt::before {
    width: 42px;
    height: 42px;
    margin-right: 11px;
    font-size: 23px;
  }
  .page-faq .faq__item > dt::after {
    right: 32px;
    width: 19px;
    height: 19px;
  }
  .page-faq .faq__item > dd {
    padding: 34px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8571428571;
    letter-spacing: 0.1em;
  }
  .page-faq .faq__ttl {
    max-width: 1040px;
    padding: 0 20px;
    margin: 64px auto 16px;
    font-size: 20px;
  }
}
/* page-price
------------------------------------------ */
.page-price {
  padding: 0 0 12.5vw;
}

.page-price .price {
  margin-bottom: 12.5vw;
}

.page-price .price__ttl {
  width: 93.75vw;
  margin: 10.9375vw auto 8.75vw;
  font-size: 6.875vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.page-price .price__table {
  padding: 0 3.125vw;
  overflow-x: auto;
}

.page-price .price__table > img {
  width: 780px;
}

.page-price .price__note {
  width: 93.75vw;
  margin: 2.5vw auto 0;
  font-size: 2.8125vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.page-price .comingsoon {
  padding: 0 3.125vw;
  margin: 1em 0 4em;
}

.page-price .comingsoon p {
  padding: 1em;
  background-color: #f8f8f9;
  font-size: 4.375vw;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .page-price {
    padding: 0 0 160px;
  }
  .page-price .page__tab {
    margin-top: -35px;
  }
  .page-price .price {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto 80px;
  }
  .page-price .price__ttl {
    width: 100%;
    margin: 80px auto 40px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .page-price .price__table {
    width: 100%;
    padding: 0;
    overflow-x: auto;
  }
  .page-price .price__table > img {
    width: 100%;
  }
  .page-price .price__note {
    width: 100%;
    margin: 12px auto 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
  .page-price .comingsoon {
    max-width: 600px;
    padding: 0;
    margin: 0 auto 4em;
  }
  .page-price .comingsoon p {
    padding: 1em;
    font-size: 18px;
  }
}
/* page-privacy-policy
------------------------------------------ */
/* page-program
------------------------------------------ */
.page-program .fv {
  padding: 0 6.25vw 12.5vw;
}

.page-program .fv__description {
  margin-top: 5.3125vw;
  font-size: 4.375vw;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.7142857143;
}

.page-program .schedule {
  padding: 1.875vw 0 12.5vw;
}

.page-program .schedule__container {
  padding: 0 6.25vw;
}

.page-program .schedule .page__morebtn {
  width: 100%;
  margin-top: 6%;
}

.page-program .schedule .page__morebtn > a {
  padding-right: 6%;
}

.page-program .schedule .page__morebtn > a::before {
  right: 5%;
}

.page-program .intro {
  padding: 10vw 0 22.5vw;
  background-color: #f8f8f9;
}

.page-program .intro__ttl {
  font-size: 6.875vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.page-program .intro__nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 3.125vw;
  margin-top: 5.9375vw;
}

.page-program .intro__nav__item {
  width: calc(50% - 4px);
  height: 10vw;
  margin-bottom: 2.5vw;
}

.page-program .intro__nav__item > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 0 0 3.125vw;
  font-size: 3.75vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #40a9f5;
  line-height: 1;
  border: 1px solid #40a9f5;
  border-radius: 5vw;
}

.page-program .intro__nav__item > a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3.125vw;
  display: block;
  width: 4.0625vw;
  height: 4.0625vw;
  margin: auto;
  background-image: url("../img/common/icon_arrow_4.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-program .intro__content {
  margin-top: 6.5625vw;
  padding: 0 6.25vw;
}

.page-program .intro__content__item {
  margin-bottom: 12.5vw;
}

.page-program .intro__content__ttl {
  margin: 7.5vw 0 5.3125vw;
  font-size: 5.625vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.page-program .intro__content__description {
  font-size: 4.375vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
}

.page-program .comingsoon {
  padding: 0 6.25vw;
  margin: 1em 0 12.5vw;
}

.page-program .comingsoon p {
  font-size: 3.75vw;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .page-program .fv {
    max-width: 800px;
    padding: 0 20px 112px;
    margin: auto;
  }
  .page-program .fv__description {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.75;
  }
  .page-program .schedule {
    padding: 0 0 112px;
  }
  .page-program .schedule__container {
    display: flex;
    justify-content: center;
    padding: 0 20px;
  }
  .page-program .schedule .page__morebtn {
    width: 100%;
    max-width: 350px;
    margin: 0 10px;
  }
  .page-program .schedule .page__morebtn > a {
    padding-right: 0;
  }
  .page-program .schedule .page__morebtn > a::before {
    right: 21px;
  }
  .page-program .intro {
    padding: 90px 0 112px;
  }
  .page-program .intro__ttl {
    font-size: 32px;
  }
  .page-program .intro__content {
    max-width: 1040px;
    padding: 0 20px;
    margin: 72px auto 0;
  }
  .page-program .intro__content__item {
    display: flex;
    align-items: center;
    margin-bottom: 72px;
  }
  .page-program .intro__content__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page-program .intro__content__img {
    max-width: 459px;
    width: 50%;
    margin-right: 57px;
    flex-shrink: 0;
  }
  .page-program .intro__content__item:nth-child(even) .intro__content__img {
    margin-left: 57px;
    margin-right: 0;
  }
  .page-program .intro__content__ttl {
    margin: 0 0 25px;
    font-size: 28px;
  }
  .page-program .intro__content__description {
    font-size: 16px;
    line-height: 1.75;
  }
  .page-program .comingsoon {
    max-width: 1040px;
    padding: 0 20px;
    padding: 0;
    margin: 0 auto 72px;
  }
  .page-program .comingsoon p {
    padding: 1em;
    font-size: 14px;
  }
}
/* page-reserve
------------------------------------------ */
.page-reserve__bg {
  padding-bottom: 15vw;
}

.page-reserve .rule {
  width: 93.75vw;
  background-color: #f8f8f9;
  padding: 7.8125vw 6.25vw;
  margin: 1em auto 9.375vw;
  letter-spacing: 0.1em;
}

.page-reserve .rule h3 {
  text-align: center;
  font-weight: bold;
  font-size: 5.625vw;
  line-height: 1.6;
}

.page-reserve .rule ol {
  margin-top: 1em;
}

.page-reserve .rule ol li {
  font-size: 4.375vw;
  line-height: 1.7;
  font-weight: 500;
}

.page-reserve .rule ol li + li {
  margin-top: 1em;
}

.page-reserve .schedule__container {
  padding: 0 3.125vw;
}

.page-reserve .schedule__item img {
  width: 100%;
}

.page-reserve .schedule__item + .schedule__item {
  margin-top: 6.25vw;
}

@media screen and (min-width: 768px) {
  .page-reserve__bg {
    padding-bottom: 223px;
  }
  .page-reserve .rule {
    width: 90%;
    max-width: 1000px;
    background-color: #f8f8f9;
    padding: 47px;
    margin: 1em auto 4em;
    letter-spacing: 0.1em;
  }
  .page-reserve .rule h3 {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.6;
  }
  .page-reserve .rule ol {
    margin-top: 1.5em;
  }
  .page-reserve .rule ol li {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
  }
  .page-reserve .rule ol li + li {
    margin-top: 0.5em;
  }
  .page-reserve .schedule__container {
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
  }
  .page-reserve .schedule__item img {
    width: 100%;
  }
  .page-reserve .schedule__item + .schedule__item {
    margin-top: 20px;
  }
  .page-reserve .page__connect {
    margin: 69px auto 117px;
  }
}
/* 追加20260411 */
.page-reserve .btn__warp {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.page-reserve .btn__warp .page__morebtn.is-active > a {
  background-color: #40a9f5;
  color: #ffffff;
  opacity: 1;
}
.page-reserve .btn__warp .page__morebtn.is-active > a::before {
  background-image: url("../img/common/icon_arrow_2_white.svg");
}
.page-reserve .schedule__group {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.page-reserve .schedule__group.is-active {
  display: block;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .page-reserve .btn__warp .page__morebtn {
    width: 45.75vw;
    margin: 0;
    text-align: left;
  }
  .page-reserve .btn__warp .page__morebtn a {
    font-size: 3.5vw;
    justify-content: flex-start;
    text-indent: 5vw;
  }
  .page-reserve .btn__warp .page__morebtn a:before {
    right: 2.25vw;
  }
}/*# sourceMappingURL=style.css.map */