/*
Theme Name: Twenty Twenty-one Child
Version: 1.6
Template: twentytwentyone
*/
:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

#front .hero__wrapper {
  position: relative;
  min-height: 500px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  #front .hero__wrapper {
    aspect-ratio: 1/2;
  }
}
#front .hero__wrapper::before {
  --length: max(3vw, 30px);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: max(0.4rem, 3px);
  background: repeating-linear-gradient(to right, #6C9BD2, #6C9BD2 var(--length), #EF858C var(--length), #EF858C calc(var(--length) * 2), #F5A73E calc(var(--length) * 2), #F5A73E calc(var(--length) * 3));
}
#front .hero__title {
  position: absolute;
  inset: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 10;
  -webkit-transition: opacity 2s 8s;
  transition: opacity 2s 8s;
  opacity: 1;
}
#front .hero__title video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#front .hero__title.loaded {
  opacity: 0;
}
#front .hero__bg {
  width: 100%;
  height: 100%;
}
#front .hero__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#front .news::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: max(7rem, 50px);
  background: #5DC2D0;
  z-index: -1;
}
#front .news__wrapper {
  padding-top: max(10.5rem, 70px);
}
#front .news__content {
  margin-top: max(2rem, 15px);
  background: #fff;
  border-radius: max(2.5rem, 22px);
  -webkit-box-shadow: 10px 10px 45px rgba(0, 0, 0, 0.07);
          box-shadow: 10px 10px 45px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
#front .news__content__category {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1000px) {
  #front .news__content__category {
    grid-template-columns: repeat(2, 1fr);
  }
}
#front .news__content__category li:not(:last-of-type) {
  border-right: max(0.3rem, 3px) solid #ebebeb;
}
@media screen and (max-width: 1000px) {
  #front .news__content__category li:nth-of-type(odd) {
    border-right: none;
  }
  #front .news__content__category li.category-all {
    grid-column: 1/3;
  }
}
#front .news__content__category li button {
  position: relative;
  width: 100%;
  padding: max(2rem, 10px) 5%;
  text-align: center;
  background: #f7f7f7;
  border-bottom: max(0.3rem, 3px) solid #ebebeb;
  z-index: 0;
}
#front .news__content__category li button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #5DC2D0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: 0.4s ease 0.4s;
  transition: 0.4s ease 0.4s;
  pointer-events: none;
  z-index: -1;
}
#front .news__content__category li button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: max(0.3rem, 3px);
  background: #6C9BD2;
  -webkit-transform: translateY(100%) scaleX(0);
          transform: translateY(100%) scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: -1;
  pointer-events: none;
}
#front .news__content__category li button span {
  color: #333333;
  font-size: max(1.8rem, 13px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  opacity: 0.35;
  -webkit-transition: 0.4s ease 0.4s;
  transition: 0.4s ease 0.4s;
}
#front .news__content__category li button:hover::after {
  -webkit-transform: translateY(100%) scaleX(1);
          transform: translateY(100%) scaleX(1);
}
#front .news__content__category li button.is-active {
  pointer-events: none;
}
#front .news__content__category li button.is-active::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
#front .news__content__category li button.is-active::after {
  -webkit-transform: translateY(100%) scaleX(1);
          transform: translateY(100%) scaleX(1);
}
#front .news__content__category li button.is-active span {
  color: #fff;
  opacity: 1;
}
#front .news__content__list {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-rows: repeat(4, 1fr);
  row-gap: max(1.7rem, 15px);
  padding: max(7.5rem, 30px) max(9rem, 20px) 0;
  background: #fff;
}
@media screen and (max-width: 1300px) {
  #front .news__content__list {
    grid-template-columns: auto 1fr;
  }
}
#front .news__content__list__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  opacity: 1;
}
@media screen and (max-width: 1300px) {
  #front .news__content__list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
}
#front .news__content__list__item.is-fading-out {
  opacity: 0;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}
