  :root {
    --bg:     #f0e8df;
    --bg2:    #faf6f2;
    --bg3:    #f4ede4;
    --border: #e8ddd4;
    --text:   #261a14;
    --sub:    #6b5448;
    --accent: #e8364a;
    --female: #f0607a;
    --male:   #4a7fe0;
    --all:    #7c5cbf;
    --radius: 14px;
    --shadow: 0 2px 16px rgba(60,20,10,0.07);
  }


  /* ── ホンネ調査バナー ── */
  .honne-banner {
    background: var(--bg2);
    border: 2px solid var(--border) !important;
    border-radius: var(--radius);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
  }

  /* アクセントライン（上部） */
  .honne-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--female), var(--accent), var(--male));
  }

  /* ホバー時にボーダー色変化 */
  .honne-banner:hover {
    border-color: var(--accent) !important;
  }

  /* 背景テクスチャ風の薄い円 */
  .honne-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .honne-deco-1 {
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(232,54,74,0.06) 0%, transparent 70%);
    top: -40px; right: -40px;
  }
  .honne-deco-2 {
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(74,127,224,0.06) 0%, transparent 70%);
    bottom: -20px; left: -20px;
  }

  /* ライブバッジ */
  .honne-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(232,54,74,0.08);
    border: 1px solid rgba(232,54,74,0.2);
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
  .live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 1.5s infinite;
    flex-shrink: 0;
  }

  .honne-title {
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }
  .honne-title .accent { color: var(--accent); }

  .honne-desc {
    color: var(--sub);
    font-size: 0.8rem;
    line-height: 1.75;
    margin-bottom: 16px;
  }

  /* ミニ棒グラフ */
  .bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 32px;
    margin-bottom: 6px;
  }
  .bar {
    width: 9px;
    border-radius: 3px 3px 0 0;
    animation: growUp 0.9s cubic-bezier(0.34,1.56,0.64,1) both;
    transform-origin: bottom;
  }
  @keyframes growUp {
    from { transform: scaleY(0); opacity: 0; }
    to   { transform: scaleY(1); opacity: 1; }
  }
  .bar.f { background: linear-gradient(to top, var(--female), #f9a0b0); }
  .bar.m { background: linear-gradient(to top, var(--male),   #8ab4f0); }

  .chart-legend {
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 0.6rem;
    color: var(--sub);
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    opacity: 0.8;
  }
  .chart-legend span { display: flex; align-items: center; gap: 4px; }
  .leg-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

  /* CTAボタン */
  .honne-cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    transition: opacity 0.2s, transform 0.2s;
  }
  .honne-banner:hover .honne-cta {
    opacity: 0.88;
    transform: translateY(-1px);
  }


  .section-label {
    font-size: 0.75rem;
    color: var(--sub);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
  }
