@charset "UTF-8";

/*
Theme Name: danceClub
Description: Z☆N daceclub website
Version: 1.0.0
Tags: Web
*/
/* ===========================================
 * COMMON
 * ======================================== */
/* definition: color */
/* ======================================== */
/* definition: default-style */
/* ======================================== */
html {
  scrollbar-gutter: stable;
}

body {
  margin: 0;
}

body.is-fixed {
  overflow: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #333;
  font-weight: 400;
}

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

a:hover {
  color: #333;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  margin: 12px 0 0;
}

.sp-visible {
  display: block;
}

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

.sp-tab-visible {
  display: block;
}

@media (min-width: 1200px) {
  .sp-tab-visible {
    display: none;
  }
}

.tab-pc-visible {
  display: none;
}

@media (min-width: 768px) {
  .tab-pc-visible {
    display: block;
  }
}

.pc-visible {
  display: none;
}

@media (min-width: 1200px) {
  .pc-visible {
    display: block;
  }
}

/* definition: animation */
/* ======================================== */
@keyframes flow-text {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes summary-expansion {
  0% {
    height: 0;
  }

  100% {
    height: auto;
  }
}

/* header */
/* ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  background-color: transparent;
  transition: 0.5s;
}

.header.white {
  background-color: #FFFFFF;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 15px 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  padding: 16px 14px;
  height: 50px;
  border-radius: 9999px;
  background-color: #FFFFFF;
}

.header-logo__text {
  color: #4D9EE8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 100%;
  transition: 0.2s;
}

.header-menu {
  display: none;
}

.header-cta {
  display: none;
}

.header-sp-button {
  position: relative;
  width: 45px;
  height: 45px;
  padding: 22px 9px;
  border-radius: 27.5px;
  background-color: #4D9EE8;
  z-index: 1001;
}

.header-sp-button.clicked .header-sp-button__line--top {
  top: 21.37px;
  left: 8.63px;
  transform: rotate(30deg);
}

.header-sp-button.clicked .header-sp-button__line--bottom {
  top: 21.37px;
  left: 8.63px;
  transform: rotate(-30deg);
}

.header-sp-button__line {
  position: absolute;
  left: 8.5px;
  width: 28px;
  height: 2px;
  border-radius: 3px;
  background-color: #FFFFFF;
  transition: 0.5s;
}

.header-sp-button__line--top {
  top: 17.5px;
}

.header-sp-button__line--bottom {
  top: 25.5px;
}

@media (min-width: 1200px) {
  .header__inner {
    height: 99px;
    padding: 14px 60px;
  }

  .header-logo {
    padding: 12px 28px;
    height: 71px;
  }

  .header-logo__text {
    font-size: 26px;
  }

  .header-logo__text:hover {
    color: #4D9EE8;
    opacity: 0.6;
  }

  .header-menu {
    display: flex;
    gap: 28px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px 30px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .header-menu__list {
    display: flex;
    gap: 22px;
  }

  .header-menu__item-link {
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  .header-cta {
    display: block;
    position: relative;
  }

  .header-cta:hover .header-cta__inner {
    background-color: #FF751F;
  }

  .header-cta:hover .header-cta__icon {
    color: #FF751F;
  }

  .header-cta:hover .header-submenu {
    opacity: 1;
    visibility: visible;
  }

  .header-cta__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 14px 7px 34px;
    border-radius: 9999px;
    background-color: #FFBE0A;
    transition: 0.2s;
  }

  .header-cta__text {
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 100%;
  }

  .header-cta__icon {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background-color: #FFFFFF;
    color: #FFBE0A;
    font-size: 20px;
    text-align: center;
    transition: 0.2s;
  }

  .header-sp-button {
    display: none;
  }

  .header-submenu {
    position: absolute;
    bottom: -24px;
    left: 50%;
    width: 267px;
    padding: 16px;
    border-radius: 8px;
    background-color: #FFB301;
    transform: translate(-50%, 100%);
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
  }

  .header-submenu::before {
    position: absolute;
    width: 35px;
    height: 35px;
    left: 50%;
    top: -14px;
    transform: translateX(-50%);
    background-image: url("img/header-submenu-hukidashi.webp");
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
  }

  .header-submenu__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .header-submenu__item {
    display: flex;
    border-radius: 4px;
    background-color: #FFFFFF;
    text-align: center;
  }

  .header-submenu__link {
    width: 100%;
    padding: 8px 20px;
    color: #0B1E36;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 160%;
    opacity: 1;
    transition: 0.3s;
  }

  .header-submenu__link:hover {
    opacity: 0.7;
  }
}

/* footer */
/* ======================================== */
.footer {
  background-color: #102639;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 120px 20px 100px;
}

.footer-menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-menu__item-link {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 100%;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.footer .footer-copyright {
  text-align: center;
}

.footer .footer-copyright__text {
  color: #FDFDFD;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 14px;
}

@media (min-width: 1200px) {
  .footer__inner {
    gap: 60px;
    padding: 200px 0 18px;
  }

  .footer-menu__list {
    justify-content: center;
  }

  .footer-menu__item-link {
    font-size: 18px;
  }

  .footer-menu__item-link:hover {
    color: #FFFFFF;
    opacity: 0.75;
  }
}

/* sp-menu */
/* ======================================== */
.sp-menu.clicked .sp-menu__inner {
  left: 0;
}

.sp-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  padding: 80px 0 0;
  z-index: 1000;
  background-color: #FFFFFF;
  transition: 0.5s;
}

.sp-menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sp-menu__item {
  text-align: center;
}

.sp-menu__link {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 100%;
}

.sp-menu-contact {
  display: flex;
  position: relative;
  justify-content: center;
}

.sp-menu-contact:hover .sp-menu-submenu {
  opacity: 1;
  visibility: visible;
}

.sp-menu-contact__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 14px 7px 34px;
  border-radius: 9999px;
  background-color: #FFB301;
}

.sp-menu-contact__text {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 100%;
}

.sp-menu-contact__icon {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background-color: #FFFFFF;
  color: #FFB301;
  font-size: 20px;
  text-align: center;
}

.sp-menu-submenu {
  position: absolute;
  bottom: -24px;
  left: 50%;
  width: 267px;
  padding: 16px;
  border-radius: 8px;
  background-color: #FFB301;
  transform: translate(-50%, 100%);
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}

.sp-menu-submenu::before {
  position: absolute;
  width: 35px;
  height: 35px;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  background-image: url("img/header-submenu-hukidashi.webp");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.sp-menu-submenu__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-menu-submenu__item {
  display: flex;
  border-radius: 4px;
  background-color: #FFFFFF;
  text-align: center;
}

.sp-menu-submenu__link {
  width: 100%;
  padding: 8px 20px;
  color: #0B1E36;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 160%;
  opacity: 1;
  transition: 0.3s;
}

.sp-menu-lesson {
  display: flex;
  justify-content: center;
}

.sp-menu-lesson__link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 16px 13px 18px;
  border-radius: 9999px;
  background-color: #FF751F;
}

.sp-menu-lesson__text {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 100%;
}

.sp-menu-lesson__arrow {
  width: 20px;
  height: 18px;
}

.sp-menu-lesson__arrow-path {
  fill: #FFFFFF;
}

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

/* cta-lesson */
/* ======================================== */
.cta-lesson {
  width: 335px;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.cta-lesson.slideIn {
  translate: 0 0;
  opacity: 1;
}

.cta-lesson__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 14px 24px;
  border-radius: 16px;
  background-color: #FF751F;
  cursor: pointer;
  transition: 0.2s;
}

