/* ===== VOICE ===== */
  .voice-section {
    background: linear-gradient(135deg, #fff0f5, #ffd6e5);
    position: relative;
    overflow: hidden;
  }

  .voice-section::before {
    content: 'VOICE';
    position: absolute;
    right: -8px; bottom: -16px;
    font-size: 180px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    color: rgba(240,62,122,0.08);
    line-height: 1;
    pointer-events: none;
  }

  .voice-slider-wrap { display: flex; align-items: center; gap: 0; }

  .voice-arrow {
    flex-shrink: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
  }

  .voice-arrow svg { width: 32px; height: 80px; display: block; transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.2s; opacity: 0.7; }
  .voice-arrow:hover svg { opacity: 1; }
  .voice-arrow-prev:hover svg { transform: translateX(-4px) scaleX(1.08); }
  .voice-arrow-next:hover svg { transform: translateX(4px) scaleX(1.08); }

  .voice-slider-track { flex: 1; min-width: 0; }

  .voice-slider .slick-prev,
  .voice-slider .slick-next { display: none !important; }

  /* voice card */
  .voice-card {
    background: white;
    border-radius: 16px;
    padding: 26px;
    border-left: 4px solid var(--pink-main);
    margin: 8px 10px;
  }

  .voice-quote { font-size: 16px; line-height: 1.9; color: var(--navy); margin-bottom: 16px; font-style: italic; }

  .voice-meta { display: flex; align-items: center; gap: 10px; }

  .voice-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-main), var(--pink-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    color: white;
    font-weight: 700;
  }

  .voice-name { font-size: 14px; font-weight: 700; color: var(--navy); }
  .voice-age { font-size: 13px; color: var(--gray-text); }

  /* voice dots - カード下に独立して配置 */
  .voice-slider .slick-dots {
    position: static;
    margin-top: 26px;
    text-align: center;
    padding: 0;
    list-style: none;
  }
  .voice-slider .slick-dots li {
    display: inline-block;
    margin: 0 4px;
  }
  .voice-slider .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background: rgba(240,62,122,0.25);
    cursor: pointer;
    font-size: 0;
  }
  .voice-slider .slick-dots li button:before {
    display: none;
  }
  .voice-slider .slick-dots li.slick-active button {
    background: var(--pink-main);
    transform: scale(1.3);
  }

  /* SP調整 */
  @media (max-width: 768px) {
    .voice-slider-wrap { gap: 0; }
    .voice-arrow { width: 28px; }
    .voice-arrow svg { width: 22px; height: 60px; }
    .voice-card { margin: 6px 6px; padding: 20px 16px; }
    .voice-quote { font-size: 14px; }
    .voice-slider .slick-dots { margin-top: 20px; }
  }

/* ===== voice-avatar 画像あり/なし ===== */
.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;
}
.voice-avatar--noimg span {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