#front .news__content__list__item.is-fading-in {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}
#front .news__content__list__item__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: YakuHanJP, "Manrope", "IBM Plex Sans JP", sans-serif;
  font-size: max(1.6rem, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  margin-right: max(1.8rem, 5px);
}
#front .news__content__list__item__tags {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(1.2rem, 2px);
  margin-right: max(2.5rem, 20px);
}
@media screen and (max-width: 1300px) {
  #front .news__content__list__item__tags {
    grid-template-columns: auto auto;
    margin-right: 0;
  }
}
#front .news__content__list__item__tags li a {
  font-size: max(1.4rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: max(1rem, 8px) max(0.8rem, 5px);
  text-align: center;
  background: #E4F7F8;
  border-radius: max(0.4rem, 4px);
  overflow: hidden;
}
#front .news__content__list__item__tags li a:hover {
  -webkit-filter: invert(0.1);
          filter: invert(0.1);
}
#front .news__content__list__item__tags li.category-from-office a {
  background: #dbdbdb;
}
#front .news__content__list__item__tags li.category-pt a {
  color: #fff;
  background: #6C9BD2;
}
#front .news__content__list__item__tags li.category-po a {
  color: #fff;
  background: #F5A73E;
}
#front .news__content__list__item__tags li.category-st a {
  color: #fff;
  background: #EF858C;
}
#front .news__content__list__item__link {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
@media screen and (max-width: 1300px) {
  #front .news__content__list__item__link {
    width: 100%;
  }
}
#front .news__content__list__item__link h3 {
  position: relative;
  display: inline;
  font-size: max(1.5rem, 13px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
#front .news__content__list__item__link h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: max(0.1rem, 1px);
  background: #5DC2D0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
#front .news__content__list__item__link:hover h3::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#front .news__content__list__loading, #front .news__content__list__error, #front .news__content__list__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: max(0.95rem, 7.5px) 0;
  font-size: max(1.5rem, 13px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1300px) {
  #front .news__content__list__loading, #front .news__content__list__error, #front .news__content__list__empty {
    padding: 16.5px 0;
    line-height: 2;
  }
}
#front .news__content__list__error {
  color: #ef5350;
}
#front .news__content__btn {
  position: relative;
  padding: max(6rem, 30px) max(9rem, 20px) max(7.5rem, 40px);
}
#front .campus {
  position: relative;
  background: #5DC2D0;
  z-index: 1;
}
#front .campus__bg {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: max(101%, 1600px);
  height: auto;
  left: 50%;
  right: 0;
  top: 100%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
#front .campus__wrapper {
  padding-top: max(9.5rem, 50px);
}
@media screen and (max-width: 1000px) {
  #front .campus__btn.pc {
    display: none;
  }
}
#front .campus__btn.sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  #front .campus__btn.sp {
    display: block;
    margin-top: max(11rem, 40px);
  }
}
#front .campus__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  padding-bottom: max(4rem, 35px);
}
#front .campus__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px max(2.8rem, 10px);
}
@media screen and (max-width: 1000px) {
  #front .campus__content {
    grid-template-columns: 1fr;
  }
}
#front .campus__content article {
  opacity: 0;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
#front .campus__content article:nth-of-type(2) {
  -webkit-transition: opacity 0.8s ease 0.2s, -webkit-transform 0.4s ease 0.2s;
  transition: opacity 0.8s ease 0.2s, -webkit-transform 0.4s ease 0.2s;
  transition: transform 0.4s ease 0.2s, opacity 0.8s ease 0.2s;
  transition: transform 0.4s ease 0.2s, opacity 0.8s ease 0.2s, -webkit-transform 0.4s ease 0.2s;
}
#front .campus__content article:nth-of-type(3) {
  -webkit-transition: opacity 0.8s ease 0.4s, -webkit-transform 0.4s ease 0.4s;
  transition: opacity 0.8s ease 0.4s, -webkit-transform 0.4s ease 0.4s;
  transition: transform 0.4s ease 0.4s, opacity 0.8s ease 0.4s;
  transition: transform 0.4s ease 0.4s, opacity 0.8s ease 0.4s, -webkit-transform 0.4s ease 0.4s;
}
#front .campus__content__link {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: max(1.1rem, 10px);
  height: 100%;
  background: #fff;
  border-radius: max(1.5rem, 12px);
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.07);
  outline: max(0.2rem, 2px) solid var(--baseColor);
  outline-offset: min(-1.1rem, -10px);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