.cta-lesson__lead {
  display: inline-block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 180%;
  text-align: center;
}

.cta-lesson__lead::before {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 1.57px;
  height: 22px;
  transform: rotate(-20deg) translateY(-50%);
  background-color: #FFFFFF;
  content: "";
}

.cta-lesson__lead::after {
  position: absolute;
  top: 50%;
  right: -4px;
  width: 1.57px;
  height: 22px;
  transform: rotate(20deg) translateY(-50%);
  background-color: #FFFFFF;
  content: "";
}

.cta-lesson__link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 16px 20px 18px;
  border-radius: 9999px;
  background-color: #FFFFFF;
}

.cta-lesson__link--particle {
  font-size: 14px;
}

.cta-lesson__link-text {
  color: #2F2F2D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 100%;
  white-space: nowrap;
}

.cta-lesson__link-arrow {
  width: 20px;
  height: 18px;
}

.cta-lesson__link-arrow-path {
  fill: #FF751F;
  transition: 0.2s;
}

@media (min-width: 1200px) {
  .cta-lesson {
    width: 578px;
  }

  .cta-lesson__inner {
    gap: 8px;
    padding: 18px 38px 28px 38px;
  }

  .cta-lesson__inner:hover {
    background-color: #FFBE0A;
  }

  .cta-lesson__inner:hover .cta-lesson__link-arrow-path {
    fill: #FFBE0A;
  }

  .cta-lesson__lead {
    font-size: 17px;
  }

  .cta-lesson__link {
    gap: 22px;
  }

  .cta-lesson__link--particle {
    font-size: 24px;
  }

  .cta-lesson__link-text {
    font-size: 32px;
  }

  .cta-lesson__link-arrow {
    width: 22px;
    height: 19px;
  }
}

/* cta-lower */
/* ======================================== */
.cta-lower {
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.cta-lower.slideIn {
  translate: 0 0;
  opacity: 1;
}

.cta-lower__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-lower__link {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 20px 12px 60px;
  border: 4px solid #4D9EE8;
  border-radius: 16px;
  background-color: #FFFFFF;
  transition: 0.2s;
}

.cta-lower__link--sp-wide {
  gap: 8px;
  padding: 12px 9px 12px 20px;
}

.cta-lower__text {
  color: #4D9EE8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 100%;
  transition: 0.2s;
  white-space: nowrap;
}

.cta-lower__arrow {
  width: 34px;
  height: 34px;
  color: #4D9EE8;
}

@media (min-width: 1200px) {
  .cta-lower__inner {
    flex-direction: row;
    gap: 80px;
    align-items: normal;
    justify-content: center;
  }

  .cta-lower__link--sp-wide {
    gap: 30px;
    padding: 12px 20px 12px 60px;
  }

  .cta-lower__link:hover {
    background-color: #4D9EE8;
  }

  .cta-lower__link:hover .cta-lower__text {
    color: #FFFFFF;
  }
}

/* cta-fixed */
/* ======================================== */
.cta-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  transition: all 0.5s;
}

.cta-fixed.clicked {
  right: -271px;
}

.cta-fixed__image {
  display: none;
}

.cta-fixed__inner {
  display: flex;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 16px 0 0 16px;
  background-color: #FF751F;
  cursor: pointer;
  transition: 0.2s;
}

.cta-fixed__button {
  position: relative;
  width: 12px;
}

.cta-fixed__button::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  content: url("img/cta-fixed-close.webp");
}

.cta-fixed__button.clicked {
  width: 28px;
}

.cta-fixed__button.clicked::after {
  content: url("img/cta-fixed-open.webp");
}

.cta-fixed__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta-fixed__lead {
  display: inline-block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
}

.cta-fixed__lead::before {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 1px;
  height: 11.17px;
  transform: rotate(-20deg) translateY(-50%);
  background-color: #FFFFFF;
  content: "";
}

.cta-fixed__lead::after {
  position: absolute;
  top: 50%;
  right: -4px;
  width: 1px;
  height: 11.17px;
  transform: rotate(20deg) translateY(-50%);
  background-color: #FFFFFF;
  content: "";
}

.cta-fixed__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px 8px 18px;
  border-radius: 9999px;
  background-color: #FFFFFF;
}

