/* =============================================
   GUEST'S VOICE PAGE
   ============================================= */

:root {
  --voice-green:  #2f5d34;
  --voice-dark:   #33332c;
  --voice-bg:     #f8f7f2;
  --voice-beige:  #f2ede4;
  --voice-border: #e8e4da;
  --voice-label:  #9aa890;
  --voice-star:   #e8a33d;
}

.voice-main { background: var(--voice-bg); }

/* ------------------------------------------
   HERO
   ------------------------------------------ */
.voice-hero {
  position: relative;
  height: 44vh;
  min-height: 260px;
  background-color: #3a5a2a;
  background-image: linear-gradient(135deg, #2a4a1e 0%, #4a7a38 55%, #3a6030 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.22) 100%);
}
.voice-hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.voice-hero__label {
  font-size: 11px;
  letter-spacing: 6px;
  font-weight: 700;
  opacity: .75;
  margin: 0 0 10px;
}
.voice-hero__h1 {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 44px);
  letter-spacing: 3px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.voice-hero__sub {
  margin: 12px 0 0;
  font-size: clamp(12px, 1.4vw, 15px);
  opacity: .82;
  letter-spacing: 1px;
}

/* ------------------------------------------
   ヒーロー下 画像
   ------------------------------------------ */
.voice-photo {
  max-width: 1100px;
  margin: 56px auto 20px;
  padding: 0 40px;
  max-height: 420px;
  overflow: hidden;
}
.voice-photo__img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* ------------------------------------------
   本文エリア
   ------------------------------------------ */
.voice-body { padding: 64px 0; }
.voice-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ------------------------------------------
   総評サマリー
   ------------------------------------------ */
.voice-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
.voice-summary__score {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--voice-green);
  line-height: 1;
}
.voice-summary__detail { display: flex; flex-direction: column; gap: 8px; }
.voice-summary__count { margin: 0; font-size: 13px; color: #777; }
.voice-summary__note {
  font-size: 12px;
  line-height: 1.9;
  color: #888;
  margin: 0 0 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--voice-border);
}
.voice-summary__note a { color: var(--voice-green); }

/* ------------------------------------------
   星評価（2枚重ねのテキストクリップ方式）
   ------------------------------------------ */
.voice-rating {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 2px;
  color: #dcdcd0;
  white-space: nowrap;
}
.voice-rating::before { content: '★★★★★'; }
.voice-rating__fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--voice-star);
  display: inline-block;
}
.voice-rating__fill::before { content: '★★★★★'; }

/* ------------------------------------------
   カテゴリフィルタ
   ------------------------------------------ */
.voice-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.voice-filter__btn {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--voice-dark);
  background: #fff;
  border: 1.5px solid var(--voice-border);
  border-radius: 20px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.voice-filter__btn:hover { border-color: var(--voice-green); }
.voice-filter__btn.is-active {
  background: var(--voice-green);
  border-color: var(--voice-green);
  color: #fff;
}

/* ------------------------------------------
   クチコミカード
   ------------------------------------------ */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.voice-card {
  background: #fff;
  border: 1.5px solid var(--voice-border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.voice-card.is-hidden { display: none; }
.voice-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.voice-card__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--voice-green);
  background: var(--voice-beige);
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
}
.voice-card__title {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--voice-dark);
  line-height: 1.5;
}
.voice-card__body {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: #666;
  flex: 1;
}
.voice-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: var(--voice-label);
  padding-top: 10px;
  border-top: 1px solid var(--voice-border);
}

/* ------------------------------------------
   CTA
   ------------------------------------------ */
.voice-cta {
  margin-top: 56px;
  padding: 72px 40px;
  background: var(--voice-beige);
  width: 100%;
  text-align: center;
}
.voice-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.voice-cta__text {
  font-size: 15px;
  color: #666;
  margin: 0 0 24px;
}
.voice-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.voice-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--voice-green);
  color: #fff;
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(47,93,52,.25);
  transition: transform .2s, box-shadow .2s;
}
.voice-cta__btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(47,93,52,.35); }
.voice-cta__btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--voice-green);
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 18px;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1.5px solid #c6d8c0;
  transition: background .2s, border-color .2s;
}
.voice-cta__btn-tel:hover { background: #eef4ec; border-color: var(--voice-green); }

/* ------------------------------------------
   Responsive
   ------------------------------------------ */
@media (max-width: 900px) {
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .voice-body { padding: 40px 0; }
  .voice-inner { padding: 0 18px; }
  .voice-grid { grid-template-columns: 1fr; }
  .voice-cta { padding: 48px 20px; }
  .voice-cta__btns { flex-direction: column; align-items: stretch; }
  .voice-cta__btn-primary,
  .voice-cta__btn-tel { justify-content: center; }
}