#front .campus__content__link.blue {
  --baseColor: #6c9bd2;
}
#front .campus__content__link.pink {
  --baseColor: #ef858c;
}
#front .campus__content__link.orange {
  --baseColor: #f5a73e;
}
#front .campus__content__link__department {
  width: 100%;
  padding: max(1rem, 10px) 5%;
  text-align: center;
  background: #FFF462;
  border-bottom: max(0.2rem, 2px) solid var(--baseColor);
  color: var(--baseColor);
  font-size: max(2rem, 18px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#front .campus__content__link__schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: max(1rem, 10px);
  padding: max(3rem, 15px) 5%;
}
@media screen and (max-width: 1300px) {
  #front .campus__content__link__schedule {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#front .campus__content__link__schedule__year {
  color: var(--baseColor);
  font-family: YakuHanJP, "Manrope", "IBM Plex Sans JP", sans-serif;
  font-size: max(2.8rem, 24px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1300px) {
  #front .campus__content__link__schedule__year {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #front .campus__content__link__schedule__year {
    width: auto;
  }
}
@media screen and (max-width: 550px) {
  #front .campus__content__link__schedule__year {
    width: 100%;
  }
}
#front .campus__content__link__schedule__day {
  color: var(--baseColor);
  font-family: YakuHanJP, "Manrope", "IBM Plex Sans JP", sans-serif;
  font-size: max(6.8rem, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
#front .campus__content__link__schedule__week {
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--baseColor);
}
#front .campus__content__link__schedule__week span {
  padding: 0 max(1rem, 10px);
  color: #fff;
  font-size: max(3rem, 24px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
#front .campus__content__link__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: max(1rem, 10px);
  padding: max(1rem, 10px) 5%;
  background: var(--baseColor);
}
#front .campus__content__link__btn .btn__text {
  color: #fff;
  font-size: max(1.6rem, 13px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-transform: translateY(1.5px);
          transform: translateY(1.5px);
}
#front .campus__content__link__btn .btn__arrow svg {
  width: max(1.5rem, 12px);
  height: auto;
  vertical-align: middle;
}
#front .campus__content__link__btn .btn__arrow svg path {
  fill: #fff;
}
#front .campus__content__link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
#front .campus__content.active article {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#front .campus__character {
  position: relative;
  width: max(50%, 400px);
  margin: max(12rem, 50px) auto 0;
  aspect-ratio: 614/259;
}
@media screen and (max-width: 550px) {
  #front .campus__character {
    width: 80%;
  }
}
#front .campus__character--left {
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 9%;
}
#front .campus__character--right {
  position: absolute;
  bottom: 16%;
  right: 0;
  width: 9%;
  -webkit-transform: translateX(30%);
          transform: translateX(30%);
}
#front .school {
  overflow: hidden;
}
#front .school__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: max(5.5rem, 30px);
     -moz-column-gap: max(5.5rem, 30px);
          column-gap: max(5.5rem, 30px);
}
@media screen and (max-width: 1000px) {
  #front .school__wrapper {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#front .school__content {
  padding-top: max(15rem, 70px);
  padding-bottom: max(30rem, 0px);
}
@media screen and (max-width: 1000px) {
  #front .school__content {
    width: 80%;
    margin: 0 auto;
    padding-bottom: max(15rem, 0px);
  }
}
@media screen and (max-width: 550px) {
  #front .school__content {
    width: 90%;
  }
}
#front .school__content h3 {
  margin-top: max(4.5rem, 30px);
  margin-bottom: max(3rem, 20px);
  font-size: max(2.4rem, 20px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
}
#front .school__content p {
  font-size: max(1.5rem, 12px);
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
#front .school__content__btn .btn {
  margin-top: max(6rem, 30px);
  margin-left: 0;
}
#front .school__slider {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(1.3rem, 6px);
  width: max(60%, 300px);
  height: 0;
}
@media screen and (max-width: 2000px) {
  #front .school__slider {
    margin-right: -10vw;
  }
}
@media screen and (max-width: 1000px) {
  #front .school__slider {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    width: auto;
    height: auto;
  }
}
#front .school__slider__inner {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  gap: max(1.3rem, 6px);
}
@media screen and (max-width: 1000px) {
  #front .school__slider__inner {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
  }
}
#front .school__slider__inner--upper {
  -webkit-animation: sliderUpper 50s linear infinite;
          animation: sliderUpper 50s linear infinite;
}
#front .school__slider__inner--lower {
  -webkit-animation: sliderLower 50s linear infinite;
          animation: sliderLower 50s linear infinite;
}
@-webkit-keyframes sliderUpper {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(calc(-50% + min(-1.3rem, -10px)));
            transform: translateY(calc(-50% + min(-1.3rem, -10px)));
  }
}
@keyframes sliderUpper {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(calc(-50% + min(-1.3rem, -10px)));
            transform: translateY(calc(-50% + min(-1.3rem, -10px)));
  }
}
@-webkit-keyframes sliderLower {
  0% {
    -webkit-transform: translateY(calc(-50% + min(-1.3rem, -10px)));
            transform: translateY(calc(-50% + min(-1.3rem, -10px)));
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes sliderLower {
  0% {
    -webkit-transform: translateY(calc(-50% + min(-1.3rem, -10px)));
            transform: translateY(calc(-50% + min(-1.3rem, -10px)));
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@media screen and (max-width: 1000px) {
  @-webkit-keyframes sliderUpper {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-50% + min(-1.3rem, -10px)));
              transform: translateX(calc(-50% + min(-1.3rem, -10px)));
    }
  }
  @keyframes sliderUpper {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-50% + min(-1.3rem, -10px)));
              transform: translateX(calc(-50% + min(-1.3rem, -10px)));
    }
  }
  @-webkit-keyframes sliderLower {
    0% {
      -webkit-transform: translateX(calc(-50% + min(-1.3rem, -10px)));
              transform: translateX(calc(-50% + min(-1.3rem, -10px)));
    }
    100% {
      -webkit-transform: translateX(0%);
              transform: translateX(0%);
    }
  }
  @keyframes sliderLower {
    0% {
      -webkit-transform: translateX(calc(-50% + min(-1.3rem, -10px)));
              transform: translateX(calc(-50% + min(-1.3rem, -10px)));
    }
    100% {
      -webkit-transform: translateX(0%);
              transform: translateX(0%);
    }
  }
}
#front .school__slider__item {
  border-radius: max(2.5rem, 10px);
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1000px) {
  #front .school__slider__item {
    aspect-ratio: 1.25/1;
    width: max(60rem, 150px);
  }
}
#front .school__slider__item img {
  width: 100%;
  height: 100%;
}
#front .reason {
  position: relative;
  background: #fff;
}
#front .reason::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  width: max(175.25%, 1000px);
  height: auto;
  aspect-ratio: 2.71/1;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), color-stop(50%, transparent));
  background: linear-gradient(to bottom, #fff 50%, transparent 50%);
  -webkit-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
  -webkit-box-shadow: 0 -14px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 -14px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
#front .reason__wrapper {
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #front .reason__wrapper {
    padding-top: 30px;
  }
}
#front .reason__title {
  text-align: center;
}
#front .reason__title h2 {
  position: relative;
  display: inline-block;
  color: #5DC2D0;
  font-size: max(3.6rem, 26px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: max(4rem, 30px);
}
#front .reason__title h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 15px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  background-image: url(../images/front-reason-underline.svg);
  background-size: 100%;
  background-repeat: repeat-x;
}
#front .reason__title p {
  font-size: max(2.4rem, 18px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
}
#front .reason__content {
  padding-top: max(5rem, 40px);
}
@media screen and (max-width: 1000px) {
  #front .reason__content {
    padding-top: max(11rem, 40px);
  }
}
#front .reason__content .reason__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px max(2.5rem, 15px);
}
@media screen and (max-width: 1000px) {
  #front .reason__content .reason__links {
    grid-template-columns: 1fr;
  }
}
#front .reason__content .reason__links__item {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}
#front .reason__content .reason__links__item--crown {
  position: absolute;
  top: -5%;
  left: 10%;
  width: 21%;
  mix-blend-mode: multiply;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
