.movie, .movie--opening {
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.movie video, .movie--opening video {
  height: 150%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.movie--opening {
  z-index: 9999;
  opacity: 1;
  /* transition: opacity 1s ease; */
}

.movie--opening video {
  height: 100%;
  opacity: 1;
  /* transition: opacity 0.5s ease; */
}

@media screen and (max-width: 1024px) {
  .movie--opening video {
    width: 100%;
    height: auto;
  }
}

.movie--opening.is-ended video {
  opacity: 0;
}

.movie--opening.is-hidden {
  opacity: 0;
  transition: opacity 0.5s ease;
  transition-delay: 0.4s;
}

.movie_logo {
  width: 398px;
  max-width: 90%;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  z-index: 10000;
  opacity: 0;
  /* transition: opacity 0.4s ease; */
}

.movie_logo.is-centering {
  opacity: 1;
}

.movie_logo--symbol {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: relative;
  transition: top 1.2s ease, transform 1.2s ease;
  top: -40vh;
  top: -40dvh;
  transform: rotate(75deg);
}

.is-centering .movie_logo--symbol {
  top: 0;
  transform: rotate(135deg);
  transition: top 1.2s ease, transform 1.2s ease;
}

.is-textshowing .movie_logo--symbol {
  top: 0;
  transform: rotate(180deg);
  transition: top 0.4s ease, transform 0.4s ease;
}

.is-hidden .movie_logo--symbol {
  top: -40vh;
  top: -40dvh;
  transform: rotate(0deg) scale(0.6);
  opacity: 0;
  transition: top 1s ease, transform 1s ease, opacity 1.5s ease;
  transition-delay: 0.4s;
}

.movie_logo--text {
  display: block;
  width: 100%;
  position: relative;
  opacity: 0;
  top: 0;
  transition: opacity 0.4s ease, top 0.4s ease;
}

.is-textshowing .movie_logo--text {
  opacity: 1;
  top: 27px;
  transition: opacity 0.4s ease, top 0.4s ease;
}

.is-hidden .movie_logo--text {
  opacity: 0;
  transition: opacity 1s ease;
  transition-delay: 0.4s;
}

.movie_skip {
  display: flex;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

@media screen and (max-width: 1024px) {
  .movie_skip {
    font-size: min(4.07125vw, 16px);
  }
}

.movie_skip.is-hidden {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.movie_skip::before, .movie_skip::after {
  display: inline;
  content: "/";
  opacity: 0;
  transition: opacity ease 0.2s;
}

@media screen and (max-width: 1024px) {
  .movie_skip::before, .movie_skip::after {
    opacity: 1;
  }
}

.movie_skip::before {
  order: 1;
}

.movie_skip::after {
  order: 2;
}

@media (hover: hover) {
  .movie_skip::before {
    transition-delay: 0.2s;
  }
  .movie_skip::after {
    transition-delay: 0s;
  }
  .movie_skip:hover::before, .movie_skip:hover::after {
    opacity: 1;
  }
  .movie_skip:hover::before {
    transition-delay: 0s;
  }
  .movie_skip:hover::after {
    transition-delay: 0.2s;
  }
}

.main_inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: hidden;
  overscroll-behavior: none;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  scroll-behavior: smooth;
}

.main_innerForward,
.main_innerCentered,
.main_innerBackward {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: none;
  scroll-snap-align: start;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: opacity;
  scroll-snap-type: y mandatory;
  scroll-snap-stop: always;
  scroll-behavior: smooth;
}

.main_innerForward::before,
.main_innerCentered::before,
.main_innerBackward::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
  will-change: opacity;
}

.main_innerForward.is-first::before,
.main_innerCentered.is-first::before,
.main_innerBackward.is-first::before {
  opacity: 0;
}

.main_innerForward.is-main,
.main_innerCentered.is-main,
.main_innerBackward.is-main {
  opacity: 1;
}

.main_innerForward > section,
.main_innerForward > footer,
.main_innerCentered > section,
.main_innerCentered > footer,
.main_innerBackward > section,
.main_innerBackward > footer {
  scroll-snap-align: start;
}

@media screen and (max-width: 1024px) {
  .main_innerForward > section:has(.subsection),
  .main_innerCentered > section:has(.subsection),
  .main_innerBackward > section:has(.subsection) {
    scroll-snap-align: none;
  }
  .main_innerForward section.subsection,
  .main_innerCentered section.subsection,
  .main_innerBackward section.subsection {
    scroll-snap-align: start;
  }
}

.main_innerPager {
  display: flex;
  align-items: center;
  position: fixed;
  left: 2.5%;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 999;
}

.pager_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pager_list > li {
  width: 12px;
  height: 12px;
}

@media screen and (max-width: 1024px) {
  .pager_list > li {
    width: 8px;
    height: 8px;
  }
}

.pager_list > li a, .pager_list > li button {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  border-radius: 50%;
}

@media screen and (max-width: 1024px) {
  .pager_list > li a, .pager_list > li button {
    border-width: 1px;
  }
}

.pager_list > li.is-current a, .pager_list > li.is-current button {
  background: #fff;
}

.kv {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  color: #fff;
  position: relative;
}

.kv_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 7.5%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .kv_inner {
    flex-direction: column;
    padding: 0 7.5% 0;
  }
}

@media screen and (orientation: landscape) {
  .kv_inner {
    flex-direction: row;
  }
}

.kv_title {
  margin-right: auto;
  font-size: 128px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1024px) {
  .kv_title {
    font-size: min(18.32061vw, 72px);
  }
}

.kv_arrow {
  margin-left: 40px;
  width: 160px;
  height: 160px;
}

@media screen and (max-width: 1024px) {
  .kv_arrow {
    margin: 40px 0 0 auto;
    width: 64px;
    height: 64px;
  }
}

.kv_arrow img, .kv_arrow svg {
  width: 100%;
  height: 100%;
}

@media (hover: hover) {
  .kv_arrow {
    transition: opacity 0.5s ease;
  }
  .kv_arrow:hover {
    opacity: 0.5;
  }
}

.section_bg {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.section_bg.is-first::after {
  opacity: 0;
}

.section_bg.bg-fit {
  background-image: url(../img/bg_fit.jpg);
  background-image: image-set(url(../img/bg_fit.webp) type("image/webp"), url(../img/bg_fit.jpg) type("image/jpeg"));
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .section_bg.bg-fit {
    background-image: url(../img/bg_fit-sp.jpg);
    background-image: image-set(url(../img/bg_fit-sp.webp) type("image/webp"), url(../img/bg_fit-sp.jpg) type("image/jpeg"));
    background-position: top center;
    background-size: 100%;
  }
}

.section_bg.bg-sound {
  background-image: url(../img/bg_sound.jpg);
  background-image: image-set(url(../img/bg_sound.webp) type("image/webp"), url(../img/bg_sound.jpg) type("image/jpeg"));
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .section_bg.bg-sound {
    background-image: url(../img/bg_sound-sp.jpg);
    background-image: image-set(url(../img/bg_sound-sp.webp) type("image/webp"), url(../img/bg_sound-sp.jpg) type("image/jpeg"));
    background-position: top center;
    background-size: 100%;
  }
}

.section, .section--kv {
  position: relative;
  z-index: 1;
  color: #fff;
}

.section--kv {
  background: none;
}

.section_inner, .section_inner--center {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

@media screen and (min-width: 1025px) {
  .section_inner, .section_inner--center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 130px 40px;
  }
}

@media screen and (max-width: 1024px) {
  .section_inner, .section_inner--center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 7.5% 160px;
  }
}

.section_inner--center {
  align-items: center;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .section_inner--center {
    flex-direction: column;
    padding: 80px 7.5% 80px;
  }
}

@media screen and (max-width: 1024px) {
  .section_inner--center {
    padding: 120px 7.5% 160px 7.5%;
  }
}

.section_inner.bg-fit, .bg-fit.section_inner--center {
  background-image: url(../img/bg_fit.jpg);
  background-image: image-set(url(../img/bg_fit.webp) type("image/webp"), url(../img/bg_fit.jpg) type("image/jpeg"));
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .section_inner.bg-fit, .bg-fit.section_inner--center {
    background-image: url(../img/bg_fit-sp.jpg);
    background-image: image-set(url(../img/bg_fit-sp.webp) type("image/webp"), url(../img/bg_fit-sp.jpg) type("image/jpeg"));
    background-position: top center;
    background-size: 100%;
  }
}

.section_inner.bg-sound, .bg-sound.section_inner--center {
  background-image: url(../img/bg_sound.jpg);
  background-image: image-set(url(../img/bg_sound.webp) type("image/webp"), url(../img/bg_sound.jpg) type("image/jpeg"));
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .section_inner.bg-sound, .bg-sound.section_inner--center {
    background-image: url(../img/bg_sound-sp.jpg);
    background-image: image-set(url(../img/bg_sound-sp.webp) type("image/webp"), url(../img/bg_sound-sp.jpg) type("image/jpeg"));
    background-position: top center;
    background-size: 100%;
  }
}

.section_inner--fit {
  padding: 0;
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .section_inner--fit {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}

.section_inner--fit .subsection {
  width: 100vw;
}

@media screen and (min-width: 1025px) {
  .section_inner--fit .subsection {
    margin: 0;
    width: 50vw;
  }
}

.section_inner--instructors {
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

.section_innerCont {
  margin-right: auto;
}

.section_title {
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .section_title {
    margin-bottom: 20px;
  }
}

.section_titleEn {
  font-size: 128px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1024px) {
  .section_titleEn {
    font-size: min(18.32061vw, 72px);
    letter-spacing: 0;
  }
}

.section_titleJa {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .section_titleJa {
    font-size: min(8.14249vw, 32px);
  }
}

.section_title--introEn {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1024px) {
  .section_title--introEn {
    font-size: min(6.10687vw, 24px);
  }
}

.section_title--introJa, .section_title--copyJa {
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1024px) {
  .section_title--introJa, .section_title--copyJa {
    font-size: min(12.21374vw, 48px);
    letter-spacing: 0.06em;
  }
}

@media screen and (max-width: 1024px) {
  .section_title--copyJa {
    min-width: 7em;
    margin-right: -7.5vw;
    text-align: left;
    transform: translateX(2.5vw);
  }
}

@media screen and (min-width: 768px) {
  .section_title--copyJa {
    margin-right: 0;
    text-align: center;
    transform: none;
  }
}

.section_bgimage, .section_bgimage--top, .section_bgimage--btm {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .section_bgimage, .section_bgimage--top, .section_bgimage--btm {
    margin: 0;
    width: 100%;
  }
}

.section_bgimage img, .section_bgimage--top img, .section_bgimage--btm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section_bgimage--top img {
  object-position: top center;
}

.section_bgimage--btm img {
  object-position: bottom center;
}

.section_contText {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .section_contText {
    font-size: min(4.07125vw, 16px);
  }
}

@media screen and (min-width: 1025px) {
  .section_contText {
    margin: 0 auto;
  }
}

.section_contText--intro, .section_contText--copy {
  font-size: 16px;
  font-weight: 300;
  line-height: 3;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .section_contText--intro, .section_contText--copy {
    margin: 0 auto;
    max-width: 40em;
    font-size: min(4.07125vw, 16px);
    line-height: 2;
  }
}

@media screen and (max-width: 1024px) {
  .section_contText--copy {
    text-align: left;
  }
}

.section_arrow, .section_arrow--right {
  flex-shrink: 0;
  display: block;
  margin-left: 40px;
  width: 160px;
  height: 160px;
}

@media screen and (max-width: 1024px) {
  .section_arrow, .section_arrow--right {
    margin: -32px 0 0 auto;
    width: 64px;
    height: 64px;
  }
}

.section_arrow img, .section_arrow--right img, .section_arrow svg, .section_arrow--right svg {
  width: 100%;
  height: 100%;
}

@media (hover: hover) {
  .section_arrow, .section_arrow--right {
    transition: opacity 0.5s ease;
  }
  .section_arrow:hover, .section_arrow--right:hover {
    opacity: 0.5;
  }
}

.section_arrow--right {
  margin-left: auto;
  position: relative;
}

.section_head, .section_head--left {
  margin-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .section_head, .section_head--left {
    margin-bottom: 40px;
  }
}

.section_headTitle--En {
  margin: 0 -0.5em 20px;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1024px) {
  .section_headTitle--En {
    margin-bottom: 15px;
    font-size: min(11.19593vw, 44px);
    letter-spacing: 0.06em;
  }
  .section_headTitle--En.small {
    letter-spacing:0;
    font-size: min(10vw, 40px);
  }
}

.section_headTitle--Ja {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .section_headTitle--Ja {
    font-size: min(6.10687vw, 24px);
    letter-spacing: 0.04em;
  }
}

.section_head--left {
  text-align: left;
}

@media screen and (min-width: 1025px) {
  .section_head--left {
    margin-bottom: 0;
  }
}

.section_head--left .subsection_headTitle--En {
  margin-left: 0;
  margin-right: 0;
}

.section_headText {
  margin: 40px auto 0;
  max-width: 800px;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .section_headText {
    margin-top: 40px;
    font-size: min(3.30789vw, 13px);
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

.subsection {
  color: #fff;
}

.subsection_inner {
  position: relative;
  padding: 160px 7.5vw 80px;
}

@media screen and (max-width: 1024px) {
  .subsection_inner {
    padding: 120px 7.5vw 160px;
  }
}

.subsection_inner--fit {
  padding: 160px 7.5vw 40px;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .subsection_inner--fit {
    padding: 120px 7.5vw 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.subsection_innerFull {
  margin: 0 -7.5vw;
}

@media screen and (max-width: 1024px) {
  .subsection_innerFull {
    margin: 0 -7.5vw;
  }
}

.subsection_bg {
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.subsection_bg::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1024px) {
  .subsection_bg {
    background-size: 100% auto;
  }
}

.subsection_bg.bg-studios {
  background-image: url(../img/fit/studios_bg.jpg);
  background-image: image-set(url(../img/fit/studios_bg.webp) type("image/webp"), url(../img/fit/studios_bg.jpg) type("image/jpeg"));
}

@media screen and (max-width: 1024px) {
  .subsection_bg.bg-studios {
    background-image: url(../img/fit/studios_bg-sp.jpg);
    background-image: image-set(url(../img/fit/studios_bg-sp.webp) type("image/webp"), url(../img/fit/studios_bg-sp.jpg) type("image/jpeg"));
    background-position: center;
  }
}

.subsection_bg.bg-anywhere {
  background-image: url(../img/fit/anywhere_bg.jpg);
  background-image: image-set(url(../img/fit/anywhere_bg.webp) type("image/webp"), url(../img/fit/anywhere_bg.jpg) type("image/jpeg"));
}

@media screen and (max-width: 1024px) {
  .subsection_bg.bg-anywhere {
    background-image: url(../img/fit/anywhere_bg-sp.jpg);
    background-image: image-set(url(../img/fit/anywhere_bg-sp.webp) type("image/webp"), url(../img/fit/anywhere_bg-sp.jpg) type("image/jpeg"));
    background-position: center;
  }
}

.subsection_cont {
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .subsection_cont {
    max-width: 100%;
  }
}

.subsection_contTitle {
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1875;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1024px) {
  .subsection_contTitle {
    margin-bottom: 16px;
    font-size: min(10.17812vw, 40px);
  }
}

.subsection_contText {
  margin-bottom: 80px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .subsection_contText {
    margin-bottom: 20px;
    font-size: min(3.30789vw, 13px);
  }
}

.subsection_contList > li {
  width: 240px;
  max-width: 100%;
}

.subsection_contList > li + li {
  margin-top: 12px;
}

.subsection_head, .subsection_head--left {
  margin-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .subsection_head, .subsection_head--left {
    margin-bottom: 40px;
  }
}

.subsection_headTitle--En {
  margin: 0 -0.5em 20px;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1024px) {
  .subsection_headTitle--En {
    margin-bottom: 15px;
    font-size: min(10.17812vw, 40px);
    letter-spacing: 0.06em;
  }
}

.subsection_headTitle--Ja {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .subsection_headTitle--Ja {
    font-size: min(6.10687vw, 24px);
    letter-spacing: 0.04em;
  }
}

.subsection_head--left {
  text-align: left;
}

@media screen and (min-width: 1025px) {
  .subsection_head--left {
    margin-bottom: 0;
  }
}

.subsection_head--left .subsection_headTitle--En {
  margin-left: 0;
  margin-right: 0;
}

.subsection_headText {
  margin: 40px auto 0;
  max-width: 800px;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .subsection_headText {
    margin-top: 40px;
    font-size: min(3.30789vw, 13px);
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

.section_more {
  margin: 80px auto 0;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .section_more {
    width: 1000px;
    max-width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .section_more {
    margin-top: 50px;
  }
}

.section_head + .section_more, .section_head--left + .section_more {
  margin-top: 0;
}

.section_moreLink {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0.08em;
  border: 1px solid #fff;
  border-radius: 9999px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .section_moreLink {
    font-size: min(5.08906vw, 20px);
  }
}

@media (hover: hover) {
  .section_moreLink {
    transition: opacity 0.5s ease;
  }
  .section_moreLink:hover {
    opacity: 0.5;
  }
}

.section_moreLink::before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  transform: rotate(45deg);
}

.section_moreLink::after {
  display: block;
  content: "";
  margin-left: 50px;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.section_banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 1025px) {
  .section_banner {
    max-width: calc(1200 / 1420 * 100%);
  }
}

.section_banner picture > img {
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .section_banner picture > img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
}

@media (hover: hover) {
  .section_banner {
    transition: opacity .5s ease;
  }
  .section_banner:hover {
    opacity: 0.8;
  }
}

.section_bannerLead {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.167;
  /* text-align: center; */
  letter-spacing: 0.08em;
}

.section_bannerTitle {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  /* text-align: center; */
  letter-spacing: 0.1em;
}

.topmenu {
  color: #fff;
  position: relative;
}

.topmenu_ubar {
  display: block;
  width: 100%;
  height: 4px;
  background: #fff;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.topmenu_ubar.is-active {
  transition: width 0.2s ease, left 0.2s ease;
}

.topmenu_list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 128px;
}

@media screen and (max-width: 1024px) {
  .topmenu_list {
    column-gap: 32px;
    justify-content: space-between;
  }
}

.topmenu_list > li {
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .topmenu_list > li {
    font-size: min(4.07125vw, 16px);
    min-width: 4em;
  }
}

.topmenu_btn {
  appearance: none;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding-left: 0.04em;
  position: relative;
}

.topmenu_btn::before, .topmenu_btn::after {
  display: block;
  content: "";
  width: 1em;
  height: 100%;
  position: absolute;
  top: 0;
}

.topmenu_btn::before {
  left: -1em;
}

.topmenu_btn::after {
  right: -1em;
}


.instructors {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

.instructors_bg {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.instructors_bg::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}

.instructors_bg img {
  width: 120%;
  max-width: none;
  height: auto;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px) brightness(0.5);
}

@media screen and (max-width: 1024px) {
  .instructors_bg img {
    width: 120%;
    height: 120%;
  }
}

.instructors_inner {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 7.5vw 5vw;
  position: relative;
}

@media screen and (min-width: 1025px) {
  .instructors_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1024px) {
  .instructors_inner {
    padding: 120px 7.5vw 160px;
    height: auto;
  }
}

@media screen and (min-width: 1025px) {
  .instructors_head {
    margin: 40px 40px 40px 0;
  }
}

.instructors_container {
  position: relative;
}

@media screen and (min-width: 1025px) {
  .instructors_container {
    max-width: 800px;
  }
}

.instructor {
  width: 100%;
  background: #000;
  color: #fff;
  position: relative;
}

@media screen and (min-width: 1025px) {
  .instructor {
    display: flex;
  }
}

@media screen and (max-width: 1024px) {
  .instructor {
    max-width: 400px;
  }
}

.instructor_pic {
  position: relative;
  width: 100%;
  max-width: 400px;
}

@media screen and (min-width: 1025px) {
  .instructor_pic {
    flex-shrink: 0;
  }
}

@media screen and (max-width: 1024px) {
  .instructor_pic {
    width: 100%;
  }
}

.instructor_pic::before {
  display: block;
  content: "";
  padding-bottom: 153.626%;
}

.instructor_picImage {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.instructor_picImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  vertical-align: bottom;
}

.instructor_info {
  position: relative;
}

@media screen and (min-width: 1025px) {
  .instructor_info {
    flex-grow: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
  }
}

@media screen and (max-width: 1024px) {
  .instructor_info {
    padding: 20px 20px 40px 20px;
  }
}

.instructor_infoName {
  margin-bottom: 60px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1875;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1024px) {
  .instructor_infoName {
    margin-bottom: 20px;
    font-size: min(10.17812vw, 40px);
  }
}

.instructor_infoText {
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .instructor_infoText {
    font-size: min(3.81679vw, 15px);
    font-weight: 300;
  }
}

.instructor_infoText + .instructor_infoText {
  margin-top: 1em;
}

.instructor_infoArrow {
  display: block;
  margin-left: auto;
  width: 160px;
  height: 160px;
  position: absolute;
}

@media screen and (min-width: 1025px) {
  .instructor_infoArrow {
    right: 50px;
    bottom: 130px;
  }
}

@media screen and (max-width: 1024px) {
  .instructor_infoArrow {
    margin: 40px 0 0 auto;
    width: 64px;
    height: 64px;
    top: 0;
    right: 0;
  }
}

.instructor_infoArrow img, .instructor_infoArrow svg {
  width: 100%;
  height: 100%;
}

@media (hover: hover) {
  .instructor_infoArrow {
    transition: opacity 0.5s ease;
  }
  .instructor_infoArrow:hover {
    opacity: 0.5;
  }
}

.instructor_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  position: absolute;
  bottom: -24px;
  right: 50%;
  transform: translateX(50%);
  z-index: 1;
}

@media screen and (min-width: 1025px) {
  .instructor_bar {
    width: 136px;
    bottom: 48px;
    right: 132px;
    transform: none;
  }
}

.instructor_barButton, .instructor_barButton--prev, .instructor_barButton--next, .features_barButton--prev, .features_barButton--next {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  position: relative;
}

.instructor_barButton::after, .instructor_barButton--prev::after, .instructor_barButton--next::after, .features_barButton--prev::after, .features_barButton--next::after {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.instructor_barButton--prev {
  margin-right: 20px;
}

.instructor_barButton--prev::after {
  left: 6px;
  transform: rotate(-135deg);
}

.instructor_barButton--next {
  margin-left: 20px;
}

.instructor_barButton--next::after {
  right: 6px;
  transform: rotate(45deg);
}

.features {
  position: relative;
  margin: 0 auto;
  width: 1000px;
  max-width: 100%;
}

.features_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 32px auto 32px;
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .features_bar {
    margin-bottom: 0;
    max-width: 524px;
  }
}

.features_barProgress {
  flex-grow: 1;
  appearance: none;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  block-size: 2px;
}

.features_barProgress > div {
  transition: width 0.25s ease;
}

.features_bar ::-webkit-progress-bar {
  background-color: rgba(255, 255, 255, 0.2);
}

.features_bar ::-webkit-progress-value {
  background-color: #FFF;
  transition: inline-size 0.25s ease;
}

.features_bar ::-moz-progress-bar {
  background-color: #FFF;
}

.features_barButton {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  position: relative;
}

.features_barButton::after {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.features_barButton--prev {
  margin-right: 32px;
}

.features_barButton--prev::after {
  left: 6px;
  transform: rotate(-135deg);
}

.features_barButton--next {
  margin-left: 32px;
}

.features_barButton--next::after {
  right: 6px;
  transform: rotate(45deg);
}

.features_caption {
  min-height: 1.167em;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.167;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 1025px) {
  .features_caption {
    font-size: 24px;
  }
}

.playlists {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .playlists {
    width: 80%;
    margin: 0 auto;
  }
}
.playlists_inner {
  padding: 0 7.5vw;
}

.playlist {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .playlist {
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  .playlist_list {
    gap: 0;
  }
}

.playlist_list > li {
  width: 380px;
}

@media screen and (max-width: 1024px) {
  .playlist_list > li {
    width: 380px;
    padding: 0 10px;
    box-sizing: border-box;
  }
}

.playlist_link {
  display: block;
}
