/* ===== VOICE（雑誌風引用カード）===== */
.voice-section {
  background: var(--mint-pale);
  position: relative;
  overflow: hidden;
}

/* 背景透かし文字 */
.voice-section::before {
  content: 'VOICE';
  position: absolute;
  right: -8px; bottom: -16px;
  font-size: clamp(100px, 18vw, 200px);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(94,207,177,0.12);
  line-height: 1;
  pointer-events: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ===== スライダー全体 ===== */
.voice-slider-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

/* カスタム矢印 */
.voice-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(184,152,106,0.30);
  border-radius: 50%;
  outline: none;
  backdrop-filter: blur(4px);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.voice-arrow:hover {
  background: #fff;
  border-color: rgba(184,152,106,0.70);
  transform: scale(1.08);
}
.voice-arrow svg {
  width: 18px; height: 18px;
  display: block;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.voice-slider-track { flex: 1; min-width: 0; }
.voice-slider .slick-prev,
.voice-slider .slick-next { display: none !important; }

/* ===== カード本体 ===== */
.voice-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px 28px;
  margin: 8px 12px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(184,152,106,0.12);
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), ;
}
.voice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
}

/* 大きな装飾引用符（背景） */
.voice-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 110px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}

/* カード上部のゴールドライン */
.voice-card::after {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* ===== 引用文 ===== */
.voice-quote {
  font-size: 14px;
  line-height: 2.0;
  color: #444;
  margin-bottom: 24px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

/* ===== 署名エリア ===== */
.voice-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(184,152,106,0.18);
  position: relative;
  z-index: 1;
}

/* アバター：ゴールドリングに統一 */
.voice-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-pale), #E8F7F5);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
}
.voice-avatar--noimg span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  pointer-events: none;
}

/* 名前・年齢 */
.voice-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.voice-age {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ===== ドット ===== */
.voice-slider .slick-dots {
  position: static;
  margin-top: 32px;
  text-align: center;
  padding: 0;
  list-style: none;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.voice-slider .slick-dots li { display: inline-flex; }
.voice-slider .slick-dots li button {
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(184,152,106,0.25);
  cursor: pointer;
  font-size: 0;
  transition: width 0.35s cubic-bezier(0.23,1,0.32,1), background 0.3s, border-radius 0.35s;
}
.voice-slider .slick-dots li button:before { display: none; }
/* アクティブのドットは横長に伸びる */
.voice-slider .slick-dots li.slick-active button {
  width: 24px;
  border-radius: 3px;
  background: var(--gold);
}

/* ===== SP専用 ===== */
@media (max-width: 768px) {
  .voice-arrow { width: 38px; height: 38px; }
  .voice-arrow svg { width: 14px; height: 14px; }
  .voice-card {
    margin: 6px 8px;
    padding: 36px 24px 24px;
  }
  .voice-card::before { font-size: 88px; }
  .voice-quote { font-size: 14px; line-height: 1.95; }
  .voice-slider .slick-dots { margin-top: 22px; }
}

/* ===== 画像アバター ===== */
.voice-avatar--img {
  background: none;
  overflow: hidden;
  padding: 0;
}
.voice-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ===== SP スワイプヒント ===== */
.voice-swipe-hint {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(184,152,106,0.70);
  font-family: 'Cormorant Garamond', Georgia, serif;
  animation: swipeHintFade 2.4s ease 1.2s both;
}
@keyframes swipeHintFade {
  0%   { opacity: 0; transform: translateY(6px); }
  20%  { opacity: 1; transform: translateY(0); }
  75%  { opacity: 1; }
  100% { opacity: 0; }
}
.voice-swipe-hint-arrow {
  display: inline-block;
  animation: swipeArrow 1.1s ease-in-out 1.2s infinite;
}
@keyframes swipeArrow {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}
@media (max-width: 768px) {
  .voice-swipe-hint { display: flex; }
}
