.section-title {
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 40px;
  line-height: 1;
}

.site-page--home .teaser-kv {
  height: 100vh;
  height: 100svh;
  min-height: 0;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 0;
}
.site-page--home .teaser-kv .teaser-kv__visual {
  aspect-ratio: auto;
  height: 100%;
  width: 100%;
}
.site-page--home .teaser-kv .teaser-kv__image img {
  object-position: center top;
}

.home-main {
  background: rgba(255, 255, 255, 0.9);
  margin: calc(100vh - 20px) 24px 0;
  margin: calc(100svh - 20px) 24px 0;
  position: relative;
  z-index: 1;
}

.home-news {
  position: relative;
}
.home-news__inner {
  margin: auto;
  max-width: 1280px;
  overflow: hidden;
  padding: 104px 80px;
}

.home-main .teaser-charity,
.home-main .teaser-overview {
  background: #f8dddf;
}

.news-carousel {
  margin-top: 56px;
}
.news-carousel__track {
  display: flex;
  gap: 16px;
}
.news-carousel__track > * {
  flex: 1 1 0;
  min-width: 0;
}
.news-carousel__controls {
  display: none;
}

.news-card {
  overflow: hidden;
}

.news-card img {
  aspect-ratio: 346.67/417;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-charity {
  background: #ea497f;
  color: #fff;
  position: relative;
  z-index: 1;
}
.home-charity__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 50%);
}
.home-charity__text {
  padding: 96px clamp(32px, 6.25vw, 80px);
}
.home-charity__body {
  font-size: 14px;
  line-height: 2;
  margin-top: 48px;
  max-width: 510px;
}
.home-charity__body p + p {
  margin-top: 1.5em;
}
.home-charity__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.section-title--light {
  color: #fff;
}

.text-link {
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: -0.04em;
  display: inline-block;
  font-size: 14px;
  margin-top: 36px;
  text-decoration: underline;
}

.home-lead {
  background: #fff;
  position: relative;
  z-index: 1;
}
.home-lead__inner {
  margin: auto;
  max-width: 850px;
  padding: 128px 24px;
  text-align: center;
}
.home-lead__title {
  border-bottom: 3px solid #333;
  display: inline-block;
  font-size: 30px;
  line-height: 1;
  padding-bottom: 8px;
}
.home-lead__inner > p {
  font-size: 15px;
  line-height: 2;
  margin-top: 42px;
  text-align: left;
}
.home-lead__inner > p + p {
  margin-top: 24px;
}

.home-overview {
  background: #f8dddf;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home-overview__inner {
  align-items: center;
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 700px;
}
.home-overview__mark {
  align-self: stretch;
  overflow: hidden;
  position: relative;
}
.home-overview__mark img {
  left: 50%;
  max-width: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(58vw, 740px);
}
.home-overview__content {
  padding: 100px 80px;
}
.home-overview__content dl {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 48px;
}
.home-overview__content dl div {
  display: grid;
  gap: 28px;
  grid-template-columns: 3em 1fr;
}
.home-overview__content dl div + div {
  margin-top: 14px;
}
.home-overview__venue {
  font-size: 14px;
  margin-top: 28px;
  text-decoration: underline;
}
.home-overview__instagram {
  display: inline-flex;
  flex-direction: column;
  font-size: 15px;
  gap: 8px;
  margin-top: 48px;
  text-decoration: underline;
}
.home-overview__instagram span {
  font-family: Arial, sans-serif;
  font-size: 14px;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }
  .site-page--home .teaser-kv {
    height: 100vh;
    height: 100svh;
  }
  .home-main {
    margin: calc(100vh - 47px) 16px 0;
    margin: calc(100svh - 47px) 16px 0;
  }
  .home-news__inner {
    padding: 48px 0;
  }
  .home-news .section-title {
    padding: 0 24px;
  }
  .news-carousel {
    height: 354px;
    margin-top: 24px;
    overflow: hidden;
    position: relative;
  }
  .news-carousel__track {
    gap: 8px;
    transition: transform 0.45s ease;
  }
  .news-carousel__track > * {
    flex: 0 0 260.8px;
  }
  .news-carousel__controls {
    display: block;
    inset: 0;
    margin: 0;
    pointer-events: none;
    position: absolute;
  }
  .news-carousel__arrow {
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 0;
    cursor: pointer;
    display: flex;
    height: 314px;
    justify-content: center;
    padding: 9px;
    pointer-events: auto;
    position: absolute;
    top: 0;
    width: 41px;
    z-index: 1;
  }
  .news-carousel__arrow img {
    height: 23px;
    width: 23px;
  }
  .news-carousel__arrow--prev {
    left: 0;
  }
  .news-carousel__arrow--next {
    right: 0;
    transform: rotate(180deg);
  }
  .news-carousel__dots {
    bottom: 0;
    display: flex;
    gap: 8px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }
  .news-carousel__dots button {
    background: transparent;
    border: 1px solid #333;
    cursor: pointer;
    height: 8px;
    padding: 0;
    width: 8px;
  }
  .news-carousel__dots button.is-current {
    background: #333;
  }
  .home-charity__inner {
    display: flex;
    flex-direction: column;
  }
  .home-charity__text {
    padding: 64px 24px 48px;
  }
  .home-charity__body {
    font-size: 12px;
    line-height: 1.9;
    margin-top: 32px;
  }
  .home-charity__image {
    order: -1;
  }
  .home-charity__image img {
    height: auto;
  }
  .text-link {
    font-size: 12px;
    margin-top: 28px;
  }
  .home-lead__inner {
    padding: 72px 24px;
  }
  .home-lead__title {
    border-width: 2px;
    font-size: 20px;
    padding-bottom: 6px;
  }
  .home-lead__inner > p {
    font-size: 12px;
    line-height: 1.9;
    margin-top: 32px;
  }
  .home-overview__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .home-overview__mark {
    height: 350px;
    width: 100%;
  }
  .home-overview__mark img {
    width: 520px;
  }
  .home-overview__content {
    padding: 48px 24px 64px;
    width: 100%;
  }
  .home-overview__content dl {
    font-size: 12px;
    margin-top: 32px;
  }
  .home-overview__content dl div {
    gap: 16px;
  }
  .home-overview__venue {
    font-size: 12px;
    margin-top: 24px;
  }
  .home-overview__instagram {
    font-size: 13px;
    margin-top: 32px;
  }
}