@charset "UTF-8";
.fv {
  position: relative;
  height: 97vh;
}

.fv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  clip-path: inset(60% 35% 0% 35%);
  -webkit-animation: fvReveal 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
          animation: fvReveal 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-animation: fvZoom 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
          animation: fvZoom 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes fvReveal {
  0% {
    clip-path: inset(60% 35% 0% 35%);
  }
  50% {
    clip-path: inset(30% 35% 30% 35%);
  }
  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}

@keyframes fvReveal {
  0% {
    clip-path: inset(60% 35% 0% 35%);
  }
  50% {
    clip-path: inset(30% 35% 30% 35%);
  }
  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@-webkit-keyframes fvZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes fvZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fv__inner {
  padding: 0px 50px 50px;
  height: 100%;
  max-width: 1340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .fv__inner {
    padding: 0px 5.2083333333vw 10.4166666667vw;
  }
}
@media screen and (max-width: 600px) {
  .fv__inner {
    padding: 0 24px 48px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.fv__price {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
          animation: fadeInUp 0.8s ease-out forwards;
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}
@media screen and (max-width: 960px) {
  .fv__price {
    max-width: 44.5833333333vw;
  }
}
@media screen and (max-width: 600px) {
  .fv__price {
    max-width: 335px;
  }
}

.fv__copy {
  color: #E4027F;
  text-shadow: 0 0 1.7px #FFF;
  font-family: "Inter", sans-serif;
  font-size: 72px;
  font-style: italic;
  font-weight: 700;
  line-height: 100%;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
          animation: fadeInUp 0.8s ease-out forwards;
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
@media screen and (max-width: 960px) {
  .fv__copy {
    font-size: 7.5vw;
  }
}
@media screen and (max-width: 600px) {
  .fv__copy {
    color: #212121;
    text-shadow: 0 0 1.7px #FFF;
    font-size: 30px;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 左上のくの字型 */
.fv-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 350px;
}
@media screen and (max-width: 960px) {
  .fv-top-left {
    width: 36.4583333333vw;
    height: 36.4583333333vw;
  }
}
@media screen and (max-width: 600px) {
  .fv-top-left {
    width: 234px;
    height: 234px;
  }
}

.fv-top-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 100px;
  background-color: #E4027F;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: expandX 0.6s ease-out forwards;
          animation: expandX 0.6s ease-out forwards;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
@media screen and (max-width: 960px) {
  .fv-top-left::before {
    width: 36.4583333333vw;
    height: 10.4166666667vw;
  }
}
@media screen and (max-width: 600px) {
  .fv-top-left::before {
    width: 234px;
    height: 67px;
  }
}

.fv-top-left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 350px;
  background-color: #E4027F;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-animation: expandY 0.6s ease-out forwards;
          animation: expandY 0.6s ease-out forwards;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
@media screen and (max-width: 960px) {
  .fv-top-left::after {
    width: 10.4166666667vw;
    height: 36.4583333333vw;
  }
}
@media screen and (max-width: 600px) {
  .fv-top-left::after {
    width: 67px;
    height: 234px;
  }
}

/* 右下のくの字型 */
.fv-bottom-right {
  position: absolute;
  bottom: -55px;
  right: 0;
  width: 350px;
  height: 350px;
}
@media screen and (max-width: 960px) {
  .fv-bottom-right {
    width: 36.4583333333vw;
    height: 36.4583333333vw;
  }
}
@media screen and (max-width: 600px) {
  .fv-bottom-right {
    bottom: -32px;
    width: 234px;
    height: 234px;
  }
}

.fv-bottom-right::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  height: 100px;
  background-color: #E4027F;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-animation: expandX 0.6s ease-out forwards;
          animation: expandX 0.6s ease-out forwards;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
@media screen and (max-width: 960px) {
  .fv-bottom-right::before {
    width: 36.4583333333vw;
    height: 10.4166666667vw;
  }
}
@media screen and (max-width: 600px) {
  .fv-bottom-right::before {
    width: 234px;
    height: 67px;
  }
}

.fv-bottom-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 350px;
  background-color: #E4027F;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-animation: expandY 0.6s ease-out forwards;
          animation: expandY 0.6s ease-out forwards;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
@media screen and (max-width: 960px) {
  .fv-bottom-right::after {
    width: 10.4166666667vw;
    height: 36.4583333333vw;
  }
}
@media screen and (max-width: 600px) {
  .fv-bottom-right::after {
    width: 67px;
    height: 234px;
  }
}

@-webkit-keyframes expandX {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes expandX {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes expandY {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes expandY {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
.intro {
  padding-top: 120px;
  margin-bottom: 32px;
  margin: auto;
  max-width: 720px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .intro {
    padding-top: 60px;
  }
}
.intro .inner {
  padding-top: 16px;
  padding-bottom: 40px;
  position: relative;
}
.intro .intro__left-top {
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 960px) {
  .intro .intro__left-top {
    max-width: 40px;
    max-height: 40px;
    left: 20px;
  }
}
.intro .intro__right-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 960px) {
  .intro .intro__right-bottom {
    max-width: 40px;
    max-height: 40px;
    right: 20px;
  }
}
.intro .intro__text {
  margin-top: 14px;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (max-width: 960px) {
  .intro .intro__text {
    font-size: 20px;
  }
}

.news {
  margin: auto;
  max-width: 720px;
}
@media screen and (max-width: 960px) {
  .news {
    margin-top: 36px;
    max-width: 100%;
  }
}

.news__list {
  margin-top: 24px;
}
@media screen and (max-width: 960px) {
  .news__list {
    margin-top: 16px;
  }
}

@media screen and (max-width: 960px) {
  .news__item:first-of-type .news__item-link {
    padding-top: 0;
  }
}
.news__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  border-bottom: 1px solid #BBB;
}
@media screen and (max-width: 960px) {
  .news__item-link {
    padding: 24px 0 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}
@media (hover: hover) {
  .news__item-link:hover {
    opacity: 0.7;
  }
}

.news__date {
  color: #E4027F;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.news__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.banner__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1120px) {
  .banner__imgs {
    gap: 5.3571428571vw;
  }
}
@media screen and (max-width: 960px) {
  .banner__imgs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.banner__img {
  position: relative;
}

.banner__btn {
  position: absolute;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-left: 40px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  max-width: 320px;
  line-height: 150%;
  border: none;
  pointer-events: none;
}
@media screen and (max-width: 1120px) {
  .banner__btn {
    bottom: 2.2321428571vw;
    padding-left: 3.5714285714vw;
    max-width: 28.5714285714vw;
    max-height: 4.4642857143vw;
    font-size: 1.6071428571vw;
  }
}
@media screen and (max-width: 960px) {
  .banner__btn {
    bottom: 14px;
    max-width: 222px;
    max-height: 40px;
    font-size: 14px;
  }
  .banner__btn svg {
    max-width: 18px;
    max-height: 18px;
  }
}
@media screen and (max-width: 445px) {
  .banner__btn {
    bottom: 2.1333333333vw;
    max-width: 53.3333333333vw;
    max-height: 9.3333333333vw;
    font-size: 3.7333333333vw;
  }
  .banner__btn svg {
    max-width: 3.2vw;
    max-height: 3.2vw;
  }
}

.banner__img--01 .banner__btn {
  color: #FF7B15;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .banner__img--01:hover .banner__btn {
    background: #FF7B15;
    color: #fff;
  }
  .banner__img--01:hover .banner__btn svg {
    -webkit-transform: translate(5px);
            transform: translate(5px);
  }
  .banner__img--01:hover .banner__btn svg path {
    stroke: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.banner__img--02 .banner__btn {
  color: #212121;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .banner__img--02:hover .banner__btn {
    background: #212121;
    color: #fff;
  }
  .banner__img--02:hover .banner__btn svg {
    -webkit-transform: translate(5px);
            transform: translate(5px);
  }
  .banner__img--02:hover .banner__btn svg path {
    stroke: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.reason {
  position: relative;
}
.reason .inner {
  padding-top: 80px;
}
@media screen and (max-width: 960px) {
  .reason .inner {
    padding-top: 0;
  }
}
@media screen and (min-width: 961px) {
  .reason .section__title--jp {
    padding-left: 80px;
  }
}

.reason__img {
  position: absolute;
  top: 40px;
  z-index: 1;
}
@media screen and (max-width: 1120px) {
  .reason__img {
    max-width: 33.2142857143vw;
  }
}
@media screen and (max-width: 960px) {
  .reason__img {
    position: relative;
    margin-bottom: -18px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    text-align: center;
  }
  .reason__img img {
    max-width: 70.74%;
  }
}

.reason__content {
  margin-left: auto;
  width: 75%;
}
@media screen and (max-width: 960px) {
  .reason__content {
    width: 100%;
  }
}
.reason__content .section__title-gradation {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .reason__content .section__title-gradation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.reason__content .section__title--en {
  margin-top: 12px;
  margin-right: 0;
  background: -webkit-gradient(linear, left top, right top, from(#FFF), color-stop(32.69%, #E4027F));
  background: linear-gradient(90deg, #FFF 0%, #E4027F 32.69%);
}
@media screen and (max-width: 960px) {
  .reason__content .section__title--en {
    margin-top: 0;
    margin-inline: 0;
    background: -webkit-gradient(linear, left top, right top, from(#E4027F), color-stop(32.69%, #E4027F));
    background: linear-gradient(90deg, #E4027F 0%, #E4027F 32.69%);
    line-height: 120%;
  }
}

.reason__list {
  margin-left: auto;
  margin-top: 74px;
  max-width: 652px;
  width: 85%;
}
@media screen and (max-width: 960px) {
  .reason__list {
    margin-top: 24px;
    width: 100%;
  }
}

.reason__item + .reason__item {
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .reason__item + .reason__item {
    margin-top: 24px;
  }
}
@media screen and (max-width: 960px) {
  .reason__item:nth-child(1) .reason__text {
    margin-top: 8px;
  }
}

.reason__head {
  position: relative;
}
@media screen and (max-width: 960px) {
  .reason__head {
    display: contents;
  }
}

.reason__top-left {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .reason__top-left {
    max-width: 40px;
    max-height: 40px;
  }
}

.reason__bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 960px) {
  .reason__bottom-right {
    max-width: 40px;
    max-height: 40px;
  }
}

.reason__num {
  color: #E4027F;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.264px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .reason__num {
    padding-top: 20px;
  }
}
.reason__num .large {
  font-size: 32px;
  letter-spacing: -0.352px;
}

.reason__title {
  margin-top: 20px;
  padding-bottom: 16px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (max-width: 960px) {
  .reason__title {
    margin-top: 4px;
    padding-bottom: 0;
    font-size: 24px;
  }
}
.reason__title .large {
  font-size: 48px;
  font-weight: 800;
}
@media screen and (max-width: 960px) {
  .reason__title .large {
    font-size: 32px;
  }
}

.reason__text {
  margin-top: 40px;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}
@media screen and (max-width: 960px) {
  .reason__text {
    padding-bottom: 34px;
    margin-top: 20px;
  }
}

.reason__btn-wrapper {
  margin-left: auto;
  max-width: 652px;
}
@media screen and (max-width: 960px) {
  .reason__btn-wrapper {
    margin-top: 40px;
  }
}

.courses__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .courses__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.courses__img {
  max-width: 540px;
}

.courses__content {
  max-width: 500px;
}
.courses__content .section__title--en {
  margin-bottom: 8px;
  font-size: 32px;
}

.courses__text {
  margin-top: 16px;
  line-height: 150%;
  letter-spacing: -0.176px;
}

.courses__caution {
  margin-top: 16px;
  color: #E4027F;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.176px;
}

.courses__btn-wrapper {
  margin-top: 32px;
}

.free-try {
  margin: 60px auto 0;
  max-width: 820px;
  border-radius: 20px;
  background: #E4027F;
  position: relative;
}
@media screen and (max-width: 960px) {
  .free-try {
    margin-top: 56px;
    margin-inline: 20px;
    border-radius: 10px;
  }
}
.free-try .inner {
  padding: 32px 40px 24px;
}
@media screen and (max-width: 960px) {
  .free-try .inner {
    padding: 54px 10px 0px;
  }
}
.free-try::before {
  background: url("../img/top/free-try-img.webp") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 382px;
  height: 414px;
  left: 0;
  bottom: 0px;
}
@media screen and (max-width: 960px) {
  .free-try::before {
    width: 150px;
    height: 182px;
  }
}

.free-try .section__title {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .free-try .section__title {
    margin: auto;
  }
}
.free-try .section__title--en {
  color: #fff;
  font-size: 40px;
  padding-left: 38px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .free-try .section__title--en {
    padding-left: 0;
    font-size: 28px;
  }
}
.free-try .section__title--en::before {
  background: url("../img/common/logo-icon-pink.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 30px;
  height: 34px;
  left: 0;
}
@media screen and (max-width: 960px) {
  .free-try .section__title--en::before {
    left: 50%;
    top: -36px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.free-try .section__title--jp {
  padding-left: 45px;
  font-size: 18px;
}

.free-try__wrapper {
  margin-left: auto;
  max-width: 500px;
}

.free-try__text {
  margin-top: 10px;
  color: #FFF;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (max-width: 960px) {
  .free-try__text:nth-child(1) {
    font-weight: 400;
    margin: 20px auto 0;
    max-width: 95%;
  }
  .free-try__text:nth-child(2) {
    margin-top: 16px;
    margin-left: auto;
    font-weight: 700;
    max-width: 68%;
  }
}

.free-try__btn-wrapper {
  margin-top: 14px;
}
@media screen and (max-width: 960px) {
  .free-try__btn-wrapper {
    margin-top: 0;
  }
}

.instructors {
  margin-top: 100px;
  background: rgba(202, 74, 145, 0.76);
  color: #fff;
  position: relative;
}
@media screen and (max-width: 960px) {
  .instructors {
    margin-top: 56px;
  }
}
.instructors::before {
  background: url("../img/top/instructors-bg.webp") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .instructors::before {
    background: rgba(202, 74, 145, 0.76);
  }
}
.instructors .inner {
  padding-block: 112px;
}
@media screen and (max-width: 960px) {
  .instructors .inner {
    padding-block: 40px;
  }
}
.instructors .section__title--en {
  padding-left: 54px;
  margin: 0 auto 8px;
  color: #fff;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .instructors .section__title--en {
    padding-left: 0;
    padding-top: 50px;
  }
}
.instructors .section__title--en::before {
  background: url("../img/common/logo-icon-pink.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 30px;
  height: 34px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .instructors .section__title--en::before {
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.instructors__text {
  margin: 50px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .instructors__text {
    margin-top: 24px;
  }
}

.instructors__btn-wrapper {
  margin-top: 56px;
}
@media screen and (max-width: 960px) {
  .instructors__btn-wrapper {
    margin-top: 40px;
  }
}