.cta-fixed__link-lesson {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.cta-fixed__link-particle {
  font-size: 14px;
}

.cta-fixed__link-text {
  display: flex;
  align-items: end;
  color: #2F2F2D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}

.cta-fixed__link-arrow {
  width: 16px;
  height: 14px;
}

.cta-fixed__link-arrow-path {
  fill: #FF751F;
  transition: 0.2s;
}

@media (min-width: 1200px) {
  .cta-fixed {
    bottom: 40px;
  }

  .cta-fixed.clicked {
    right: -344px;
  }

  .cta-fixed__image {
    display: block;
    position: absolute;
    top: -115px;
    right: 30px;
  }

  .cta-fixed__inner:hover {
    background-color: #FFBE0A;
  }

  .cta-fixed__inner:hover .cta-fixed__link-arrow-path {
    fill: #FFBE0A;
  }

  .cta-fixed__lead {
    font-size: 16px;
  }

  .cta-fixed__lead::before {
    height: 14px;
  }

  .cta-fixed__lead::after {
    height: 14px;
  }

  .cta-fixed__link-lesson {
    font-size: 24px;
    letter-spacing: 0.02em;
  }

  .cta-fixed__link-particle {
    font-size: 14px;
  }

  .cta-fixed__link-text {
    font-size: 18px;
  }

  .cta-fixed__link-arrow {
    width: 16px;
    height: 14px;
  }

  .cta-fixed__link-arrow-path {
    fill: #FF751F;
    transition: 0.2s;
  }
}

/* ===========================================
 * TOP
 * ======================================== */
/* body */
/* ======================================== */
.top-body__inner {
  background-attachment: fixed;
  background-image: url("img/bg_note_SP.webp");
  background-repeat: repeat;
}

@media (min-width: 1200px) {
  .top-body__inner {
    background-image: url("img/bg_note_PC.webp");
  }
}

/* catch */
/* ======================================== */
.top-catch__inner {
  position: relative;
  width: 100%;
  height: 721px;
  background-attachment: fixed;
  background: #E8F1FF url("img/bg_note_SP.webp");
  background-size: cover;
}

.top-catch__heading {
  position: absolute;
  top: 85.75px;
  left: 19.85px;
  z-index: 3;
  overflow: hidden;
  transition: clip-path 1.5s cubic-bezier(0.08, 0.56, 0.43, 0.98);
  clip-path: inset(0 100% 0 0);
}

.top-catch__heading.showFromLeft {
  clip-path: inset(0);
}

.top-catch__heading-title {
  display: flex;
  flex-direction: column;
  gap: 2.5306666667vw;
  transform: rotate(-2deg);
  transform-origin: top center;
}

.top-catch__heading-number {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.0666666667vw 1.6vw;
  border-radius: 0.4053333333vw;
  background-color: #4194E4;
}

.top-catch__heading-number-text {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.4666666667vw;
  font-weight: 700;
  line-height: 100%;
  vertical-align: bottom;
}

.top-catch__heading-number-count {
  font-size: 5.3333333333vw;
  line-height: 100%;
}

.top-catch__heading-main {
  display: flex;
  flex-direction: column;
  gap: 2.024vw;
}

.top-catch__heading-concept {
  display: inline-block;
  color: #3E4B51;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 5.3333333333vw;
  font-weight: 900;
  line-height: 130%;
  text-shadow: 1.52px 1.52px 1.52px #FFFFFF, -1.52px -1.52px 1.52px #FFFFFF, -1.52px 1.52px 1.52px #FFFFFF, 1.52px -1.52px 1.52px #FFFFFF;
}

.top-catch__heading-quotation-marks {
  letter-spacing: -0.2em;
}

.top-catch__heading-place {
  display: inline-block;
  color: #4D9EE8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 9.0666666667vw;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 130%;
  text-shadow: 1.52px 1.52px 1.52px #FFFFFF, -1.52px -1.52px 1.52px #FFFFFF, -1.52px 1.52px 1.52px #FFFFFF, 1.52px -1.52px 1.52px #FFFFFF;
}

.top-catch__point {
  position: absolute;
  bottom: 125px;
  left: 21px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}

.top-catch__list {
  display: flex;
  gap: 2.288vw;
}

.top-catch__item {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  width: calc(28vw + 2.58px);
  padding: 10px 0 12px;
  border: 1.29px solid #4D9EE8;
  border-radius: 1.72px;
  background-color: #FFFFFF;
  scale: 0;
  transition: scale 0.2s;
}

.top-catch__item.showScale {
  scale: 1;
}

.top-catch__item::before {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  background-image: url("img/top-catch-check.webp");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.top-catch__item:first-of-type {
  transition-delay: 1.3s;
}

.top-catch__item:nth-of-type(2) {
  transition-delay: 1.5s;
}

.top-catch__item:last-of-type {
  transition-delay: 1.7s;
}

.top-catch__item-title {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.top-catch__item-point {
  color: #4D9EE8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.2666666667vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 100%;
}

.top-catch__item-subpoint {
  font-size: 3.2vw;
}

.top-catch__item-text {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 100%;
}

.top-catch__item-cost {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 120%;
}

.top-catch__item-inexpensive {
  color: #E72767;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.2666666667vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 120%;
}

.top-catch__item-price {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.9333333333vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 120%;
}

.top-catch__item-number {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.2666666667vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 120%;
}

.top-catch__item-addition {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.9333333333vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 120%;
}

.top-catch__item-supervision {
  color: #4D9EE8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.9333333333vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 120%;
}

.top-catch__item-supervisor {
  font-size: 4.2666666667vw;
}

.top-catch__item-relief {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 120%;
}

.top-catch__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: opacity 2s 0.4s;
  opacity: 0;
}

.top-catch__bg.fadeIn {
  opacity: 1;
}

.top-catch__bg-image {
  width: 100%;
  height: 100%;
}

.top-catch__bg-fv {
  position: absolute;
  top: 193px;
  left: 0;
  width: 100%;
  height: 85.3333333333vw;
}

.top-catch__bg-fv::before {
  position: absolute;
  top: -11.68px;
  left: -63px;
  width: 123.016vw;
  height: 88.3893333333vw;
  background-image: url("img/top-catch-fv-shadow.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  content: "";
}

.top-catch__bg-fv::after {
  position: absolute;
  top: -21.93px;
  left: -64.71px;
  width: 123.472vw;
  height: 91.1226666667vw;
  background-image: url("img/top-catch-fv.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 35% 50%;
  content: "";
}

.top-catch__bg-sp-inner {
  display: flex;
  justify-content: space-between;
  position: absolute;
  gap: 70px;
  top: 612px;
  left: 50%;
  width: 275.05px;
  height: 93px;
  transform: translateX(-50%);
}

.top-catch__bg-picture1 {
  position: relative;
  width: 93px;
  height: 93px;
}

.top-catch__bg-picture1::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 92px;
  border-radius: 2.08px;
  background-color: #99CEFF;
  transform: rotate(-7deg);
  z-index: 1;
  content: "";
}

.top-catch__bg-picture1::after {
  position: absolute;
  z-index: 2;
  width: 93px;
  height: 93px;
  border-radius: 2.08px;
  background-image: url("img/top-catch-bg1-sp.webp");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.top-catch__bg-picture2 {
  position: relative;
  width: 93px;
  height: 93px;
}

.top-catch__bg-picture2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 92px;
  border-radius: 2.08px;
  background-color: #99CEFF;
  transform: rotate(-7deg);
  z-index: 1;
  content: "";
}

.top-catch__bg-picture2:after {
  position: absolute;
  z-index: 2;
  width: 93px;
  height: 93px;
  border-radius: 2.08px;
  background-image: url("img/top-catch-bg2-sp.webp");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.top-catch__bg-picture3 {
  display: none;
}

@media (min-width: 768px) {
  .top-catch__point {
    left: 20px;
  }

  .top-catch__list {
    gap: 20px;
  }

  .top-catch__item {
    width: 230px;
    padding: 10px 10px 9px;
  }

  .top-catch__item::before {
    top: -11.96px;
    width: 23.32px;
    height: 23.32px;
  }

  .top-catch__item-point {
    font-size: 28px;
  }

  .top-catch__item-subpoint {
    font-size: 20px;
  }

  .top-catch__item-text {
    font-size: 18px;
  }

  .top-catch__item-cost {
    font-size: 20px;
  }

  .top-catch__item-inexpensive {
    font-size: 28px;
  }

  .top-catch__item-price {
    font-size: 14px;
  }

  .top-catch__item-number {
    font-size: 22px;
  }

  .top-catch__item-addition {
    font-size: 15px;
  }

  .top-catch__item-supervision {
    font-size: 20px;
  }

  .top-catch__item-supervisor {
    font-size: 28px;
  }

  .top-catch__item-relief {
    font-size: 18px;
  }

  .top-catch__bg-fv {
    top: 0;
    left: 50%;
    width: 576px;
    height: 900px;
    background-size: cover;
    transform: translateX(-50%);
  }

  .top-catch__bg-fv::before {
    position: absolute;
    top: 205px;
    left: 0;
    width: 576px;
    height: 414px;
  }

  .top-catch__bg-fv::after {
    position: absolute;
    top: 193px;
    left: -2px;
    width: 576px;
    height: 426px;
  }
}

@media (min-width: 1200px) {
  .top-catch__inner {
    height: 800px;
    background: #E8F1FF url("img/bg_note_PC.webp");
  }

  .top-catch__heading {
    top: 313.17px;
    left: 64.69px;
  }

  .top-catch__heading-title {
    gap: 25px;
  }

  .top-catch__heading-number {
    padding: 10px 16px;
    border-radius: 4px;
  }

  .top-catch__heading-number-text {
    font-size: 28px;
  }

  .top-catch__heading-number-count {
    font-size: 52px;
  }

  .top-catch__heading-main {
    gap: 10px;
  }

  .top-catch__heading-concept {
    font-size: 56px;
    text-shadow: 4px 4px 4px #FFFFFF, -4px -4px 4px #FFFFFF, -4px 4px 4px #FFFFFF, 4px -4px 4px #FFFFFF;
  }

  .top-catch__heading-place {
    font-size: 80px;
    text-shadow: 4px 4px 4px #FFFFFF, -4px -4px 4px #FFFFFF, -4px 4px 4px #FFFFFF, 4px -4px 4px #FFFFFF;
  }

  .top-catch__point {
    top: 655px;
    bottom: auto;
    left: 60px;
  }

  .top-catch__list {
    gap: 20px;
  }

  .top-catch__item {
    width: 250px;
    height: 116px;
    padding: 5px 20px 4px;
    border: 3px solid #4D9EE8;
    border-radius: 4px;
  }

  .top-catch__item::before {
    top: -11.96px;
    width: 23.32px;
    height: 23.32px;
  }

  .top-catch__item-point {
    font-size: 28px;
  }

  .top-catch__item-subpoint {
    font-size: 20px;
  }

  .top-catch__item-text {
    font-size: 18px;
  }

  .top-catch__item-cost {
    font-size: 20px;
  }

  .top-catch__item-inexpensive {
    font-size: 28px;
  }

  .top-catch__item-price {
    font-size: 14px;
  }

  .top-catch__item-number {
    font-size: 22px;
  }

  .top-catch__item-addition {
    font-size: 15px;
  }

  .top-catch__item-supervision {
    font-size: 20px;
  }

  .top-catch__item-supervisor {
    font-size: 28px;
  }

  .top-catch__item-relief {
    font-size: 18px;
  }

  .top-catch__bg-fv {
    top: 0;
    left: 50%;
    width: 1080px;
    height: 800px;
    background-size: cover;
    transform: translateX(-50%);
  }

  .top-catch__bg-fv::before {
    position: absolute;
    top: 24px;
    left: 0;
    width: 1080px;
    height: 776px;
  }

  .top-catch__bg-fv::after {
    position: absolute;
    top: 0;
    left: -4px;
    width: 1084px;
    height: 800px;
  }

  .top-catch__bg-sp-inner {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(0);
  }

  .top-catch__bg-picture1 {
    position: absolute;
    top: 139px;
    left: 76px;
    width: 127px;
    height: 127px;
  }

  .top-catch__bg-picture1::before {
    width: 127px;
    height: 127px;
    border-radius: 2.85px;
  }

  .top-catch__bg-picture1::after {
    width: 127px;
    height: 127px;
    border-radius: 2.85px;
    background-image: url("img/top-catch-bg1-pc.webp");
  }

  .top-catch__bg-picture2 {
    position: absolute;
    top: 138.5px;
    right: 35px;
    width: 180px;
    height: 180px;
  }

  .top-catch__bg-picture2::before {
    width: 180px;
    height: 180px;
    border-radius: 4.03px;
  }

  .top-catch__bg-picture2::after {
    width: 180px;
    height: 180px;
    border-radius: 4.03px;
    background-image: url("img/top-catch-bg2-pc.webp");
  }

  .top-catch__bg-picture3 {
    display: block;
    position: absolute;
    top: 466px;
    right: 119px;
    width: 127px;
    height: 127px;
  }

  .top-catch__bg-picture3::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 127px;
    height: 127px;
    border-radius: 2.85px;
    background-color: #99CEFF;
    transform: rotate(-7deg);
    z-index: 1;
    content: "";
  }

  .top-catch__bg-picture3:after {
    position: absolute;
    z-index: 2;
    width: 127px;
    height: 127px;
    border-radius: 2.85px;
    background-image: url("img/top-catch-bg3-pc.webp");
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
  }
}

/* about */
/* ======================================== */
.top-about__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 20px;
  overflow: hidden;
}

.top-about__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.top-about__heading-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.top-about__heading-title span {
  display: block;
}

.top-about__heading-title-jp {
  color: #4D9EE8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 120%;
  transition: clip-path 1s 0.5s;
  clip-path: inset(0 100% 0 0);
}

.top-about__heading-title-jp.showFromLeft {
  clip-path: inset(0);
}

.top-about__heading-title-en {
  color: #444A4D;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 100%;
  transition: opacity 0.75s, translate 0.75s;
  opacity: 0;
  translate: 0 5vw;
}

.top-about__heading-title-en.slideIn {
  opacity: 1;
  translate: 0 0;
}

.top-about__heading-subtitle {
  color: #0E2B45;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 150%;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-about__heading-subtitle.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-about__main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.top-about__message {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-about__message.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-about__message-text {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 180%;
}

.top-about__profile {
  border-radius: 8px;
  background-color: #E8F1FF;
  transition: clip-path 1s 0.4s;
  clip-path: inset(0 100% 0 0);
}

.top-about__profile.showFromLeft {
  clip-path: inset(0);
}

.top-about__profile-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 48px 14px;
  overflow: hidden;
}

.top-about__profile-image {
  position: relative;
  width: 287px;
  height: 313px;
}

.top-about__profile-image::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 208.42px;
  height: 313px;
  border-radius: 9999px;
  background-color: #99CEFF;
  transform: translate(-50%, -50%) rotate(41deg);
  content: "";
}

.top-about__profile-image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 208.42px;
  height: 313px;
  border-radius: 9999px;
  background-image: url("img/NAOYA.webp");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
  content: "";
}

