/* ===========================================================
   Luna Herbtea LP — VOICE section（お客様の声 / カード）
   ふわっと浮遊するカード。写真なし＝イニシャルアバター統一。
   =========================================================== */

#sec-voice { position: relative; overflow: hidden; }
#sec-voice .container { max-width: 660px; }

/* --- 見出し --- */
.voice-head { text-align: center; margin-bottom: 42px; }
.voice-title {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 29px;
  line-height: 1.5;
  letter-spacing: .055em;
  color: #6e4f57;            /* 温かいローズブラウン */
  margin: 6px 0 0;
}
.voice-title .em { color: var(--pink-deep); }
/* 見出し下の小枝ディバイダー */
.voice-divider { display: block; margin: 18px auto 0; width: 120px; color: #b89aa0; }
.voice-divider svg { width: 100%; height: auto; display: block; }
.voice-sub {
  font-family: var(--font-gothic);
  font-size: 14.5px;
  line-height: 1.95;
  color: #8a7a76;
  margin-top: 18px;
  letter-spacing: .04em;
}
.voice-sub .cnt {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 1.4em;
  color: var(--pink-deep);
  padding: 0 .04em 0 .1em;
  vertical-align: -0.04em;
}
.voice-sub .cnt-unit {
  font-family: var(--font-gothic);
  font-weight: 700;
  color: var(--pink-deep);
  padding-right: .12em;
}

/* 見出し脇の小枝アクセント */
.voice-spark {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  color: #c89aa4; font-size: 12px; letter-spacing: .28em;
  font-family: var(--font-latin); font-style: italic;
}
.voice-spark::before, .voice-spark::after {
  content: ""; width: 34px; height: 1px; background: currentColor; opacity: .55;
}

/* --- カードグリッド（単一カラム・読みやすい幅）--- */
.voice-grid { display: grid; gap: 22px; }

.vcard {
  /* 入場アニメーション（reveal で .in が付与）*/
  opacity: 0;
  transform: translateY(36px) scale(.965);
  transition: opacity .85s cubic-bezier(.22,1,.36,1),
              transform .85s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.vcard.in { opacity: 1; transform: none; }
/* スタッガー */
.vcard:nth-child(1).in { transition-delay: .02s; }
.vcard:nth-child(2).in { transition-delay: .10s; }
.vcard:nth-child(3).in { transition-delay: .06s; }
.vcard:nth-child(4).in { transition-delay: .12s; }
.vcard:nth-child(5).in { transition-delay: .08s; }

/* 浮遊させる内側（入場 transform と分離）*/
.vcard-inner {
  position: relative;
  background: rgba(255,255,255,.78);
  border: 1px solid #efdfe1;
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  box-shadow: 0 18px 44px rgba(150,110,120,.10);
  backdrop-filter: blur(2px);
  animation: vfloat 7s ease-in-out infinite;
}
.vcard:nth-child(odd)  .vcard-inner { animation-duration: 7.6s; animation-delay: -1.2s; }
.vcard:nth-child(even) .vcard-inner { animation-duration: 6.8s; animation-delay: -3.4s; }

@keyframes vfloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* 上辺のやわらかなハイライト帯 */
.vcard-inner::before {
  content: "";
  position: absolute; left: 24px; right: 24px; top: 0; height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--dusty), #f0cdd4 60%, transparent);
  opacity: .9;
}

/* 装飾クォート */
.vcard-inner .vquote {
  position: absolute; top: 14px; right: 18px;
  font-family: var(--font-latin); font-weight: 600; font-style: italic;
  font-size: 46px; line-height: 1; color: #f0d4d9; user-select: none; pointer-events: none;
}

/* --- カードヘッダー（アバター＝ハーブイラスト）--- */
.vcard-head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.vavatar {
  flex: 0 0 auto; width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #c45c7e;                                   /* イラスト線色（card1）*/
  background: linear-gradient(150deg, #fdeff1, #f7e0e4);
  border: 1px solid #f2d6dc;
  box-shadow: 0 6px 14px rgba(196,92,126,.16);
}
.vavatar svg { width: 30px; height: 30px; display: block; }
.vcard:nth-child(2) .vavatar { color: #6f9068; background: linear-gradient(150deg,#eef4ea,#e0ebda); border-color:#d6e4cf; box-shadow: 0 6px 14px rgba(126,149,118,.16); }
.vcard:nth-child(3) .vavatar { color: #b9853f; background: linear-gradient(150deg,#f8efe1,#f0e1c9); border-color:#ebd9bb; box-shadow: 0 6px 14px rgba(192,138,85,.16); }
.vcard:nth-child(4) .vavatar { color: #5f8a99; background: linear-gradient(150deg,#eaf2f4,#d9e9ed); border-color:#cfe0e5; box-shadow: 0 6px 14px rgba(111,151,164,.16); }
.vcard:nth-child(5) .vavatar { color: #9168a0; background: linear-gradient(150deg,#f3ecf5,#e8dcec); border-color:#ddcfe2; box-shadow: 0 6px 14px rgba(157,111,151,.16); }

.vmeta { display: flex; flex-direction: column; line-height: 1.3; }
.vname { font-family: var(--font-mincho); font-weight: 600; font-size: 16px; color: var(--ink); letter-spacing: .04em; }
.vrole { font-size: 11.5px; color: var(--ink-soft); letter-spacing: .06em; margin-top: 3px; }

.vtheme {
  margin-left: auto; align-self: flex-start;
  font-size: 11px; letter-spacing: .06em; color: #a85f75;
  background: #f7e6ea; border: 1px solid #f0d4d9;
  border-radius: var(--radius-pill); padding: 4px 12px; white-space: nowrap;
}

/* --- 本文 --- */
.vbody { font-family: var(--font-gothic); }
.vbody p { font-size: 14px; line-height: 2.0; color: #5f574e; letter-spacing: .02em; }
.vbody p + p { margin-top: 1.0em; }
.vhl {
  background: linear-gradient(transparent 58%, #f5dbe1 58%);
  padding: 0 .08em; font-weight: 500; color: #4a4239;
}

/* 締めの一言（象徴タイトル＋ハートの一言）*/
.vfoot {
  margin-top: 16px; padding-top: 16px; border-top: 1px dashed #ecdcde;
}
.vfoot-title {
  display: block;
  font-family: var(--font-mincho); font-weight: 700;
  font-size: 16px; line-height: 1.5; color: #a85f75; letter-spacing: .05em;
  margin-bottom: 9px;
}
.vfoot-line {
  font-family: var(--font-mincho); font-weight: 500; font-size: 13px;
  line-height: 1.7; color: #8a6b73; letter-spacing: .03em;
  display: flex; align-items: flex-start; gap: 8px;
}
.vfoot-line::before {
  content: ""; flex: 0 0 auto; width: 15px; height: 15px; margin-top: 3px;
  background: no-repeat center/contain
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e7b9c2' stroke='%23c08a98' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M20.8 8.6a5 5 0 0 0-8.8-3.2A5 5 0 0 0 3.2 8.6c0 5 8.8 10 8.8 10s8.8-5 8.8-10Z'/></svg>");
}

/* 注記 */
.voice-note {
  margin-top: 28px; text-align: center;
  font-size: 12px; color: var(--ink-soft); letter-spacing: .03em;
  background: rgba(255,255,255,.5); border: 1px solid #efdfe1;
  border-radius: var(--radius); padding: 11px 16px;
}

/* 背景のやわらかな光 */
#sec-voice .v-glow {
  position: absolute; pointer-events: none; z-index: 0; border-radius: 50%;
  filter: blur(46px); opacity: .55;
}
#sec-voice .v-glow.g1 { width: 260px; height: 260px; background: #f6d8df; top: 80px; left: -90px; }
#sec-voice .v-glow.g2 { width: 300px; height: 300px; background: #e7ecdf; bottom: 120px; right: -110px; }
#sec-voice .container { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .vcard-inner { animation: none; }
  .vcard { transition-duration: .4s; }
}

/* --- PC --- */
@media (min-width: 760px) {
  .voice-title { font-size: 38px; }
  .voice-sub { font-size: 15.5px; }
  .voice-grid { gap: 26px; }
  .vcard-inner { padding: 30px 32px 26px; }
  .vbody p { font-size: 14.5px; }
  /* 互い違いに少しだけ寄せて、手作り感のあるリズムに */
  .vcard:nth-child(odd)  .vcard-inner { margin-right: 30px; }
  .vcard:nth-child(even) .vcard-inner { margin-left: 30px; }
}
