body {
  margin: 0;
  font-family: var(--font-sans);
  color: #222;
  background: #ffffff;
  /* 画面下固定 CTA（.movie-detail-fixed-cta）と重ならないよう下部に余白（safe-area 対応） */
  padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
}

.voice-page-main {
  padding: 36px 0 80px;
}

.voice-page-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.voice-page-label {
  display: block;
  text-align: center;
  color: #00afbf;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 8px;
}

.voice-page-title {
  margin: 0 0 26px;
  text-align: center;
  font-size: 34px !important;
}

.voice-page-section-title {
  margin: 0 0 16px;
  font-size: 28px !important;
  text-align: center;
}

.voice-page-subtitle {
  margin: 32px 0 16px;
  text-align: center;
  font-size: 28px !important;
}

.voice-page-section {
  margin-top: 12px;
}

/* お客さまの声タイトル直下の年間制作実績バッジ + ホテルロゴ marquee。
   index の voice-section と同じビジュアルを /voice ページに再掲。 */
.voice-page-achievement {
  margin: 24px 0 32px;
  text-align: center;
}

.voice-page-achievement .voice-section__award {
  margin-top: 0;
}

.voice-page-achievement .logo-marquee-wrapper {
  margin-top: 16px;
}

@media (max-width: 767px) {
  .voice-page-achievement {
    margin: 16px 0 24px;
  }
  .voice-page-achievement .logo-marquee-wrapper {
    margin-top: 12px;
  }
}

.voice-page-section--all {
  margin-top: 40px;
}

#voice-page-section {
  scroll-margin-top: 80px;
}

.voice-page-price-card {
  margin-top: 16px;
  margin-bottom: 20px;
}

.voice-page-price-card .price-card-shell {
  display: block;
  position: static;
  width: 100%;
  max-width: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.voice-page-price-card .price-card {
  position: relative;
  left: auto;
  top: auto;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .voice-page-section--pickup .voice-section__reviews {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .voice-page-section--pickup .voice-section__reviews-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
}

#review-summary {
  max-width: 720px;
  margin: 0 auto 12px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-summary-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.review-summary-score {
  font-size: 28px;
  font-weight: 800;
  color: #333;
}

.review-summary-stars {
  display: flex;
  gap: 4px;
}

.review-summary-star {
  font-size: 28px;
  color: #f4a623;
}

.review-summary-star.inactive {
  color: #e0e0e0;
}

.review-summary-count {
  margin-top: 6px;
  font-size: 16px;
  color: #666;
}

#reviews {
  max-width: 720px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, sans-serif;
  color: #333333;
}

.review-card {
  padding: 16px 0 20px;
  border-bottom: 1px solid #dddddd;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.review-author {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
}

.review-star {
  font-size: 16px;
  line-height: 1;
  color: #f4a623;
}

.review-star.inactive {
  color: #e0e0e0;
}

.review-purchase-date {
  font-size: 14px;
  font-weight: 600;
  color: #777777;
  margin-bottom: 12px;
}

.review-comment {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  white-space: pre-wrap;
}

#loading-spinner {
  text-align: center;
  padding: 30px;
  color: #666;
  font-size: 14px;
}

@media (max-width: 768px) {
  #voice-page-section {
    scroll-margin-top: 20px;
  }

  .voice-page-price-card {
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .voice-page-main {
    padding: 24px 0 56px;
  }

  .voice-page-container {
    padding: 0 16px;
  }

  .voice-page-title {
    font-size: 28px !important;
    margin-bottom: 20px;
  }

  .voice-page-section-title,
  .voice-page-subtitle {
    font-size: 22px !important;
    margin-bottom: 12px;
  }
}

/* price-card の下に置く CV ボタンの上下余白（pgw-feature-card 内の同ボタンと近い余白感に揃える） */
.voice-page-cv-wrap {
  margin-top: 8px;
  margin-bottom: 32px;
}

/* 画面下固定 CTA（movie-detail-page.css と同仕様） */
.movie-detail-fixed-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 150;
  width: 90%;
  padding: 14px 16px;
  background-color: var(--cta-pink, #ed4e71);
  box-sizing: border-box;
  border-radius: 67px;
  box-shadow: var(--cv-btn-shadow);
}

@media (max-width: 767px) {
  .movie-detail-fixed-cta {
    border-radius: 38px;
    box-shadow: var(--cv-btn-shadow-sp);
  }
}

@media (min-width: 769px) {
  .movie-detail-fixed-cta {
    width: 500px;
  }
}

.movie-detail-fixed-cta__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--font-sans);
}

.movie-detail-fixed-cta__link:active {
  filter: brightness(0.96);
}

.movie-detail-fixed-cta__link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  border-radius: 4px;
}

.movie-detail-fixed-cta__line1 {
  font-size: clamp(15px, 4.1vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.movie-detail-fixed-cta__line2 {
  font-size: clamp(12px, 3.2vw, 14px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  opacity: 0.98;
}