.top-about__profile-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-about__profile-title {
  color: #4D9EE8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 180%;
}

.top-about__profile-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-about__profile-item {
  display: flex;
  gap: 12px;
}

.top-about__profile-year {
  width: 60px;
  color: #4D9EE8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 180%;
  text-align: right;
}

.top-about__profile-career {
  width: calc(100% - 60px - 12px);
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 160%;
}

.top-about__bg {
  position: relative;
  width: 100%;
  height: 428px;
}

.top-about__bg-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.top-about__bg-picture {
  position: absolute;
  transition: opacity 1.25s, translate 1.25s;
  translate: 0 5vw;
  opacity: 0;
}

.top-about__bg-picture.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-about__bg-picture--picture1 {
  top: 29px;
  left: -40px;
  z-index: 2;
  width: 247.29px;
  height: 294.31px;
  background: url("img/top-about-bg1.webp");
  background-size: contain;
  transition-delay: 0.5s;
}

.top-about__bg-picture--picture2 {
  top: 70px;
  right: -245.39px;
  z-index: 4;
  width: 310.39px;
  height: 218.99px;
  background: url("img/top-about-bg2.webp");
  background-size: contain;
  transition-delay: 0.7s;
}

.top-about__bg-character {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top-about__bg-text {
  display: flex;
  gap: 0 3%;
  position: absolute;
  transition: opacity 0.75s, translate 0.75s;
  opacity: 0;
  translate: -5vw 0;
}

.top-about__bg-text.leftSlideIn {
  opacity: 1;
  translate: 0 0;
}

.top-about__bg-text--text1 {
  top: 179px;
  left: 0;
  z-index: 3;
  transition-delay: 1.45s;
}

.top-about__bg-text--text2 {
  top: calc(179px + 11vw);
  right: 0;
  z-index: 5;
  transition-delay: 1.95s;
}

.top-about__bg-loop-text {
  display: inline-block;
  color: #C5E3FF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 8.8vw;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 100%;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .top-about__inner {
    gap: 48px;
    max-width: 1200px;
    padding: 120px 0 140px;
    margin: 0 auto;
  }

  .top-about__heading {
    gap: 32px;
  }

  .top-about__heading-title {
    gap: 16px;
  }

  .top-about__heading-title-jp {
    font-size: 72px;
    line-height: 100%;
  }

  .top-about__heading-title-en {
    font-size: 18px;
  }

  .top-about__heading-subtitle {
    font-size: 40px;
  }

  .top-about__main {
    gap: 88px;
  }

  .top-about__message {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .top-about__message-text {
    font-size: 18px;
    font-weight: 500;
  }

  .top-about__profile-inner {
    flex-direction: row;
    align-items: center;
    padding: 48px 40px;
  }

  .top-about__profile-year {
    font-size: 15px;
  }

  .top-about__profile-career {
    font-size: 15px;
    font-weight: 500;
  }

  .top-about__bg {
    height: 500px;
  }

  .top-about__bg-image {
    overflow: hidden;
  }

  .top-about__bg-picture--picture1 {
    top: -15.98px;
    left: 99.43px;
    width: 325.15px;
    height: 386.96px;
  }

  .top-about__bg-picture--picture2 {
    top: 40.53px;
    right: 14.11px;
    width: 483.78px;
    height: 341.32px;
  }

  .top-about__bg-text {
    display: flex;
    gap: 0 3%;
    position: absolute;
  }

  .top-about__bg-text--text1 {
    top: 170px;
    left: 0;
  }

  .top-about__bg-text--text2 {
    top: 300px;
    left: auto;
    right: 0;
  }

  .top-about__bg-loop-text {
    font-size: 120px;
  }
}

/* plan */
/* ======================================== */
.top-plan__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 20px;
  border-radius: 60px;
  background-color: #4D9EE8;
  overflow: hidden;
}

