/* ============================================================
   voice.css - お客様の声ページ専用スタイル
   Trust Clean Support（Sweepersデザイン準拠）
============================================================ */

:root {
  --vc-navy:  #2a6644;  /* Moderate dark green */
  --vc-blue:  #52a96e;  /* Fresh vibrant green */
  --vc-gold:  #52a96e;  /* Fresh green accent */
  --vc-white: #FFFFFF;
  --vc-gray:  #eaefea;  /* Very subtle mint bg */
  --vc-text:  #2e3d2e;  /* Body text */
}

.vc-main {
  overflow-x: hidden;
}

/* ─── ページヘッダー ─── */
.vc-page-header {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vc-page-header::before {
  content: 'VOICE';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

.vc-page-header__bg {
  position: absolute;
  inset: 0;
  background-color: var(--vc-navy);
}

.vc-page-header__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.vc-page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 72, 48, 0.80) 0%,
    rgba(26, 72, 48, 0.55) 100%
  );
  z-index: 1;
}

.vc-page-header__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 60px;
  color: var(--vc-white);
}

.vc-page-header__breadcrumb {
  font-size: 13px;
  margin-bottom: 14px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vc-page-header__breadcrumb a {
  color: var(--vc-white);
  text-decoration: none;
}

.vc-page-header__sub {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 10px;
}

.vc-page-header__title {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1.3;
}

.vc-page-header__desc {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* ─── イントロ ─── */
.vc-intro {
  background: var(--vc-white);
  padding: 64px 0;
}

.vc-intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}

.vc-intro__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--vc-blue);
  font-weight: 700;
  margin-bottom: 16px;
}

.vc-intro__label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--vc-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.vc-intro__title {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 900;
  color: var(--vc-navy);
  line-height: 1.6;
  margin-bottom: 20px;
}

.vc-intro__text {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--vc-text);
}

/* カテゴリボタン */
.vc-intro__categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.vc-intro__cat-btn {
  display: block;
  background: var(--vc-navy);
  color: var(--vc-white);
  text-align: center;
  padding: 16px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.2s;
}

.vc-intro__cat-btn:hover {
  background: var(--vc-blue);
  transform: translateY(-2px);
}

/* ─── カテゴリバナー ─── */
.vc-category-banner {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.vc-category-banner__bg {
  position: absolute;
  inset: 0;
  background-color: var(--vc-navy);
}

.vc-category-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vc-category-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 72, 48, 0.62);
  z-index: 1;
}

/* 円形デコレーション（FAQバナーと同様） */
.vc-category-banner::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border: 3px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  z-index: 1;
}

.vc-category-banner::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  z-index: 1;
}

/* テキストコンテンツ（FAQバナーと同様） */
.vc-category-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--vc-white);
}

.vc-category-banner__title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  color: var(--vc-white);
}

.vc-category-banner__desc {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
  color: var(--vc-white);
}

/* ─── 声カード群 ─── */
.vc-voices {
  background: var(--vc-white);
  padding: 60px 20px;
}

.vc-voices--gray {
  background: var(--vc-gray);
}

.vc-voices__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 50px;
}

/* ─── 声カード ─── */
.vc-voice-card {
  border-bottom: 1px solid #CFD5CC;
  border-left: 4px solid var(--vc-navy);
  padding: 28px 24px 36px 32px;
}

.vc-voice-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--vc-blue);
  font-weight: 700;
  margin-bottom: 12px;
}

.vc-voice-card__label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--vc-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.vc-voice-card__title {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: var(--vc-navy);
  line-height: 1.5;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.vc-voice-card__meta {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.vc-voice-card__body {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--vc-text);
}

/* ─── CTA ─── */
.vc-cta {
  background: var(--vc-navy);
  padding: 80px 20px;
  text-align: center;
}

.vc-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.vc-cta__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--vc-white);
  line-height: 1.7;
  margin-bottom: 16px;
}

.vc-cta__text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.vc-cta__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.vc-cta__btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
}

.vc-cta__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.vc-cta__btn--primary {
  background: var(--vc-gold);
  color: var(--vc-navy);
}

.vc-cta__btn--tel {
  background: transparent;
  border: 2px solid var(--vc-white);
  color: var(--vc-white);
}

/* ─── レスポンシブ ─── */
@media (max-width: 900px) {
  .vc-intro__inner {
    grid-template-columns: 1fr;
  }

  .vc-intro__categories {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: auto;
  }

  .vc-intro__cat-btn {
    flex: 1;
    min-width: 140px;
  }

  .vc-voices__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .vc-page-header {
    min-height: 280px;
  }

  .vc-page-header__content {
    padding: 40px 20px;
    max-width: 100%;
  }

  .vc-category-banner {
    height: 160px;
  }

  .vc-category-banner__title {
    font-size: 1.2rem;
  }

  .vc-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .vc-cta__btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
