@charset "UTF-8";

/* media query
------------------------------ */

/* font
------------------------------ */

/* setting
------------------------------ */

:root {
  /* color */
  --base-color: #000;
  --base-color-rgb: 0, 0, 0;
  --bg-color: #f3f3f3;
  --point-color: #DA5661;
  --point-color-rgb: 218, 86, 97;
  --line-color: #ccc;
  --gradation-color: linear-gradient(125deg, #E9A99E 0%, #DE627C 100%);
  /* transition */
  --base-transition: 0.2s ease-out;
  --header-transition: 0.5s cubic-bezier(.4,0,.2,1);
  /* z-index */
  --header-index: 999;
  --headerMenu-index: 1000;
  --modal-index: 9999;
}

/* animation
------------------------------ */

@-webkit-keyframes scroll {
  to {
    top: 70%;
    opacity: 0;
  }
}

@keyframes scroll {
  to {
    top: 70%;
    opacity: 0;
  }
}

@-webkit-keyframes showUp {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes showUp {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes btnArrow {
  0% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: right;
    transform: scale(1, 1);
    transform-origin: right;
  }

  50% {
    -webkit-transform: scale(0, 1);
    -webkit-transform-origin: right;
    transform: scale(0, 1);
    transform-origin: right;
  }

  50.1% {
    -webkit-transform: scale(0, 1);
    -webkit-transform-origin: left;
    transform: scale(0, 1);
    transform-origin: left;
  }

  100% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: left;
    transform: scale(1, 1);
    transform-origin: left;
  }
}

@keyframes btnArrow {
  0% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: right;
    transform: scale(1, 1);
    transform-origin: right;
  }

  50% {
    -webkit-transform: scale(0, 1);
    -webkit-transform-origin: right;
    transform: scale(0, 1);
    transform-origin: right;
  }

  50.1% {
    -webkit-transform: scale(0, 1);
    -webkit-transform-origin: left;
    transform: scale(0, 1);
    transform-origin: left;
  }

  100% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: left;
    transform: scale(1, 1);
    transform-origin: left;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@-webkit-keyframes infinity-scroll-left-100 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left-100 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes line_circle {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -155;
  }
}

@keyframes line_circle {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -155;
  }
}

@-webkit-keyframes line_circle_delay {
  0% {
    stroke-opacity: 1;
    stroke-dashoffset: 155;
  }

  100% {
    stroke-opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes line_circle_delay {
  0% {
    stroke-opacity: 1;
    stroke-dashoffset: 155;
  }

  100% {
    stroke-opacity: 1;
    stroke-dashoffset: 0;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

*:focus-visible {
  outline: 2px solid var(--point-color);
}

.studio_program{
  width: 470px;
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: var(--base-color);
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: normal;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.05em;
}

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

.body-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

section {
  position: relative;
  padding: 100px 0 120px;
}

main {
  position: relative;
  overflow: hidden;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 100px;
}

.inner.small {
  max-width: 1200px;
}

img,
iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

a,
button,
select {
  color: var(--base-color);
  cursor: pointer;
}

a {
  -webkit-transition: var(--base-transition);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: var(--base-transition);
}

span {
  font-weight: inherit;
}

p.txt {
  line-height: 2;
}

.ib {
  display: inline-block;
}

.bg {
  background: url(/img/common/bg-noise.png);
}

.en {
  font-style: normal;
  font-weight: 400;
  font-family: "Tenor Sans", sans-serif;
}

.caution {
  color: #CC1533;
}

/* anim
------------------------------ */

.anim {
  overflow: hidden;
}

.anim > * {
  -webkit-transition: var(--header-transition);
  -webkit-transform: translateY(100%);
  display: block;
  transform: translateY(100%);
  transition: var(--header-transition);
}

.anim.is-visible > * {
  -webkit-animation: showUp 1s 0s cubic-bezier(0.25, 0, 0, 1) forwards;
  animation: showUp 1s 0s cubic-bezier(0.25, 0, 0, 1) forwards;
}

.anim.delay.is-visible > * {
  -webkit-animation: showUp 1s 0.4s cubic-bezier(0.25, 0, 0, 1) forwards;
  animation: showUp 1s 0.4s cubic-bezier(0.25, 0, 0, 1) forwards;
}

/* sidebar
------------------------------ */

.c-sidebar__fix {
  -webkit-transition: var(--base-transition);
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  border-left: solid 1px var(--base-color);
  opacity: 0;
  pointer-events: none;
  transition: var(--base-transition);
}

.c-sidebar__fix.active {
  opacity: 1;
  pointer-events: all;
}

.c-sidebar .header__btn_open {
  height: calc(100% - 380px);
}

.c-sidebar .header__btn_inn {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.c-sidebar__info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  gap: 5px;
  background-color: var(--bg-color);
  font-weight: 500;
  font-size: 1rem;
}

.c-sidebar__info span {
  -webkit-transition: var(--base-transition);
  transition: var(--base-transition);
}

.c-sidebar__info::before {
  -webkit-transition: var(--base-transition);
  width: 32px;
  height: 32px;
  background: url(/img/common/icon-info.svg) no-repeat center center/contain;
  content: "";
  transition: var(--base-transition);
}

.c-sidebar__reserve {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  -webkit-transition: var(--base-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  gap: 10px;
  background-color: var(--point-color);
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  transition: var(--base-transition);
  writing-mode: vertical-lr;
}

.c-sidebar__reserve::before {
  width: 25px;
  height: 25px;
  background: url(/img/common/icon-reserve.svg) no-repeat center center/contain;
  content: "";
}

.c-sidebar__reserve::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradation-color);
  content: "";
}

.c-sidebar__info_menu {
  visibility: hidden;
  z-index: var(--header-index);
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
}

.c-sidebar__info_menu.active {
  visibility: visible;
}

.c-sidebar__info_menu.active .c-sidebar__info_overlay {
  opacity: 0.4;
}

.c-sidebar__info_menu.active .c-sidebar__info_contents {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.c-sidebar__info_overlay {
  -webkit-transition: var(--header-transition);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--base-color);
  opacity: 0;
  transition: var(--header-transition);
}

.c-sidebar__info_contents {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-transition: var(--header-transition);
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 100%;
  margin-left: auto;
  padding: 60px 0 0;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: var(--header-transition);
}

.c-sidebar__info_title {
  position: relative;
  margin: 0 30px 20px;
  padding: 0 0 5px 30px;
  border-bottom: solid 1px var(--base-color);
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
}

.c-sidebar__info_title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: url(/img/common/icon-info.svg) no-repeat center center/contain;
  content: "";
}

.c-sidebar__info_list {
  padding: 0 30px;
}

.c-sidebar__info_list a {
  position: relative;
  padding: 15px 0 15px 25px;
}

.c-sidebar__info_list a::before {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  transform: rotate(45deg);
  border-top: solid 1px var(--base-color);
  border-right: solid 1px var(--base-color);
  content: "";
}

.c-sidebar__info_list .nav__inn {
  display: block;
  overflow: hidden;
}

.c-sidebar__info_list .nav__inn_txt {
  -webkit-transition: var(--header-transition);
  display: block;
  font-size: 1.4rem;
  text-shadow: 0 20px var(--base-color);
  transition: var(--header-transition);
}

.c-sidebar__info_close {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  margin-top: auto;
  border-top: solid 1px var(--base-color);
}

.c-sidebar__info_close span {
  position: relative;
  padding-top: 35px;
  font-size: 1.2rem;
}

.c-sidebar__info_close span::before {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  width: 30px;
  height: 1px;
  margin: auto;
  transform: rotate(45deg);
  background-color: var(--base-color);
  content: "";
}

.c-sidebar__info_close span::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  width: 30px;
  height: 1px;
  margin: auto;
  transform: rotate(-45deg);
  background-color: var(--base-color);
  content: "";
}

/* column
------------------------------ */

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.column a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 540px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.column__price {
  background-image: url(/img/top/img-price.webp);
}

.column__faq {
  background-image: url(/img/top/img-faq.webp);
}

.column__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: var(--base-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  gap: 10px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: var(--base-transition);
}

.column__wrap .line,
.column__wrap .line__delay {
  stroke-width: 0.3;
  stroke-dasharray: 154;
  -webkit-transform: rotate(-90deg);
  position: absolute;
  top: -2px;
  left: -2px;
  width: 172px;
  height: 172px;
  transform: rotate(-90deg);
  will-change: animation;
}

.column__wrap .line__delay {
  stroke-opacity: 0;
}

.column__wrap span {
  -webkit-transition: var(--base-transition);
  color: #fff;
  text-align: center;
  transition: var(--base-transition);
}

.column__wrap .en {
  font-size: 3.6rem;
}

.column__wrap .ja {
  font-size: 1.2rem;
}

/* title
------------------------------ */

.c-title01 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -ms-flex-negative: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  margin-bottom: 60px;
  gap: 20px;
}

.c-title01 .en {
  font-size: 4.5rem;
}

.c-title01 .ja {
  font-size: 1.2rem;
}

.c-title01__center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-title01__center span {
  text-align: center;
}

.c-title02 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  margin-bottom: 60px;
  gap: 30px;
}

.c-title02 .en {
  font-size: 11rem;
}

.c-title02 .ja {
  font-weight: 500;
  font-size: 1.6rem;
}

.c-title02__right {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.c-title02__center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* bgTitle
------------------------------ */

.c-bgTitle {
  position: absolute;
  top: 0;
  color: var(--bg-color);
  font-size: 27rem;
  white-space: nowrap;
}

.c-bgTitle__center {
  -webkit-transform: translateX(-50%);
  left: 50%;
  transform: translateX(-50%);
}

.c-bgTitle__left {
  left: 0;
}

.c-bgTitle__right {
  right: 0;
}

.bg .c-bgTitle {
  color: #fff;
  opacity: 0.4;
}

/* underMv
------------------------------ */

.c-underMv {
  padding: 120px 0 0;
}

.c-underMv .c-bgTitle {
  top: 40px;
  left: 0;
}

.c-underMv .c-bgTitle .anim.is-visible {
  -webkit-animation: infinity-scroll-left 50s infinite linear;
  animation: infinity-scroll-left 50s infinite linear;
}

.c-breadcrumb {
  position: relative;
  overflow-x: auto;
}

.c-breadcrumb__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 10px 0;
  overflow-x: auto;
  gap: 10px;
}

.c-breadcrumb__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.c-breadcrumb__item:not(:first-of-type) {
  position: relative;
  padding-left: 20px;
}

.c-breadcrumb__item:not(:first-of-type)::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "・";
}

.c-breadcrumb__item:not(:last-of-type) {
  opacity: 0.3;
}

.c-breadcrumb__item:last-of-type,
.c-breadcrumb__link.disabled {
  pointer-events: none;
}

/* pager
------------------------------ */

.c-pager {
  margin-top: 120px;
}

.c-pager .pager_list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.c-pager .pager_item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  font-family: "Tenor Sans", sans-serif;
}

.c-pager .pager_item a,
.c-pager .pager_item div {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.c-pager .pager_item a.current,
.c-pager .pager_item div.current {
  background-color: var(--base-color);
  color: #fff;
}

.c-pager .pager_item.prev a,
.c-pager .pager_item.next a {
  opacity: 0.3;
}

.c-pager .pager_item.prev a::after,
.c-pager .pager_item.next a::after {
  -webkit-mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  width: 25px;
  height: 25px;
  background-color: var(--base-color);
  content: "";
  mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
}

.c-pager .pager_item.prev a::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

/* button
------------------------------ */

/* 黒背景ボタン */

.c-btn01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}

.c-btn01__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  padding: 0 30px;
  background-color: var(--base-color);
  color: #fff;
  font-size: 1.6rem;
}

.c-btn01__txt {
  display: block;
  height: 100%;
  overflow: hidden;
}

.c-btn01__txt .en {
  -webkit-transition: var(--header-transition);
  display: block;
  height: 100%;
  padding-top: 20px;
  font-size: 1.6rem;
  text-shadow: 0 60px #fff;
  transition: var(--header-transition);
}

.c-btn01__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 25px;
  margin: auto;
  overflow: hidden;
}

.c-btn01__line::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #fff;
  content: "";
}

/* 下線＋arrowボタン */

.c-btn02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.c-btn02__right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.c-btn02__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 140px;
  padding: 10px 0;
  border-bottom: solid 1px var(--base-color);
  font-size: 1.6rem;
}

.c-btn02__txt {
  display: block;
  height: 100%;
  overflow: hidden;
}

.c-btn02__txt .en {
  -webkit-transition: var(--header-transition);
  display: block;
  height: 100%;
  font-size: 1.6rem;
  text-shadow: 0 20px #000;
  transition: var(--header-transition);
}

.c-btn02__txt .ja {
  font-weight: 500;
  font-size: 1.4rem;
}

.c-btn02__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  overflow: hidden;
}

.c-btn02__line::before {
  -webkit-mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
}

/* arrowのみボタン */

.c-btn03 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: var(--base-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: solid 1px var(--base-color);
  border-radius: 50%;
  transition: var(--base-transition);
}

.c-btn03::before {
  -webkit-mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  z-index: 1;
  width: 28px;
  height: 28px;
  background-color: var(--base-color);
  content: "";
  mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
}

.c-btn03__color {
  border: solid 1px #fff;
}

.c-btn03__color::before {
  background-color: #fff;
}

.c-btn03__color::after {
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradation-color);
  content: "";
  opacity: 0;
  transition: var(--base-transition);
}

.c-btn03__fill {
  background-color: var(--base-color);
}

.c-btn03__fill::before {
  background-color: #fff;
}

/* sp-fixmenu
------------------------------ */

.sp-fixmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
}

.sp-fixmenu a,
.sp-fixmenu button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 50%;
  gap: 5px;
  font-weight: 500;
}

.sp-fixmenu a::before,
.sp-fixmenu button::before {
  content: "";
}

.sp-fixmenu a {
  background-color: var(--point-color);
  color: #fff;
}

.sp-fixmenu a::before {
  width: 22px;
  height: 22px;
  background: url(/img/common/icon-reserve.svg) no-repeat center center/contain;
}

.sp-fixmenu button {
  background-color: var(--bg-color);
}

.sp-fixmenu button::before {
  width: 24px;
  height: 24px;
  background: url(/img/common/icon-info.svg) no-repeat center center/contain;
}

.sp-fixmenu.recruit a::before {
  content: none;
}

.sp-fixmenu.recruit a + a {
  background-color: #E38B92;
  flex-direction: column;
  line-height: 1;
}

/* studio button
------------------------------ */

.c-studio + .c-studio {
  margin-top: 100px;
}

.c-studio__title {
  margin-bottom: 20px;
  font-size: 4.5rem;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.c-studio__item {
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
}

.c-studio__item + .c-studio__item {
  margin-top: -1px;
}

.c-studio__item a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 30px 20px;
  gap: 20px;
}

.c-studio__name {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30%;
  max-width: 240px;
  font-weight: 500;
  font-size: 1.8rem;
}

.c-studio__wrap {
  width: 100%;
  line-height: 2;
}

.c-studio .c-btn03 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* faq accordion
------------------------------ */

.c-faq__item {
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
}

.c-faq__item + .c-faq__item {
  margin-top: -1px;
}

.c-faq__button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: var(--base-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  padding: 30px 56px 30px 20px;
  gap: 20px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
  text-align: left;
  transition: var(--base-transition);
}

.c-faq__button::before,
.c-faq__button::after {
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  transition: var(--base-transition);
}

.c-faq__button::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.c-faq__button.active::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.c-faq__button .question {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-faq__answer {
  display: none;
}

.c-faq__answer_inn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 30px 20px;
  gap: 20px;
  background-color: rgba(var(--base-color-rgb), 0.03);
  font-size: 1.4rem;
}

.c-faq__answer .answer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: var(--point-color);
  font-weight: 500;
  font-size: 1.8rem;
}

.c-faq__answer_contents {
  line-height: 1.6;
}

.c-faq__answer_contents p + p {
  margin-top: 10px;
}

.c-faq__answer_contents ul,
.c-faq__answer_contents ol {
  margin: 10px 0 0;
  padding-left: 20px;
}

.c-faq__answer_contents ul {
  list-style: disc;
}

.c-faq__answer_contents ol {
  list-style: decimal;
}

.c-faq__answer_contents a {
  color: var(--point-color);
  text-decoration: underline;
}

.c-faq__answer_contents strong {
  font-weight: 700;
}

/* modal
------------------------------ */

.c-modal {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: var(--modal-index);
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  pointer-events: none;
}

.c-modal.active {
  pointer-events: all;
}

.c-modal.active .c-modal__overlay {
  opacity: 0.5;
}

.c-modal.active .c-modal__contents {
  opacity: 1;
}

.c-modal__overlay {
  -webkit-transition: var(--base-transition);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--base-color);
  opacity: 0;
  transition: var(--base-transition);
}

.c-modal__contents {
  -webkit-transition: var(--base-transition);
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding: 60px 0;
  opacity: 0;
  transition: var(--base-transition);
}

.c-modal__contents_inn {
  width: 100%;
}

.c-modal__contents_scroll {
  width: 1000px;
  padding: 0 10px;
}

.c-modal__close {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 80px;
  right: 30px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.c-modal__close_cross {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: var(--base-color);
}

.c-modal__close_cross::before,
.c-modal__close_cross::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  content: "";
}