@-webkit-keyframes scaleExpand {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleExpand {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#front .reason__content .reason__links__item.active .reason__links__item--crown {
  opacity: 1;
  -webkit-animation: scaleExpand 1s forwards linear(0, 0.2178 2.1%, 1.1144 8.49%, 1.2959 10.7%, 1.3463 11.81%, 1.3705 12.94%, 1.3726, 1.3643 14.48%, 1.3151 16.2%, 1.0317 21.81%, 0.941 24.01%, 0.8912 25.91%, 0.8694 27.84%, 0.8698 29.21%, 0.8824 30.71%, 1.0122 38.33%, 1.0357, 1.046 42.71%, 1.0416 45.7%, 0.9961 53.26%, 0.9839 57.54%, 0.9853 60.71%, 1.0012 68.14%, 1.0056 72.24%, 0.9981 86.66%, 1);
          animation: scaleExpand 1s forwards linear(0, 0.2178 2.1%, 1.1144 8.49%, 1.2959 10.7%, 1.3463 11.81%, 1.3705 12.94%, 1.3726, 1.3643 14.48%, 1.3151 16.2%, 1.0317 21.81%, 0.941 24.01%, 0.8912 25.91%, 0.8694 27.84%, 0.8698 29.21%, 0.8824 30.71%, 1.0122 38.33%, 1.0357, 1.046 42.71%, 1.0416 45.7%, 0.9961 53.26%, 0.9839 57.54%, 0.9853 60.71%, 1.0012 68.14%, 1.0056 72.24%, 0.9981 86.66%, 1);
}
#front .reason__content .reason__text {
  width: 50%;
  margin: 0 auto;
  margin-top: max(7rem, 70px);
  margin-bottom: -1%;
}
@media screen and (max-width: 1000px) {
  #front .reason__content .reason__text {
    width: 65%;
  }
}
#front .movie {
  padding: max(4.3rem, 15px);
  background: #5DC2D0;
}
#front .movie__wrapper {
  padding: max(14rem, 60px) 5% max(14rem, 70px);
  background: #E4F7F8;
  border-radius: max(2.5rem, 15px);
}
#front .movie__people {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: max(53.5rem, 225px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#front .movie__content {
  position: relative;
  width: clamp(756px, 60%, 1025px);
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  #front .movie__content {
    width: 100%;
  }
}
#front .movie__flame {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#front .movie iframe {
  position: absolute;
  inset: max(2rem, 9px);
  aspect-ratio: 16/9;
  border-radius: max(2.5rem, 10px);
  overflow: hidden;
}
#front .course__wrapper {
  padding-top: max(11rem, 60px);
  padding-bottom: max(13.5rem, 80px);
}
#front .course__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px max(1.6rem, 10px);
  margin-top: max(2.5rem, 20px);
}
@media screen and (max-width: 1000px) {
  #front .course__list {
    grid-template-columns: 1fr;
  }
}
#front .course__list__item a {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: max(2.5rem, 15px);
  -webkit-box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
