.page-home__mv {
  position: relative;
}

.page-home__event {
  background: #F5F1E9;
  padding-block: 70px calc(90px + 8.3333333333vw);
}
@media screen and (max-width: 768px) {
  .page-home__event {
    padding-block: 25px calc(45px + 8vw);
  }
}

.page-home__event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 28px;
}
@media screen and (max-width: 768px) {
  .page-home__event-list {
    gap: 20px 15px;
  }
}

@media screen and (min-width: 769px) {
  .page-home__event-item:first-child {
    margin-right: 12px;
  }
}
@media screen and (max-width: 768px) {
  .page-home__event-item:first-child {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .page-home__event-item:nth-child(-n+2) {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .page-home__event-item:nth-child(n+2) {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (min-width: 769px) {
  .page-home__event-item:nth-child(n+3) {
    width: calc((100% - 84px) / 4);
  }
}
.page-home__event-item .event-ttl {
  margin-block: 15px 10px;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page-home__event-item .event-ttl {
    margin-block: 12px 5px;
    font-size: 1.3rem;
  }
}
.page-home__event-item .event-text {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page-home__event-item .event-text {
    font-size: 1.3rem;
  }
}

.page-home__event-thumb {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.page-home__event-thumb img {
  aspect-ratio: 600/338;
  width: 100%;
  max-width: none;
  object-fit: cover;
}
.page-home__event-thumb .thumb-01 {
  position: relative;
  z-index: 1;
}
.page-home__event-thumb .thumb-02 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  animation: event-thumb 4s linear 2s infinite;
}
@keyframes event-thumb {
  0% {
    z-index: 0;
  }
  100% {
    z-index: 1;
  }
}

.page-home__event-btn {
  width: 250px;
  margin: 55px auto 0;
}
@media screen and (max-width: 768px) {
  .page-home__event-btn {
    width: 200px;
    margin-top: 25px;
  }
}

.page-home__age::before {
  background: url(../../img/bg/bg-wave-orange.webp) no-repeat 0 0;
  background-size: cover;
  content: "";
  width: 59.0277777778vw;
  height: 12.7777777778vw;
  display: block;
  position: absolute;
  top: 47px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .page-home__age::before {
    width: 58.9333333333vw;
    height: 12.8vw;
    top: -0.8vw;
  }
}

.page-home__age-bg {
  background: var(--base);
  margin-top: -1px;
  padding-block: 45px 245px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-home__age-bg {
    padding-block: 35px calc(50px + 8vw);
  }
}

.page-home__age-contents {
  display: grid;
}
@media screen and (min-width: 769px) {
  .page-home__age-contents {
    grid-template-columns: repeat(2, minmax(0, 594px));
    align-items: start;
    gap: 50px;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .page-home__age-contents {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media screen and (min-width: 769px) {
  .page-home__age-inner {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .page-home__age-inner {
    border-radius: 25px;
    padding: 18px 20px 24px;
  }
}
@media screen and (max-width: 768px) {
  .page-home__age-inner.age-01 {
    background: #FFE8CC;
  }
}
@media screen and (max-width: 768px) {
  .page-home__age-inner.age-02 {
    background: #DEF4E3;
  }
}
@media screen and (max-width: 768px) {
  .page-home__age-inner.age-03 {
    background: #D7ECFA;
  }
}
@media screen and (max-width: 768px) {
  .page-home__age-inner.age-04 {
    background: #F0E9F2;
  }
}

.page-home__age-pict {
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .page-home__age-pict {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 90px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
  }
  .page-home__age-pict.pict-01 {
    opacity: 1;
    z-index: 2;
  }
  .page-home__age-pict.is-active {
    opacity: 1;
    z-index: 3;
  }
  .page-home__age-pict.pict-02 {
    z-index: 4;
  }
  .page-home__age-pict.pict-03 {
    z-index: 5;
  }
  .page-home__age-pict.pict-04 {
    z-index: 6;
  }
}
@media screen and (max-width: 768px) {
  .page-home__age-pict {
    border-radius: 15px;
  }
}
.page-home__age-pict img {
  width: 100%;
  max-width: none;
}

@media screen and (min-width: 769px) {
  .page-home__age-box {
    border-radius: 50px;
    margin-inline: auto 0;
    padding: 40px 4.0322580645vw 50px;
    grid-column: 2;
  }
  .page-home__age-box.box-01 {
    background: #FFE8CC;
  }
  .page-home__age-box.box-02 {
    background: #DEF4E3;
  }
  .page-home__age-box.box-03 {
    background: #D7ECFA;
  }
  .page-home__age-box.box-04 {
    background: #F0E9F2;
  }
}
@media (width >= 1240px) {
  .page-home__age-box {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 768px) {
  .page-home__age-box {
    margin-top: 15px;
  }
}
.page-home__age-box .age-ttl {
  margin-bottom: 15px;
  font-size: 3.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page-home__age-box .age-ttl {
    margin-bottom: 8px;
    font-size: 1.8rem;
    text-align: center;
  }
}
.page-home__age-box .age-ttl-large {
  font-size: 3.8rem;
}
@media screen and (max-width: 768px) {
  .page-home__age-box .age-ttl-large {
    font-size: 2.2rem;
  }
}
.page-home__age-box .age-ttl-small {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .page-home__age-box .age-ttl-small {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .page-home__age-box .age-text {
    font-size: 1.4rem;
  }
}
.page-home__age-box .age-link {
  width: 250px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .page-home__age-box .age-link {
    width: 170px;
    margin-inline: auto;
  }
}

.page-home__sns::before {
  background: url(../../img/bg/bg-wabe-green.webp) no-repeat 0 0;
  background-size: cover;
  content: "";
  width: 65.9027777778vw;
  height: 15.2083333333vw;
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page-home__sns::before {
    width: 65.8666666667vw;
    height: 15.2vw;
    top: 0;
  }
}

.page-home__sns-wave {
  z-index: 3;
}

.page-home__sns-bg {
  background: #FFF0EF;
  margin-top: -1px;
  padding-block: 70px 240px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .page-home__sns-bg {
    padding-block: 35px calc(30px + 8vw);
  }
}

.page-home__sns-inntro {
  margin-top: -30px;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .page-home__sns-inntro {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .page-home__sns-inntro {
    margin-top: -10px;
  }
}

.page-home__sns-col {
  margin-top: 80px;
  display: grid;
  grid-template-columns: minmax(400px, 710px) minmax(270px, 458px);
  gap: 0 4.8387096774vw;
}
@media (width >= 1240px) {
  .page-home__sns-col {
    gap: 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .page-home__sns-col {
    margin-top: 25px;
    grid-template-columns: 1fr;
    gap: 35px 0;
  }
}

.page-home__sns-ttl {
  margin-bottom: 20px;
  font-size: 3.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0 15px;
}
@media screen and (max-width: 768px) {
  .page-home__sns-ttl {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.8rem;
    gap: 0 8px;
  }
}
.page-home__sns-ttl.ttl-insta::before {
  background: url(../../img/icon/icon-instagram-01.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 36px;
  height: 36px;
  display: block;
}
@media screen and (max-width: 768px) {
  .page-home__sns-ttl.ttl-insta::before {
    width: 28px;
    height: 28px;
  }
}
.page-home__sns-ttl.ttl-yt::before {
  background: url(../../img/icon/icon-youtube-01.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  width: 51px;
  height: 36px;
  display: block;
}
@media screen and (max-width: 768px) {
  .page-home__sns-ttl.ttl-yt::before {
    width: 31px;
    height: 22px;
  }
}

@media screen and (max-width: 768px) {
  .page-home__sns-yt {
    display: flex;
    flex-wrap: wrap;
    gap: 0 12px;
  }
}
@media screen and (max-width: 768px) {
  .page-home__sns-yt .sns-yt-item {
    width: calc((100% - 12px) / 2);
  }
}
@media screen and (min-width: 769px) {
  .page-home__sns-yt .sns-yt-item:nth-of-type(n + 2) {
    margin-top: 35px;
  }
}

.page-home__sns-list {
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .page-home__sns-list {
    width: 285px;
    margin: 40px auto 0;
  }
}

.page-home__map::before {
  background: url(../../img/bg/bg-wave-gray.webp) no-repeat 0 0;
  background-size: cover;
  content: "";
  width: 59.0277777778vw;
  height: 12.7777777778vw;
  display: block;
  position: absolute;
  top: 6px;
  right: 0;
  z-index: 4;
}

.page-home__map-wave {
  z-index: 5;
}

.page-home__map-bg {
  background: #E2F0FA;
  margin-top: -1px;
  padding-bottom: 190px;
  position: relative;
  z-index: 5;
}

.page-home__map-contents {
  width: 100%;
  max-width: 962px;
  margin-inline: auto;
}

.page-home__map-link {
  width: 250px;
  margin: 70px auto 0;
}

.page-home__info-wave {
  z-index: 6;
}

.page-home__info-bg {
  margin-top: -1px;
  padding-bottom: 80px;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 768px) {
  .page-home__info-bg {
    padding-block: 30px 40px;
  }
}

.page-home__info-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 3.6290322581vw;
}
@media (width >= 1240px) {
  .page-home__info-list {
    gap: 30px 45px;
  }
}
@media screen and (max-width: 768px) {
  .page-home__info-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 3.2258064516vw;
  }
}

.page-home__info-link img {
  aspect-ratio: 382/274;
  width: 100%;
  max-width: none;
  object-fit: cover;
}
.page-home__info-link .info-pict {
  border-radius: 16px;
  box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-home__info-link .info-pict {
    border-radius: 8px;
    box-shadow: 2px 2px 6x 0 rgba(0, 0, 0, 0.16);
  }
}
.page-home__info-link .info-ttl {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page-home__info-link .info-ttl {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}

.page-home__news {
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .page-home__news {
    padding-bottom: calc(45px + 4vw);
  }
}

.page-home__news-slide-list .slide-pict {
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-home__news-slide-list .slide-pict {
    border-radius: 8px;
  }
}
.page-home__news-slide-list .slide-pict img {
  aspect-ratio: 382/225;
  width: 100%;
  max-width: none;
  object-fit: cover;
}
.page-home__news-slide-list .slide-ttl {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page-home__news-slide-list .slide-ttl {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}

.page-home__news-slide-arrow {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 26px;
}
.page-home__news-slide-arrow .splide__arrow {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .page-home__news-slide-arrow .splide__arrow {
    width: 32px;
  }
}
.page-home__news-slide-arrow .splide__arrow--next {
  scale: -1 1;
}

.page-home__news-contents {
  border: 1px solid #707070;
  border-radius: 13px;
  margin-top: 70px;
  padding: 50px 20px 50px 4.0322580645vw;
  display: grid;
  grid-template-columns: minmax(100px, 232px) minmax(520px, 920px);
}
@media (width >= 1240px) {
  .page-home__news-contents {
    padding-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .page-home__news-contents {
    margin-top: 30px;
    padding: 25px 20px 20px;
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 769px) {
  .page-home__news-category {
    padding-right: 4.0322580645vw;
    position: relative;
  }
}
@media (width >= 1240px) {
  .page-home__news-category {
    padding-right: 50px;
  }
}
@media screen and (min-width: 769px) {
  .page-home__news-category::after {
    border: 1px dotted #A7A7A7;
    content: "";
    width: 1px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.page-home__news-link {
  width: 250px;
  margin: 45px auto 0;
}
@media screen and (max-width: 768px) {
  .page-home__news-link {
    width: 186px;
  }
}

@media screen and (max-width: 768px) {
  .page-home__bnr {
    background: #fff;
  }
}
.page-home__bnr::before {
  background: url(../../img/bg/bg-wave-blue.webp) no-repeat 0 0;
  background-size: cover;
  content: "";
  width: 65.9027777778vw;
  height: 15.2083333333vw;
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 7;
}

.page-home__bnr-wave {
  z-index: 8;
}

.page-home__bnr-bg {
  background: #C8F0D0;
  margin-top: -1px;
  padding: 0 10px 100px;
  position: relative;
  z-index: 8;
}
@media screen and (max-width: 768px) {
  .page-home__bnr-bg {
    padding: 30px 10px 45px;
  }
}

.page-home__bnr-list {
  width: 100%;
  max-width: 1192px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.page-home__bnr-item {
  width: 100%;
  max-width: 586px;
}
@media screen and (min-width: 769px) {
  .page-home__bnr-list:has(li:nth-child(2)) .page-home__bnr-item {
    width: calc((100% - 20px) / 2);
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .page-home__bnr-item {
    width: 78.1333333333vw;
    margin-inline: auto;
  }
}
.page-home__bnr-item a[target=_blank]::after {
  display: none;
}
.page-home__bnr-item img {
  width: 100%;
}

.page-home__sns-insta #sb_instagram #sbi_images {
  padding-block: 0;
}