.top-plan__heading {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.top-plan__heading-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.top-plan__heading-title span {
  display: block;
}

.top-plan__heading-title-jp {
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 120%;
  transition: clip-path 1s 0.5s;
  clip-path: inset(0 100% 0 0);
}

.top-plan__heading-title-jp.showFromLeft {
  clip-path: inset(0);
}

.top-plan__heading-title-en {
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 100%;
  transition: opacity 0.75s, translate 0.75s;
  opacity: 0;
  translate: 0 5vw;
}

.top-plan__heading-title-en.slideIn {
  opacity: 1;
  translate: 0 0;
}

.top-plan__heading-lead {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 180%;
  text-align: left;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-plan__heading-lead.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-plan__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-plan__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px 40px;
}

.top-plan__item {
  display: flex;
  position: relative;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-plan__item.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-plan__item::before {
  position: absolute;
  top: 18.9px;
  left: 14.51px;
  z-index: 1;
  width: 335px;
  height: 100%;
  border-radius: 8px;
  transform: rotate(7deg);
  content: "";
}

.top-plan__item--intro::before {
  background-color: #FFBE0A;
}

.top-plan__item--beginner::before {
  background-color: #526DCE;
}

.top-plan__item--intermediate::before {
  background-color: #0F8EA4;
}

.top-plan__item--opl::before {
  background-color: #E72767;
}

.top-plan__item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
  width: 335px;
  border-radius: 8px;
  padding: 34px 24px 40px;
  background-color: #FFFFFF;
}

.top-plan__item-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-plan__item-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 100%;
  text-align: center;
}

.top-plan__item-title--intro {
  color: #FFBE0A;
}

.top-plan__item-title--beginner {
  color: #526DCE;
}

.top-plan__item-title--intermediate {
  color: #0F8EA4;
}

.top-plan__item-title--opl {
  color: #E72767;
}

.top-plan__item-subtitle {
  display: inline-block;
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 100%;
}

.top-plan__item-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 260px;
}

.top-plan__item-image {
  width: 100%;
  height: 260px;
}

.top-plan__item-picture {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.top-plan__item-detail {
  text-align: center;
}

.top-plan__item-text {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 160%;
}

.top-plan__item-price {
  font-size: 34px;
}

.top-plan__item-addition {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 160%;
}

.top-plan__detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0 0;
  text-align: center;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-plan__detail.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-plan__detail-point {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 180%;
}

.top-plan__detail-remark {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 180%;
}

@media (min-width: 1200px) {
  .top-plan__inner {
    gap: 80px;
    padding: 100px 60px;
    margin: 0 30px;
  }

  .top-plan__heading {
    gap: 32px;
  }

  .top-plan__heading-title {
    gap: 16px;
  }

  .top-plan__heading-title-jp {
    font-size: 72px;
    line-height: 100%;
  }

  .top-plan__heading-title-en {
    font-size: 18px;
  }

  .top-plan__heading-lead {
    font-size: 20px;
    text-align: center;
  }

  .top-plan__main {
    gap: 80px;
  }

  .top-plan__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1080px;
    gap: 80px 100px;
    margin: 0 auto;
  }

  .top-plan__item::before {
    left: -7px;
    width: 360px;
  }

  .top-plan__item-inner {
    gap: normal;
    width: 360px;
    height: 560px;
    padding: 40px 24px 48px 24px;
  }

  .top-plan__item-title {
    font-size: 50px;
  }

  .top-plan__item-main {
    gap: 40px;
  }

  .top-plan__detail {
    gap: 40px;
    width: 800px;
    margin: 0 auto;
  }

  .top-plan__detail-point {
    font-size: 24px;
  }

  .top-plan__detail-remark {
    font-size: 16px;
  }
}

/* studio */
/* ======================================== */
.top-studio__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 20px 0;
}

.top-studio__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top-studio__heading-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.top-studio__heading-title span {
  display: block;
}

.top-studio__heading-title-jp {
  color: #4D9EE8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.04em;
  transition: clip-path 1s 0.5s;
  clip-path: inset(0 100% 0 0);
}

.top-studio__heading-title-jp.showFromLeft {
  clip-path: inset(0);
}

.top-studio__heading-title-en {
  color: #444A4D;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 100%;
  transition: opacity 0.75s, translate 0.75s;
  opacity: 0;
  translate: 0 5vw;
}

.top-studio__heading-title-en.slideIn {
  opacity: 1;
  translate: 0 0;
}

