.p-voice-hero {
  background-image: url("../../img/voice/hero.webp");
}

/* ==== ピックアップ（お客様の声1件を大きく紹介） ==== */
.p-voice-pickup {
  padding: var(--space-80) 0;
  background: var(--color-cream);
}

.p-voice-pickup__container {
  display: flex;
  align-items: center;
  gap: var(--space-80);
}

.p-voice-pickup__body {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-32);
}

.p-voice-pickup__heading {
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-text);
}

.p-voice-pickup__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-normal);
  color: var(--color-text);
}

.p-voice-pickup__name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-normal);
  color: var(--color-text);
}

.p-voice-pickup__text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
}

.p-voice-pickup__image {
  flex: 1;
  aspect-ratio: 560 / 346;
  overflow: hidden;
}

.p-voice-pickup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .p-voice-pickup {
    padding: var(--space-56) 0;
  }

  .p-voice-pickup__container {
    flex-direction: column;
    gap: var(--space-40);
  }
  
  .p-voice-pickup__title {
    font-size: var(--font-size-xl);
  }
}

/* ==== 声一覧（背景写真+暗幕オーバーレイの上にカードグリッド） ==== */
.p-voice-list {
  position: relative;
  padding: var(--space-160) 0;
  background-image: url('../../img/voice/voice-list-bg.webp');
  background-size: cover;
  background-position: center;
}

.p-voice-list__overlay {
  position: absolute;
  inset: 0;
  background: rgb(from var(--color-section-dark) r g b / 0.8);
}

.p-voice-list__container {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .p-voice-list {
    padding: var(--space-80) 0;
  }
}

/* ==== ツアー予約（c-tour-planコンポーネントをそのまま使用） ==== */
.p-voice-tour-plans {
  padding: var(--space-120) 0;
  background: var(--color-cream);
}

@media (max-width: 767px) {
  .p-voice-tour-plans {
    padding: var(--space-56) 0;
  }
}

/* ==== お客様の声モーダル（pickupの「続きを読む」から開く1件フルストーリー） ==== */
.c-modal-story__hero {
  padding: var(--space-80) 0 var(--space-40);
  background: var(--color-section-dark);
}

.c-modal-story__photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 640px;
  background-image: url('../../img/voice/modal-main-image.webp');
  background-size: cover;
  background-position: center;
}

.c-modal-story__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.c-modal-story__heading {
  position: relative;
  z-index: 1;
  max-width: 748px;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-normal);
  color: var(--color-white);
  text-align: center;
}

.c-modal-story__name {
  margin-top: var(--space-24);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-normal);
  color: var(--color-white);
  text-align: center;
}

.c-modal-story__body {
  position: relative;
  z-index: 0;
  padding: var(--space-80) 0;
  background: var(--color-section-dark);
}

.c-modal-story__container {
  position: relative;
}

.c-modal-story__body .c-section-heading__en {
  left: var(--container-padding);
  top: -144px;
  opacity: 0.08;
}

.c-modal-story__row {
  display: flex;
  align-items: center;
  max-width: 960px;
  gap: var(--space-40);
  margin: 0 0 0 auto;
}

.c-modal-story__row + .c-modal-story__row {
  margin-top: var(--space-80);
}

.c-modal-story__row--reverse {
  flex-direction: row-reverse;
}

.c-modal-story__image {
  flex: 0 0 460px;
  aspect-ratio: 460 / 325;
  overflow: hidden;
}

.c-modal-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-modal-story__text {
  flex: 1;
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-relaxed);
  color: var(--color-white);
}

@media (max-width: 1200px) {
  .c-modal-story__photo, .c-modal-story__photo::before {
    width: 100%;
    height: 100%;
    aspect-ratio: 1200 / 640;
  }
  .c-modal-story__heading {
    font-size: var(--font-size-2xl);
  }
  .c-modal-story__image {
    flex: 0 0 50%
  }
}

@media (max-width: 767px) {
  .c-modal-story__hero {
    padding: var(--space-72) 0 var(--space-16);
  }

  .c-modal-story__body .c-section-heading__en {
    left: 100%;
    top: -40px;
  }

  .c-modal-story__heading {
    font-size: var(--font-size-md);
  }

  .c-modal-story__name {
    font-size: var(--font-size-base);
  }

  .c-modal-story__body {
    padding: var(--space-56) 0;
  }

  .c-modal-story__text {
    font-size: var(--font-size-sm);
  }

  .c-modal-story__row {
    flex-direction: column;
    gap: var(--space-16);
  }

  .c-modal-story__row--reverse {
    flex-direction: column;
  }

  .c-modal-story__row + .c-modal-story__row {
    margin-top: var(--space-40);
  }

  .c-modal-story__image {
    flex: none;
    width: 100%;
  }
}
