/* Front page */
.hero--front {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: flex-end;
}
.hero--front .hero__title {
  color: #fff;
  text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  font-family: "Shippori Mincho";
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 172%;
  letter-spacing: 0.768rem;
  margin-bottom: 5.5rem;
}

/* Slider */
.slider {
  margin: 3rem 0;
  position: relative;
  overflow: hidden; /* viewport */
  padding: 0 var(--slider-peek, 1rem); /* show 1st/5th edges */
}
.slider__container .slick-list {
  margin: 0 -0.5rem;
}
.slider__container .slick-slide {
  padding: 0 0.5rem;
}
.slider__container .slick-prev,
.slider__container .slick-next {
  z-index: 3;
  background: rgba(200, 200, 200, 0.75);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
}
.slider__container .slick-prev {
  left: 0.25rem;
}
.slider__container .slick-next {
  right: 0.25rem;
}
.slider__container .slick-prev:before,
.slider__container .slick-next:before {
  opacity: 0.85;
  font-size: 24px;
}
.slider__item {
  box-sizing: border-box;
}
.slider__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Front page section */
.front-page-section__container {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
.front-page-section__image {
  width: auto;
  height: 100%;
}
.front-page-section__content {
  display: flex;
  flex-direction: column;
}
.front-page-section__title {
  font-size: 3rem;
  margin: 0;
}
.front-page-section__subtitle {
  font-size: 2rem;
  margin: 0;
}
.front-page-section__body {
  margin-top: 3rem;
}
.front-page-section__body p {
  font-size: 1.25rem;
  margin: 0;
}
.front-page-section__button {
  padding: 0.5rem 1rem;
  color: #000;
  text-decoration: none;
  font-size: 1.5rem;
  margin-top: auto;
  align-self: flex-end;
}
.front-page-section--2 .front-page-section__container {
  flex-direction: row-reverse;
}
.front-page-section--2 .front-page-section__title,
.front-page-section--2 .front-page-section__subtitle {
  align-self: flex-end;
}
.front-page-section--2 .front-page-section__button {
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .front-page-section__image img {
    width: 100%;
    height: auto;
  }
  .front-page-section--1 .front-page-section__container,
  .front-page-section--2 .front-page-section__container {
    flex-direction: column;
  }

  .front-page-section--2 .front-page-section__title,
  .front-page-section--2 .front-page-section__subtitle {
    align-self: flex-start;
  }
  .front-page-section--2 .front-page-section__button {
    align-self: flex-end;
  }

  .front-page-section__button img {
    width: 5rem;
  }
}