#front .course__list__item a.blue {
  --baseColor: #6c9bd2;
  --skeletonColor: #6c9bd200;
}
#front .course__list__item a.pink {
  --baseColor: #ef858c;
  --skeletonColor: #ef858c00;
}
#front .course__list__item a.orange {
  --baseColor: #f5a73e;
  --skeletonColor: #f5a73e00;
}
#front .course__list__item a .imageBox {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 13/9;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  #front .course__list__item a .imageBox {
    aspect-ratio: 15/8;
  }
}
#front .course__list__item a .imageBox::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40%;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--baseColor)), to(var(--skeletonColor)));
  background: linear-gradient(to top, var(--baseColor), var(--skeletonColor));
  z-index: 1;
  pointer-events: none;
}
#front .course__list__item a .imageBox span {
  position: absolute;
  left: max(3.5rem, 20px);
  bottom: max(3rem, 10px);
  color: #fff;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  z-index: 10;
}
#front .course__list__item a .imageBox span b {
  color: #fff;
  font-family: YakuHanJP, "Manrope", "IBM Plex Sans JP", sans-serif;
  font-size: max(4.1rem, 30px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-right: 5px;
}
#front .course__list__item a .imageBox img {
  width: 100%;
  height: 100%;
  -o-object-position: top;
     object-position: top;
}
#front .course__list__item a .textBox {
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: max(3.5rem, 30px) max(3.5rem, 20px);
}
#front .course__list__item a .textBox h3 {
  color: var(--baseColor);
  font-size: max(2.4rem, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  padding-bottom: max(1.5rem, 15px);
}
#front .course__list__item a .textBox .course__btn {
  margin-top: max(2rem, 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: max(1.5rem, 10px);
     -moz-column-gap: max(1.5rem, 10px);
          column-gap: max(1.5rem, 10px);
}
#front .course__list__item a .textBox .course__btn__text {
  color: var(--baseColor);
  font-size: max(1.8rem, 15px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
#front .course__list__item a .textBox .course__btn__arrow {
  width: max(1.5rem, 15px);
  height: auto;
}
#front .course__list__item a .textBox .course__btn__arrow path {
  fill: var(--baseColor);
}/*# sourceMappingURL=front.css.map */