.c-modal__close_cross::before {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.c-modal__close_cross::after {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.c-modal__close_txt {
  font-size: 1.2rem;
  text-transform: uppercase;
}

/* supplementary(補足ページ)
------------------------------ */

.c-supplementary {
  position: relative;
  padding: 100px 0 120px;
}

.c-supplementary__h2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 34px;
  font-weight: 500;
  font-size: 2.4rem;
}

.c-supplementary__h2::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #ccc;
  content: "";
}

.c-supplementary .txt + .c-supplementary__h2 {
  margin-top: 60px;
}

.c-supplementary__h3 {
  margin: 60px 0 20px;
  font-weight: 500;
  font-size: 2rem;
}

.c-supplementary__h4 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 60px 0 20px;
  padding-bottom: 5px;
  border-bottom: solid 1px var(--base-color);
  font-weight: 500;
  font-size: 1.6rem;
}

.c-supplementary__h5 {
  margin: 40px 0 0;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
}

.c-supplementary .c-supplementary__h2 + .c-supplementary__h3,
.c-supplementary .c-supplementary__h3 + .c-supplementary__h4 {
  margin-top: 0 !important;
}

.c-supplementary__name {
  margin-top: 60px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  text-align: right;
}

.c-supplementary__wrapper {
  margin-top: 60px;
}

.c-supplementary__wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 30px;
  background-color: var(--bg-color);
}

.c-supplementary__wrap + .c-supplementary__wrap {
  margin-top: 20px;
}

.c-supplementary__wrap_title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 230px;
  gap: 8px;
}

.c-supplementary__wrap_title .txt {
  font-weight: 500;
  font-size: 2rem;
}

.c-supplementary__wrap .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.c-supplementary__wrap_list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
  gap: 4px 20px;
  border-left: solid 1px var(--line-color);
  font-size: 1.4rem;
}

.c-supplementary__wrap_list li {
  position: relative;
  padding-left: 15px;
  line-height: 2;
}

.c-supplementary__wrap_list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.c-supplementary__table {
  width: 100%;
}

.c-supplementary__table table {
  width: 100%;
}

.c-supplementary__table th,
.c-supplementary__table td {
  padding: 25px 20px;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
  vertical-align: middle;
}

.c-supplementary__table th {
  width: 300px;
  font-weight: 500;
  text-align: left;
}

.c-supplementary__table td {
  line-height: 2;
}

.c-supplementary__table .wrap {
  display: block;
}

.c-supplementary__table .wrap + .wrap {
  margin-top: 15px;
}

.c-supplementary__table .note {
  font-size: 1.2rem;
}

.c-supplementary__table ul li {
  position: relative;
  padding-left: 1.6rem;
}

.c-supplementary__table ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.c-supplementary__table_note {
  display: block;
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.4rem;
}

.c-supplementary__table_note::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

.c-supplementary__table a {
  text-decoration: underline;
}

.c-supplementary__ul li {
  position: relative;
  padding-left: 20px;
  line-height: 2;
}

.c-supplementary__ul li + li {
  margin-top: 20px;
}

.c-supplementary__ul li::before {
  position: absolute;
  top: 14px;
  left: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--base-color);
  content: "";
  opacity: 0.15;
}

.c-supplementary__ol {
  padding-left: 25px;
  list-style: decimal;
}

.c-supplementary__ol li {
  line-height: 2;
}

.c-supplementary__ol li::marker {
  font-weight: 500;
  font-size: 2rem;
}

.c-supplementary__ol li + li {
  margin-top: 20px;
}

.c-supplementary__contact {
  margin-top: 60px;
  padding: 30px;
  background-color: var(--bg-color);
}

.c-supplementary__contact_title {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
}

.c-supplementary__hr {
  width: 100%;
  height: 1px;
  margin: 100px 0;
  background-color: var(--line-color);
}

.c-supplementary__caution {
  margin-top: 40px;
}

.c-supplementary__caution_item {
  position: relative;
  padding-left: 1.6rem;
  line-height: 2;
}

.c-supplementary__caution_item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

/* form
------------------------------ */

.c-form {
  padding: 100px 0 120px;
}

.c-form__txt {
  line-height: 2;
  text-align: center;
}

.c-form__point {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--bg-color);
}

.c-form__point li {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 2;
}

.c-form__point li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.c-form .form_area {
  margin-top: 60px;
}

.c-form table {
  width: 100%;
}

.c-form th,
.c-form td {
  padding: 14px 20px;
  border-top: solid 1px rgba(var(--base-color-rgb), 0.1);
  border-bottom: solid 1px rgba(var(--base-color-rgb), 0.1);
  vertical-align: middle;
}

.c-form th {
  width: 240px;
  font-weight: 500;
}

.c-form input[type=text],
.c-form input[type=email],
.c-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: solid 1px rgba(var(--base-color-rgb), 0.1);
  border-radius: 5px;
  font-size: 1.6rem;
}

.c-form input[type=text]::-webkit-input-placeholder,
.c-form input[type=email]::-webkit-input-placeholder,
.c-form textarea::-webkit-input-placeholder {
  color: var(--line-color);
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.c-form input[type=text]::-moz-placeholder,
.c-form input[type=email]::-moz-placeholder,
.c-form textarea::-moz-placeholder {
  color: var(--line-color);
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.c-form input[type=text]:-ms-input-placeholder,
.c-form input[type=email]:-ms-input-placeholder,
.c-form textarea:-ms-input-placeholder {
  color: var(--line-color);
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.c-form input[type=text]::-ms-input-placeholder,
.c-form input[type=email]::-ms-input-placeholder,
.c-form textarea::-ms-input-placeholder {
  color: var(--line-color);
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.c-form input[type=text]::placeholder,
.c-form input[type=email]::placeholder,
.c-form textarea::placeholder {
  color: var(--line-color);
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.c-form textarea {
  height: 120px;
}

.c-form__select {
  position: relative;
  width: 420px;
}

.c-form__select::after {
  -webkit-clip-path: polygon(50% 85%, 0 0, 100% 0);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  clip-path: polygon(50% 85%, 0 0, 100% 0);
  pointer-events: none;
}

.c-form__select select {
  width: 100%;
  padding: 16px 40px 16px 20px;
  border: solid 1px rgba(var(--base-color-rgb), 0.1);
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.6rem;
}

.c-form__address_top {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 10px 20px;
}

.c-form__address_num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-form__address_num input {
  width: 150px !important;
}

.c-form__address_prefectures {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.c-form__address_prefectures_title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-form .is-error {
  margin-top: 5px;
  color: #CC1533;
  font-size: 1.4rem;
}

.c-form .privacy {
  margin-top: 50px;
}

.c-form .privacyAgree {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-form .privacyAgree__wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-form .privacyAgree input {
  visibility: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
}

.c-form .privacyAgree input:checked + label::after {
  opacity: 1;
}

.c-form .privacyAgree label {
  position: relative;
  padding-left: 20px;
}

.c-form .privacyAgree label::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  border: solid 1px var(--base-color);
  border-radius: 2px;
  content: "";
}

.c-form .privacyAgree label::after {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 6px;
  left: 4px;
  width: 6px;
  height: 10px;
  transform: rotate(45deg);
  border-right: solid 2px var(--point-color);
  border-bottom: solid 2px var(--point-color);
  content: "";
  opacity: 0;
}

.c-form .privacyAgree a {
  display: inline-block;
  text-decoration: underline;
}

.c-form__button {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  gap: 10px 20px;
}

.c-form__button_item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: var(--base-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  padding: 10px;
  cursor: pointer;
  transition: var(--base-transition);
}

.c-form__button_item.submit {
  background-color: var(--base-color);
  color: #fff;
}

.c-form__button_item.cancel {
  background-color: var(--bg-color);
}

/* 404, フォーム最後とか
------------------------------ */

.c-cta__title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 2;
  text-align: center;
}

.c-cta__txt {
  line-height: 2;
  text-align: center;
}

.c-cta__button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  margin: 50px auto 0;
  background-color: var(--base-color);
  color: #fff;
}

.c-cta__button span {
  -webkit-transition: var(--base-transition);
  transition: var(--base-transition);
}

.header {
  -webkit-transition: var(--header-transition);
  z-index: var(--header-index);
  position: absolute;
  top: 0;
  width: 100%;
  transition: var(--header-transition);
  /* header nav内コンテンツ */
}

.header__fix {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-left: 40px;
}

.header__logo {
  width: 150px;
}

.header__nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.header__nav_list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-right: 25px;
  gap: 10px;
}

.header__nav_list a {
  padding: 10px;
}

.header .nav__inn {
  display: block;
  overflow: hidden;
}

.header .nav__inn_txt {
  -webkit-transition: var(--header-transition);
  display: block;
  font-weight: 500;
  font-size: 1.4rem;
  text-shadow: 0 20px var(--base-color);
  transition: var(--header-transition);
}

.header__btn_member {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--base-color);
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.header__btn_member span {
  -webkit-transition: var(--base-transition);
  transition: var(--base-transition);
}

.header__btn_member::before {
  -webkit-transition: var(--base-transition);
  width: 32px;
  height: 32px;
  background: url(/img/common/icon-member.svg) no-repeat center center/contain;
  content: "";
  transition: var(--base-transition);
}

.header__btn_open {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #fff;
}

.header__btn_inn {
  position: relative;
  width: 30px;
  height: 12px;
}

.header__btn_line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--base-color);
}

.header__btn_line:first-of-type {
  top: 0;
}

.header__btn_line:last-of-type {
  bottom: 0;
}

.header__contents {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-backdrop-filter: blur(10px);
  -webkit-transition: var(--header-transition);
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  z-index: var(--headerMenu-index);
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  gap: 40px 0;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  pointer-events: none;
  transition: var(--header-transition);
}

.header__contents.active {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  visibility: visible;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: all;
}

.header__contents_top {
  padding: 25px 0 0 40px;
}

.header__contents_middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 120px;
  gap: 90px;
}

.header__contents_bottom {
  padding: 40px 120px;
  border-top: solid 1px var(--base-color);
}

.header__contents_bottom_inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.header__contents .js-campaign-head-swiper {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  width: 314px;
  padding-bottom: 85px;
  overflow: hidden;
}

.header__contents .js-campaign-head-swiper .thumb {
  aspect-ratio: 1/1;
  width: 100%;
}

.header__contents .js-campaign-head-swiper .thumb img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.header__contents .js-campaign-head-swiper .tag {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  gap: 10px;
}

.header__contents .js-campaign-head-swiper .tag li {
  padding: 6px 15px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1.2rem;
}

.header__contents .swiper-bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__contents .swiper-button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__contents .swiper-button div {
  -webkit-transform: translate(0, 0);
  position: relative;
  top: inherit;
  right: inherit;
  left: inherit;
  width: 40px;
  height: 40px;
  margin: 0;
  transform: translate(0, 0);
  border-radius: 50%;
  background-color: var(--base-color);
}

.header__contents .swiper-button div::after {
  width: 20px;
  height: 20px;
  background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.header__contents .swiper-button-prev::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.header__contents .swiper-pagination {
  position: relative;
  bottom: inherit;
  left: inherit;
  width: auto;
  text-align: left;
}

.header__contents .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 8px !important;
}

.header__contents .swiper-pagination-bullet-active {
  position: relative;
  background-color: var(--base-color);
}

.header__contents .swiper-pagination-bullet-active::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170%;
  height: 170%;
  transform: translate(-50%, -50%);
  border: solid 1px var(--base-color);
  border-radius: 50%;
  content: "";
}

.header__contents_nav .wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.header__contents_nav .wrap a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: calc(50% - 5px);
  height: 60px;
  gap: 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
}

.header__contents_nav .wrap a.member {
  background-color: var(--base-color);
}

.header__contents_nav .wrap a.member::before {
  background-image: url(/img/common/icon-member.svg);
}

.header__contents_nav .wrap a.reserve {
  background-color: var(--point-color);
}

.header__contents_nav .wrap a.reserve::before {
  background-image: url(/img/common/icon-reserve.svg);
}

.header__contents_nav .wrap a.reserve::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: var(--gradation-color);
  content: "";
}

.header__contents_nav .wrap a::before {
  -webkit-transition: var(--base-transition);
  width: 20px;
  height: 20px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transition: var(--base-transition);
}

.header__contents_nav .list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.header__contents_nav .list li {
  width: calc(50% - 5px);
}

.header__contents_nav .list a {
  position: relative;
  padding: 18px 30px 18px 10px;
  border-bottom: solid 1px rgba(var(--base-color-rgb), 0.1);
}

.header__contents_nav .list a::after {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  transform: rotate(45deg);
  border-top: solid 1px var(--base-color);
  border-right: solid 1px var(--base-color);
  content: "";
}

.header__contents .sub_list {
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 40px;
}

.header__contents .sub_list a {
  font-size: 1.4rem;
}

.header__contents .sub_list a.blank {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  gap: 3px;
}

.header__contents .sub_list a.blank::after {
  width: 12px;
  height: 12px;
  background: url(/img/common/icon-blank.svg) no-repeat center center/contain;
  content: "";
}

.header__contents .sns_list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__contents .sns_list a {
  width: 25px;
}

.header__btn_close {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background-color: var(--base-color);
  color: #fff;
  font-size: 1.2rem;
}

.header__btn_close span {
  position: relative;
  padding-top: 20px;
}

.header__btn_close span::before,
.header__btn_close span::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 30px;
  height: 1px;
  margin: auto;
  background-color: #fff;
  content: "";
}

.header__btn_close span::before {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}

.header__btn_close span::after {
  -webkit-transform: rotate(-120deg);
  transform: rotate(-120deg);
}

.footer {
  padding: 100px 0;
  background-color: #171717;
}

.footer__wrapper {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer__logo {
  width: 160px;
  height: 30px;
  margin-bottom: 50px;
}

.footer__logo a {
  height: 100%;
}

.footer__logo .logo {
  fill: #fff;
  width: 100%;
  height: 100%;
}

.footer__sns {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__sns .icon {
  fill: #fff;
  width: 24px;
  height: 24px;
}

.footer__nav {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  gap: 10px 20px;
}

.footer__nav_list {
  width: calc(33.3333333333% - 10px);
  max-width: 260px;
}

.footer__nav_item {
  border-left: solid 1px rgba(255, 255, 255, 0.3);
}

.footer__nav_item + .footer__nav_item {
  margin-top: 10px;
}

.footer__nav_item a {
  position: relative;
  padding: 15px 40px 15px 20px;
  color: #fff;
  font-weight: 500;
}

.footer__nav_item a::after {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  transform: rotate(45deg);
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  content: "";
}

.footer__bottom {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 75px;
  gap: 10px 40px;
}

.footer__copy {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
}

.footer__bottom_list {
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 40px;
}

.footer__bottom_list a {
  color: #fff;
  font-size: 1.2rem;
}

.footer__bottom_list a[target=_blank] {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  gap: 3px;
}

.footer__bottom_list a[target=_blank]::after {
  -webkit-mask: url(/img/common/icon-blank.svg) no-repeat center center/contain;
  width: 12px;
  height: 12px;
  background-color: #fff;
  content: "";
  mask: url(/img/common/icon-blank.svg) no-repeat center center/contain;
}

.about .intro {
  padding-bottom: 240px;
}

.about .intro__wrapper {
  position: relative;
  padding: 0 40px;
}

.about .intro__wrapper::after {
  z-index: -2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 375px;
  margin: auto;
  background: url(/img/common/bg-noise.png);
  content: "";
}

.about .intro__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding-bottom: 186px;
  gap: 20px;
}

.about .intro__title .ja {
  font-style: normal;
  font-weight: 400;
  font-size: 4.5rem;
  line-height: 1.67;
  font-family: "Shippori Mincho", serif;
}

.about .intro__title .en {
  font-size: 1.6rem;
}

.about .intro__img {
  display: block;
  z-index: -1;
  position: absolute;
  top: -20px;
  right: 0;
  width: 100%;
}

.about .feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

.about .feature__item {
  width: calc(33.3333333333% - 16px);
  padding: 0 30px 30px;
  background-color: rgba(255, 255, 255, 0.6);
}

.about .feature__img {
  width: calc(100% + 60px);
  margin-left: -30px;
}

.about .feature__title {
  margin: 30px 0 20px;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
}

.about .ems__wrap {
  position: relative;
  padding: 60px 80px 0;
}

.about .ems__wrap + .ems__wrap {
  margin-top: 100px;
}

.about .ems__wrap + .ems__wrap .ems__wrap_head {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.about .ems__wrap + .ems__wrap .ems__wrap_bottom {
  display: block;
}

.about .ems__wrap + .ems__wrap .ems__wrap_bottom::before {
  content: none;
}

.about .ems__wrap + .ems__wrap .ems__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.about .ems__wrap + .ems__wrap .ems__box_img {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--point-color);
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
}

.about .ems__wrap_head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 45px;
}

.about .ems__wrap_bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding: 50px 80px;
  gap: 80px;
  background-color: var(--bg-color);
}

.about .ems__wrap_bottom::before {
  -webkit-mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 42px;
  margin: auto;
  background-color: #797979;
  content: "";
  mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
}

.about .ems__num {
  z-index: -1;
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 20rem;
  opacity: 0.05;
}

.about .ems__title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 2;
}

.about .ems__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50%;
  max-width: 470px;
}

.about .ems__box {
  position: relative;
}

.about .ems__box_txt {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
}

.about .ems__reserve {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  height: 60px;
  margin: 40px auto 0;
  background-color: var(--point-color);
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
}

