/* =========================================================
   ② お客様の声（VOICE）
   ※ 掲載テキスト・写真はすべてサンプルです。
     実在のお客様の声・写真に差し替えてご利用ください。
   index.html「理由」セクションの直後で使用。
   ========================================================= */

.voice-section {
  padding: 64px 20px;
  background: #ffffff;                 /* 白 */
}

.voice-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.voice-lead {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin: 0 0 40px;
}

/* ---------- カードグリッド ---------- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 26px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* 引用符の装飾 */
.voice-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 20px;
  font-size: 64px;
  line-height: 1;
  color: rgba(29, 158, 117, 0.14);
  font-family: Georgia, 'Times New Roman', serif;
}

/* 星評価 */
.voice-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.voice-stars svg {
  width: 18px;
  height: 18px;
  color: #F3C94A;
}

.voice-quote {
  font-size: 1rem;
  line-height: 1.85;
  color: #333;
  margin: 0 0 22px;
  font-weight: 500;
}

/* プロフィール */
.voice-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #eef1f0;
}

/* 写真枠（差し替え用アバター） */
.voice-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #1D9E75 0%, #0E5E45 100%);
  overflow: hidden;
}
/* 実写真を入れる場合：<img class="voice-avatar-img"> を avatar 内に置く */
.voice-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-avatar--b { background: linear-gradient(135deg, #f7941d 0%, #e57a00 100%); }
.voice-avatar--c { background: linear-gradient(135deg, #2f8fd6 0%, #1f6fb0 100%); }

.voice-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.voice-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #222;
}
.voice-attr {
  font-size: 0.82rem;
  color: #777;
}

.voice-note {
  text-align: center;
  font-size: 0.8rem;
  color: #aaa;
  margin: 28px 0 0;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
  .voice-grid { grid-template-columns: 1fr; gap: 18px; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 700px) {
  .voice-section { padding: 48px 16px; }
  .voice-lead { font-size: 0.95rem; margin-bottom: 28px; }
  .voice-card { padding: 24px 20px 22px; }
  .voice-quote { font-size: 0.95rem; }
}
