.important-news-box {
  position: relative;
  width: 300px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 5px;
  background: var(--color-white);
}
@media (min-width: 768px) {
  .important-news-box {
    width: 620px;
    padding: 80px 80px 60px;
    border-radius: 10px;
  }
}
.important-news-box__close {
  display: flex;
  position: absolute;
  top: 14px;
  right: 14px;
  align-items: center;
  color: #4f4d4d;
  font-size: 11px;
  line-height: 1;
}
@media (min-width: 768px) {
  .important-news-box__close {
    top: 23px;
    right: 23px;
    transition: transform 0.6s var(--ease-out-quint);
    font-size: 15px;
  }
  .important-news-box__close:hover {
    transform: scale(1.05);
  }
}
.important-news-box__close .icon {
  display: block;
  position: relative;
  width: 10px;
  height: 10px;
  margin-right: 7px;
}
@media (min-width: 768px) {
  .important-news-box__close .icon {
    width: 14px;
    height: 14px;
    margin-right: 16px;
  }
}
.important-news-box__close .icon::before, .important-news-box__close .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #4f4d4d;
}
@media (min-width: 768px) {
  .important-news-box__close .icon::before, .important-news-box__close .icon::after {
    width: 19px;
  }
}
.important-news-box__close .icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.important-news-box__heading {
  margin-bottom: 25px;
  color: var(--color-secondery);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .important-news-box__heading {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.important-news-box__button {
  width: fit-content;
  margin: 25px auto 0;
}
@media (min-width: 768px) {
  .important-news-box__button {
    margin-top: 45px;
  }
}

.mv {
  position: relative;
}
.mv .mv-slider {
  --slide-duration: 5500;
  position: relative;
  padding-bottom: 35px;
}
@media (min-width: 768px) {
  .mv .mv-slider {
    --slide-duration: 6000;
    padding: 0;
  }
}
.mv .mv-slider::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url("/assets/images/pages/index/mv_deco.png") no-repeat center/contain;
  aspect-ratio: 750/370;
}
@media (min-width: 768px) {
  .mv .mv-slider::before {
    bottom: -180px;
    background-image: url("/assets/images/pages/index/mv_deco_md.png");
    aspect-ratio: 1600/501;
  }
}
.mv .mv-slider__inner {
  position: relative;
  aspect-ratio: 710/930;
  margin-left: 20px;
  overflow: hidden;
  border-radius: 80px 0 0 0;
}
@media (min-width: 768px) {
  .mv .mv-slider__inner {
    height: calc(100vh - 74px);
    margin-left: 80px;
    border-radius: 160px 0 0 0;
    aspect-ratio: unset;
  }
}
.mv .mv-slider__heading {
  position: absolute;
  z-index: 1;
  bottom: 75px;
  left: 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}
@media (min-width: 768px) {
  .mv .mv-slider__heading {
    top: 0;
    bottom: 0;
    left: 140px;
    height: fit-content;
    margin: auto;
    font-size: 40px;
  }
}
.mv .mv-slider__heading .en {
  display: block;
  margin-top: 17px;
  font-family: var(--font-zen-kaku);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}
@media (min-width: 768px) {
  .mv .mv-slider__heading .en {
    margin-top: 25px;
    font-size: 20px;
  }
}
.mv .mv-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1.2s var(--ease-out-quint);
  opacity: 0;
}
.mv .mv-slider__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv .mv-slider__slide .deco {
  z-index: 1;
  opacity: 0;
}
.mv .mv-slider__slide.is-active .main, .mv .mv-slider__slide.is-prev .main {
  animation: zoom-up calc(var(--slide-duration) * 1ms + 1s) linear forwards;
}
.mv .mv-slider__slide.is-active .deco, .mv .mv-slider__slide.is-prev .deco {
  transition: opacity 1s 1.5s var(--ease-out-quint);
  opacity: 1;
}
.mv .mv-slider__slide.is-active {
  opacity: 1;
}
.mv .mv-slider__pagination {
  display: flex;
  position: absolute;
  top: 80px;
  bottom: 0;
  left: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .mv .mv-slider__pagination {
    top: 0;
    left: 20px;
    gap: 8px;
  }
}
.mv .mv-slider__pagination .bullet {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
}
.mv .mv-slider__pagination .bullet.is-active {
  background: var(--color-primary);
}
.mv .mv-news {
  padding: 7px 10px 30px;
  background: var(--color-bg-secondery) url("/assets/images/pages/index/mv_bg.png") repeat 0 0/10px;
}
@media (min-width: 768px) {
  .mv .mv-news {
    position: absolute;
    z-index: 1;
    bottom: 30px;
    left: 30px;
    padding: 0;
    background: none;
  }
}
.mv .mv-news__inner {
  display: flex;
  padding: 10px;
  border-radius: 7px;
  background: var(--color-white);
}
@media (min-width: 768px) {
  .mv .mv-news__inner {
    width: 520px;
    padding: 17px 17px 17px 0;
  }
}
.mv .mv-news__title {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  margin-right: 8px;
  padding-right: 8px;
  border-right: solid 1px #fad5e8;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .mv .mv-news__title {
    justify-content: center;
    width: 94px;
    margin-right: 18px;
    padding: 0;
    font-size: 14px;
  }
}
.mv .mv-news .news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .mv .mv-news .news-list {
    gap: 13px;
  }
}
.mv .mv-news .news {
  display: grid;
  grid-template-columns: 60px auto;
  font-size: 11px;
  line-height: 1;
}
@media (min-width: 768px) {
  .mv .mv-news .news {
    grid-template-columns: 90px auto;
    font-size: 14px;
  }
  .mv .mv-news .news:hover .news__text {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}
.mv .mv-news .news__text {
  overflow: hidden;
  transition: 0.6s var(--ease-out-quint);
  transition-property: color, border-color;
  border-bottom: 1px solid #b9b8b8;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sec-about-childcare {
  padding: 0 0 75px;
  background: var(--color-bg-base);
}
@media (min-width: 768px) {
  .sec-about-childcare {
    padding: calc(7% + 60px) 0 100px;
  }
}
.sec-about-childcare__heading {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-about-childcare__heading {
    margin-bottom: 30px;
    font-size: 46px;
  }
}
.sec-about-childcare__heading::before {
  content: "";
  display: block;
  width: 285px;
  height: 110px;
  margin: 0 auto 38px;
  background: url("/assets/images/pages/index/childcare_deco.png") no-repeat center/contain;
}
@media (min-width: 768px) {
  .sec-about-childcare__heading::before {
    position: absolute;
    top: -40px;
    right: 0;
    left: 0;
    width: 1120px;
    height: 154px;
    margin: auto;
    background-image: url("/assets/images/pages/index/childcare_deco_md.png");
  }
}
.sec-about-childcare__heading .main {
  display: block;
}
.sec-about-childcare .lead-text {
  line-height: 1.9;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-about-childcare .lead-text {
    font-size: 16px;
    line-height: 2.25;
  }
}
.sec-about-childcare .about-list {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
  gap: 25px;
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list {
    margin-top: 50px;
    gap: 40px;
  }
  .sec-about-childcare .about-list__item:nth-child(odd) .card {
    flex-direction: row-reverse;
  }
  .sec-about-childcare .about-list__item:nth-child(odd) .card__image {
    border-radius: 0 20px 20px 0;
  }
  .sec-about-childcare .about-list__item:nth-child(odd) .card__content {
    border-radius: 20px 0 0 20px;
  }
  .sec-about-childcare .about-list__item:nth-child(even) .card__content {
    padding-right: 140px;
  }
}
.sec-about-childcare .about-list .card {
  display: block;
  position: relative;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card {
    display: flex;
  }
}
.sec-about-childcare .about-list .card__image {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card__image {
    flex: 1 1 auto;
    border-radius: 20px 0 0 20px;
  }
}
.sec-about-childcare .about-list .card__image .image-wrap {
  display: flex;
  overflow: hidden;
  transition: transform 1s var(--ease-out-expo);
}
.sec-about-childcare .about-list .card__image .image {
  flex: 1 1 auto;
  width: 50%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card__image .image {
    aspect-ratio: 380/280;
  }
}
.sec-about-childcare .about-list .card__image .image img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card__image .image img {
    height: 100%;
    object-fit: cover;
  }
}
.sec-about-childcare .about-list .card__content {
  position: relative;
  padding: 20px 30px 27px;
  border-radius: 0 0 20px 20px;
  background: no-repeat center/cover;
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card__content {
    display: flex;
    position: static;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    padding: 20px 60px;
    border-radius: 0 20px 20px 0;
  }
}
.sec-about-childcare .about-list .card__content::before {
  content: "";
  display: block;
  position: absolute;
  background: no-repeat center/contain;
}
.sec-about-childcare .about-list .card__content .heading {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card__content .heading {
    margin-bottom: 15px;
    font-size: 28px;
  }
}
.sec-about-childcare .about-list .card__content .text {
  width: 225px;
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card__content .text {
    width: auto;
    font-size: 15px;
    line-height: 2;
  }
  .sec-about-childcare .about-list .card__content .text span {
    display: inline-block;
  }
}
.sec-about-childcare .about-list .card .icon {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 0 0 8px;
  border-radius: 30px 0 0 0;
  background: var(--color-bg-base);
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card .icon {
    padding: 15px 0 0 15px;
    border-radius: 50px 0 0 0;
  }
}
.sec-about-childcare .about-list .card .icon::before, .sec-about-childcare .about-list .card .icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  transform: rotate(180deg);
  background: url("/assets/images/pages/common/round.svg") no-repeat 0 0/contain;
  filter: var(--color-bg-base-filter);
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card .icon::before, .sec-about-childcare .about-list .card .icon::after {
    width: 26px;
    height: 26px;
  }
}
.sec-about-childcare .about-list .card .icon::before {
  right: 100%;
  bottom: 0;
}
.sec-about-childcare .about-list .card .icon::after {
  right: 0;
  bottom: 100%;
}
.sec-about-childcare .about-list .card .icon__inner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card .icon__inner {
    width: 70px;
    height: 70px;
    transition: transform 0.6s var(--ease-out-quint);
  }
}
.sec-about-childcare .about-list .card .icon__inner::before {
  content: "";
  display: block;
  width: 8px;
  height: 6px;
  background: var(--color-white);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card .icon__inner::before {
    width: 13px;
    height: 9px;
  }
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card:hover .icon__inner,
  .sec-about-childcare .about-list .card:hover .card__image .image-wrap {
    transform: scale(1.05);
  }
}
.sec-about-childcare .about-list .card--events .card__content {
  background-image: url("/assets/images/pages/index/childcare_events_bg.png");
}
.sec-about-childcare .about-list .card--events .card__content::before {
  top: -29px;
  right: 50px;
  width: 64px;
  height: 70px;
  background-image: url("/assets/images/pages/index/childcare_events_deco.png");
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card--events .card__content::before {
    top: -55px;
    right: 46px;
    width: 113px;
    height: 124px;
  }
}
.sec-about-childcare .about-list .card--events .icon__inner {
  background: #ea4397;
}
.sec-about-childcare .about-list .card--day .card__content {
  background-image: url("/assets/images/pages/index/childcare_day_bg.png");
}
.sec-about-childcare .about-list .card--day .card__content::before {
  top: -33px;
  right: 42px;
  width: 66px;
  height: 73px;
  background-image: url("/assets/images/pages/index/childcare_day_deco.png");
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card--day .card__content::before {
    top: -20px;
    right: auto;
    left: 46px;
    width: 114px;
    height: 126px;
  }
}
.sec-about-childcare .about-list .card--day .icon__inner {
  background: #ef56a3;
}
.sec-about-childcare .about-list .card--activities .card__content {
  background-image: url("/assets/images/pages/index/childcare_activities_bg.png");
}
.sec-about-childcare .about-list .card--activities .card__content::before {
  top: -9px;
  right: 39px;
  width: 53px;
  height: 52px;
  background-image: url("/assets/images/pages/index/childcare_activities_deco.png");
}
@media (min-width: 768px) {
  .sec-about-childcare .about-list .card--activities .card__content::before {
    top: -20px;
    right: 44px;
    width: 90px;
    height: 88px;
  }
}
.sec-about-childcare .about-list .card--activities .icon__inner {
  background: #f578b7;
}