.about .ems__reserve::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradation-color);
  content: "";
}

.faq .contents .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}

.faq .contents__main {
  width: 100%;
}

.faq__category {
  -ms-flex-negative: 0;
  position: sticky;
  top: 60px;
  flex-shrink: 0;
  width: 240px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.faq__category_list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq__category_list li {
  position: relative;
  padding-left: 16px;
}

.faq__category_list a {
  font-weight: 500;
}

.faq__wrapper + .faq__wrapper {
  margin-top: 120px;
  padding-top: 120px;
  border-top: solid 1px var(--base-color);
}

.faq__wrapper .c-title01 .en {
  text-transform: capitalize;
}

.instructor__archive .contents {
  padding: 100px 0 120px;
}

.instructor__archive .contents .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}

.instructor__archive .contents__category {
  -ms-flex-negative: 0;
  position: sticky;
  top: 60px;
  flex-shrink: 0;
  width: 240px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.instructor__archive .contents__category_search {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin-top: 15px;
  background-color: var(--base-color);
  color: #fff;
  font-size: 1.4rem;
}

.instructor__archive .contents__category_search span {
  -webkit-transition: var(--base-transition);
  transition: var(--base-transition);
}

.instructor__archive .contents__category_search.reset {
  background-color: #DEDEDE;
  color: var(--base-color);
}

.instructor__archive .contents__category_title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--base-color);
  font-weight: 500;
  font-size: 1.4rem;
}

.instructor__archive .contents__category_item + .contents__category_title {
  margin-top: 40px;
}

.instructor__archive .contents__category_item label {
  display: block;
  position: relative;
  cursor: pointer;
}

.instructor__archive .contents__category_item label + label {
  margin-top: 10px;
}

.instructor__archive .contents__category_item input {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}

.instructor__archive .contents__category_item input:checked + span::after {
  opacity: 1;
}

.instructor__archive .contents__category_item span {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  font-weight: 500;
  font-size: 1.4rem;
}

.instructor__archive .contents__category_item span::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  border: solid 1px var(--line-color);
  content: "";
}

.instructor__archive .contents__category_item span::after {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  width: 6px;
  height: 10px;
  margin: auto;
  transform: rotate(45deg);
  border-right: solid 2px var(--point-color);
  border-bottom: solid 2px var(--point-color);
  content: "";
  opacity: 0;
}

.instructor__archive .contents .c-accordion {
  border-top: solid 1px var(--base-color);
  border-bottom: solid 1px var(--base-color);
}

.instructor__archive .contents .c-accordion + .c-accordion {
  margin-top: 15px;
}

.instructor__archive .contents .c-accordion__button {
  position: relative;
  width: 100%;
  padding: 20px 50px 20px 20px;
  background-color: var(--bg-color);
  text-align: left;
}

.instructor__archive .contents .c-accordion__button::before,
.instructor__archive .contents .c-accordion__button::after {
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 16px;
  height: 1px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  transition: var(--base-transition);
}

.instructor__archive .contents .c-accordion__button::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.instructor__archive .contents .c-accordion__button.active::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.instructor__archive .contents .c-accordion__contents {
  display: none;
  padding: 20px;
}

.instructor__archive .contents__main {
  width: 100%;
}

.instructor__archive .contents__main_list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 80px 26px;
}

.instructor__archive .contents__main_item {
  width: calc(33.3333333333% - 18px);
}

.instructor__archive .contents__main_img {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
}

.instructor__archive .contents__main_img img {
  -o-object-fit: cover;
  -webkit-transition: var(--base-transition);
  height: 100%;
  object-fit: cover;
  transition: var(--base-transition);
}

.instructor__archive .contents__main_img .c-btn03 {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.instructor__archive .contents__main_name {
  -webkit-transition: var(--base-transition);
  margin-top: 20px;
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: var(--base-transition);
}

.instructor__archive .contents__main_pride {
  margin-top: 15px;
}

.instructor__archive .contents__main_pride .title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.2rem;
}

.instructor__archive .contents__main_pride .list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.instructor__archive .contents__main_pride .item {
  padding: 6px 15px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1rem;
}

.instructor__detail article {
  padding: 100px 0 120px;
}

.instructor__detail article .main {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  gap: 68px;
}

.instructor__detail article .img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: 50%;
  max-width: 400px;
}

.instructor__detail article .img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.instructor__detail article .wrap {
  width: 100%;
}

.instructor__detail article .name {
  margin-bottom: 40px;
  font-size: 4rem;
}

.instructor__detail article .name .sub {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
}

.instructor__detail article .studio,
.instructor__detail article .shift,
.instructor__detail article .pride {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  gap: 10px;
}

.instructor__detail article .studio__title,
.instructor__detail article .shift__title,
.instructor__detail article .pride__title {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  padding-left: 12px;
  font-weight: 500;
  font-size: 1.4rem;
}

.instructor__detail article .studio__title::before,
.instructor__detail article .shift__title::before,
.instructor__detail article .pride__title::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--point-color);
  content: "";
}

.instructor__detail article .studio__list,
.instructor__detail article .shift__list,
.instructor__detail article .pride__list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}

.instructor__detail article .studio li,
.instructor__detail article .shift li,
.instructor__detail article .pride li {
  font-weight: 500;
  font-size: 1.4rem;
}

.instructor__detail article .studio,
.instructor__detail article .shift {
  gap: 5px;
}

.instructor__detail article .studio__title,
.instructor__detail article .shift__title {
  padding-right: 15px;
}

.instructor__detail article .studio__title::after,
.instructor__detail article .shift__title::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "/";
}

.instructor__detail article .pride {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.instructor__detail article .pride__list {
  width: 100%;
  gap: 10px;
}

.instructor__detail article .pride li {
  padding: 8px 15px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1.2rem;
}

.instructor__detail article .sns {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 14px;
}

.instructor__detail article .sns__item {
  width: 20px;
  height: 20px;
}

.instructor__detail article .sns__item img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
}

.instructor__detail article .info {
  width: 100%;
  margin-top: 60px;
}

.instructor__detail article .info th,
.instructor__detail article .info td {
  padding: 25px 20px;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
  font-size: 1.4rem;
  text-align: left;
  vertical-align: middle;
}

.instructor__detail article .info th {
  width: 15%;
  min-width: 150px;
  font-weight: 500;
}

.instructor__detail article .info td {
  width: 70%;
  line-height: 2;
}

.instructor__detail article .info td span {
  display: block;
}

.instructor__detail article .banner {
  margin: 60px auto 0;
  max-width: 800px;
}

.instructor__detail article .banner__txt {
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  width: max-content;
  margin: 0 auto 30px;
  padding: 0 25px;
  position: relative;
}

.instructor__detail article .banner__txt::before,
.instructor__detail article .banner__txt::after {
  content: '';
  position: absolute;
  bottom: 0;
  background-color: var(--base-color);
  width: 1px;
  height: 30px;
}

.instructor__detail article .banner__txt::before {
  transform: rotate(-40deg);
  left: 0;
}

.instructor__detail article .banner__txt::after {
  transform: rotate(40deg);
  right: 0;
}

.instructor__detail article .banner__wrap {
  display: flex;
  align-items: stretch;
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 0;
}

.instructor__detail article .banner__img {
  flex-shrink: 0;
  width: 460px;
}

.instructor__detail article .banner__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  width: 100%;
}

.instructor__detail article .banner__btn .btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  gap: 6px 10px;
  color: #fff;
  background-color: var(--base-color);
}

.instructor__detail article .banner__btn .btn.pink {
  background-color: var(--point-color);
}

.instructor__detail article .banner__btn .btn::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  transform: rotate(-45deg);
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  content: "";
}

.instructor__detail article .banner__btn .btn.pink::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradation-color);
  content: "";
}

.instructor__detail .instructor__img {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
}

.instructor__detail .instructor__img img {
  -o-object-fit: cover;
  -webkit-transition: var(--base-transition);
  height: 100%;
  object-fit: cover;
  transition: var(--base-transition);
}

.instructor__detail .instructor__img .c-btn03 {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.instructor__detail .instructor__name {
  -webkit-transition: var(--base-transition);
  margin-top: 30px;
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: var(--base-transition);
}

.instructor__detail .instructor__pride {
  margin-top: 20px;
}

.instructor__detail .instructor__pride_title {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 1.2rem;
}

.instructor__detail .instructor__pride_list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.instructor__detail .instructor__pride_item {
  padding: 6px 15px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1rem;
}

.instructor__detail .js-instructor-swiper-main {
  position: relative;
  padding-bottom: 30px;
}

.instructor__detail .js-instructor-swiper-main .swiper-slide {
  aspect-ratio: 1/1;
}

.instructor__detail .js-instructor-swiper-main .swiper-slide img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.instructor__detail .js-instructor-swiper-main .swiper-button {
  position: absolute;
  bottom: -60px;
  left: 0;
}

.instructor__detail .js-instructor-swiper-thumb {
  position: relative;
  width: calc(100% - 162px);
  margin-left: auto;
}

.instructor__detail .js-instructor-swiper-thumb .swiper-slide {
  aspect-ratio: 1/1;
  cursor: pointer;
  opacity: 0.4;
}

.instructor__detail .js-instructor-swiper-thumb .swiper-slide img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.instructor__detail .js-instructor-swiper-thumb .swiper-slide-thumb-active {
  opacity: 1;
}

.instructor__detail .js-instructor-campaign-swiper {
  position: relative;
  padding: 0 0 50px 25px;
}

.instructor__detail .js-instructor-campaign-swiper .swiper-slide {
  width: 314px;
  opacity: 0.4;
}

.instructor__detail .js-instructor-campaign-swiper .swiper-slide-active {
  opacity: 1;
}

.instructor__detail .js-instructor-swiper {
  position: relative;
  overflow: hidden;
}

.instructor__detail .js-instructor-swiper .swiper-bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 45px;
  gap: 0 115px;
}

.instructor__detail .swiper-button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 12px;
}

.instructor__detail .swiper-button-prev,
.instructor__detail .swiper-button-next {
  -webkit-transform: translate(0, 0);
  position: relative;
  top: inherit;
  right: inherit;
  left: inherit;
  width: 50px;
  height: 50px;
  margin: 0;
  transform: translate(0, 0);
  border-radius: 50%;
  background-color: var(--base-color);
}

.instructor__detail .swiper-button-prev::after,
.instructor__detail .swiper-button-next::after {
  width: 24px;
  height: 24px;
  background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.instructor__detail .swiper-button-prev {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.instructor__detail .swiper-pagination {
  position: relative;
  bottom: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
}

.instructor__detail .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 8px !important;
  background-color: var(--base-color);
  opacity: 0.2;
}

.instructor__detail .swiper-pagination-bullet-active {
  position: relative;
  opacity: 1;
}

.instructor__detail .swiper-pagination-bullet-active::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  border: solid 1px var(--base-color);
  border-radius: 50%;
  content: "";
}

.instructor__detail .swiper-scrollbar {
  position: relative;
  bottom: inherit;
  left: inherit;
  width: 100%;
  height: 3px;
  background-color: rgba(var(--base-color-rgb), 0.2);
}

.instructor__detail .swiper-scrollbar-drag {
  background-color: var(--base-color);
}

.news__archive .contents {
  padding: 75px 0 120px;
}

.news__archive .contents__category {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news__archive .contents__category a {
  padding: 6px 16px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1.4rem;
}

.news__archive .contents__category a.current {
  background-color: var(--base-color);
  color: #fff;
  pointer-events: none;
}

.news__archive .contents__articles {
  margin-top: 60px;
}

.news__archive .contents__article {
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
}

.news__archive .contents__article + .contents__article {
  margin-top: -1px;
}

.news__archive .contents__article a {
  padding: 25px 0;
}

.news__archive .contents__article_top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.3;
}

.news__archive .contents__article_top .data {
  position: relative;
  padding-left: 10px;
}

.news__archive .contents__article_top .data::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: var(--base-color);
  content: "";
}

.news__archive .contents__article_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news__detail article {
  padding: 100px 0 120px;
}

.news__detail .article__top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.3;
}

.news__detail .article__top .date {
  position: relative;
  padding-left: 10px;
}

.news__detail .article__top .date::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  margin: auto;
  background-color: var(--base-color);
  content: "";
}

.news__detail .article__title {
  margin-bottom: 30px;
  padding-bottom: 5px;
  border-bottom: solid 1px var(--base-color);
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.7;
}

.news__detail .article__btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  gap: 45px;
}

.news__detail .article__btn_item {
  height: 60px;
}

.news__detail .article__btn_item.list {
  width: 280px;
  border-right: solid 1px rgba(var(--base-color-rgb), 0.1);
  border-left: solid 1px rgba(var(--base-color-rgb), 0.1);
}

.news__detail .article__btn_item a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 20px;
}

.news__detail .article__btn_item.prev .c-btn03 {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.news__detail .article__btn .line {
  width: 1px;
  height: 40px;
  background-color: rgba(var(--base-color-rgb), 0.1);
}

.price .intro__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}

.price .intro__txt {
  width: 100%;
}

.price .intro__txt .txt {
  letter-spacing: 0;
}

.price .intro__title {
  margin-bottom: 40px;
  font-style: normal;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.78;
  font-family: "Shippori Mincho", serif;
}

.price .intro .plan__table {
  margin-top: 60px;
}

.price .intro__img {
  width: calc(50% - 100px);
}

.price .intro__button {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  gap: 20px;
}

.price .intro__button_txt {
  text-align: center;
}

.price .intro__button_txt span {
  position: relative;
  padding: 0 25px;
  font-size: 1.4rem;
}

.price .intro__button_txt span::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "＼";
}

.price .intro__button_txt span::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "／";
}

.price .intro__button_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.price .intro__button a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  gap: 8px;
  background-color: var(--base-color);
  color: #fff;
  font-weight: 500;
}

.price .intro__button a.gradation {
  background-color: var(--point-color);
}

.price .intro__button a:not(.gradation)::before {
  width: 8px;
  height: 8px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  transform: rotate(45deg);
  content: "";
}

.price .intro__button a.gradation::before {
  width: 22px;
  height: 22px;
  background: url(/img/common/icon-reserve.svg) no-repeat center center/contain;
  content: "";
}

.price .intro__button a.gradation::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradation-color);
  content: "";
}

.price .plan__wrap + .plan__wrap {
  margin-top: 100px;
}

.price .plan__title {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 20px;
  gap: 10px 20px;
}

.price .plan__title .en {
  font-size: 3.2rem;
}

.price .plan__title .ja {
  font-weight: 500;
  font-size: 1.2rem;
}

.price .plan__table {
  width: 100%;
}

.price .plan__table th,
.price .plan__table td {
  padding: 25px 20px;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
  vertical-align: middle;
}

.price .plan__table tr:has(.plan__contents) th {
  width: 250px;
}

.price .plan__table th {
  font-weight: 500;
  text-align: left;
}

.price .plan__table td:not(.plan__contents) {
  font-weight: 500;
  text-align: right;
}

.price .plan__table small {
  display: block;
  font-weight: 500;
}

.price .plan__price {
  width: 240px;
}

.price .plan__price_inn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0;
}

.price .plan__price_head {
  font-size: 1.6rem;
}

.price .plan__price_head.through {
  font-size: 1.4rem;
  text-decoration: line-through;
}

.price .plan__price_bottom .num {
  color: var(--point-color);
  font-weight: 700;
  font-size: 2.4rem;
}

.price .plan__discount {
  width: 170px;
  text-align: center !important;
}

.price .plan__discount_inn {
  display: inline-block;
  padding: 2px 10px 4px;
  border-radius: 3px;
  background: var(--gradation-color);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}

.price .plan__discount .num {
  font-size: 2rem;
}

.price .plan__contents {
  font-size: 1.4rem;
}

.price .plan__bottom {
  font-size: 1.2rem;
  margin-top: 20px;
}

.price .plan__bottom_list li {
  line-height: 1.8;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.price .plan__bottom_list li::before {
  content: '・';
  font-size: 1.2rem;
}

.program__archive .contents {
  padding: 75px 0 120px;
}

.program__archive .contents__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px 60px;
}

.program__archive .contents__category_title {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-left: 30px;
  font-size: 2rem;
}

.program__archive .contents__category_title::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url(/img/common/icon-grid.svg) no-repeat center center/contain;
  content: "";
}

.program__archive .contents__category_list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.program__archive .contents__category_list a {
  padding: 6px 16px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.program__archive .contents__category_list a.current {
  background-color: var(--base-color);
  color: #fff;
  pointer-events: none;
}

.program__archive .contents__articles {
  margin-top: 60px;
}

.program__archive .contents__article {
  border-top: solid 1px var(--base-color);
  border-bottom: solid 1px var(--base-color);
}

.program__archive .contents__article + .contents__article {
  margin-top: -1px;
}

.program__archive .contents__article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 0;
  gap: 20px 40px;
}

.program__archive .contents__article_thumb {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 384/256;
  width: 40%;
  height: 100%;
}

.program__archive .contents__article_thumb img {
  -o-object-fit: cover;
  -webkit-transition: var(--base-transition);
  height: 100%;
  object-fit: cover;
  transition: var(--base-transition);
}

.program__archive .contents__article_thumb .c-btn03 {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.program__archive .contents__article_top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}

.program__archive .contents__article_title {
  -webkit-transition: var(--base-transition);
  position: relative;
  font-weight: 700;
  font-size: 2.8rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  transition: var(--base-transition);
}