.top-studio__heading-lead {
  text-align: center;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-studio__heading-lead.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-studio__heading-text {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.top-studio__main {
  position: relative;
  width: 335px;
  height: 663.86px;
  background-image: url("img/top-studio-map.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-studio__main.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-studio__main-link {
  cursor: pointer;
}

.top-studio__place {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.top-studio__modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

.top-studio__modal--tohoku {
  background-color: rgba(15, 142, 164, 0.4);
}

.top-studio__modal--hokuriku {
  background-color: rgba(255, 190, 10, 0.4);
}

.top-studio__modal--kanto {
  background-color: rgba(0, 109, 207, 0.4);
}

.top-studio__modal--is-visible {
  opacity: 1;
  visibility: visible;
}

.top-studio__modal-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 80px 20px;
}

.top-studio__modal-button {
  margin: 0 0 0 auto;
}

.top-studio__modal-button-close {
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.top-studio__modal-button-image {
  width: 46px;
  height: 46px;
}

.top-studio__modal-main {
  display: flex;
  justify-content: center;
  height: 100%;
}

.top-studio__modal-list {
  display: none;
  flex-basis: 100%;
  border-radius: 16px 16px 0 0;
}

.top-studio__modal-list--is-visible {
  display: block;
}

.top-studio__modal-list--overflow {
  max-height: calc(100% - 46px);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overscroll-behavior-y: contain;
}

.top-studio__modal-list--overflow::-webkit-scrollbar {
  display: none;
}

.top-studio__modal-item {
  background-color: #FFFFFF;
  transition: 0.2s;
}

.top-studio__modal-item-heading {
  position: sticky;
  top: 0;
  z-index: 1;
  border-radius: 16px 16px 0 0;
  text-align: center;
}

.top-studio__modal-item-heading--tohoku {
  background-color: #0F8EA4;
}

.top-studio__modal-item-heading--hokuriku {
  background-color: #FFBE0A;
}

.top-studio__modal-item-heading--kanto {
  background-color: #47A7FD;
}

.top-studio__modal-item-title {
  padding: 20px 16px 20px 18px;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 100%;
}

.top-studio__modal-item-link {
  display: flex;
  justify-content: center;
  border: 1px solid #A8C1E7;
}

.top-studio__modal-item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 335px;
  padding: 19px;
}

.top-studio__modal-item-text {
  position: relative;
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 120%;
  text-align: center;
  transition: 0.2s;
}

.top-studio__modal-item-arrow {
  width: 34px;
  height: 34px;
}

@media (min-width: 1200px) {
  .top-studio__inner {
    gap: 80px;
    padding: 100px 0 50px;
  }

  .top-studio__heading {
    gap: 40px;
  }

  .top-studio__heading-title {
    gap: 16px;
  }

  .top-studio__heading-title-jp {
    font-size: 72px;
    line-height: 100%;
  }

  .top-studio__heading-title-en {
    font-size: 18px;
  }

  .top-studio__heading-text {
    font-size: 18px;
    font-weight: 500;
  }

  .top-studio__main {
    width: 687.95px;
    height: 600.65px;
    margin: 0 auto;
  }

  .top-studio__place {
    top: 14.86px;
    left: 50%;
    width: 392px;
    height: auto;
    transform: translateX(-50%);
  }

  .top-studio__modal-inner {
    padding: 42px 188px;
  }

  .top-studio__modal-button {
    display: flex;
    width: 860px;
    margin: 0 auto;
  }

  .top-studio__modal-button-close {
    margin: 0 0 0 auto;
  }

  .top-studio__modal-button-image {
    width: 82px;
    height: 82px;
  }

  .top-studio__modal-list {
    flex-basis: 860px;
  }

  .top-studio__modal-list--overflow {
    max-height: calc(100% - 84px);
  }

  .top-studio__modal-item:hover {
    background-color: #4D9EE8;
  }

  .top-studio__modal-item:hover .top-studio__modal-item-text {
    color: #FFFFFF;
  }

  .top-studio__modal-item-inner {
    padding: 17px 21px;
    width: 391px;
  }

  .top-studio__modal-item-text {
    font-size: 20px;
  }

  .top-studio__modal-item-arrow {
    position: static;
    width: 34px;
    height: 34px;
    transform: translateY(0);
  }
}

/* dance */
/* ======================================== */
.top-dance__inner {
  display: none;
}

@media (min-width: 1200px) {
  .top-dance__inner {
    display: flex;
  }

  .top-dance__picture {
    width: 100%;
    height: auto;
  }
}

/* trial */
/* ======================================== */
.top-trial__inner {
  display: flex;
  padding: 80px 20px 40px;
}

.top-trial__inner-right-alignment {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.top-trial__column:first-of-type {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.top-trial__column:last-of-type {
  width: 100%;
}

.top-trial__heading-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.top-trial__heading-title span {
  display: block;
}

.top-trial__heading-title-jp {
  color: #4D9EE8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 120%;
  transition: clip-path 1s 0.5s;
  clip-path: inset(0 100% 0 0);
}

.top-trial__heading-title-jp.showFromLeft {
  clip-path: inset(0);
}

.top-trial__heading-title-en {
  color: #444A4D;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 100%;
  transition: opacity 0.75s, translate 0.75s;
  opacity: 0;
  translate: 0 5vw;
}

.top-trial__heading-title-en.slideIn {
  opacity: 1;
  translate: 0 0;
}

.top-trial__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-trial__question {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: opacity 1.25s, translate 1.25s;
  translate: 0 5vw;
  opacity: 0;
  transition-delay: 0.5s;
}

.top-trial__question.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-trial__point {
  transition: opacity 1.25s, translate 1.25s;
  translate: 0 5vw;
  opacity: 0;
  transition-delay: 0.7s;
}

.top-trial__point.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-trial__lead {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top-trial__cta {
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: opacity 1.25s, translate 1.25s;
  translate: 0 5vw;
  opacity: 0;
  transition-delay: 0.9s;
}

.top-trial__cta.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-trial__cta-button {
  display: flex;
  justify-content: center;
}

.top-trial__text {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 180%;
}

.top-trial__text--sp-regular {
  font-size: 16px;
  font-weight: 400;
}

.top-trial__text--lesson {
  color: #4D9EE8;
  font-size: 18px;
}

.top-trial__text--sp-bold {
  font-size: 16px;
  font-weight: 700;
}

.top-trial__list {
  padding: 0 0 0 18px;
}

.top-trial__list--disc {
  list-style: disc;
}

.top-trial__list--check {
  padding: 0;
  list-style: none;
}

.top-trial__list--check .top-trial__item {
  padding: 0 0 0 25px;
  background-image: url("img/check.webp");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 21px auto;
}

.top-trial__item::marker {
  color: #444A4D;
}

.top-trial__image {
  display: flex;
  justify-content: center;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-trial__image.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-trial__image-picture {
  width: 335px;
  height: 380.11px;
  background-image: url("img/top-trial.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  .top-trial__inner {
    padding: 100px 0;
    margin: 0 60px;
    overflow: hidden;
  }

  .top-trial__inner-right-alignment {
    display: flex;
    flex-direction: row;
    gap: normal;
    justify-content: center;
    padding: 0 0 0 60px;
  }

  .top-trial__column:first-of-type {
    gap: 60px;
    width: 800px;
  }

  .top-trial__column:last-of-type {
    width: 425.06px;
  }

  .top-trial__heading-title {
    gap: 16px;
  }

  .top-trial__heading-title-jp {
    font-size: 72px;
    line-height: 100%;
  }

  .top-trial__heading-title-en {
    font-size: 18px;
  }

  .top-trial__main {
    gap: 64px;
  }

  .top-trial__lead {
    gap: 32px;
  }

  .top-trial__cta-button {
    width: 578px;
  }

  .top-trial__text {
    color: #444A4D;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 180%;
  }

  .top-trial__text--sp-regular {
    font-size: 18px;
    font-weight: 700;
  }

  .top-trial__text--lesson {
    color: #4D9EE8;
    font-size: 22px;
  }

  .top-trial__text--sp-bold {
    font-size: 18px;
    font-weight: 700;
  }

  .top-trial__image-picture {
    width: 425.06px;
    height: 482.65px;
  }
}

/* voices */
/* ======================================== */
.top-voices__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 20px;
}

.top-voices__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.top-voices__heading-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.top-voices__heading-title span {
  display: block;
}

.top-voices__heading-title-jp {
  color: #4D9EE8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 120%;
  transition: clip-path 1s 0.5s;
  clip-path: inset(0 100% 0 0);
}

.top-voices__heading-title-jp.showFromLeft {
  clip-path: inset(0);
}

.top-voices__heading-title-en {
  color: #444A4D;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 100%;
  transition: opacity 0.75s, translate 0.75s;
  opacity: 0;
  translate: 0 5vw;
}

.top-voices__heading-title-en.slideIn {
  opacity: 1;
  translate: 0 0;
}

.top-voices__heading-subtitle {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 180%;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-voices__heading-subtitle.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-voices__main {
  display: flex;
  flex-direction: column;
}

.top-voices__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.top-voices__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-basis: 100%;
  padding: 24px;
  border: 3px solid #99CEFF;
  border-radius: 8px;
  box-shadow: 0px 0px 30px 0px rgba(3, 69, 119, 0.08);
  background-color: #FFFFFF;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-voices__item.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-voices__profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-voices__profile-image {
  width: 80px;
  height: 80px;
}

.top-voices__profile-icon {
  width: 100%;
  height: auto;
}

.top-voices__profile-type {
  display: flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 4px;
}

.top-voices__profile-type--parents {
  background-color: #0F8EA4;
}

.top-voices__profile-tag {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 14px;
}

.top-voices__voice {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 180%;
}

@media (min-width: 1200px) {
  .top-voices__inner {
    gap: 80px;
    padding: 100px 0;
  }

  .top-voices__heading {
    gap: 32px;
  }

  .top-voices__heading-title {
    gap: 16px;
  }

  .top-voices__heading-title-jp {
    font-size: 72px;
    line-height: 100%;
  }

  .top-voices__heading-title-en {
    font-size: 18px;
  }

  .top-voices__heading-subtitle {
    font-size: 28px;
  }

  .top-voices__main {
    flex-direction: row;
    justify-content: center;
  }

  .top-voices__list {
    display: flex;
    flex-direction: row;
    gap: normal;
    justify-content: space-between;
    width: 1200px;
  }

  .top-voices__item {
    flex-basis: 374px;
    padding: 32px 28px;
  }

  .top-voices__voice {
    font-size: 16px;
  }
}

/* instructor */
/* ======================================== */
.top-instructor__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 64px 20px;
  border-radius: 60px;
  background-color: #E8F1FF;
}

.top-instructor__heading {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.top-instructor__heading-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.top-instructor__heading-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.top-instructor__heading-title span {
  display: block;
}

.top-instructor__heading-title-jp {
  color: #4D9EE8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.04em;
  transition: clip-path 1s 0.5s;
  clip-path: inset(0 100% 0 0);
}

.top-instructor__heading-title-jp.showFromLeft {
  clip-path: inset(0);
}

.top-instructor__heading-title-en {
  color: #444A4D;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 100%;
  transition: opacity 0.75s, translate 0.75s;
  opacity: 0;
  translate: 0 5vw;
}

.top-instructor__heading-title-en.slideIn {
  opacity: 1;
  translate: 0 0;
}

.top-instructor__heading-subtitle {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 180%;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-instructor__heading-subtitle.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-instructor__heading-lead {
  text-align: left;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-instructor__heading-lead.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-instructor__heading-text {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 180%;
}

.top-instructor__main {
  display: flex;
  justify-content: center;
}

.top-instructor__list {
  /* display: flex;
  flex-wrap: wrap; */
  justify-content: center;
  /* gap: 32px; */
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  max-width: 586px;
  gap: 16px;
  
}

.top-instructor__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-basis: 164px;
  padding: 18px 14px 14px;
  border: 3px solid #99CEFF;
  border-radius: 8px;
  background-color: #FFFFFF;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-instructor__item.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-instructor__item:nth-of-type(n+5) {
  display: none;
}

.top-instructor__item-image {
  text-align: center;
}

.top-instructor__item-face {
  width: 110px;
  height: 138px;
  border-radius: 9999px;
}

.top-instructor__item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.top-instructor__item-name {
  color: #4D9EE8;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 100%;
}

.top-instructor__item-studio {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 150%;
}

.top-instructor__catch {
  text-align: center;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-instructor__catch.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-instructor__catch-text {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 180%;
}

@media (min-width: 1200px) {
  .top-instructor__inner {
    gap: 72px;
    padding: 100px 0;
    margin: 0 30px;
  }

  .top-instructor__heading {
    gap: 112px;
  }

  .top-instructor__heading-main {
    gap: 32px;
  }

  .top-instructor__heading-title {
    gap: 16px;
  }

  .top-instructor__heading-title-jp {
    font-size: 72px;
    line-height: 100%;
  }

  .top-instructor__heading-title-en {
    font-size: 18px;
  }

  .top-instructor__heading-subtitle {
    font-size: 28px;
  }

  .top-instructor__heading-lead {
    text-align: center;
  }

  .top-instructor__heading-text {
    font-size: 18px;
  }

  .top-instructor__main {
    display: flex;
    justify-content: center;
  }

  .top-instructor__list {
    gap: 32px;
    width: 1200px;
    display: flex;
    max-width: 100%;
  }

  .top-instructor__item {
    flex-basis: 266px;
    padding: 30px 20px;
  }

  .top-instructor__item:nth-of-type(n+5) {
    display: flex;
  }

  .top-instructor__item-face {
    width: 174px;
    height: 220px;
  }

  .top-instructor__item-name {
    font-size: 16px;
  }

  .top-instructor__catch-text {
    font-size: 18px;
  }
}

/* faq */
/* ======================================== */
.top-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
}

.top-faq__heading-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
}

.top-faq__heading-title span {
  display: block;
}

.top-faq__heading-title-jp {
  color: #444A4D;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.04em;
  transition: opacity 0.75s, translate 0.75s;
  opacity: 0;
  translate: 0 5vw;
}

.top-faq__heading-title-jp.slideIn {
  opacity: 1;
  translate: 0 0;
}

.top-faq__heading-title-en {
  color: #4D9EE8;
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 100%;
  transition: clip-path 1s 0.5s;
  clip-path: inset(0 100% 0 0);
}

.top-faq__heading-title-en.showFromLeft {
  clip-path: inset(0);
}

.top-faq__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.top-faq__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-faq__item.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-faq__item[open] .top-faq__question::after {
  opacity: 0;
}

.top-faq__question {
  display: flex;
  position: relative;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: #F7F7F7;
}

.top-faq__question::-webkit-details-marker {
  display: none;
}

.top-faq__question::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 2px;
  background-color: #444A4D;
  transform: translateY(-50%);
  content: "";
}

.top-faq__question::after {
  position: absolute;
  top: 50%;
  right: 27px;
  width: 2px;
  height: 16px;
  background-color: #444A4D;
  transform: translateY(-50%);
  transition: 0.3s;
  content: "";
}

.top-faq__question-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #4D9EE8;
}

.top-faq__question-q {
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
}

.top-faq__question-text {
  width: calc(100% - 40px - 30px - 16px);
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.top-faq__answer {
  display: flex;
  gap: 20px;
  padding: 0 20px;
}

.top-faq__answer-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #FFB301;
}

.top-faq__answer-a {
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
}

.top-faq__answer-text {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.02em;
}

@media (min-width: 1200px) {
  .top-faq__inner {
    gap: 60px;
    padding: 100px 266px;
  }

  .top-faq__heading-title {
    gap: 4px;
  }

  .top-faq__heading-title-jp {
    font-size: 19px;
  }

  .top-faq__heading-title-en {
    font-size: 120px;
  }

  .top-faq__main {
    width: 880px;
  }

  .top-faq__question {
    gap: 24px;
    padding: 16px 24px;
  }

  .top-faq__question::before {
    right: 24px;
  }

  .top-faq__question::after {
    right: 31px;
    width: 2px;
  }

  .top-faq__question-icon {
    width: 36px;
    height: 36px;
    border-radius: 18px;
  }

  .top-faq__question-q {
    font-size: 16px;
    line-height: 18px;
  }

  .top-faq__question-text {
    width: calc(100% - 40px - 30px - 16px);
    font-size: 16px;
  }

  .top-faq__answer {
    gap: 24px;
    padding: 0 26px;
  }

  .top-faq__answer-icon {
    width: 36px;
    height: 36px;
    border-radius: 18px;
  }

  .top-faq__answer-text {
    font-size: 16px;
  }

  .top-faq__answer-a {
    line-height: 18px;
  }
}
@media (max-width: 768px) {
  
}
/* news */
/* ======================================== */
.top-news__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  border-radius: 60px;
  margin: 40px 0;
  background-color: #E8F1FF;
}

.top-news__row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-news__column:first-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 100%;
  gap: 116px;
}

.top-news__column:last-of-type {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-basis: 100%;
}

.top-news__heading-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.top-news__heading-title span {
  display: block;
}

.top-news__heading-title-jp {
  color: #4D9EE8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 120%;
  transition: clip-path 1s 0.5s;
  clip-path: inset(0 100% 0 0);
}

.top-news__heading-title-jp.showFromLeft {
  clip-path: inset(0);
}

.top-news__heading-title-en {
  color: #444A4D;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 100%;
  transition: opacity 0.75s, translate 0.75s;
  opacity: 0;
  translate: 0 5vw;
}

.top-news__heading-title-en.slideIn {
  opacity: 1;
  translate: 0 0;
}

.top-news__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.top-news__item {
  position: relative;
  border-bottom: 2px solid #D5D5D5;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-news__item.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-news__item::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 33px;
  height: 33px;
  color: #0B2665;
  transform: translateY(-50%);
  transition: 0.2s;
  content: url("img/link-news-arrow.webp");
}

.top-news__item-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px 14px 14px;
}

.top-news__item-heading {
  display: flex;
  align-items: center;
}

.top-news__item-date {
  color: #66A9E6;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 100%;
}

.top-news__item-title {
  width: calc(100% - 24px - 33px - 6px);
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 160%;
  transition: 0.2s;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .top-news__inner {
    padding: 120px 0px;
    margin: 0 30px;
  }

  .top-news__cta {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 88px;
  }

  .top-news__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    width: min(1200px, 100%);
  }

  .top-news__column:first-of-type {
    flex-basis: 341px;
  }

  .top-news__column:last-of-type {
    flex-basis: 680px;
  }

  .top-news__heading-title {
    gap: 16px;
    text-align: left;
  }

  .top-news__heading-title-jp {
    font-size: 72px;
    line-height: 100%;
  }

  .top-news__heading-title-en {
    font-size: 18px;
  }

  .top-news__item::after {
    right: 27.5px;
  }

  .top-news__item:hover::after {
    right: 21.5px;
  }

  .top-news__item:hover .top-news__item-title {
    color: #4D9EE8;
  }

  .top-news__item-link {
    gap: 10px;
    padding: 0 20px 19px 14px;
  }
}