.sec-about-childcare:not(.is-active) .sec-about-childcare__heading::before,
.sec-about-childcare:not(.is-active) .sec-about-childcare__heading .sub,
.sec-about-childcare:not(.is-active) .sec-about-childcare__heading .main {
  display: block;
  transform: translateY(10%);
  opacity: 0;
}
.sec-about-childcare:not(.is-active) .lead-text {
  transform: translateY(5%);
  opacity: 0;
}
.sec-about-childcare:not(.is-active) .about-list__item {
  transform: translateY(5%);
  opacity: 0;
}

.sec-about-childcare.is-active .sec-about-childcare__heading::before,
.sec-about-childcare.is-active .sec-about-childcare__heading .sub,
.sec-about-childcare.is-active .sec-about-childcare__heading .main {
  transition: 1s var(--ease-out-quint);
  transition-property: opacity, transform;
}
.sec-about-childcare.is-active .sec-about-childcare__heading .sub {
  transition-delay: 0.4s;
}
.sec-about-childcare.is-active .sec-about-childcare__heading .main {
  transition-delay: 0.6s;
}
.sec-about-childcare.is-active .lead-text {
  transition: 1s 1s var(--ease-out-quint);
  transition-property: opacity, transform;
}
.sec-about-childcare.is-active .about-list__item {
  transition: transform 1.4s var(--ease-out-expo), opacity 0.8s var(--ease-out-sine);
}
.sec-about-childcare.is-active .about-list__item:nth-child(1) {
  transition-delay: 1.4s;
}
.sec-about-childcare.is-active .about-list__item:nth-child(2) {
  transition-delay: 1.6s;
}
.sec-about-childcare.is-active .about-list__item:nth-child(3) {
  transition-delay: 1.8s;
}
.sec-about-childcare.is-active .about-list__item:nth-child(4) {
  transition-delay: 2s;
}