.program__archive .contents__article_strength {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  font-size: 1.8rem;
}

.program__archive .contents__article_strength .hidden {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}

.program__archive .contents__article_strength::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: auto;
  background: url(/img/common/icon-strength.svg) no-repeat center center/contain;
  content: "";
}

.program__archive .contents__article_txt {
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 2;
}

.program__archive .contents__article_category {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program__archive .contents__article_category li {
  padding: 6px 15px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1.2rem;
}

.program__detail article {
  padding: 100px 0 120px;
}

.program__detail .program__name {
  margin-bottom: 55px;
  border-bottom: solid 1px var(--base-color);
  font-weight: 500;
  font-size: 4.5rem;
}

.program__detail .program__name_sub {
  font-size: 2.2rem;
  display: block;
}

.program__detail .program__name .ruby {
  font-size: 2rem;
}

.program__detail .program__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}

.program__detail .program__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 522/350;
  width: 50%;
  height: 100%;
}

.program__detail .program__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program__detail .program__info {
  width: 100%;
}

.program__detail .program__strength,
.program__detail .program__difficulty,
.program__detail .program__exhilaration {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 30px;
}

.program__detail .program__strength .title,
.program__detail .program__difficulty .title,
.program__detail .program__exhilaration .title {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  padding-left: 34px;
  font-weight: 500;
}

.program__detail .program__strength .title::before,
.program__detail .program__difficulty .title::before,
.program__detail .program__exhilaration .title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.program__detail .program__strength .bar,
.program__detail .program__difficulty .bar,
.program__detail .program__exhilaration .bar {
  position: relative;
  width: 100%;
  max-width: 255px;
  height: 2px;
  background-color: rgba(var(--base-color-rgb), 0.2);
}

.program__detail .program__strength .bar__line,
.program__detail .program__difficulty .bar__line,
.program__detail .program__exhilaration .bar__line {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--bar-percent);
  height: 2px;
  background-color: var(--base-color);
}

.program__detail .program__strength .bar .hidden,
.program__detail .program__difficulty .bar .hidden,
.program__detail .program__exhilaration .bar .hidden {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}

.program__detail .program__strength .title::before {
  background-image: url(/img/common/icon-strength.svg);
}

.program__detail .program__difficulty .title::before {
  background-image: url(/img/common/icon-difficulty.svg);
}

.program__detail .program__exhilaration {
  margin-bottom: 35px;
}

.program__detail .program__exhilaration .title::before {
  background-image: url(/img/common/icon-exhilaration.svg);
}

.program__detail .program__all {
  position: relative;
  padding-left: 15px;
  font-size: 1.2rem;
}

.program__detail .program__all::before,
.program__detail .program__all::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 1px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
}

.program__detail .program__all::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.program__detail .program__effect {
  margin-top: 30px;
  padding-top: 30px;
  border-top: solid 1px var(--line-color);
}

.program__detail .program__effect .title {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 1.6rem;
}

.program__detail .program__effect_list {
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.program__detail .program__effect_list li {
  padding: 6px 15px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1.2rem;
}

.program__detail .program__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  gap: 50px;
}

.program__detail .program__column_item {
  width: calc(50% - 25px);
  padding: 30px;
  background-color: var(--bg-color);
}

.program__detail .program__column_title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 34px;
  font-weight: 500;
  font-size: 2rem;
}

.program__detail .program__column_title::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 26px;
  height: 26px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.program__detail .program__column_title.feature::before {
  background-image: url(/img/common/icon-check.svg);
}

.program__detail .program__column_title.recommend::before {
  background-image: url(/img/common/icon-human.svg);
}

.program__detail .program__column_wrap {
  line-height: 2;
}

.program__detail .program__column .list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 2;
}

.program__detail .program__column .list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.program__detail .program__block {
  margin-top: 120px;
  padding-top: 120px;
  border-top: solid 1px var(--base-color);
}

.program__detail .program__point_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px 50px;
}

.program__detail .program__point_item + .program__point_item {
  margin-top: 50px;
}

.program__detail .program__point_img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 360/240;
  width: 40%;
  max-width: 360px;
}

.program__detail .program__point_img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.program__detail .program__point_title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 10px;
}

.program__detail .program__point_title .num {
  font-size: 1.2rem;
  opacity: 0.3;
}

.program__detail .program__point_title .txt {
  font-weight: 500;
  font-size: 2rem;
}

.program__detail .program__flow_lesson {
  /* display: grid; */
  display: block;
  grid-template-columns: 160px max-content;
  margin-bottom: 30px;
}

.program__detail .program__flow_lesson .title {
  background-color: var(--base-color);
  color: #fff;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  place-content: center;
}


.program__detail .program__flow_lesson .txt {
  border: solid 1px var(--base-color);
  /* font-size: 2.2rem; */
  /* font-weight: 500; */
  padding: 4px 30px;
}

.program__detail .program__flow_item {
  display: grid;
  grid-template-columns: 54px auto;
  align-items: center;
  padding: 30px;
  gap: 10px 30px;
  background-color: var(--bg-color);
}

.program__detail .program__flow_item + .program__flow_item {
  margin-top: 30px;
}

.program__detail .program__flow .num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-negative: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--base-color);
  color: #fff;
  font-size: 1.8rem;
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.program__detail .program__flow_item .title {
  width: 100%;
  /* max-width: 240px; */
  font-weight: 500;
  font-size: 1.6rem;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.program__detail .program__flow_item:not(:has(.txt)) .title {
  grid-row: 1 / 3;
}

.program__detail .program__flow_item .txt {
  width: 100%;
  /* max-width: 590px; */
  font-size: 1.4rem;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.program__detail .program__flow .js-flow-swiper {
  position: relative;
}

.program__detail .program__flow .swiper-bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.program__detail .program__flow .swiper-button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}

.program__detail .program__flow .swiper-button-prev,
.program__detail .program__flow .swiper-button-next {
  -webkit-transform: translate(0, 0);
  position: relative;
  top: inherit;
  right: inherit;
  left: inherit;
  width: 40px;
  height: 40px;
  margin: 0;
  transform: translate(0, 0);
  border-radius: 50%;
  background-color: var(--base-color);
}

.program__detail .program__flow .swiper-button-prev::after,
.program__detail .program__flow .swiper-button-next::after {
  width: 20px;
  height: 20px;
  background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.program__detail .program__flow .swiper-button-prev {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.program__detail .program__flow .swiper-pagination {
  position: relative;
  bottom: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
}

.program__detail .program__flow .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 8px !important;
  background-color: var(--base-color);
  opacity: 0.2;
}

.program__detail .program__flow .swiper-pagination-bullet-active {
  position: relative;
  opacity: 1;
}

.program__detail .program__flow .swiper-pagination-bullet-active::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  border: solid 1px var(--base-color);
  border-radius: 50%;
  content: "";
}

.program__detail .program__studio .c-studio__title {
  font-size: 3.2rem;
}

.program__detail .program__other .js-other-swiper {
  position: relative;
  overflow: hidden;
}

.program__detail .program__other .swiper-slide {
  width: 280px;
}

.program__detail .program__other_img {
  position: relative;
  aspect-ratio: 280/214;
  width: 100%;
}

.program__detail .program__other_img img {
  -o-object-fit: cover;
  -webkit-transition: var(--base-transition);
  height: 100%;
  object-fit: cover;
  transition: var(--base-transition);
}

.program__detail .program__other_strength {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 10px;
  bottom: 10px;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
}

.program__detail .program__other_strength::before {
  -webkit-mask: url(/img/common/icon-strength.svg) no-repeat center center/contain;
  width: 22px;
  height: 22px;
  background-color: #fff;
  content: "";
  mask: url(/img/common/icon-strength.svg) no-repeat center center/contain;
}

.program__detail .program__other_title {
  -webkit-transition: var(--base-transition);
  margin: 15px 0 10px;
  font-weight: 700;
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  transition: var(--base-transition);
}

.program__detail .program__other_txt {
  line-height: 2;
}

.program__detail .program__other_category {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 5px;
}

.program__detail .program__other_category li {
  padding: 6px 15px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1rem;
}

.program__detail .program__other .swiper-bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 45px;
  gap: 0 115px;
}

.program__detail .program__other .swiper-button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 12px;
}

.program__detail .program__other .swiper-button-prev,
.program__detail .program__other .swiper-button-next {
  -webkit-transform: translate(0, 0);
  position: relative;
  top: inherit;
  right: inherit;
  left: inherit;
  width: 50px;
  height: 50px;
  margin: 0;
  transform: translate(0, 0);
  border-radius: 50%;
  background-color: var(--base-color);
}

.program__detail .program__other .swiper-button-prev::after,
.program__detail .program__other .swiper-button-next::after {
  width: 24px;
  height: 24px;
  background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.program__detail .program__other .swiper-button-prev {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.program__detail .program__other .swiper-scrollbar {
  position: relative;
  bottom: inherit;
  left: inherit;
  width: 100%;
  height: 3px;
  background-color: rgba(var(--base-color-rgb), 0.2);
}

.program__detail .program__other .swiper-scrollbar-drag {
  background-color: var(--base-color);
}

.recruit .message__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}

.recruit .message__title {
  margin-bottom: 35px;
  font-style: normal;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.8;
  font-family: "Shippori Mincho", serif;
}

.recruit .message__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(50% - 90px);
}

.recruit .point__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  margin-top: 140px;
  gap: 60px;
}

.recruit .point__wrapper:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.recruit .point__wrapper:nth-child(odd) .point__num {
  right: -80px;
  left: inherit;
}

.recruit .point__wrap {
  z-index: 1;
  position: relative;
}

.recruit .point__num {
  z-index: -1;
  position: absolute;
  top: -120px;
  left: -80px;
  color: #fff;
  font-size: 20rem;
  opacity: 0.4;
}

.recruit .point__title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 2;
}

.recruit .point__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(50% - 30px);
  max-width: 470px;
}

.recruit .point__about {
  margin-top: 80px;
  padding-top: 80px;
  border-top: solid 1px var(--line-color);
}

.recruit .point__about_title {
  margin-bottom: 60px;
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
}

.recruit .point__about_wrap {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.recruit .point__about_video {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 16/9;
  width: 50%;
  height: auto;
}

.recruit .point__about_video iframe {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit .personality .c-title01 + .txt {
  text-align: center;
}

.recruit .personality__request {
  margin-top: 60px;
  padding: 40px 60px;
  background-color: var(--bg-color);
}

.recruit .personality__request_title {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: solid 1px var(--line-color);
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
}

.recruit .personality__request_list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 0 30px;
  gap: 30px 20px;
}

.recruit .personality__request_item {
  position: relative;
  width: calc(50% - 10px);
  padding-left: 22px;
  font-size: 1.4rem;
}

.recruit .personality__request_item::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  border: solid 1px var(--line-color);
  background-color: #fff;
  content: "";
}

.recruit .personality__request_item::after {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 5px;
  left: 4px;
  width: 6px;
  height: 10px;
  transform: rotate(45deg);
  border-right: solid 2px var(--point-color);
  border-bottom: solid 2px var(--point-color);
  content: "";
}

.recruit .requirements__button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  margin: 50px auto 0;
  background-color: var(--point-color);
  color: #fff;
}

.recruit .requirements__button::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradation-color);
  content: "";
}

.studio__archive .contents {
  padding: 100px 0 120px;
}

.studio__archive .contents .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}

.studio__archive .contents__category {
  -ms-flex-negative: 0;
  position: sticky;
  top: 60px;
  flex-shrink: 0;
  width: 240px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.studio__archive .contents .c-accordion {
  border-top: solid 1px var(--base-color);
  border-bottom: solid 1px var(--base-color);
}

.studio__archive .contents .c-accordion + .c-accordion {
  margin-top: 15px;
}

.studio__archive .contents .c-accordion__button {
  position: relative;
  width: 100%;
  padding: 20px 50px 20px 20px;
  background-color: var(--bg-color);
  text-align: left;
}

.studio__archive .contents .c-accordion__button::before,
.studio__archive .contents .c-accordion__button::after {
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 16px;
  height: 1px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  transition: var(--base-transition);
}

.studio__archive .contents .c-accordion__button::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.studio__archive .contents .c-accordion__button.active::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.studio__archive .contents .c-accordion__contents {
  display: none;
  padding: 20px;
}

.studio__archive .contents .c-accordion__contents li + li {
  margin-top: 10px;
}

.studio__archive .contents .c-accordion__contents a {
  font-weight: 500;
  font-size: 1.4rem;
}

.studio__archive .contents__main {
  width: 100%;
}

.studio__archive .contents__main .c-studio + .c-studio {
  margin-top: 120px;
}

.studio__archive .contents__title_sub {
  z-index: 1;
  position: relative;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--base-color);
  font-weight: 500;
  font-size: 2rem;
}

.studio__archive .contents__wrap + .contents__wrap {
  margin-top: 120px;
}

.studio__archive .contents__item {
  margin-top: -1px;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
}

.studio__archive .contents__item a {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  padding: 30px 40px;
  gap: 40px;
}

.studio__archive .contents__item_thumb {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: 200px;
}

.studio__archive .contents__item_thumb img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.studio__archive .contents__item_txt {
  width: 100%;
}

.studio__archive .contents__item_name {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 2rem;
}

.studio__archive .contents__item_time,
.studio__archive .contents__item_address,
.studio__archive .contents__item_access {
  position: relative;
  padding-left: 24px;
  font-size: 1.4rem;
}

.studio__archive .contents__item_time::before,
.studio__archive .contents__item_address::before,
.studio__archive .contents__item_access::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.studio__archive .contents__item_time::before {
  background-image: url(/img/common/icon-time.svg);
}

.studio__archive .contents__item_address::before {
  background-image: url(/img/common/icon-map.svg);
}

.studio__archive .contents__item_access::before {
  background-image: url(/img/common/icon-train.svg);
}

.studio__archive .contents__item_address,
.studio__archive .contents__item_access {
  margin-top: 20px;
}

.studio__archive .contents .c-btn02__link {
  pointer-events: none;
}

.studio__detail article {
  padding: 100px 0 120px;
}

.studio__detail .studio__top {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: end;
  -ms-flex-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 55px;
  padding-bottom: 10px;
  gap: 0 20px;
  border-bottom: solid 1px var(--base-color);
}

.studio__detail .studio__top_tag {
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.studio__detail .studio__top_tag li {
  padding: 5px 10px;
  background-color: rgba(var(--point-color-rgb), 0.2);
  color: var(--point-color);
  font-weight: 500;
  font-size: 1.2rem;
}

.studio__detail .studio__name {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 4.5rem;
}

.studio__detail .studio__name_sub {
  display: block;
  font-size: 2.2rem;
}

.studio__detail .studio__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.studio__detail .studio__img {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  width: 50%;
  max-width: 520px;
  overflow: hidden;
}

.studio__detail .studio__tag {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
}

.studio__detail .studio__tag li {
  padding: 10px 15px;
  background-color: #f3f3f3;
  color: var(--point-color);
  font-weight: 500;
  font-size: 1.4rem;
}

.studio__detail .studio__table {
  margin-top: 30px;
}

.studio__detail .studio__table th,
.studio__detail .studio__table td {
  padding: 25px 20px;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
  font-size: 1.4rem;
  vertical-align: middle;
}

.studio__detail .studio__table th {
  width: 25%;
  min-width: 100px;
  font-weight: 500;
  text-align: left;
}

.studio__detail .studio__table td {
  width: 75%;
  line-height: 2;
}

.studio__detail .studio__button {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.studio__detail .studio__button a,
.studio__detail .studio__button button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: calc(50% - 5px);
  min-width: 205px;
  max-width: 295px;
  height: 60px;
  gap: 10px;
  color: #fff;
  font-weight: 500;
}

.studio__detail .studio__button .map {
  padding: 0 20px;
  background-color: var(--base-color);
}

.studio__detail .studio__button .map span {
  -webkit-transition: var(--base-transition);
  transition: var(--base-transition);
}

.studio__detail .studio__button .map::before {
  -webkit-transition: var(--base-transition);
  width: 20px;
  height: 20px;
  background: url(/img/common/icon-route.svg) no-repeat center center/contain;
  content: "";
  transition: var(--base-transition);
}

.studio__detail .studio__button .lesson {
  padding: 0 30px;
  background-color: var(--point-color);
}

.studio__detail .studio__button .lesson::before {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  transform: rotate(45deg);
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  content: "";
}

.studio__detail .studio__button .lesson::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradation-color);
  content: "";
}

.studio__detail .studio__map {
  padding-top: 120px;
}

.studio__detail .studio__map .c-title01 {
  margin-bottom: 40px;
}

.studio__detail .studio__map_wrap {
  width: 100%;
  height: 350px;
}

.studio__detail .studio__map_wrap img {
  max-width: inherit !important;
}

.studio__detail .studio__topics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 120px;
  gap: 60px;
}

.studio__detail .studio__news {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(50% - 30px);
}

.studio__detail .studio__news_list {
  max-height: 370px;
  padding-right: 5px;
  overflow-y: scroll;
}

.studio__detail .studio__news_list::-webkit-scrollbar {
  width: 5px;
}

.studio__detail .studio__news_list::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
}

.studio__detail .studio__news_item {
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
}

.studio__detail .studio__news_item + .studio__news_item {
  margin-top: -1px;
}

.studio__detail .studio__news_item a {
  padding: 20px 0;
}

.studio__detail .studio__news_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  gap: 10px;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.3;
}

