* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
  color: #664a4a;
  background: #fff3f7 !important;
  line-height: 1.8;
}

#container {
  padding-top: 75px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  overflow: hidden;
}

.container {
  width: min(1000px, calc(100% - 40px));
  margin: 100px auto;
  padding-bottom: 0;
}

.mv {
  height: 80vh;
  overflow: hidden;
}

.mv-img-slider {
  width: 100%;
  height: 100%;
}

.mv-img-slider .slick-list,
.mv-img-slider .slick-track {
  height: 100%;
}

.mv-img-slider .mv-img {
  display: none;
  height: 100%;
}

.mv-img-slider .mv-img:first-child {
  display: block;
}

.mv-img-slider.slick-initialized .mv-img {
  display: block;
}

.mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-img {
  overflow: hidden;
}

.mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-title {
  font-size: 2.4em;
}

/* アクティブ画像 */
.mv-img.slick-active img {
  animation: mvZoomOut 8s ease forwards;
}

@keyframes mvZoomOut {
  0% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

.section {
  position: relative;
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 220px 220px;
  column-gap: 40px;
  align-items: start;
}

.about-imgs {
  display: contents;
}

.about-img-slider:nth-of-type(2) {
  margin-left: -25px;
}

/* スライダー */
.about-img-slider {
  height: 360px;
  overflow: hidden;
}

/* slick内部 */
.about-img-slider .slick-list,
.about-img-slider .slick-track {
  height: 100%;
}

.about-img {
  height: 360px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spot {
  position: relative;
  background-image: url(../../ko/feature/img/feature-05/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
}

.spot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(239, 239, 239, 0.5);
  pointer-events: none;
  z-index: 0;
}

.spot > * {
  position: relative;
  z-index: 1;
}

.spot .section-title {
  color: #664a4a;
}

.center {
  text-align: center;
}

.section-title {
  font-size: 52px;
  line-height: 1.35;
  font-weight: 500;
  color: #3e3e3e;
  margin-bottom: 16px;
}

.spot .eyebrow {
  color: #664a4a;
}

.eyebrow {
  position: relative;
  padding: 0.3em 0 0.2em 1em;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.6em;
}

.eyebrow::before {
  position: absolute;
  top: 0;
  left: 0.3em;
  transform: rotate(55deg);
  height: 11px;
  width: 12px;
  background: #ffd6ed;
  content: "";
}

.eyebrow::after {
  position: absolute;
  transform: rotate(15deg);
  top: 0.6em;
  left: 0;
  height: 8px;
  width: 8px;
  background: #f5b2b2;
  content: "";
}

.section-desc {
  max-width: 720px;
  margin: 0 auto 44px;
  font-size: 15px;
  color: #555;
}

.en-title {
  font-size: 2.4em;
  color: #664a4a;
  margin: 36px 0 22px;
  text-align: center;
  font-weight: bold;
}

.spot-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 34px;
}

.spot-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.spot-cards--reveal .spot-card {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spot-cards--reveal.is-revealed .spot-card {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .spot-cards--reveal .spot-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .day2-list--reveal .day2-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.spot-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #ddd;
}

.spot-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-card__title {
  font-size: 16px;
  margin-bottom: 6px;
  color: #444;
}

.spot-card__text {
  font-size: 12px;
  line-height: 1.7;
  color: #666;
}

.gallery-slider {
  margin-top: 24px;
}

.gallery-item img {
  width: 100%;
  height: auto;
}

.day2-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.day2-item {
  width: 100%;
}

.day2-list--reveal .day2-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.day2-list--reveal.is-revealed .day2-item {
  opacity: 1;
  transform: translateY(0);
}

.day2-item__image {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.day2-item__title {
  font-size: 1.4em;
  margin: 15px auto;
  width: fit-content;
}

.day2-item__text {
  font-size: 14px;
  border-top: 1px solid #5c5c5c;
  padding-top: 15px;
}

.list-block {
  max-width: 760px;
  margin: 0 auto;
}

.list-block__item {
  margin-bottom: 14px;
}

.list-block__name {
  font-size: 24px;
  color: #444;
  margin-bottom: 4px;
}

.list-block__text {
  font-size: 14px;
  color: #555;
}

.pickup {
  margin-top: 70px;
}

.pickup__box {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.pickup__image {
  width: 100%;
  height: 150px;
  background: #5a5a5a;
  border-radius: 28px;
}

.pickup__title {
  font-size: 34px;
  margin-bottom: 10px;
  color: #444;
}

.pickup__text {
  font-size: 14px;
  color: #555;
}

.closing {
  padding-top: 40px;
}

.closing__text {
  max-width: 860px;
  margin: 0 auto;
  font-size: 14px;
  color: #555;
}

.footer {
  background:
    linear-gradient(rgba(215, 68, 36, 0.88), rgba(215, 68, 36, 0.88)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.08) 12px,
      transparent 12px,
      transparent 24px
    );
  color: #fff;
  padding: 28px 20px;
  text-align: center;
}

.footer__logo {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer__copy {
  font-size: 12px;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .section-title {
    font-size: 40px;
  }

  .spot-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__circle--main {
    width: 360px;
    height: 360px;
  }

  .hero__circle--sub {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .container {
    margin: 45px auto;
  }

  .section-title {
    font-size: 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .about-text {
    grid-column: auto;
  }

  .about-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .about-img-slider {
    width: 100%;
    height: 220px;
  }

  .about-img,
  .about-img img {
    height: 100%;
  }

  .eyebrow {
    font-size: 22px;
  }

  .en-title {
    font-size: 24px;
  }

  .spot {
    padding: 5px 0;
  }

  .spot-cards {
    grid-template-columns: 1fr;
  }

  .day2-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .day2-item__title,
  .pickup__title {
    font-size: 28px;
  }

  .section--white-curve::before {
    width: 140%;
    height: 90%;
    top: 40px;
  }
}

#footer a {
  display: inline-block;
}