.sec-about-kindergarten {
  background: var(--color-bg-secondery);
}
.sec-about-kindergarten__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 57px;
}
@media (min-width: 768px) {
  .sec-about-kindergarten__inner {
    padding-bottom: 100px;
  }
}
.sec-about-kindergarten__inner::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: -47px;
  left: 0;
  width: 100%;
  background: url("/assets/images/pages/index/about_bg.png") no-repeat center bottom/100% auto;
  aspect-ratio: 750/502;
}
@media (min-width: 768px) {
  .sec-about-kindergarten__inner::after {
    bottom: 150px;
    transform: translateY(100%);
    background-image: url("/assets/images/pages/index/about_bg_md.png");
    aspect-ratio: 1600/289;
  }
}
.sec-about-kindergarten__heading {
  margin-bottom: 30px;
  color: var(--color-secondery);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .sec-about-kindergarten__heading {
    margin-bottom: 50px;
    font-size: 60px;
  }
}
.sec-about-kindergarten__heading::before {
  content: "";
  display: block;
  width: 114px;
  height: 69px;
  margin: 0 auto 20px;
  background: url("/assets/images/pages/index/about_icon.png") no-repeat center/contain;
}
@media (min-width: 768px) {
  .sec-about-kindergarten__heading::before {
    width: 228px;
    height: 138px;
    margin-bottom: 30px;
    background-image: url("/assets/images/pages/index/about_icon.png");
  }
}
.sec-about-kindergarten__lead {
  position: relative;
  z-index: 0;
  margin-bottom: 65px;
  padding: 100px 0 260px;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-about-kindergarten__lead {
    margin-bottom: 0;
    padding: 120px 0;
  }
}
.sec-about-kindergarten__lead::before {
  content: "";
  display: block;
  position: absolute;
  top: 42px;
  left: 50%;
  width: 388px;
  height: 296px;
  transform: translateX(-50%);
  background: url("/assets/images/pages/index/about_deco1.png") no-repeat center/contain;
  pointer-events: none;
}
@media (min-width: 768px) {
  .sec-about-kindergarten__lead::before {
    top: 143px;
    right: calc(50% + 300px);
    left: auto;
    width: 250px;
    height: 785px;
    transform: none;
    background-image: url("/assets/images/pages/index/about_deco1_md.png");
  }
}
.sec-about-kindergarten__lead::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 15px;
  width: 327px;
  height: 304px;
  margin: auto;
  background: url("/assets/images/pages/index/about_deco2.png") no-repeat center/contain;
  pointer-events: none;
}
@media (min-width: 768px) {
  .sec-about-kindergarten__lead::after {
    top: 143px;
    right: auto;
    bottom: auto;
    left: calc(50% + 333px);
    width: 413px;
    height: 577px;
    background-image: url("/assets/images/pages/index/about_deco2_md.png");
  }
}
.sec-about-kindergarten__lead .image1,
.sec-about-kindergarten__lead .image2,
.sec-about-kindergarten__lead .image3 {
  position: absolute;
  z-index: -1;
}
.sec-about-kindergarten__lead .image1 {
  top: 11px;
  right: calc(50% + 60px);
}
@media (min-width: 768px) {
  .sec-about-kindergarten__lead .image1 {
    top: 257px;
    right: calc(50% + 360px);
  }
}
.sec-about-kindergarten__lead .image1 img {
  width: 135px;
  height: auto;
}
@media (min-width: 768px) {
  .sec-about-kindergarten__lead .image1 img {
    width: 459px;
  }
}
.sec-about-kindergarten__lead .image2 {
  bottom: 11px;
  left: calc(50% - 43px);
}
@media (min-width: 768px) {
  .sec-about-kindergarten__lead .image2 {
    bottom: 78px;
    left: calc(50% + 342px);
  }
}
.sec-about-kindergarten__lead .image2 img {
  width: 240px;
  height: auto;
}
@media (min-width: 768px) {
  .sec-about-kindergarten__lead .image2 img {
    width: 477px;
  }
}
.sec-about-kindergarten__lead .image3 {
  top: 138px;
  left: calc(50% + 340px);
}
.sec-about-kindergarten__lead .message {
  display: grid;
  gap: 27px;
  line-height: 2.15;
}
@media (min-width: 768px) {
  .sec-about-kindergarten__lead .message {
    margin: 0 auto;
    font-size: 18px;
    font-weight: 500;
    line-height: 2.4;
    text-align: start;
    writing-mode: vertical-rl;
    text-orientation: upright;
    gap: 55px;
  }
}
.sec-about-kindergarten__lead .button {
  width: fit-content;
  margin: 35px auto 0;
}
@media (min-width: 768px) {
  .sec-about-kindergarten__lead .button {
    margin-top: 75px;
  }
}
.sec-about-kindergarten .about-content__heading {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-content__heading {
    margin-bottom: 30px;
    font-size: 46px;
  }
}
.sec-about-kindergarten .about-content__heading .main {
  display: block;
}
.sec-about-kindergarten .about-content .lead-text {
  margin-bottom: 35px;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-content .lead-text {
    margin-bottom: 50px;
  }
}
.sec-about-kindergarten .about-list {
  display: flex;
  flex-direction: column;
  gap: 37px;
  margin: 0 10px;
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    padding-bottom: 100px;
    gap: 55px 80px;
  }
  .sec-about-kindergarten .about-list__item:nth-child(even) {
    margin: 100px 0 -100px;
  }
}
.sec-about-kindergarten .about-list .card {
  display: block;
  position: relative;
}
.sec-about-kindergarten .about-list .card__heading {
  display: flex;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  flex-direction: column-reverse;
  align-items: flex-start;
  padding: 14px 16px 20px 0;
  border-radius: 0 0 34px 0/0 0 30px 0;
  background: var(--color-bg-secondery);
  font-size: 16px;
  gap: 5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  writing-mode: vertical-rl;
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-list .card__heading {
    padding: 20px 30px 30px 0;
    border-radius: 0 0 50px 0;
    font-size: 26px;
    letter-spacing: 0.1em;
    gap: 10px;
  }
}
.sec-about-kindergarten .about-list .card__heading::before, .sec-about-kindergarten .about-list .card__heading::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  background: url("/assets/images/pages/common/round_pink.svg") no-repeat 0 0/contain;
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-list .card__heading::before, .sec-about-kindergarten .about-list .card__heading::after {
    width: 26px;
    height: 26px;
  }
}
.sec-about-kindergarten .about-list .card__heading::before {
  top: 0;
  left: 100%;
}
.sec-about-kindergarten .about-list .card__heading::after {
  top: 100%;
  left: 0;
}
.sec-about-kindergarten .about-list .card__heading .sub {
  color: var(--color-primary);
  font-size: 9px;
  line-height: 1;
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-list .card__heading .sub {
    font-size: 15px;
  }
}
.sec-about-kindergarten .about-list .card__image {
  position: relative;
}
.sec-about-kindergarten .about-list .card__image .image {
  overflow: hidden;
  border-radius: 20px;
}
.sec-about-kindergarten .about-list .card__image img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-list .card__image img {
    transition: transform 1s var(--ease-out-expo);
  }
}
.sec-about-kindergarten .about-list .card__image .icon {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 0 0 8px;
  border-radius: 30px 0 0 0;
  background: var(--color-bg-secondery);
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-list .card__image .icon {
    padding: 15px 0 0 15px;
    border-radius: 50px 0 0 0;
  }
}
.sec-about-kindergarten .about-list .card__image .icon::before, .sec-about-kindergarten .about-list .card__image .icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  transform: rotate(180deg);
  background: url("/assets/images/pages/common/round_pink.svg") no-repeat 0 0/contain;
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-list .card__image .icon::before, .sec-about-kindergarten .about-list .card__image .icon::after {
    width: 26px;
    height: 26px;
  }
}
.sec-about-kindergarten .about-list .card__image .icon::before {
  right: 100%;
  bottom: 0;
}
.sec-about-kindergarten .about-list .card__image .icon::after {
  right: 0;
  bottom: 100%;
}
.sec-about-kindergarten .about-list .card__image .icon__inner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-list .card__image .icon__inner {
    width: 70px;
    height: 70px;
    transition: transform 0.6s var(--ease-out-quint);
  }
}
.sec-about-kindergarten .about-list .card__image .icon__inner::before {
  content: "";
  display: block;
  width: 8px;
  height: 6px;
  background: var(--color-white);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-list .card__image .icon__inner::before {
    width: 13px;
    height: 9px;
  }
}
.sec-about-kindergarten .about-list .card__text {
  padding-top: 15px;
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-list .card__text {
    padding: 25px 40px 0;
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .sec-about-kindergarten .about-list .card:hover .card__image .icon__inner,
  .sec-about-kindergarten .about-list .card:hover .card__image img {
    transform: scale(1.05);
  }
}

.sec-about-kindergarten:not(.is-active) .sec-about-kindergarten__heading::before,
.sec-about-kindergarten:not(.is-active) .sec-about-kindergarten__heading .text {
  display: block;
  transform: translateY(10%);
  opacity: 0;
}
.sec-about-kindergarten:not(.is-active) .message {
  transform: translateY(5%);
  opacity: 0;
}
.sec-about-kindergarten:not(.is-active) .image1,
.sec-about-kindergarten:not(.is-active) .image2,
.sec-about-kindergarten:not(.is-active) .image3 {
  opacity: 0;
}

.sec-about-kindergarten.is-active .sec-about-kindergarten__heading::before,
.sec-about-kindergarten.is-active .sec-about-kindergarten__heading .text {
  transition: 1s var(--ease-out-quint);
  transition-property: opacity, transform;
}
.sec-about-kindergarten.is-active .sec-about-kindergarten__heading .text {
  display: block;
  transition-delay: 0.4s;
}
.sec-about-kindergarten.is-active .message {
  transition: 1s 0.8s var(--ease-out-quint);
  transition-property: opacity, transform;
}
.sec-about-kindergarten.is-active .image1,
.sec-about-kindergarten.is-active .image2,
.sec-about-kindergarten.is-active .image3 {
  transition: 0.6s var(--ease-out-sine);
  transition-property: opacity, transform;
}
.sec-about-kindergarten.is-active .image1 {
  transition-delay: 1.4s;
}
.sec-about-kindergarten.is-active .image2 {
  transition-delay: 1.8s;
}
.sec-about-kindergarten.is-active .image3 {
  transition-delay: 2.2s;
}

.sec-about-kindergarten .about-content:not(.is-active) .about-content__heading::before,
.sec-about-kindergarten .about-content:not(.is-active) .about-content__heading .sub,
.sec-about-kindergarten .about-content:not(.is-active) .about-content__heading .main {
  display: block;
  transform: translateY(10%);
  opacity: 0;
}
.sec-about-kindergarten .about-content:not(.is-active) .lead-text {
  transform: translateY(5%);
  opacity: 0;
}
.sec-about-kindergarten .about-content:not(.is-active) .about-list__item {
  transform: translateY(5%);
  opacity: 0;
}

.sec-about-kindergarten .about-content.is-active .about-content__heading::before,
.sec-about-kindergarten .about-content.is-active .about-content__heading .sub,
.sec-about-kindergarten .about-content.is-active .about-content__heading .main {
  transition: 1s var(--ease-out-quint);
  transition-property: opacity, transform;
}
.sec-about-kindergarten .about-content.is-active .about-content__heading .sub {
  transition-delay: 0.4s;
}
.sec-about-kindergarten .about-content.is-active .about-content__heading .main {
  transition-delay: 0.6s;
}
.sec-about-kindergarten .about-content.is-active .lead-text {
  transition: 1s 1s var(--ease-out-quint);
  transition-property: opacity, transform;
}
.sec-about-kindergarten .about-content.is-active .about-list__item {
  transition: transform 1.4s var(--ease-out-expo), opacity 0.8s var(--ease-out-sine);
}
.sec-about-kindergarten .about-content.is-active .about-list__item:nth-child(1) {
  transition-delay: 1.4s;
}
.sec-about-kindergarten .about-content.is-active .about-list__item:nth-child(2) {
  transition-delay: 1.6s;
}
.sec-about-kindergarten .about-content.is-active .about-list__item:nth-child(3) {
  transition-delay: 1.8s;
}
.sec-about-kindergarten .about-content.is-active .about-list__item:nth-child(4) {
  transition-delay: 2s;
}

.sec-album {
  padding: 87px 0 35px;
  background-color: #e9f4fb;
  background-image: url("/assets/images/pages/index/album_bg.png"), linear-gradient(to top, var(--color-white), #e9f4fb);
  background-repeat: no-repeat;
  background-position: top center, bottom center;
  background-size: 100% auto, 100% 285px;
}
@media (min-width: 768px) {
  .sec-album {
    padding: 100px 0 120px;
    background-image: url("/assets/images/pages/index/album_bg_md.png"), linear-gradient(to top, var(--color-white), #e9f4fb);
    background-size: 100 auto, 100% 400px;
  }
}
.sec-album__heading {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-album__heading {
    margin-bottom: 30px;
    font-size: 46px;
  }
}
.sec-album__heading .sub {
  --color: #79c0e7;
}
.sec-album .lead-text {
  margin-bottom: 37px;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-album .lead-text {
    margin-bottom: 55px;
    font-size: 16px;
  }
}
.sec-album__inner {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .sec-album__inner {
    display: flex;
    padding: 0;
  }
}
.sec-album .album-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec-album .album-list {
    grid-auto-flow: column;
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
    width: fit-content;
    height: fit-content;
    padding-bottom: 50px;
    gap: 30px 20px;
  }
  .sec-album .album-list:not(.slider) {
    display: none;
  }
}
.sec-album .album-list.slider {
  padding-right: 20px;
  animation: album-scroll 80s linear infinite;
}
@media (max-width: 767.98px) {
  .sec-album .album-list.slider {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .sec-album .album-list__item:nth-child(even) {
    margin: 30px 0 -30px;
  }
  .sec-album .album-list__item:nth-child(n+7) {
    display: none;
  }
}
@media (min-width: 768px) {
  .sec-album .album-list__item {
    width: 355px;
  }
  .sec-album .album-list__item:nth-child(4n+3), .sec-album .album-list__item:nth-child(4n+4) {
    margin: 50px 0 -50px;
  }
}
@media (min-width: 768px) {
  .sec-album .album-list.reverse .album-list__item:nth-child(4n+1), .sec-album .album-list.reverse .album-list__item:nth-child(4n+2) {
    margin: 50px 0 -50px;
  }
  .sec-album .album-list.reverse .album-list__item:nth-child(4n+3), .sec-album .album-list.reverse .album-list__item:nth-child(4n+4) {
    margin: 0;
  }
}
.sec-album .album-list .card {
  display: block;
  position: relative;
  aspect-ratio: 1;
}
.sec-album .album-list .card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  width: 83%;
  margin: -2.2% auto 0;
  background: url("/assets/images/pages/index/album_deco.svg") no-repeat center/contain;
  aspect-ratio: 270/23;
}
.sec-album .album-list .card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .sec-album .album-list .card__image {
    border-radius: 20px;
  }
}
.sec-album .album-list .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .sec-album .album-list .card__image img {
    transition: transform 1s var(--ease-out-expo);
  }
}
.sec-album .album-list .card__information {
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 0;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .sec-album .album-list .card__information {
    bottom: 20px;
    gap: 2px;
  }
}
.sec-album .album-list .card__information .label {
  padding: 0 5px;
  background: var(--color-white);
  font-size: 9px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .sec-album .album-list .card__information .label {
    padding: 0 10px;
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .sec-album .album-list .card:hover .card__image img {
    transform: scale(1.05);
  }
}
.sec-album .button {
  width: fit-content;
  margin: 30px auto 0;
}
@media (min-width: 768px) {
  .sec-album .button {
    margin-top: 60px;
  }
}

.sec-album:not(.is-active) .sec-album__heading .sub,
.sec-album:not(.is-active) .sec-album__heading .main,
.sec-album:not(.is-active) .lead-text {
  display: block;
  transform: translateY(20%);
  opacity: 0;
}
.sec-album:not(.is-active) .lead-text {
  transform: translateY(50%);
}

.sec-album.is-active .sec-album__heading .sub,
.sec-album.is-active .sec-album__heading .main,
.sec-album.is-active .lead-text {
  display: block;
  transition: 1s var(--ease-out-quint);
  transition-property: opacity, transform;
}
.sec-album.is-active .sec-album__heading .main {
  transition-delay: 0.2s;
}
.sec-album.is-active .lead-text {
  transition-delay: 0.6s;
}

.sec-gap {
  position: relative;
  height: 100svh;
  background: var(--color-white);
}
.sec-gap__stage {
  position: sticky;
  top: var(--header-height);
  height: 100svh;
}
.sec-gap .image {
  position: absolute;
  width: 47.2%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .sec-gap .image {
    width: 23.12%;
  }
}
.sec-gap .image__inside {
  overflow: hidden;
  border-radius: 5px;
}
.sec-gap .image img {
  width: 100%;
  height: auto;
}
.sec-gap .main {
  display: flex;
  position: absolute;
  z-index: 10;
  top: -1%;
  right: -1%;
  bottom: -1%;
  left: -1%;
  align-items: center;
  justify-content: center;
  height: 35.33%;
  margin: auto;
  overflow: hidden;
  transform: none;
}
@media (min-width: 768px) {
  .sec-gap .main {
    height: 60%;
  }
}
.sec-gap .main .image__inner,
.sec-gap .main .image__inside {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.sec-gap .main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-gap .image1 {
  top: 24%;
  left: 21.4%;
}
@media (min-width: 768px) {
  .sec-gap .image1 {
    top: 36%;
    left: 11.15%;
  }
}
.sec-gap .image1 .image__inner {
  transform: rotate(-15deg);
}
.sec-gap .image2 {
  z-index: 1;
  top: 36%;
  left: 80%;
}
@media (min-width: 768px) {
  .sec-gap .image2 {
    top: 80.72%;
    left: 25.62%;
  }
}
.sec-gap .image2 .image__inner {
  transform: rotate(16deg);
}
.sec-gap .image3 {
  z-index: 1;
  top: 69%;
  left: 14.6%;
}
@media (min-width: 768px) {
  .sec-gap .image3 {
    top: 32.53%;
    left: 73.75%;
  }
}
.sec-gap .image3 .image__inner {
  transform: rotate(-27.38deg);
}
@media (min-width: 768px) {
  .sec-gap .image3 .image__inner {
    transform: rotate(16deg);
  }
}
.sec-gap .image4 {
  top: 82%;
  left: 69%;
}
@media (min-width: 768px) {
  .sec-gap .image4 {
    top: 73.13%;
    left: 87.5%;
  }
}
.sec-gap .image4 .image__inner {
  transform: rotate(34.9deg);
}
@media (min-width: 768px) {
  .sec-gap .image4 .image__inner {
    transform: rotate(-15deg);
  }
}

.sec-gap:not(.is-active) .main,
.sec-gap:not(.is-active) .image1 .image__inside,
.sec-gap:not(.is-active) .image2 .image__inside,
.sec-gap:not(.is-active) .image3 .image__inside,
.sec-gap:not(.is-active) .image4 .image__inside {
  transform: scale(1.1);
  opacity: 0;
}

.sec-gap.is-active .main,
.sec-gap.is-active .image1 .image__inside,
.sec-gap.is-active .image2 .image__inside,
.sec-gap.is-active .image3 .image__inside,
.sec-gap.is-active .image4 .image__inside {
  transition: 1s var(--ease-out-quint);
  transition-property: opacity, transform;
}
.sec-gap.is-active .image4 .image__inside {
  transition-delay: 0.5s;
}
.sec-gap.is-active .image3 .image__inside {
  transition-delay: 1s;
}
.sec-gap.is-active .image2 .image__inside {
  transition-delay: 1.5s;
}
.sec-gap.is-active .main {
  width: 100%;
  height: 100%;
  transition: opacity 1s 2s var(--ease-out-quint), transform 1s 2s var(--ease-out-quint), width 2s 3s var(--ease-out-expo), height 2s 3s var(--ease-out-expo);
}
.sec-gap.is-active .main .image__inside {
  transition: border-radius 0.5s 3.5s;
  border-radius: 0;
}

.sec-information-wrap {
  padding: 100px 0 65px;
  background: var(--color-bg-base);
}
@media (min-width: 768px) {
  .sec-information-wrap {
    padding: 100px 0 120px;
  }
}
.sec-information-wrap .l-container {
  display: flex;
  flex-direction: column;
  gap: 110px;
}

.sec-information {
  position: relative;
  max-width: 335px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 30px;
  background: var(--color-white);
}
@media (min-width: 768px) {
  .sec-information {
    display: flex;
    align-items: center;
    max-width: 100%;
    height: 487px;
    margin: 0 120px 0 0;
    padding: 20px;
  }
  .sec-information__inner {
    width: 50%;
    padding: 0 80px;
  }
}
.sec-information::before {
  content: "";
  display: block;
  position: absolute;
  top: -34px;
  left: 22px;
  width: 69px;
  height: 58px;
  background: url("/assets/images/pages/index/information_deco.png") no-repeat center/contain;
}
@media (min-width: 768px) {
  .sec-information::before {
    top: -44px;
    left: 91px;
    width: 118px;
    height: 98px;
  }
}
.sec-information__image {
  position: absolute;
  top: -90px;
  right: -5px;
}
@media (min-width: 768px) {
  .sec-information__image {
    top: 50%;
    right: -120px;
    left: calc(50% + 40px);
    transform: translateY(-50%);
  }
}
.sec-information__image img {
  width: 181px;
  height: auto;
}
@media (min-width: 768px) {
  .sec-information__image img {
    width: 100%;
  }
}
.sec-information__heading {
  width: 50%;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .sec-information__heading {
    width: auto;
    margin-bottom: 35px;
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .sec-information .text {
    font-size: 18px;
    line-height: 2.1;
  }
}
.sec-information .button {
  width: fit-content;
  margin: 25px auto 0;
}
@media (min-width: 768px) {
  .sec-information .button {
    margin: 45px 0 0;
  }
}
@media (min-width: 768px) {
  .sec-information:nth-child(even) {
    margin: 0 0 0 120px;
  }
}
.sec-information:nth-child(even) .sec-information__image {
  right: auto;
  left: -5px;
}
@media (min-width: 768px) {
  .sec-information:nth-child(even) .sec-information__image {
    right: calc(50% + 40px);
    left: -120px;
  }
}
.sec-information:nth-child(even) .sec-information__inner {
  margin-left: auto;
}
.sec-information:nth-child(even) .sec-information__heading {
  margin-left: auto;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .sec-information:nth-child(even) .sec-information__heading {
    padding: 0;
  }
}
.sec-information--access::before {
  top: -20px;
  right: 34px;
  left: auto;
  width: 88px;
  height: 53px;
  background-image: url("/assets/images/pages/index/access_deco.png");
}
@media (min-width: 768px) {
  .sec-information--access::before {
    top: auto;
    right: auto;
    bottom: 25px;
    left: calc(50% + 380px);
    width: 155px;
    height: 94px;
  }
}

.sec-information:not(.is-active) {
  opacity: 0;
}
.sec-information:not(.is-active) .sec-information__image img {
  transform: scale(1.05);
  opacity: 0;
}

.sec-information.is-active {
  transition: opacity 1s var(--ease-out-expo);
}
.sec-information.is-active .sec-information__image img {
  transition: 1s var(--ease-out-quint);
  transition-property: opacity, transform;
  transition-delay: 0.4s;
}

.sec-news {
  padding: 80px 0 50px;
  background: var(--color-white);
}
@media (min-width: 768px) {
  .sec-news {
    padding: 35px 0 60px;
  }
}
.sec-news__heading {
  position: relative;
  margin-bottom: 35px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-news__heading {
    margin-bottom: 45px;
    font-size: 40px;
  }
}
.sec-news__heading::before {
  content: "";
  position: absolute;
  top: -80px;
  left: calc(50% + 73px);
  width: 97px;
  height: 89px;
  background: url("/assets/images/pages/index/news_deco.png") no-repeat center/contain;
}
@media (min-width: 768px) {
  .sec-news__heading::before {
    top: -53px;
    left: calc(50% + 260px);
    width: 158px;
    height: 145px;
  }
}
.sec-news .news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 10px;
}
@media (min-width: 768px) {
  .sec-news .news-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.sec-news .news__image {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 10px 0;
  aspect-ratio: 325/217;
}
@media (min-width: 768px) {
  .sec-news .news__image {
    border-radius: 20px 20px 20px 0;
  }
}
.sec-news .news__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .sec-news .news__image img {
    transition: transform 1s var(--ease-out-expo);
  }
}
.sec-news .news__category {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px 8px 0 5px;
  border-radius: 0 15px 0 0/0 17px 0 0;
  background: #fff;
}
@media (min-width: 768px) {
  .sec-news .news__category {
    padding: 10px 10px 0;
    border-radius: 0 20px 0 0;
  }
}
.sec-news .news__category::before, .sec-news .news__category::after {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  transform: rotate(-90deg);
  background: url("/assets/images/pages/common/round.svg") no-repeat 0 0/contain;
}
@media (min-width: 768px) {
  .sec-news .news__category::before, .sec-news .news__category::after {
    width: 16px;
    height: 16px;
  }
}
.sec-news .news__category::before {
  bottom: 100%;
  left: 0;
}
.sec-news .news__category::after {
  bottom: 0;
  left: 100%;
}
.sec-news .news__category .category {
  display: block;
  padding: 5px;
  border: solid 1px #bfb9b9;
  border-radius: 3px;
  font-size: 9px;
  line-height: 1;
}
@media (min-width: 768px) {
  .sec-news .news__category .category {
    padding: 7px 9px;
    border-radius: 4px;
    font-size: 12px;
  }
}
.sec-news .news__category .category--important {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}
.sec-news .news__content {
  padding: 17px 5px 0;
  font-size: 12px;
}
@media (min-width: 768px) {
  .sec-news .news__content {
    padding: 25px 20px 0;
    font-size: 15px;
  }
}
.sec-news .news__content .date {
  margin-bottom: 4px;
  line-height: 1;
}
@media (min-width: 768px) {
  .sec-news .news__content .date {
    margin-bottom: 10px;
  }
}
.sec-news .news__content .title {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.8;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (min-width: 768px) {
  .sec-news .news__content .title {
    font-size: 15px;
    line-height: 2;
  }
  .sec-news .news__content .title span {
    transition: 0.6s var(--ease-out-quint);
    transition-property: color, border-color;
    border-bottom: solid 1px transparent;
  }
}
@media (min-width: 768px) {
  .sec-news .news:hover .news__image img {
    transform: scale(1.05);
  }
  .sec-news .news:hover .news__content .title span {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}
.sec-news .button {
  width: fit-content;
  margin: 35px auto 0;
}
@media (min-width: 768px) {
  .sec-news .button {
    margin-top: 50px;
  }
}

.sec-news:not(.is-active) .sec-news__heading .sub,
.sec-news:not(.is-active) .sec-news__heading .main {
  display: block;
  transform: translateY(20%);
  opacity: 0;
}
.sec-news:not(.is-active) .news-list__item {
  transform: translateY(5%);
  opacity: 0;
}

.sec-news.is-active .sec-news__heading .sub,
.sec-news.is-active .sec-news__heading .main {
  display: block;
  transition: 1s var(--ease-out-quint);
  transition-property: opacity, transform;
}
.sec-news.is-active .sec-news__heading .main {
  transition-delay: 0.2s;
}
.sec-news.is-active .news-list__item {
  transition: transform 1s var(--ease-out-expo), opacity 0.8s var(--ease-out-sine);
}
.sec-news.is-active .news-list__item:nth-child(1) {
  transition-delay: 0.6s;
}
.sec-news.is-active .news-list__item:nth-child(2) {
  transition-delay: 0.8s;
}
.sec-news.is-active .news-list__item:nth-child(3) {
  transition-delay: 1s;
}
.sec-news.is-active .news-list__item:nth-child(4) {
  transition-delay: 1.2s;
}

.sec-support {
  position: relative;
  z-index: 0;
  padding: 65px 0 67px;
  background: url("/assets/images/pages/index/suppor_bg.png") 0/20px;
}
@media (min-width: 768px) {
  .sec-support {
    padding: 120px 0;
    background-size: auto;
  }
}
.sec-support::before, .sec-support::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  background: url("/assets/images/pages/index/suppor_bg_top.png") no-repeat center/contain;
  aspect-ratio: 750/132;
}
@media (min-width: 768px) {
  .sec-support::before, .sec-support::after {
    background-image: url("/assets/images/pages/index/suppor_bg_top_md.png");
    aspect-ratio: 1600/120;
  }
}
.sec-support::after {
  top: auto;
  bottom: 0;
  transform: scaleY(-1);
}
@media (min-width: 768px) {
  .sec-support__image {
    margin: 0 60px;
  }
}
.sec-support__image img {
  width: 100%;
  height: auto;
}
.sec-support__heading {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-support__heading {
    margin-bottom: 30px;
    font-size: 46px;
  }
}
.sec-support__box {
  position: absolute;
  height: fit-content;
  margin: auto 20px;
  padding: 35px 30px;
  border-radius: 30px;
  background: var(--color-white);
  inset: 0;
}
@media (min-width: 768px) {
  .sec-support__box {
    width: 820px;
    margin: auto;
    padding: 50px 40px;
    border-radius: 60px;
  }
}
.sec-support__box .text {
  line-height: 1.9;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-support__box .text {
    font-size: 15px;
    line-height: 2.25;
  }
}
.sec-support__box .button-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
@media (min-width: 768px) {
  .sec-support__box .button-list {
    flex-direction: row;
    margin-top: 30px;
    gap: 20px;
  }
}
.sec-support__box .button-list__item:nth-child(2) .c-button {
  background-color: #f678b6;
}

.sec-support:not(.is-active) .sec-support__box {
  transform: translateY(5%);
  opacity: 0;
}

.sec-support.is-active .sec-support__box {
  transition: 1s var(--ease-out-quint);
  transition-property: opacity, transform;
}