.studio__detail .studio__news_top .date {
  position: relative;
  padding-left: 10px;
}

.studio__detail .studio__news_top .date::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: var(--base-color);
  content: "";
}

.studio__detail .studio__news_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.studio__detail .studio__campaign {
  position: relative;
  padding-bottom: 55px;
  overflow: hidden;
}

.studio__detail .c-modal__contents {
  max-width: 720px;
  height: calc(100dvh - 150px);
  margin: 0 20px;
  padding: 80px 60px;
  overflow-y: scroll;
  background-color: #fff;
}

.studio__detail .c-modal__contents::-webkit-scrollbar {
  width: 10px;
  border: none;
}

.studio__detail .c-modal__contents::-webkit-scrollbar-thumb {
  background-color: rgba(var(--base-color-rgb), 0.1);
}

.studio__detail .c-modal .title {
  position: relative;
  margin-bottom: 15px;
  padding-left: 15px;
  font-weight: 500;
  font-size: 2.4rem;
}

.studio__detail .c-modal .title::before {
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 4px;
  height: 30px;
  background-color: var(--point-color);
  content: "";
}

.studio__detail .c-modal .list {
  margin-bottom: 40px;
}

.studio__detail .c-modal .list li {
  position: relative;
  padding-left: 15px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.studio__detail .c-modal .list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.studio__detail .c-modal .list li + li {
  margin-top: 10px;
}

.studio__detail .c-modal__close {
  top: 25px;
  right: 25px;
}

.studio__detail .c-modal__close_txt {
  display: block !important;
}

.studio__detail .c-modal .route__wrap + .route__wrap {
  margin-top: 70px;
}

.studio__detail .c-modal .route__title {
  position: relative;
  margin-bottom: 20px;
  padding: 0 0 10px 30px;
  border-bottom: solid 1px var(--line-color);
  font-weight: 500;
  font-size: 1.6rem;
}

.studio__detail .c-modal .route__title::before {
  -webkit-mask: url(/img/common/icon-train.svg) no-repeat center center/contain;
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--point-color);
  content: "";
  mask: url(/img/common/icon-train.svg) no-repeat center center/contain;
}

.studio__detail .c-modal .route__item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.studio__detail .c-modal .route__item + .route__item {
  margin-top: 20px;
}

.studio__detail .c-modal .route__thumb {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  padding: 15px 0 0 20px;
}

.studio__detail .c-modal .route__thumb .num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-color);
  font-size: 1.4rem;
}

.studio__detail .c-modal .route__thumb img {
  aspect-ratio: 180/120;
  width: 250px;
  height: auto;
  overflow: hidden;
}

.studio__detail .c-modal .route__txt {
  padding-top: 15px;
  font-size: 1.4rem;
  line-height: 2;
}

.studio__detail .instructor__img {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
}

.studio__detail .instructor__img img {
  -o-object-fit: cover;
  -webkit-transition: var(--base-transition);
  height: 100%;
  object-fit: cover;
  transition: var(--base-transition);
}

.studio__detail .instructor__img .c-btn03 {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.studio__detail .instructor__name {
  -webkit-transition: var(--base-transition);
  margin-top: 30px;
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: var(--base-transition);
}

.studio__detail .instructor__pride {
  margin-top: 20px;
}

.studio__detail .instructor__pride_title {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 1.2rem;
}

.studio__detail .instructor__pride_list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.studio__detail .instructor__pride_item {
  padding: 6px 15px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1rem;
}

.studio__detail .js-studio-swiper-main {
  position: relative;
  padding-bottom: 30px;
}

.studio__detail .js-studio-swiper-main .swiper-slide {
  aspect-ratio: 1/1;
}

.studio__detail .js-studio-swiper-main .swiper-slide img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.studio__detail .js-studio-swiper-main .swiper-button {
  position: absolute;
  bottom: -60px;
  left: 0;
}

.studio__detail .js-studio-swiper-thumb {
  position: relative;
  width: calc(100% - 162px);
  margin-left: auto;
}

.studio__detail .js-studio-swiper-thumb .swiper-slide {
  aspect-ratio: 1/1;
  cursor: pointer;
  opacity: 0.4;
}

.studio__detail .js-studio-swiper-thumb .swiper-slide img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.studio__detail .js-studio-swiper-thumb .swiper-slide-thumb-active {
  opacity: 1;
}

.studio__detail .js-studio-campaign-swiper {
  position: relative;
  padding: 0 0 50px 25px;
}

.studio__detail .js-studio-campaign-swiper .swiper-slide {
  aspect-ratio: 1/1;
  width: 314px;
  opacity: 0.4;
}

.studio__detail .js-studio-campaign-swiper .swiper-slide a,
.studio__detail .js-studio-campaign-swiper .swiper-slide .thumb {
  height: 100%;
}

.studio__detail .js-studio-campaign-swiper .swiper-slide img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.studio__detail .js-studio-campaign-swiper .swiper-slide-active {
  opacity: 1;
}

.studio__detail .js-studio-campaign-swiper .swiper-button-next.swiper-button-disabled,
.studio__detail .js-studio-campaign-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.studio__detail .js-instructor-swiper {
  position: relative;
  overflow: hidden;
}

.studio__detail .js-instructor-swiper .swiper-bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 45px;
  gap: 0 115px;
}

.studio__detail .swiper-button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 12px;
}

.studio__detail .swiper-button-prev,
.studio__detail .swiper-button-next {
  -webkit-transform: translate(0, 0);
  position: relative;
  top: inherit;
  right: inherit;
  left: inherit;
  width: 50px;
  height: 50px;
  margin: 0;
  transform: translate(0, 0);
  border-radius: 50%;
  background-color: var(--base-color);
}

.studio__detail .swiper-button-prev::after,
.studio__detail .swiper-button-next::after {
  width: 24px;
  height: 24px;
  background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.studio__detail .swiper-button-prev {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.studio__detail .swiper-pagination {
  position: relative;
  bottom: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
}

.studio__detail .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 8px !important;
  background-color: var(--base-color);
  opacity: 0.2;
}

.studio__detail .swiper-pagination-bullet-active {
  position: relative;
  opacity: 1;
}

.studio__detail .swiper-pagination-bullet-active::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  border: solid 1px var(--base-color);
  border-radius: 50%;
  content: "";
}

.studio__detail .swiper-scrollbar {
  position: relative;
  bottom: inherit;
  left: inherit;
  width: 100%;
  height: 3px;
  background-color: rgba(var(--base-color-rgb), 0.2);
}

.studio__detail .swiper-scrollbar-drag {
  background-color: var(--base-color);
}

.top {
  overflow: inherit;
}

.top .mv {
  width: 100%;
  height: calc(100vh - 80px);
  height: calc(100dvh - 80px);
  min-height: 780px;
  padding: 150px 0 90px;
  overflow: hidden;
  background: url(/img/top/img-mv_bg.png) no-repeat center center/cover;
}

.top .mv .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  position: relative;
  flex-direction: column;
  align-items: flex-end;
  height: 100%;
}

.top .mv__title {
  position: relative;
  margin-right: -50px;
  padding-left: 195px;
  font-style: normal;
  font-weight: 400;
  font-size: 7.2rem;
  font-family: "Shippori Mincho", serif;
}

.top .mv__title_e {
  position: absolute;
  bottom: 0;
  left: 0;
  color: rgba(var(--base-color-rgb), 0.25);
  font-size: 24rem;
  line-height: 1;
}

.top .mv__title_e::before,
.top .mv__title_e::after {
  position: absolute;
  top: 20px;
  width: 56px;
  height: 40px;
  background: url(/img/top/icon-quotation.svg) no-repeat center center/contain;
  content: "";
}

.top .mv__title_e::before {
  left: -60px;
}

.top .mv__title_e::after {
  -webkit-transform: scale(-1, -1);
  right: -40px;
  transform: scale(-1, -1);
}

.top .mv__txt {
  margin-top: 25px;
  font-style: normal;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
}

.top .mv__txt small {
  font-size: 1.5rem;
}

.top .mv__bg {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-animation: infinity-scroll-left-100 30s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 20%;
  left: 0;
  align-items: center;
  animation: infinity-scroll-left-100 30s linear infinite;
  opacity: 0.3;
}

.top .mv__bg_list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.top .mv__bg img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 33.3333333333%;
  padding-right: 60px;
}

.top .mv__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 1440px;
}

.top .mv__banner {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  margin-top: auto;
  border-radius: 50%;
  background: var(--gradation-color);
  color: #fff;
}

.top .mv__banner::after {
  position: absolute;
  top: 45px;
  right: 23px;
  width: 65px;
  height: 57px;
  background: url(/img/top/icon-burn.svg) no-repeat center center/contain;
  content: "";
}

.top .mv__banner_inn {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
}

.top .mv__banner .line {
  border-bottom: solid 2px #fff;
}

.top .mv__banner .num {
  font-style: normal;
  font-weight: 400;
  font-size: 5rem;
  font-family: "Shippori Mincho", serif;
}

.top .mv__banner .big {
  font-size: 2.7rem;
  line-height: 1.5;
}

.top .latest__news {
  position: relative;
  height: 80px;
  border-bottom: solid 1px rgba(var(--base-color-rgb), 0.1);
}

.top .latest__news .inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.top .latest__news .js-latest-swiper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top .latest__news_item {
  padding-right: 30px;
}

.top .latest__news_item a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 0;
  gap: 10px;
  font-size: 1.4rem;
}

.top .latest__news_item .date {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 700;
}

.top .latest__news_item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top .latest__news_navigation {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: auto;
  background-color: #fff;
}

.top .latest__news .swiper-button-prev,
.top .latest__news .swiper-button-next {
  -webkit-transition: var(--base-transition);
  position: relative;
  top: inherit;
  right: inherit;
  left: inherit;
  width: 20px;
  height: 15px;
  margin: 0;
  transition: var(--base-transition);
}

.top .latest__news .swiper-button-prev::after,
.top .latest__news .swiper-button-next::after {
  -webkit-transform: rotate(-45deg);
  width: 6px;
  height: 6px;
  transform: rotate(-45deg);
  border-top: solid 1px var(--base-color);
  border-right: solid 1px var(--base-color);
  content: "";
}

.top .latest__news .swiper-button-next::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.top .campaign {
  margin-bottom: 300px;
  padding: 150px 0 120px;
}

.top .campaign::after {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 82%;
  height: 300px;
  background: url(/img/common/bg-noise.png);
  content: "";
}

.top .campaign .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 90px;
}

.top .campaign__slide {
  max-width: calc(100% - 43.75vw);
  padding: 0 70px 0 0;
}

.top .campaign__slide_inner {
  width: calc(100% + (100vw - 1160px) / 2);
  overflow: hidden;
}

.top .campaign .js-campaign-swiper {
  position: relative;
}

.top .campaign .swiper-slide {
  width: 314px;
}

.top .campaign .swiper-slide .thumb {
  aspect-ratio: 1/1;
  width: 100%;
}

.top .campaign .swiper-slide .thumb img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.top .campaign .swiper-slide .tag {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 10px;
}

.top .campaign .swiper-slide .tag li {
  padding: 5px 10px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1.2rem;
}

.top .campaign__navigation {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 50px;
  left: 100px;
  align-items: center;
  gap: 60px;
}

.top .campaign__navigation_button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}

.top .campaign .swiper-button-prev,
.top .campaign .swiper-button-next {
  -webkit-transform: translate(0, 0);
  position: relative;
  top: inherit;
  right: inherit;
  left: inherit;
  width: 50px;
  height: 50px;
  margin: 0;
  transform: translate(0, 0);
  border-radius: 50%;
  background-color: var(--base-color);
}

.top .campaign .swiper-button-prev::after,
.top .campaign .swiper-button-next::after {
  width: 24px;
  height: 24px;
  background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.top .campaign .swiper-button-prev {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.top .campaign .swiper-pagination {
  position: relative;
  bottom: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
}

.top .campaign .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 8px !important;
  background-color: var(--base-color);
  opacity: 0.2;
}

.top .campaign .swiper-pagination-bullet-active {
  position: relative;
  opacity: 1;
}

.top .campaign .swiper-pagination-bullet-active::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  border: solid 1px var(--base-color);
  border-radius: 50%;
  content: "";
}

.top .concept {
  padding: 140px 0;
}

.top .concept.white {
  color: #fff;
}

.top .concept__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  gap: 30px;
}

.top .concept__title .en {
  font-size: 1.6rem;
}

.top .concept__title .ja {
  font-style: normal;
  font-weight: 500;
  font-weight: 400;
  font-size: 4.5rem;
  line-height: 1.66;
  font-family: "Shippori Mincho", serif;
}

.top .concept .txt {
  width: 100%;
  max-width: 575px;
}

.top .bg__movie {
  -webkit-transition: var(--header-transition);
  visibility: hidden;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: var(--header-transition);
}

.top .bg__movie.is-visible {
  visibility: visible;
  opacity: 1;
}

.top .bg__movie::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradation-color);
  content: "";
  mix-blend-mode: multiply;
  opacity: 0.7;
}

.top .bg__movie img,
.top .bg__movie video {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top .parallax {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: -2;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 300px 0 100px;
}

.top .parallax__img {
  position: relative;
  overflow: hidden;
}

.top .parallax__img img {
  -o-object-fit: cover;
  display: block;
  position: relative;
  width: 100%;
  height: 130%;
  object-fit: cover;
}

.top .parallax__img01 {
  width: 23.7vw;
  height: 16.5vw;
  margin-left: 23.8vw;
}

.top .parallax__img02 {
  width: 37vw;
  height: 49.1vw;
  margin-top: 8.5vw;
  margin-right: 80px;
}

.top .parallax__img03 {
  width: 33.2vw;
  height: 37.2vw;
  margin-top: -24.5vw;
  margin-left: 9.7vw;
}

.top .parallax__img04 {
  width: 32.2vw;
  height: 37.2vw;
  margin-top: 10.7vw;
  margin-right: calc(9.7vw + 80px);
}

.top .feature {
  padding-bottom: 0;
}

.top .feature__wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  height: 300vh;
}

.top .feature__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 45%;
  height: 100%;
}

.top .feature__img[data-num="1"] li:first-of-type {
  opacity: 1;
}

.top .feature__img[data-num="2"] li:nth-of-type(2) {
  opacity: 1;
}

.top .feature__img[data-num="3"] li:last-of-type {
  opacity: 1;
}

.top .feature__img_inn {
  position: sticky;
  top: 0;
  height: 100vh;
}

.top .feature__img li {
  -webkit-transition: var(--base-transition);
  height: 100%;
  opacity: 0;
  transition: var(--base-transition);
}

.top .feature__img li:not(:first-of-type) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top .feature__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top .feature__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  padding: 90px;
}

.top .feature__item .txt {
  max-width: max(32.6vw, 470px);
}

.top .feature__item .attention {
  display: block;
  margin-top: 20px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.top .feature__item .attention + .attention {
  margin-top: 0;
}

.top .feature__num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 50px;
  gap: 100px;
}

.top .feature__num::before {
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  width: 60px;
  height: 1px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  opacity: 0.3;
}

.top .feature__num::after {
  content: "03";
  opacity: 0.3;
}

.top .feature__title {
  margin-bottom: 30px;
  font-style: normal;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.8;
  font-family: "Shippori Mincho", serif;
}

.top .program {
  padding: 180px 0;
  overflow: hidden;
}

.top .program .c-bgTitle {
  z-index: -1;
  top: -60px;
}

.top .program__top {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.top .program .js-program-swiper {
  position: relative;
}

.top .program .swiper-slide a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 50px;
}

.top .program__img {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 640/436;
  width: 50%;
}

.top .program__img img {
  -webkit-transition: var(--base-transition);
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--base-transition);
}

.top .program__img .c-btn03 {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.top .program__txt .num {
  margin-bottom: 20px;
  opacity: 0.3;
}

.top .program__title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}

.top .program__title .title {
  -webkit-transition: var(--base-transition);
  position: relative;
  font-weight: 500;
  font-size: 3.2rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  transition: var(--base-transition);
}

.top .program__strength {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 2rem;
}

.top .program__strength .hidden {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}

.top .program__strength::before {
  width: 26px;
  height: 26px;
  background: url(/img/common/icon-strength.svg) no-repeat center center/contain;
  content: "";
}

.top .program__category {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 10px;
}

.top .program__category li {
  padding: 5px 15px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1.2rem;
}

.top .program .swiper-bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 45px;
  gap: 0 115px;
}

.top .program .swiper-button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 12px;
}

.top .program .swiper-button-prev,
.top .program .swiper-button-next {
  -webkit-transform: translate(0, 0);
  position: relative;
  top: inherit;
  right: inherit;
  left: inherit;
  width: 50px;
  height: 50px;
  margin: 0;
  transform: translate(0, 0);
  border-radius: 50%;
  background-color: var(--base-color);
}