/* partner */
/* ======================================== */
.top-partner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
  border-radius: 100px;
}

.top-partner__heading {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-partner__heading-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.top-partner__heading-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.top-partner__heading-title span {
  display: block;
}

.top-partner__heading-title-jp {
  color: #4D9EE8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 120%;
  transition: clip-path 1s 0.5s;
  clip-path: inset(0 100% 0 0);
}

.top-partner__heading-title-jp.showFromLeft {
  clip-path: inset(0);
}

.top-partner__heading-title-en {
  color: #444A4D;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 100%;
  transition: opacity 0.75s, translate 0.75s;
  opacity: 0;
  translate: 0 5vw;
}

.top-partner__heading-title-en.slideIn {
  opacity: 1;
  translate: 0 0;
}

.top-partner__heading-subtitle {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 180%;
  white-space: nowrap;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-partner__heading-subtitle.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-partner__heading-lead {
  text-align: left;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-partner__heading-lead.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-partner__heading-text {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 180%;
}

.top-partner__main {
  display: flex;
}

.top-partner__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-basis: 100%;
}

.top-partner__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-basis: 100%;
  padding: 16px 20px;
  border: 3px solid #99CEFF;
  border-radius: 8px;
  background-color: #FFFFFF;
  transition: opacity 1.25s, translate 1.25s;
  transition-delay: 0.5s;
  translate: 0 5vw;
  opacity: 0;
}

.top-partner__item.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-partner__item-title {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 4px;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.08em;
  background-color: #0F8EA4;
}

.top-partner__item-text {
  color: #444A4D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.08em;
}

@media (min-width: 1200px) {
  .top-partner__inner {
    gap: 80px;
    padding: 100px 0;
  }

  .top-partner__heading {
    gap: 80px;
  }

  .top-partner__heading-main {
    gap: 32px;
  }

  .top-partner__heading-title {
    gap: 16px;
  }

  .top-partner__heading-title-jp {
    font-size: 72px;
    line-height: 100%;
  }

  .top-partner__heading-title-en {
    font-size: 18px;
  }

  .top-partner__heading-subtitle {
    font-size: 28px;
  }

  .top-partner__heading-lead {
    text-align: center;
  }

  .top-partner__list {
    flex-direction: row;
    flex-basis: 1072px;
  }

  .top-partner__item {
    gap: 16px;
    flex-basis: 526px;
    padding: 32px 28px;
  }

  .top-partner__item-text {
    font-size: 16px;
  }
}

/* cta */
/* ======================================== */
.top-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  padding: 100px 20px;
  border-radius: 60px;
  margin: 160px 0px 240px;
  background-color: #FFEEA4;
}