.top .program .swiper-button-prev::after,
.top .program .swiper-button-next::after {
  width: 24px;
  height: 24px;
  background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.top .program .swiper-button-prev {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.top .program .swiper-scrollbar {
  position: relative;
  bottom: inherit;
  left: inherit;
  width: 100%;
  height: 3px;
  background-color: rgba(var(--base-color-rgb), 0.2);
}

.top .program .swiper-scrollbar-drag {
  background-color: var(--base-color);
}

.top .news .inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
}

.top .news__contents {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: min(62vw, 700px);
}

.top .news__side_category {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top .news__side .category {
  -webkit-transition: var(--base-transition);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 15px;
  border: solid 1px var(--base-color);
  border-radius: 100px;
  font-size: 1.2rem;
  transition: var(--base-transition);
}

.top .news__side .category.current {
  background-color: var(--base-color);
  color: #fff;
  pointer-events: none;
}

.top .news__item {
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
}

.top .news__item + .news__item {
  margin-top: -1px;
}

.top .news__item a {
  padding: 25px 0;
}

.top .news__top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.3;
}

.top .news__category {
  position: relative;
  padding-right: 10px;
}

.top .news__category::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  margin: auto;
  background-color: var(--base-color);
  content: "";
}

.top .news__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top .studio {
  padding-bottom: 180px;
}

.top__bottom_video {
  overflow: hidden;
}

.top__bottom_video video {
  width: 100%;
  object-fit: cover;
  display: block;
}

.welcome .intro__wrapper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 90px;
}

.welcome .intro__wrapper + .intro__wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: 120px;
}

.welcome .intro__txt {
  width: 100%;
}

.welcome .intro__txt .txt {
  letter-spacing: 0;
}

.welcome .intro__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  gap: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.78;
  font-family: "Shippori Mincho", serif;
}

.welcome .intro__title .sub {
  font-size: 2rem;
}

.welcome .intro__img {
  width: calc(50% - 90px);
}

.welcome .intro__bottom {
  margin-top: 80px;
  color: var(--point-color);
  font-size: 6rem;
  text-align: center;
}

.welcome .intro__btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  height: 60px;
  margin: 80px auto 0;
  background-color: var(--point-color);
  color: #fff;
  font-weight: 500;
}

.welcome .intro__btn::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradation-color);
  content: "";
}

.welcome .intro__recommend {
  margin-top: 80px;
  padding: 40px 80px;
  background-color: var(--bg-color);
}

.welcome .intro__recommend_title {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: solid 1px var(--line-color);
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
}

.welcome .intro__recommend_list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 0 30px;
  gap: 30px 20px;
}

.welcome .intro__recommend_item {
  position: relative;
  width: calc(50% - 10px);
  padding-left: 22px;
  font-size: 1.4rem;
}

.welcome .intro__recommend_item::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  border: solid 1px var(--line-color);
  background-color: #fff;
  content: "";
}

.welcome .intro__recommend_item::after {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  width: 6px;
  height: 10px;
  margin: auto;
  transform: rotate(45deg);
  border-right: solid 2px var(--point-color);
  border-bottom: solid 2px var(--point-color);
  content: "";
}

.welcome .slider__wrap {
  -webkit-animation: infinity-scroll-left 30s infinite linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  animation: infinity-scroll-left 30s infinite linear;
}

.welcome .slider li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 342px;
}

.welcome .flow .c-title01 + .txt {
  margin-bottom: 60px;
  text-align: center;
}

.welcome .flow__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding: 30px;
  gap: 30px;
  background-color: var(--bg-color);
}

.welcome .flow__item .num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-negative: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--base-color);
  color: #fff;
  font-size: 1.8rem;
}

.welcome .flow__item .title {
  width: 100%;
  max-width: 230px;
  font-weight: 500;
  font-size: 2rem;
}

.welcome .flow__item .txt {
  width: 100%;
  font-size: 1.4rem;
}

.welcome .flow__txt {
  width: 100%;
}

.welcome .flow__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  gap: 10px 15px;
}

.welcome .flow__button a {
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(50% - 8px);
  height: 60px;
  padding: 0 20px;
  gap: 6px 10px;
}

.welcome .flow__button a.reserve {
  z-index: 1;
  background: var(--gradation-color);
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
}

.welcome .flow__button a.reserve::before {
  width: 22px;
  height: 22px;
  background: url(/img/common/icon-reserve02.svg) no-repeat center center/contain;
  content: "";
}

.welcome .flow__button a.reserve::after {
  -webkit-transition: var(--base-transition);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--point-color);
  content: "";
  transition: var(--base-transition);
}

.welcome .flow__button .tel {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #d8d8d8;
}

.welcome .flow__button .tel__num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 2rem;
}

.welcome .flow__button .tel__num::before {
  width: 18px;
  height: 18px;
  background: url(/img/common/icon-tel.svg) no-repeat center center/contain;
  content: "";
}

.welcome .flow__button .tel__time {
  font-size: 1.2rem;
  text-align: center;
}

.welcome .flow__button .normal {
  background-color: var(--base-color);
  color: #fff;
}

.welcome .flow__button .normal::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  transform: rotate(-45deg);
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  content: "";
}

.welcome .flow__button span {
  line-height: 1;
}

/* .terms .c-supplementary__h2:not(:first-of-type) {
  margin-top: 60px;
}

.terms .c-supplementary__ol {
  padding-left: 20px;
}

.terms .c-supplementary__ol li::marker {
  font-size: 1.6rem;
}

.terms .c-supplementary__ol li + li {
  margin-top: 0;
}

.terms .c-supplementary__ol2 {
  counter-reset: number 0; 
}

.terms .c-supplementary__ol2 li {
  line-height: 2;
  padding-left: 30px;
  position: relative;
}

.terms .c-supplementary__ol2 li::before {
  counter-increment: number 1;
  content: '('counter(number) ')';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.6rem;
}

.terms .c-supplementary__ol2 li:has(.c-supplementary__ol3) {
  display: grid;
}

.terms .c-supplementary__ol2 li:has(.c-supplementary__ol3) p {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.terms .c-supplementary__ol2 li:has(.c-supplementary__ol3) .c-supplementary__ol3:nth-of-type(1) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.terms .c-supplementary__ol2 li:has(.c-supplementary__ol3) .c-supplementary__ol3:nth-of-type(2) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.terms .c-supplementary__ol3 li {
  padding-left: 20px;
  position: relative;
}

.terms .c-supplementary__ol3 li .num {
  position: absolute;
  top: 0;
  left: 0;
}

.terms .c-supplementary__ol3 li::before {
  content: none;
} */

/* ----------------------------------------
*  ↓↓↓↓ ここから規約一覧改修(20250718〜) ↓↓↓↓
---------------------------------------- */
.terms .c-supplementary__h2 {
  margin-bottom: 40px;
}

.terms .terms__item + .terms__item {
  margin-top: 60px;
}

.terms .c-accordion__button {
  background-color: var(--bg-color);
  font-size: 2.0rem;
  font-weight: 500;
  text-align: left;
  /* padding: 15px; */
  padding: 15px 15px 15px 60px;
  position: relative;
  width: 100%;
  /* pointer-events: none; */
}

.terms .c-accordion__button::before {
  content: '';
  background-color: var(--base-color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  width: 20px;
  height: 20px;
}

.terms .c-accordion__button::after {
  content: '';
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: -3px;
  bottom: 0;
  left: 26px;
  margin: auto;
  width: 8px;
  height: 8px;
  transform: rotate(135deg);
  transition: var(--base-transition);
}

.terms .c-accordion__button.active::after {
  top: 3px;
  transform: rotate(-45deg);
}

.terms .terms__contents {
  display: none;
  padding: 28px 20px 0 20px;
}

.terms .terms__list li {
  padding-left: 20px;
  position: relative;
}

.terms .terms__list li + li {
  margin-top: 15px;
}

.terms .terms__list li::before {
  content: '└';
  position: absolute;
  top: 0;
  left: 0;
  color: #BDBDBD;
}

.terms .terms__list a {
  position: relative;
  padding-right: 23px;
  width: max-content;
}

.terms .terms__list a::after {
  content: '';
  background: url(/img/common/icon-pdf.svg) no-repeat center center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 18px;
  height: 18px;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }

  .sp-fixmenu {
    display: none;
  }

  .c-form th {
    text-align: left;
  }

  .confirm .c-form th,
  .confirm .c-form td {
    padding: 28px 20px;
  }

  .about .ems__wrap + .ems__wrap .ems__num {
    right: 0;
    left: inherit;
  }

  .faq {
    overflow: inherit;
  }

  .faq .c-underMv {
    overflow: hidden;
  }

  .faq .contents {
    padding: 100px 0;
  }

  .faq__category_list li::before {
    -webkit-transition: var(--base-transition);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 6px;
    height: 6px;
    margin: auto;
    border-radius: 50%;
    background-color: var(--base-color);
    content: "";
    opacity: 0;
    transition: var(--base-transition);
  }

  .faq__category_list li.active::before {
    opacity: 1;
  }

  .instructor__archive {
    overflow: inherit;
  }

  .instructor__archive .c-underMv {
    overflow: hidden;
  }

  .instructor__detail .js-instructor-campaign-swiper .swiper-button {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-bottom: 50px;
  }

  .instructor__detail .js-instructor-campaign-swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
  }

  .price .intro__txt {
    width: 50%;
  }

  .program__detail .program__other_txt {
    font-size: 1.2rem;
  }

  .recruit .message .requirements__button {
    margin-left: 0;
  }

  .studio__archive {
    overflow: inherit;
  }

  .studio__archive .c-underMv {
    overflow: hidden;
  }

  .studio__detail .js-studio-campaign-swiper .swiper-button {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-bottom: 50px;
  }

  .studio__detail .js-studio-campaign-swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
  }

  .welcome .intro__txt {
    width: 50%;
  }

  .welcome .flow__button .tel {
    pointer-events: none;
  }
}

@media screen and (min-width: 1025px) {
  .tab {
    display: none !important;
  }
}

@media screen and (max-width: 1200px) {
  .header__fix {
    padding-left: 20px;
  }

  .header__logo {
    width: 112px;
  }

  .header__nav_list {
    margin-right: 15px;
    gap: 5px;
  }

  .header__nav_list a {
    padding: 5px;
  }

  .header__contents_middle {
    padding: 0 120px 0 60px;
    gap: 30px;
  }

  .header__contents_bottom {
    padding: 40px 120px 40px 60px;
  }

  .instructor__detail .js-instructor-swiper-main .swiper-button {
    bottom: -5vw;
  }

  .studio__detail .js-studio-swiper-main .swiper-button {
    bottom: -5vw;
  }

  .top .campaign .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top .campaign__slide {
    max-width: 100%;
    padding: 0 20px;
  }

  .top .campaign__slide_inner {
    width: 100%;
  }

  .top .campaign__navigation {
    position: relative;
    bottom: inherit;
    left: inherit;
    margin-top: 30px;
  }
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }

  .inner {
    padding: 0 20px;
  }

  .c-sidebar {
    display: none;
  }

  .column a {
    height: 360px;
  }

  .c-title02 {
    gap: 10px;
  }

  .c-title02 .en {
    font-size: 6.2rem;
  }

  .c-bgTitle {
    font-size: 18rem;
  }

  .c-underMv {
    padding: 100px 0 0;
  }

  .c-underMv .c-bgTitle {
    top: 30px;
  }

  .c-modal__contents {
    max-width: 750px;
  }

  .c-modal__contents_scroll {
    max-width: 750px;
  }

  .c-modal__close {
    top: 0;
    right: 10px;
  }

  .c-modal__close .c-modal__close_txt {
    display: none;
  }

  .c-supplementary__h4 {
    margin-top: 40px;
    font-size: 1.4rem;
  }

  .c-supplementary__h5 {
    margin: 20px 0 0;
    font-size: 1.4rem;
  }

  .c-supplementary__table th {
    width: 280px;
  }

  .c-supplementary__ul li::before {
    top: 12px;
  }

  .c-form input[type=text],
  .c-form input[type=email],
  .c-form textarea {
    font-size: 1.4rem;
  }

  .c-form input[type=text]::-webkit-input-placeholder,
  .c-form input[type=email]::-webkit-input-placeholder,
  .c-form textarea::-webkit-input-placeholder {
    font-size: 1.4rem;
  }

  .c-form input[type=text]::-moz-placeholder,
  .c-form input[type=email]::-moz-placeholder,
  .c-form textarea::-moz-placeholder {
    font-size: 1.4rem;
  }

  .c-form input[type=text]:-ms-input-placeholder,
  .c-form input[type=email]:-ms-input-placeholder,
  .c-form textarea:-ms-input-placeholder {
    font-size: 1.4rem;
  }

  .c-form input[type=text]::-ms-input-placeholder,
  .c-form input[type=email]::-ms-input-placeholder,
  .c-form textarea::-ms-input-placeholder {
    font-size: 1.4rem;
  }

  .c-form input[type=text]::placeholder,
  .c-form input[type=email]::placeholder,
  .c-form textarea::placeholder {
    font-size: 1.4rem;
  }

  .c-form__select select {
    font-size: 1.4rem;
  }

  .c-form .is-error {
    font-size: 1.2rem;
  }

  .header {
    position: fixed;
    background-color: #fff;
  }

  .header.target {
    background-color: transparent;
  }

  .header__fix {
    height: 60px;
  }

  .header__nav_list {
    display: none;
  }

  .header__btn_member {
    width: 60px;
    height: 60px;
  }

  .header__btn_member::before {
    width: 26px;
    height: 26px;
  }

  .header__btn_open {
    width: 60px;
    height: 60px;
  }

  .header__btn_inn {
    width: 24px;
    height: 10px;
  }

  .header__contents {
    overflow-y: scroll;
  }

  .header__contents_middle {
    padding: 0 40px;
  }

  .header__contents_bottom {
    padding: 40px;
  }

  .header__contents .js-campaign-head-swiper {
    display: none;
  }

  .header__btn_close {
    width: 60px;
    height: 60px;
    background-color: #fff;
  }

  .header__btn_close span {
    padding-top: 0;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }

  .header__btn_close span::before,
  .header__btn_close span::after {
    top: 6px;
    background-color: var(--base-color);
  }

  .header__btn_close span::before {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  .header__btn_close span::after {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .footer__logo {
    margin-bottom: 0;
  }

  .footer__nav_list {
    max-width: inherit;
  }

  .about .intro {
    padding-bottom: 180px;
  }

  .about .intro__wrapper::after {
    height: 315px;
  }

  .about .intro__title .ja {
    font-size: 2.8rem;
  }

  .about .intro__img {
    top: 0;
  }

  .about .ems__wrap {
    padding: 60px 20px 0;
  }

  .about .ems__wrap_head {
    gap: 30px 20px;
  }

  .about .ems__wrap_bottom {
    margin-top: 40px;
    padding: 40px;
  }

  .about .ems__num {
    top: -40px;
  }

  .about .ems__img {
    max-width: 350px;
  }

  .about .ems__box_txt {
    font-size: 1.6rem;
  }

  .about .ems__reserve {
    font-size: 1.4rem;
  }

  .faq .contents .inner {
    gap: 80px 30px;
  }

  .faq__category {
    top: 80px;
    width: 200px;
  }

  .instructor__archive .contents .inner {
    gap: 80px 30px;
  }

  .instructor__archive .contents__category {
    top: 80px;
    width: 180px;
  }

  .instructor__archive .contents__main_item {
    width: calc(50% - 13px);
  }

  .instructor__detail article .main {
    gap: 40px 30px;
  }

  .instructor__detail article .img {
    max-width: 300px;
  }

  .instructor__detail .js-instructor-swiper-main .swiper-button {
    bottom: -6.5vw;
  }

  .instructor__detail .js-instructor-swiper-thumb {
    width: calc(100% - 130px);
  }

  .news__archive .contents__category a {
    font-size: 1.2rem;
  }

  .news__detail .article__btn_item.list {
    width: 180px;
  }

  .price .intro__wrapper {
    gap: 30px;
  }

  .price .intro__title {
    margin-bottom: 30px;
    font-size: 2.8rem;
  }

  .price .plan__table tr:has(.plan__contents) th {
    width: 150px;
  }

  .program__archive .contents__category_list a {
    font-size: 1.2rem;
  }

  .program__archive .contents__article a {
    padding: 40px 0;
  }

  .program__archive .contents__article_title {
    font-size: 2rem;
  }

  .program__archive .contents__article_strength {
    font-size: 1.6rem;
  }

  .program__detail .program__wrap {
    gap: 40px 30px;
  }

  .program__detail .program__img {
    width: 45%;
  }

  .program__detail .program__strength,
  .program__detail .program__difficulty,
  .program__detail .program__exhilaration {
    margin-bottom: 25px;
  }

  .program__detail .program__effect {
    padding-top: 20px;
  }

  .program__detail .program__effect .title {
    margin-bottom: 15px;
  }

  .program__detail .program__column {
    gap: 20px;
  }

  .program__detail .program__column_item {
    width: calc(50% - 10px);
  }

  .program__detail .program__column_title {
    padding-left: 25px;
    font-size: 1.6rem;
  }

  .program__detail .program__column_title::before {
    width: 20px;
    height: 20px;
  }

  .recruit .message__wrapper {
    gap: 30px;
  }

  .recruit .message__title {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }

  .recruit .point__wrapper {
    gap: 30px;
  }

  .recruit .point__wrapper:nth-child(odd) .point__num {
    right: 0;
  }

  .recruit .point__num {
    left: 0;
  }

  .recruit .point__img {
    max-width: 340px;
  }

  .recruit .point__about_wrap {
    gap: 20px;
  }

  .recruit .personality__request {
    padding: 40px;
  }

  .studio__archive .contents .inner {
    gap: 80px 30px;
  }

  .studio__archive .contents__category {
    top: 80px;
    width: 180px;
  }

  .studio__archive .contents__item a {
    padding: 20px 0;
    gap: 30px 20px;
  }

  .studio__detail .studio__name {
    font-size: 3rem;
  }

  .studio__detail .studio__name_sub {
    font-size: 1.6rem;
  }

  .studio__detail .studio__main {
    gap: 30px;
  }

  .studio__detail .studio__button {
    margin-top: 40px;
  }

  .studio__detail .studio__button a,
  .studio__detail .studio__button button {
    width: 100%;
  }

  .studio__detail .studio__map {
    padding-top: 100px;
  }

  .studio__detail .studio__map_wrap {
    height: 335px;
  }

  .studio__detail .studio__topics {
    gap: 100px 30px;
  }

  .studio__detail .studio__news {
    width: calc(50% - 15px);
  }

  .studio__detail .js-studio-swiper-main .swiper-button {
    bottom: -6.5vw;
  }

  .studio__detail .js-studio-swiper-thumb {
    width: calc(100% - 130px);
  }

  .top .mv {
    padding-top: 120px;
  }

  .top .campaign {
    margin-bottom: 160px;
    padding: 100px 0;
  }

  .top .parallax {
    margin-top: 100px;
    padding: 100px 0;
  }

  .top .parallax__img02 {
    margin-right: 0;
  }

  .top .parallax__img04 {
    margin-right: 9.7vw;
  }

  .top .feature__img {
    width: 50%;
  }

  .top .feature__img_inn {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .top .feature__item {
    padding: 40px;
  }

  .top .feature__title {
    font-size: 2.2rem;
    letter-spacing: 0;
  }

  .top .news .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top .news__contents {
    max-width: inherit;
  }

  .top .news__side {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: baseline;
    gap: 0 40px;
  }

  .top .news__side_category {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .welcome .intro__wrapper {
    gap: 30px;
  }

  .welcome .intro__wrapper + .intro__wrapper {
    margin-top: 80px;
  }

  .welcome .intro__txt {
    padding-top: 0;
  }

  .welcome .intro__title {
    margin-bottom: 30px;
    font-size: 2.8rem;
  }

  .welcome .intro__title .sub {
    font-size: 1.6rem;
  }

  .welcome .intro__bottom {
    font-size: 4.8rem;
  }

  .welcome .intro__recommend {
    padding: 40px;
  }

  .welcome .flow__item .title {
    max-width: 180px;
    font-size: 1.8rem;
  }

  .welcome .flow__button .tel__num {
    font-size: 1.8rem;
  }

  /* .terms .c-supplementary__ol li::marker,
  .terms .c-supplementary__ol2 li::before {
    font-size: 1.4rem;
  } */
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  section {
    padding: 70px 0 100px;
  }

  .column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .column a {
    width: 100%;
    height: 280px;
  }

  .column__wrap {
    width: 146px;
    height: 146px;
    gap: 5px;
  }

  .column__wrap .line,
  .column__wrap .line__delay {
    width: 148px;
    height: 148px;
  }

  .column__wrap .en {
    font-size: 3rem;
  }

  .c-title01 {
    margin-bottom: 40px;
    gap: 15px;
  }

  .c-title01 .en {
    font-size: 3rem;
  }

  .c-title02 .en {
    font-size: 4.5rem;
  }

  .c-title02 .ja {
    font-size: 1.4rem;
  }

  .c-title02__small .en {
    font-size: 3.4rem;
  }

  .c-bgTitle {
    left: 0;
  }

  .c-bgTitle .anim.is-visible {
    -webkit-animation: infinity-scroll-left 30s infinite linear;
    animation: infinity-scroll-left 30s infinite linear;
  }

  .c-pager {
    margin-top: 45px;
  }

  .c-pager .pager_list {
    gap: 4px;
  }

  .c-pager .pager_item {
    width: 40px;
    height: 40px;
  }

  .c-pager .pager_item a,
  .c-pager .pager_item div {
    font-size: 1.4rem;
  }

  .c-pager .pager_item.prev a::after,
  .c-pager .pager_item.next a::after {
    width: 18px;
    height: 18px;
  }

  .c-btn03 {
    width: 40px;
    height: 40px;
  }

  .c-btn03::before {
    width: 20px;
    height: 20px;
  }

  .c-studio__title {
    font-size: 3rem;
  }

  .c-studio__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .c-studio__name {
    width: 100%;
    max-width: inherit;
    font-size: 1.6rem;
  }

  .c-studio__wrap {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .c-studio .c-btn03 {
    margin-left: auto;
  }

  .c-faq__button {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px 40px 20px 20px;
    font-size: 1.4rem;
  }

  .c-faq__button::before,
  .c-faq__button::after {
    right: 10px;
    width: 16px;
  }

  .c-faq__button .question {
    font-size: 1.6rem;
  }

  .c-faq__answer_inn {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px;
  }

  .c-faq__answer .answer {
    font-size: 1.6rem;
  }

  .c-supplementary {
    padding: 70px 0 100px;
  }

  .c-supplementary__h2 {
    padding-left: 26px;
    font-size: 2rem;
  }

  .c-supplementary__h2::before {
    top: 15px;
    width: 18px;
  }

  .c-supplementary .txt + .c-supplementary__h2 {
    margin-top: 80px;
  }

  .c-supplementary__h3 {
    margin-bottom: 8px;
    font-size: 1.6rem;
  }

  .c-supplementary__wrapper {
    margin-top: 40px;
  }

  .c-supplementary__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 25px;
    gap: 15px;
  }

  .c-supplementary__wrap_title .txt {
    font-size: 1.8rem;
  }

  .c-supplementary__wrap .icon {
    width: 36px;
    height: 36px;
  }

  .c-supplementary__wrap_list {
    width: 100%;
    padding: 15px 0 0;
    border-top: solid 1px var(--line-color);
    border-left: none;
  }

  .c-supplementary__table table {
    border-bottom: solid 1px var(--line-color);
  }

  .c-supplementary__table th,
  .c-supplementary__table td {
    display: block;
    width: 100% !important;
  }

  .c-supplementary__table th {
    padding: 25px 20px 5px;
    border-bottom: none;
  }

  .c-supplementary__table td {
    padding: 0px 20px 25px;
    border: none;
  }

  .c-supplementary__table_note {
    padding-left: 1.2rem;
    font-size: 1.2rem;
  }

  .c-supplementary__ul li + li {
    margin-top: 10px;
  }

  .c-supplementary__ol li::marker {
    font-size: 1.8rem;
  }

  .c-supplementary__contact_title {
    font-size: 1.4rem;
  }

  .c-form {
    padding: 70px 0 100px;
  }

  .c-form__point {
    margin-top: 20px;
  }

  .c-form__point li {
    padding-left: 15px;
    font-size: 1.2rem;
  }

  .c-form .form_area {
    margin-top: 40px;
  }

  .c-form th,
  .c-form td {
    display: block;
    width: 100% !important;
    border: none;
  }

  .c-form th {
    padding: 14px 10px;
    background-color: var(--bg-color);
  }

  .c-form td {
    padding: 15px 10px 25px;
  }

  .c-form textarea {
    height: 150px;
  }

  .c-form__select {
    width: 100%;
  }

  .c-form__address_num {
    width: 100%;
  }

  .c-form__address_num input {
    width: 100% !important;
  }

  .c-form .privacy {
    margin-top: 10px;
    padding: 0 20px;
  }

  .c-form__button {
    margin-top: 40px;
  }

  .c-cta__title {
    font-size: 2rem;
  }

  .c-cta__button {
    margin-top: 40px;
  }

  .header__contents {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .header__contents_top {
    padding: 20px 0 0 20px;
  }

  .header__contents_middle {
    padding: 0 20px;
  }

  .header__contents_bottom {
    padding: 0 20px 80px;
    border-top: none;
  }

  .header__contents_bottom_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .header__contents_nav .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .header__contents_nav .wrap a {
    width: 100%;
  }

  .header__contents_nav .list {
    gap: 0;
  }

  .header__contents_nav .list li {
    width: 100%;
  }

  .header__contents .sub_list {
    -ms-flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }

  .footer {
    padding: 60px 0;
  }

  .footer__logo {
    width: 112px;
    height: 22px;
  }

  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__nav_list {
    width: 100%;
  }

  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 45px;
    gap: 60px;
  }

  .footer__copy {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 20px;
    background-color: var(--base-color);
    text-align: center;
  }

  .about .intro {
    padding-bottom: 100px;
  }

  .about .intro__wrapper {
    padding: 0;
  }

  .about .intro__wrapper::after {
    bottom: 38px;
    width: 100vw;
    height: 265px;
    margin: 0 calc(50% - 50vw);
  }

  .about .intro__title {
    padding-bottom: 0;
    gap: 10px;
  }

  .about .intro__title .ja {
    font-size: 2.4rem;
  }

  .about .intro__img {
    position: relative;
    top: inherit;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .about .feature .inner {
    padding: 0 40px;
  }

  .about .feature__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about .feature__item {
    width: 100%;
    padding: 0 25px 25px;
  }

  .about .feature__img {
    width: calc(100% + 50px);
    margin-left: -25px;
  }

  .about .feature__title {
    margin: 20px 0 10px;
    font-size: 1.6rem;
  }

  .about .ems__wrap + .ems__wrap {
    margin-top: 60px;
  }

  .about .ems__wrap + .ems__wrap .ems__wrap_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about .ems__wrap + .ems__wrap .ems__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }

  .about .ems__wrap + .ems__wrap .ems__box_img {
    width: calc(50% - 10px);
  }

  .about .ems__wrap_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about .ems__wrap_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
    padding: 40px 20px;
  }

  .about .ems__wrap_bottom::before {
    -webkit-transform: rotate(90deg);
    width: 30px;
    height: 30px;
    transform: rotate(90deg);
  }

  .about .ems__num {
    top: 0;
    font-size: 12rem;
  }

  .about .ems__title {
    font-size: 2rem;
  }

  .about .ems__img {
    width: 100%;
    max-width: inherit;
  }

  .faq .contents .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .faq__category {
    position: relative;
    top: inherit;
    width: 100%;
  }

  .faq__category_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-bottom: 10px;
    overflow-x: scroll;
    gap: 20px;
  }

  .faq__category_list li {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0;
  }

  .faq__wrapper + .faq__wrapper {
    margin-top: 80px;
    padding-top: 80px;
  }

  .instructor__archive .contents {
    padding: 70px 0 100px;
  }

  .instructor__archive .contents .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .instructor__archive .contents__category {
    position: relative;
    top: inherit;
    width: 100%;
  }

  .instructor__archive .contents__category_item + .contents__category_title {
    margin-top: 20px;
  }

  .instructor__archive .contents__main_list {
    gap: 40px 10px;
  }

  .instructor__archive .contents__main_item {
    width: calc(50% - 5px);
  }

  .instructor__archive .contents__main_name {
    font-size: 1.8rem;
  }

  .instructor__archive .contents__main_pride .title {
    font-size: 1rem;
  }

  .instructor__archive .contents__main_pride .item {
    padding: 5px 12px;
  }

  .instructor__detail article {
    padding: 70px 0 100px;
  }

  .instructor__detail article .main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .instructor__detail article .img {
    width: 100%;
    max-width: initial;
    height: 100%;
  }

  .instructor__detail article .name {
    font-size: 3rem;
  }

  .instructor__detail article .name .sub {
    font-size: 1.6rem;
  }

  .instructor__detail article .info th {
    min-width: 100px;
  }

  .instructor__detail .instructor__item a {
    padding: 0 20px;
  }

  .instructor__detail .instructor__name {
    margin-top: 20px;
  }

  .instructor__detail .js-instructor-swiper-main {
    padding-bottom: 10px;
  }

  .instructor__detail .js-instructor-swiper-main .swiper-button {
    bottom: -33vw;
  }

  .instructor__detail .js-instructor-swiper-thumb {
    width: 100%;
  }

  .instructor__detail .js-instructor-campaign-swiper {
    padding: 0 20px;
  }

  .instructor__detail .js-instructor-campaign-swiper .swiper-bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    gap: 20px;
  }

  .instructor__detail .js-instructor-swiper .swiper-bottom {
    gap: 0 50px;
  }

  .instructor__detail .swiper-button-prev,
  .instructor__detail .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .instructor__detail .swiper-button-prev::after,
  .instructor__detail .swiper-button-next::after {
    width: 20px;
    height: 20px;
  }

  .instructor__detail article .banner {
    margin-top: 40px;
  }

  .instructor__detail article .banner__txt {
    font-size: 1.6rem;
    max-width: 100%;
  }

  .instructor__detail article .banner__wrap {
    flex-direction: column;
  }

  .instructor__detail article .banner__img {
    width: 100%;
  }

  .instructor__detail article .banner__btn {
    padding: 20px;
    gap: 10px;
  }

  .instructor__detail article .banner__txt::before {
    left: 10px;
  }

  .instructor__detail article .banner__txt::after {
    right: 10px;
  }

  .news__archive .contents {
    padding: 70px 0 100px;
  }

  .news__archive .contents__category {
    gap: 8px;
  }

  .news__archive .contents__category a {
    font-size: 1rem;
  }

  .news__archive .contents__article_top {
    margin-bottom: 5px;
  }

  .news__detail article {
    padding: 70px 0 100px;
  }

  .news__detail .article__top {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }

  .news__detail .article__title {
    margin-bottom: 40px;
    padding-bottom: 10px;
    font-size: 2.4rem;
  }

  .news__detail .article__btn {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 80px;
    gap: 30px 20px;
  }

  .news__detail .article__btn_item.list {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
    border: none;
  }

  .news__detail .article__btn_item.list a {
    background-color: var(--base-color);
    color: #fff;
  }

  .news__detail .article__btn_item a {
    gap: 12px;
  }

  .price .intro__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .price .intro__title {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }

  .price .intro .plan__table {
    margin-top: 40px;
  }

  .price .intro__img {
    width: 100%;
  }

  .price .intro__button {
    padding-top: 50px;
  }

  .price .plan__wrap + .plan__wrap {
    margin-top: 60px;
  }

  .price .plan__title {
    margin-bottom: 10px;
    gap: 10px;
  }

  .price .plan__title .en {
    font-size: 2.8rem;
  }

  .price .plan__table {
    border-bottom: solid 1px var(--line-color);
  }

  .price .plan__table th,
  .price .plan__table td {
    display: block;
    width: 100% !important;
  }

  .price .plan__table th {
    padding: 25px 20px 10px;
    border-bottom: none;
  }

  .price .plan__table td {
    padding: 5px 20px 0;
    border: none;
    text-align: left !important;
  }

  .price .plan__table td.plan__contents {
    padding: 15px 20px 25px;
  }

  .price .plan__table small {
    display: inline-block;
  }

  .price .plan__discount {
    text-align: left !important;
  }

  .program__archive .contents {
    padding: 70px 0 100px;
  }

  .program__archive .contents__category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .program__archive .contents__category_list {
    gap: 8px;
  }

  .program__archive .contents__category_list a {
    font-size: 1rem;
  }

  .program__archive .contents__article a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 50px 0;
  }

  .program__archive .contents__article_thumb {
    width: 100%;
  }

  .program__archive .contents__article_top {
    margin-bottom: 15px;
  }

  .program__archive .contents__article_txt {
    margin-bottom: 15px;
  }

  .program__detail article {
    padding: 70px 0 100px;
  }

  .program__detail .program__name {
    margin-bottom: 30px;
    font-size: 3rem;
  }

  .program__detail .program__name_sub {
    font-size: 1.6rem;
  }

  .program__detail .program__name .ruby {
    font-size: 1.4rem;
  }

  .program__detail .program__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .program__detail .program__img {
    width: 100%;
    max-width: inherit;
  }

  .program__detail .program__strength .bar,
  .program__detail .program__difficulty .bar,
  .program__detail .program__exhilaration .bar {
    max-width: 210px;
  }

  .program__detail .program__effect .title {
    font-size: 1.4rem;
  }

  .program__detail .program__effect_list li {
    font-size: 1rem;
  }

  .program__detail .program__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
  }

  .program__detail .program__column_item {
    width: 100%;
  }

  .program__detail .program__block {
    margin-top: 80px;
    padding-top: 80px;
  }

  .program__detail .program__point_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .program__detail .program__point_item + .program__point_item {
    margin-top: 60px;
  }

  .program__detail .program__point_img {
    width: 100%;
    max-width: inherit;
  }

  .program__detail .program__point_title {
    gap: 8px;
  }

  .program__detail .program__flow_lesson {
    grid-template-columns: 1fr;
    margin-bottom: 35px;
  }

  .program__detail .program__flow_lesson .title {
    font-size: 1.8rem;
    padding: 5px 10px;
  }

  .program__detail .program__flow_lesson .txt {
    font-size: 1.8rem;
    text-align: center;
    padding: 5px 10px;
  }

  .program__detail .program__flow_item {
    padding: 25px;
    gap: 10px 20px;
    grid-template-columns: 44px auto;
  }

  .program__detail .program__flow_item + .program__flow_item {
    margin-top: 0;
  }

  .program__detail .program__flow_item .num {
    width: 44px;
    height: 44px;
    grid-row: 1 / 2;
  }

  .program__detail .program__flow_item .txt {
    font-size: 1.2rem;
    grid-column: 1 / 3;
  }

  .program__detail .program__studio .c-studio__title {
    font-size: 3rem;
  }

  .program__detail .program__other_img {
    aspect-ratio: 336/224;
  }

  .program__detail .program__other_strength {
    font-size: 1.6rem;
  }

  .program__detail .program__other_title {
    margin: 25px 0 15px;
    font-size: 2.4rem;
  }

  .program__detail .program__other .swiper-bottom {
    gap: 0 50px;
  }

  .program__detail .program__other .swiper-button-prev,
  .program__detail .program__other .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .program__detail .program__other .swiper-button-prev::after,
  .program__detail .program__other .swiper-button-next::after {
    width: 20px;
    height: 20px;
  }

  .recruit .message__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .recruit .message__title {
    font-size: 2.2rem;
  }

  .recruit .message__img {
    width: 100%;
  }

  .recruit .point__wrapper {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    margin-top: 120px;
    padding: 0 20px;
  }

  .recruit .point__wrapper:nth-child(odd) .point__num {
    right: inherit;
    left: 0;
  }

  .recruit .point__num {
    top: -65px;
    font-size: 12rem;
  }

  .recruit .point__title {
    font-size: 2rem;
  }

  .recruit .point__img {
    width: 100%;
    max-width: inherit;
  }

  .recruit .point__about {
    margin-right: 20px;
    margin-left: 20px;
  }

  .recruit .point__about_title {
    margin-bottom: 40px;
    font-size: 2rem;
  }

  .recruit .point__about_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .recruit .point__about_video {
    width: 100%;
  }

  .recruit .personality__request {
    margin-top: 40px;
    padding: 30px 25px;
  }

  .recruit .personality__request_title {
    margin-bottom: 25px;
    font-size: 1.8rem;
  }

  .recruit .personality__request_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    gap: 25px;
  }

  .recruit .personality__request_item {
    width: 100%;
  }

  .recruit .requirements__button {
    margin: 40px auto 0;
  }

  .studio__archive .contents {
    padding: 70px 0 100px;
  }

  .studio__archive .contents .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .studio__archive .contents__category {
    position: relative;
    top: inherit;
    width: 100%;
  }

  .studio__archive .contents__wrap + .contents__wrap {
    margin-top: 80px;
  }

  .studio__archive .contents__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 0;
  }

  .studio__archive .contents__item_thumb {
    width: 100%;
  }

  .studio__detail article {
    padding: 70px 0 100px;
  }

  .studio__detail .studio__top {
    margin-bottom: 30px;
  }

  .studio__detail .studio__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .studio__detail .studio__img {
    width: 100%;
    max-width: inherit;
    padding-bottom: 13.5vw;
  }

  .studio__detail .studio__tag li {
    font-size: 1.2rem;
  }

  .studio__detail .studio__table th {
    width: 35%;
  }

  .studio__detail .studio__table td {
    width: 65%;
  }

  .studio__detail .studio__topics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 100px;
  }

  .studio__detail .studio__news {
    width: 100%;
  }

  .studio__detail .c-modal__contents {
    padding: 80px 20px 50px;
  }

  .studio__detail .c-modal__close {
    top: 10px;
    right: 10px;
  }

  .studio__detail .c-modal .route__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .studio__detail .c-modal .route__item + .route__item {
    margin-top: 30px;
  }

  .studio__detail .c-modal .route__thumb {
    padding: 15px 20px 0 20px;
  }

  .studio__detail .c-modal .route__thumb img {
    aspect-ratio: 255/170;
    width: 100%;
  }

  .studio__detail .c-modal .route__txt {
    padding: 0 20px;
  }

  .studio__detail .instructor__item a {
    padding: 0 20px;
  }

  .studio__detail .instructor__name {
    margin-top: 20px;
  }

  .studio__detail .js-studio-swiper-main {
    padding-bottom: 10px;
  }

  .studio__detail .js-studio-swiper-main .swiper-button {
    bottom: -33vw;
  }

  .studio__detail .js-studio-swiper-thumb {
    width: 100%;
  }

  .studio__detail .js-studio-campaign-swiper {
    padding: 0 20px;
  }

  .studio__detail .js-studio-campaign-swiper .swiper-bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    gap: 20px;
  }

  .studio__detail .js-instructor-swiper .swiper-bottom {
    gap: 0 50px;
  }

  .studio__detail .swiper-button-prev,
  .studio__detail .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .studio__detail .swiper-button-prev::after,
  .studio__detail .swiper-button-next::after {
    width: 20px;
    height: 20px;
  }

  .top {
    overflow: hidden;
  }

  .top .mv {
    min-height: inherit;
    max-height: 668px;
    padding: 100px 0;
    background: url(/img/top/sp/img-mv_bg.png) no-repeat center center/cover;
  }

  .top .mv .inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .top .mv__title {
    margin-right: -30px;
    padding-left: 100px;
    font-size: 3.8rem;
  }

  .top .mv__title_e {
    font-size: 13rem;
  }

  .top .mv__title_e::before,
  .top .mv__title_e::after {
    top: 10px;
    width: 30px;
    height: 22px;
  }

  .top .mv__title_e::before {
    left: -26px;
  }

  .top .mv__title_e::after {
    right: -23px;
  }

  .top .mv__txt {
    max-width: 340px;
    margin: 15px auto 0;
    padding: 0 40px;
    font-size: 1.8rem;
  }

  .top .mv__txt small {
    font-size: 1.2rem;
  }

  .top .mv__bg {
    -webkit-animation: infinity-scroll-left-100 20s linear infinite;
    bottom: 35%;
    animation: infinity-scroll-left-100 20s linear infinite;
  }

  .top .mv__bg img {
    width: 242px;
    padding-right: 30px;
  }

  .top .mv__img {
    -webkit-transform: translateX(-50%);
    left: 50%;
    min-width: 700px;
    transform: translateX(-50%);
  }

  .top .mv__banner {
    width: 117px;
    height: 117px;
    margin: 0 0 0 auto;
  }

  .top .mv__banner::after {
    top: 23px;
    right: 14px;
    width: 34px;
    height: 30px;
  }

  .top .mv__banner_inn {
    font-size: 1.2rem;
  }

  .top .mv__banner .num {
    font-size: 2.6rem;
  }

  .top .mv__banner .big {
    font-size: 1.5rem;
  }

  .top .campaign {
    margin-bottom: 100px;
    padding: 60px 0 100px;
  }

  .top .campaign::after {
    width: 100%;
    height: 332px;
  }

  .top .campaign__navigation {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .top .campaign .swiper-button-prev,
  .top .campaign .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .top .campaign .swiper-button-prev::after,
  .top .campaign .swiper-button-next::after {
    width: 20px;
    height: 20px;
  }

  .top .concept__title {
    margin-bottom: 30px;
  }

  .top .concept__title .ja {
    font-size: 2.4rem;
  }

  .top .parallax__img01 {
    width: 42.7vw;
    height: 29.6vw;
    margin-left: 10.7vw;
  }

  .top .parallax__img02 {
    width: 66.7vw;
    height: 88.8vw;
    margin-top: 18.7vw;
    margin-right: 5.3vw;
    margin-left: auto;
  }

  .top .parallax__img03 {
    width: 37.3vw;
    height: 42.7vw;
    margin-top: 13.3vw;
    margin-left: 0;
  }

  .top .parallax__img04 {
    width: 49.1vw;
    height: 56.8vw;
    margin-top: 21.3vw;
    margin-right: 0;
  }

  .top .feature {
    padding-top: 90px;
  }

  .top .feature__wrapper {
    height: auto;
  }

  .top .feature__img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .top .feature__list {
    width: 100%;
  }

  .top .feature__item {
    height: auto;
    padding: 0 20px 100px;
  }

  .top .feature__item .txt {
    max-width: inherit;
  }

  .top .feature__num {
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .top .program {
    padding: 90px 0 100px;
  }

  .top .program .c-bgTitle {
    top: 0;
  }

  .top .program__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top .program .swiper-slide a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top .program__img {
    width: 100%;
  }

  .top .program__img .c-btn03 {
    right: 10px;
    bottom: 10px;
  }

  .top .program__txt .num {
    margin-bottom: 10px;
  }

  .top .program__title .title {
    font-size: 2.4rem;
  }

  .top .program__strength {
    font-size: 1.6rem;
  }

  .top .program__category {
    margin-top: 30px;
  }

  .top .program__category li {
    font-size: 1rem;
  }

  .top .program .swiper-bottom {
    gap: 0 50px;
  }

  .top .program .swiper-button-prev,
  .top .program .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .top .program .swiper-button-prev::after,
  .top .program .swiper-button-next::after {
    width: 20px;
    height: 20px;
  }

  .top .news__side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .top .news__top {
    font-size: 1.2rem;
  }

  .top .studio {
    padding-bottom: 100px;
  }

  .top__bottom_video video {
    height: 220px;
  }

  .welcome .intro__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .welcome .intro__wrapper + .intro__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 40px;
  }

  .welcome .intro__title {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }

  .welcome .intro__title .sub {
    font-size: 1.4rem;
  }

  .welcome .intro__img {
    width: 100%;
  }

  .welcome .intro__bottom {
    margin-top: 40px;
    font-size: 3.5rem;
    text-align: left;
  }

  .welcome .intro__btn {
    margin: 40px auto 0;
  }

  .welcome .intro__recommend {
    margin-top: 40px;
    padding: 40px 30px;
  }

  .welcome .intro__recommend_title {
    margin-bottom: 25px;
    font-size: 1.8rem;
  }

  .welcome .intro__recommend_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    gap: 25px;
  }

  .welcome .intro__recommend_item {
    width: 100%;
  }

  .welcome .slider li {
    width: 288px;
  }

  .welcome .flow__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 25px;
    gap: 20px 15px;
  }

  .welcome .flow__item .num {
    width: 44px;
    height: 44px;
  }

  .welcome .flow__button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .welcome .flow__button a {
    width: 100%;
  }

  .welcome .flow__button .tel__num {
    font-size: 2rem;
  }

  /* .terms .c-supplementary__h2:not(:first-of-type) {
    margin-top: 80px;
  }

  .terms .c-supplementary__ol2 li:has(.c-supplementary__ol3) .c-supplementary__ol3:nth-of-type(1) {
    grid-column: 1 / 3;
  }

  .terms .c-supplementary__ol2 li:has(.c-supplementary__ol3) .c-supplementary__ol3:nth-of-type(2) {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  } */

  .terms .c-supplementary__h2 {
    margin-bottom: 20px;
  }
  
  .terms .terms__item + .terms__item {
    margin-top: 40px;
  }
  
  .terms .c-accordion__button {
    font-size: 1.8rem;
    padding: 14px 14px 14px 45px;
    /* padding: 14px; */
  }

  .terms .c-accordion__button::before {
    left: 15px;
  }

  .terms .c-accordion__button::after {
    left: 21px;
  }

  .terms .terms__contents {
    padding: 20px 10px 0;
  }

  .terms .terms__list a::after {
    width: 16px;
    height: 16px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-sidebar__info:hover span,
  .c-sidebar__info:hover::before {
    opacity: 0.6;
  }

  .c-sidebar__reserve:hover {
    background-color: transparent;
  }

  .c-sidebar__info_list a:hover .nav__inn_txt {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  .column a:hover .column__wrap .line {
    -webkit-animation: 0.8s cubic-bezier(0.4, 0.02, 0.56, 1) line_circle forwards;
    animation: 0.8s cubic-bezier(0.4, 0.02, 0.56, 1) line_circle forwards;
  }

  .column a:hover .column__wrap .line__delay {
    -webkit-animation: 0.8s cubic-bezier(0.4, 0.02, 0.56, 1) 0.65s line_circle_delay forwards;
    animation: 0.8s cubic-bezier(0.4, 0.02, 0.56, 1) 0.65s line_circle_delay forwards;
  }

  .c-pager .pager_item.prev a:hover,
  .c-pager .pager_item.next a:hover {
    background-color: transparent !important;
    opacity: 1;
  }

  .c-pager .pager_item a:hover {
    background-color: var(--bg-color);
  }

  .c-btn01__link:hover .c-btn01__txt .en {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  .c-btn01__link:hover .c-btn01__line::before {
    -webkit-animation: btnArrow var(--header-transition) forwards;
    animation: btnArrow var(--header-transition) forwards;
  }

  .c-btn02__link:hover .c-btn02__txt .en {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  .c-btn02__link:hover .c-btn02__line::before {
    -webkit-animation: btnArrow var(--header-transition) forwards;
    animation: btnArrow var(--header-transition) forwards;
  }

  a:has(.c-btn03):hover .c-btn03 {
    background-color: var(--base-color);
  }

  a:has(.c-btn03):hover .c-btn03::before {
    -webkit-animation: btnArrow var(--header-transition) forwards;
    background-color: #fff;
    animation: btnArrow var(--header-transition) forwards;
  }

  a:has(.c-btn03):hover .c-btn03__color {
    border: solid 1px transparent !important;
    background-color: transparent;
  }

  a:has(.c-btn03):hover .c-btn03__color::after {
    opacity: 1;
  }

  .c-studio__item a:hover {
    background-color: rgba(var(--base-color-rgb), 0.05);
  }

  .c-faq__button:hover {
    background-color: var(--bg-color);
  }

  .c-faq__answer_contents a:hover {
    text-decoration: none;
  }

  .c-form .privacyAgree a:hover {
    text-decoration: none;
  }

  .c-form__button_item.submit:hover {
    color: rgba(255, 255, 255, 0.6);
  }

  .c-form__button_item.cancel:hover {
    background-color: #DEDEDE;
  }

  .c-cta__button:hover span {
    opacity: 0.6;
  }

  .header__nav_list a:hover .nav__inn_txt {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  .header__btn_member:hover span,
  .header__btn_member:hover::before {
    opacity: 0.6;
  }

  .header__contents_nav .wrap a.member:hover {
    color: rgba(255, 255, 255, 0.6);
  }

  .header__contents_nav .wrap a.member:hover::before {
    opacity: 0.6;
  }

  .header__contents_nav .wrap a.reserve:hover {
    background-color: transparent;
  }

  .header__contents_nav .list a:hover .nav__inn_txt {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  .header__contents .sub_list a:hover {
    opacity: 0.6;
  }

  .header__contents .sns_list a:hover {
    opacity: 0.6;
  }

  .footer a:hover {
    opacity: 0.5;
  }

  .about .ems__reserve:hover {
    background-color: transparent;
  }

  .instructor__archive .contents__category_search:hover span {
    opacity: 0.6;
  }

  .instructor__archive .contents__main_item a:hover .contents__main_img img {
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
  }

  .instructor__archive .contents__main_item a:hover .contents__main_name {
    text-decoration-color: var(--base-color);
  }

  .instructor__detail .instructor__item a:hover .instructor__img img {
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
  }

  .instructor__detail .instructor__item a:hover .instructor__name {
    text-decoration-color: var(--base-color);
  }

  .news__archive .contents__category a:hover {
    background-color: var(--bg-color);
  }

  .news__archive .contents__article a:hover {
    background-color: var(--bg-color);
  }

  .news__detail .article__btn_item.list a:hover {
    opacity: 0.5;
  }

  .price .intro__button a.gradation:hover {
    background-color: transparent;
  }

  .program__archive .contents__category_list a:hover {
    background-color: var(--bg-color);
  }

  .program__archive .contents__article a:hover .contents__article_thumb img {
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
  }

  .program__archive .contents__article a:hover .contents__article_title {
    text-decoration-color: var(--base-color);
  }

  .program__detail .program__other .swiper-slide a:hover .program__other_img img {
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
  }

  .program__detail .program__other .swiper-slide a:hover .program__other_title {
    text-decoration-color: var(--base-color);
  }

  .recruit .requirements__button:hover {
    background-color: transparent;
  }

  .studio__archive .contents .c-accordion__contents a:hover {
    color: var(--point-color);
  }

  .studio__archive .contents__item a:hover {
    background-color: var(--bg-color);
  }

  .studio__archive .contents__item a:hover .c-btn02__line::before {
    -webkit-animation: btnArrow var(--header-transition) forwards;
    animation: btnArrow var(--header-transition) forwards;
  }

  .studio__detail .studio__button .map:hover span,
  .studio__detail .studio__button .map:hover::before {
    opacity: 0.6;
  }

  .studio__detail .studio__button .lesson:hover {
    background-color: transparent;
  }

  .studio__detail .studio__news_item a:hover {
    background-color: var(--bg-color);
  }

  .studio__detail .instructor__item a:hover .instructor__img img {
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
  }

  .studio__detail .instructor__item a:hover .instructor__name {
    text-decoration-color: var(--base-color);
  }

  .top .latest__news .swiper-button-prev:hover,
  .top .latest__news .swiper-button-next:hover {
    opacity: 0.2;
  }

  .top .campaign .swiper-slide a:hover {
    opacity: 0.6;
  }

  .top .program .swiper-slide a:hover .program__img img {
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
  }

  .top .program .swiper-slide a:hover .program__title .title {
    text-decoration-color: var(--base-color);
  }

  .top .news__side .category:hover {
    background-color: var(--bg-color);
  }

  .top .news__item a:hover {
    background-color: var(--bg-color);
  }

  .welcome .intro__btn:hover {
    background-color: transparent;
  }

  .welcome .flow__button a.reserve:hover::after {
    background-color: transparent;
  }

  .welcome .flow__button .normal:hover {
    color: rgba(255, 255, 255, 0.5);
  }

  .instructor__detail article .banner__btn .btn:not(.pink):hover {
    color: rgba(255, 255, 255, 0.5);
  }

  .instructor__detail article .banner__btn .btn.pink:hover {
    background-color: transparent;
  }
}
/*# sourceMappingURL=style.css.map */