.top-cta__heading {
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: opacity 0.75s, translate 0.75s;
  transition-delay: 0.5s;
  opacity: 0;
  translate: 0 5vw;
}

.top-cta__heading.slideIn {
  opacity: 1;
  translate: 0 0;
}

.top-cta__heading-main {
  text-align: center;
}

.top-cta__heading-title {
  color: #2F2F2D;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 130%;
  text-shadow: 4px 4px 4px #FFFFFF, -4px -4px 4px #FFFFFF, -4px 4px 4px #FFFFFF, 4px -4px 4px #FFFFFF;
  white-space: nowrap;
}

.top-cta__heading-lead {
  text-align: center;
}

.top-cta__heading-text {
  color: #2F2F2D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 180%;
}

.top-cta__button {
  display: flex;
  justify-content: center;
  z-index: 1;
}

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

.top-cta__bg-picture {
  position: absolute;
  z-index: 2;
  transition: opacity 1.25s, translate 1.25s;
  translate: 0 5vw;
  opacity: 0;
}

.top-cta__bg-picture.slideIn {
  translate: 0 0;
  opacity: 1;
}

.top-cta__bg-picture--picture1 {
  top: -140.11px;
  left: 8px;
  width: 169.84px;
  height: 199.67px;
  background-image: url("img/top-cta-bg1.webp");
  background-repeat: no-repeat;
  background-size: contain;
  transition-delay: 0.5s;
}

.top-cta__bg-picture--picture2 {
  bottom: -128.56px;
  right: 7.65px;
  width: 174.35px;
  height: 199.67px;
  background-image: url("img/top-cta-bg2.webp");
  background-repeat: no-repeat;
  background-size: contain;
  transition-delay: 0.7s;
}

@media (min-width: 1200px) {
  .top-cta__inner {
    gap: 80px;
    padding: 100px 60px;
    margin: 0 60px 80px;
  }

  .top-cta__heading-title {
    font-size: 50px;
  }

  .top-cta__heading-lead {
    text-align: center;
  }

  .top-cta__heading-text {
    font-size: 24px;
  }

  .top-cta__bg-picture {
    position: absolute;
    z-index: 2;
  }

  .top-cta__bg-picture--picture1 {
    top: 321.75px;
    left: -15px;
    width: 284.04px;
    height: 333.44px;
    background: url("img/top-cta-bg1.webp");
  }

  .top-cta__bg-picture--picture2 {
    top: 103.75px;
    right: -12.04px;
    width: 284.04px;
    height: 333.44px;
    background: url("img/top-cta-bg2.webp");
  }
}

/* coaching */
/* ======================================== */
.top-coaching__inner {
  display: flex;
}

.top-coaching__picture {
  width: 100%;
  height: auto;
}

/*# sourceMappingURL=style.css.map */