
  :root{
    --bg: #0A0A0D;
    --bg-card: #16131C;
    --bg-card-2: #1D1824;
    --pink: #FF2E88;
    --pink-deep: #C4126B;
    --plum: #3E0F2C;
    --cream: #FFD6E8;
    --white: #FFFFFF;
    --muted: #B6ACC0;
    --muted-dim: #A79DBA;
    --line: rgba(255,255,255,0.08);
  }
  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }
  body{
    background:var(--bg);
    color:var(--white);
    font-family:'Noto Sans JP', sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  a{ color:inherit; text-decoration:none; }
  .disp{ font-family:'Zen Maru Gothic', sans-serif; }
  .mono{ font-family:'Space Mono', monospace; }
  img{ max-width:100%; display:block; }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
  }

  /* ---------- ticker ---------- */
  .ticker{
    background:var(--pink);
    color:#1a0410;
    font-family:'Space Mono', monospace;
    font-weight:700;
    font-size:12px;
    letter-spacing:0.08em;
    padding:6px 0;
    white-space:nowrap;
    overflow:hidden;
    position:relative;
  }
  .ticker-track{
    display:inline-block;
    padding-left:100%;
    animation:ticker 26s linear infinite;
  }
  @keyframes ticker{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-100%); }
  }
  .ticker-track span{ margin-right:48px; }

  /* ---------- header ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(10,10,13,0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav-wrap{
    max-width:1180px; margin:0 auto;
    display:flex; align-items:center; justify-content:space-between;
    padding:10px 16px;
    gap:14px;
  }
  .logo-mark{ height:58px; display:block; }
  nav.links{ display:flex; gap:28px; font-size:13px; font-weight:700; }
  nav.links a{ color:var(--muted); position:relative; padding:4px 0; transition:color .2s; }
  nav.links a:hover, nav.links a:focus-visible{ color:var(--white); }
  nav.links a:hover::after, nav.links a:focus-visible::after{
    content:''; position:absolute; left:0; right:0; bottom:-2px; height:2px; background:var(--pink); border-radius:2px;
  }
  .cta-btn{
    background:linear-gradient(135deg, var(--pink), var(--pink-deep));
    color:#fff; font-weight:900; font-size:13px;
    padding:10px 22px; border-radius:999px; border:none; cursor:pointer;
    box-shadow:0 4px 18px rgba(255,46,136,0.45);
    transition:transform .15s ease, box-shadow .15s ease;
    white-space:nowrap;
  }
  .cta-btn:hover, .cta-btn:focus-visible{ transform:translateY(-2px); box-shadow:0 8px 24px rgba(255,46,136,0.6); }
  .menu-toggle{ display:none; }

  /* ---------- hero ---------- */
  .hero{
    position:relative;
    min-height:88vh;
    display:flex; align-items:center;
    overflow:hidden;
    background:
      radial-gradient(ellipse 60% 50% at 22% 30%, rgba(255,46,136,0.22), transparent 60%),
      radial-gradient(ellipse 50% 45% at 85% 75%, rgba(196,18,107,0.28), transparent 60%),
      var(--bg);
  }
  .hero::before{
    content:'';
    position:absolute; inset:0;
    background-image:
      radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size:26px 26px;
    opacity:0.35;
    pointer-events:none;
  }
  .hero-grain{
    position:absolute; inset:0;
    background:repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0px, transparent 1px, transparent 2px);
    pointer-events:none;
  }
  .hero-inner{
    max-width:1180px; margin:0 auto; width:100%;
    padding:60px 20px;
    display:grid; grid-template-columns:1.15fr 0.85fr;
    align-items:center; gap:20px;
    position:relative; z-index:2;
  }
  .eyebrow-tape{
    display:inline-flex; align-items:center; gap:10px;
    background:var(--cream); color:#7A0F45;
    font-weight:900; font-size:18px; letter-spacing:.05em;
    padding:11px 24px 11px 16px;
    border-radius:5px;
    transform:rotate(-2deg);
    box-shadow:0 5px 16px rgba(0,0,0,0.4);
    margin-bottom:24px;
  }
  .eyebrow-tape::before{ content:'✂︎'; font-size:16px; opacity:.6; }
  .hero h1{
    font-size:clamp(38px, 6vw, 64px);
    line-height:1.06;
    font-weight:900;
    letter-spacing:-0.01em;
    margin-bottom:18px;
  }
  .hero h1 .accent{
    color:var(--pink);
    text-shadow:0 0 24px rgba(255,46,136,0.6);
  }
  .hero p.lead{
    color:var(--muted);
    font-size:16px; line-height:1.9;
    max-width:480px;
    margin-bottom:32px;
  }
  .hero-cta-row{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; margin-bottom:40px; }
  .cta-primary{
    background:linear-gradient(135deg, var(--pink), var(--pink-deep));
    color:#fff; font-weight:900; font-size:15px;
    padding:16px 30px; border-radius:999px; border:none; cursor:pointer;
    box-shadow:0 8px 30px rgba(255,46,136,0.5);
    display:inline-flex; align-items:center; gap:8px;
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .cta-primary:hover, .cta-primary:focus-visible{ transform:translateY(-3px) scale(1.02); box-shadow:0 12px 34px rgba(255,46,136,0.65); }
  .cta-secondary{
    color:var(--white); font-weight:700; font-size:14px;
    padding:16px 8px; border-bottom:1px solid var(--muted-dim);
    transition:border-color .2s, color .2s;
  }
  .cta-secondary:hover, .cta-secondary:focus-visible{ color:var(--pink); border-color:var(--pink); }

  .live-counter{
    display:inline-flex; align-items:center; gap:14px;
    background:rgba(255,255,255,0.04);
    border:1px solid var(--line);
    border-radius:14px;
    padding:14px 20px;
  }
  .live-dot{
    width:8px; height:8px; border-radius:50%; background:var(--pink);
    box-shadow:0 0 0 0 rgba(255,46,136,0.6);
    animation:pulse-dot 1.8s infinite;
    flex-shrink:0;
  }
  @keyframes pulse-dot{
    0%{ box-shadow:0 0 0 0 rgba(255,46,136,0.6); }
    70%{ box-shadow:0 0 0 10px rgba(255,46,136,0); }
    100%{ box-shadow:0 0 0 0 rgba(255,46,136,0); }
  }
  .live-counter .num{ font-size:26px; font-weight:700; letter-spacing:.02em; }
  .live-counter .label{ font-size:11px; color:var(--muted-dim); letter-spacing:.05em; }

  .hero-visual{
    position:relative;
    display:flex; justify-content:center; align-items:flex-end;
    height:100%;
  }
  .hero-visual img{
    max-height:620px; width:auto;
    filter:drop-shadow(0 20px 50px rgba(255,46,136,0.35));
    animation:float-mascot 5s ease-in-out infinite;
    position:relative; z-index:1;
  }
  @keyframes float-mascot{
    0%,100%{ transform:translateY(0px); }
    50%{ transform:translateY(-14px); }
  }
  .hero-visual .glow-ring{
    position:absolute; width:620px; height:620px; border-radius:50%;
    left:50%; top:52%; transform:translate(-50%,-50%);
    background:radial-gradient(circle, rgba(255,46,136,0.65) 0%, rgba(196,18,107,0.45) 35%, rgba(196,18,107,0.18) 60%, transparent 78%);
    z-index:0; filter:blur(6px);
  }

  /* ---------- stats bar ---------- */
  .stats-bar{
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    background:var(--bg-card);
  }
  .stats-inner{
    max-width:1180px; margin:0 auto;
    display:grid; grid-template-columns:repeat(4,1fr);
    padding:22px 20px;
  }
  .stat{ text-align:center; padding:10px; border-right:1px solid var(--line); }
  .stat:last-child{ border-right:none; }
  .stat .val{
    font-family:'Space Mono', monospace;
    font-size:clamp(22px,3vw,32px); font-weight:700;
    color:var(--pink);
    text-shadow:0 0 18px rgba(255,46,136,0.45);
  }
  .stat .cap{ font-size:11px; color:var(--muted-dim); letter-spacing:.05em; margin-top:6px; }

  /* ---------- section shell ---------- */
  section{ padding:88px 20px; max-width:1180px; margin:0 auto; }
  .section-head{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:40px; gap:20px; flex-wrap:wrap; }
  .section-eyebrow{ color:var(--pink); font-weight:900; font-size:12px; letter-spacing:.14em; margin-bottom:10px; display:block; }
  .section-title{ font-size:clamp(24px,3.4vw,34px); font-weight:900; line-height:1.3; }
  .section-more{ font-size:13px; font-weight:700; color:var(--muted); border-bottom:1px solid var(--muted-dim); padding-bottom:2px; white-space:nowrap; }
  .section-more:hover{ color:var(--pink); border-color:var(--pink); }

  /* ---------- ranking grid (all 10 cards equal size — 2025年広告規制対応) ---------- */
  .rank-grid{
    display:grid; grid-template-columns:repeat(5, 1fr);
    gap:14px;
  }
  .rank-card{
    background:linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
    border:1px solid var(--line);
    border-radius:18px;
    padding:24px 10px 18px;
    text-align:center;
    position:relative;
    transition:transform .2s ease, border-color .2s ease;
  }
  .rank-card:hover{ transform:translateY(-6px); border-color:rgba(255,46,136,0.5); }
  .rank-card.first{ border-color:rgba(255,46,136,0.55); box-shadow:0 0 0 1px rgba(255,46,136,0.2), 0 20px 50px rgba(255,46,136,0.18); }
  .rank-badge{
    position:absolute; top:-14px; left:50%; transform:translateX(-50%) rotate(-3deg);
    background:var(--cream); color:#7A0F45; font-weight:900; font-size:11px;
    padding:5px 12px; border-radius:3px; box-shadow:0 4px 10px rgba(0,0,0,.4);
    white-space:nowrap;
  }
  .rank-card.first .rank-badge{ background:var(--pink); color:#fff; }
  .avatar{
    width:64px; height:64px; border-radius:50%; margin:12px auto 12px;
    background:linear-gradient(135deg, #3a2440, #1c1220);
    border:2px solid rgba(255,255,255,0.12);
    display:flex; align-items:center; justify-content:center;
    font-family:'Zen Maru Gothic'; font-weight:900; font-size:20px; color:var(--muted);
  }
  .rank-card.first .avatar{ border-color:var(--pink); color:#fff; }
  .furigana{ font-size:9.5px; color:var(--muted-dim); letter-spacing:.03em; margin-bottom:2px; font-weight:500; }
  .cast-name{ font-family:'Zen Maru Gothic'; font-weight:700; font-size:13.5px; margin-bottom:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .cast-store{ font-size:10.5px; color:var(--muted-dim); margin-bottom:12px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .vote-gauge{
    height:6px; border-radius:999px; background:rgba(255,255,255,0.08);
    overflow:hidden; margin-bottom:10px;
    position:relative;
  }
  .vote-gauge-fill{
    height:100%; border-radius:999px;
    background:linear-gradient(90deg, var(--pink-deep), var(--pink));
    position:relative;
  }
  .vote-gauge-fill::after{
    content:''; position:absolute; right:-3px; top:-2px; width:10px; height:10px; border-radius:50%;
    background:var(--pink); box-shadow:0 0 8px 3px rgba(255,46,136,0.7);
  }
  .vote-count{ font-family:'Space Mono', monospace; font-weight:900; font-size:16px; color:var(--white); line-height:1; }
  .vote-count .u{ color:var(--muted-dim); font-size:10.5px; font-weight:400; margin-left:2px; }

  /* ranking list rows (legacy, unused but kept for safety) */
  .rank-list{ display:flex; flex-direction:column; gap:10px; }
  .rank-row{
    display:grid; grid-template-columns:34px 46px 1fr auto auto;
    align-items:center; gap:16px;
    background:var(--bg-card);
    border:1px solid var(--line);
    border-radius:12px;
    padding:12px 18px;
    transition:border-color .2s, transform .2s;
  }
  .rank-row:hover{ border-color:rgba(255,46,136,0.4); transform:translateX(4px); }
  .rank-num{ font-family:'Space Mono'; font-weight:700; color:var(--muted-dim); font-size:15px; }
  .rank-row .avatar-sm{
    width:40px; height:40px; border-radius:50%;
    background:linear-gradient(135deg, #3a2440, #1c1220);
    border:1px solid rgba(255,255,255,0.12);
    display:flex; align-items:center; justify-content:center;
    font-family:'Zen Maru Gothic'; font-weight:700; font-size:13px; color:var(--muted);
  }
  .rank-row .name-block .n{ font-family:'Zen Maru Gothic'; font-weight:700; font-size:14px; }
  .rank-row .name-block .s{ font-size:11px; color:var(--muted-dim); }
  .trend{ font-size:12px; font-weight:700; }
  .trend.up{ color:#4ADE80; }
  .trend.down{ color:#7A7186; }
  .rank-row .votes{ font-family:'Space Mono'; font-size:13px; font-weight:700; }

  /* ---------- area gate ---------- */
  .area-scroll{
    display:flex; gap:16px; overflow-x:auto; padding-bottom:10px;
    scrollbar-width:none; -ms-overflow-style:none;
    mask-image:linear-gradient(90deg, #000 92%, transparent 100%);
    -webkit-mask-image:linear-gradient(90deg, #000 92%, transparent 100%);
  }
  .area-scroll::-webkit-scrollbar{ display:none; height:0; }
  .area-chip{
    flex:0 0 auto; width:150px;
    background:var(--bg-card);
    border:1px solid var(--line); border-radius:16px;
    padding:20px 16px; text-align:center;
    transition:transform .2s, border-color .2s;
  }
  .area-chip:hover{ transform:translateY(-4px); border-color:rgba(255,46,136,0.5); }
  .area-chip .ring{
    width:64px; height:64px; margin:0 auto 12px; border-radius:50%;
    background:conic-gradient(var(--pink) 0deg, var(--pink-deep) var(--deg,120deg), rgba(255,255,255,0.08) var(--deg,120deg));
    display:flex; align-items:center; justify-content:center;
  }
  .area-chip .ring-inner{
    width:52px; height:52px; border-radius:50%; background:var(--bg-card);
    display:flex; align-items:center; justify-content:center;
    font-family:'Zen Maru Gothic'; font-weight:900; font-size:11px;
  }
  .area-chip .a-name{ font-family:'Zen Maru Gothic'; font-weight:700; font-size:14px; margin-bottom:2px; }
  .area-chip .a-count{ font-family:'Space Mono'; font-size:11px; color:var(--muted-dim); }
  .area-chip .a-badge{ font-size:9px; color:var(--pink); font-weight:900; letter-spacing:.06em; margin-top:6px; }

  /* ---------- points system ---------- */
  .point-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr)); gap:18px; }
  @media (max-width:980px){ .rank-grid{ grid-template-columns:repeat(3,1fr); } }
  .point-card{
    background:var(--bg-card);
    border:1px solid var(--line); border-radius:20px;
    padding:30px 24px;
    position:relative; overflow:hidden;
  }
  .point-card::before{
    content:''; position:absolute; top:-40%; right:-30%; width:180px; height:180px; border-radius:50%;
    background:radial-gradient(circle, rgba(255,46,136,0.18), transparent 70%);
  }
  .point-num{
    font-family:'Space Mono'; font-weight:700; font-size:13px; color:var(--pink);
    display:block; margin-bottom:14px;
  }
  .point-title{ font-family:'Zen Maru Gothic'; font-weight:700; font-size:19px; margin-bottom:10px; }
  .point-desc{ font-size:13px; color:var(--muted); line-height:1.8; margin-bottom:18px; }
  .point-tag{
    display:inline-block; background:var(--cream); color:#7A0F45; font-weight:900; font-size:13px;
    padding:6px 14px; border-radius:3px; transform:rotate(-1.5deg);
  }

  /* ---------- new entry ---------- */
  .entry-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
  .entry-card{
    background:var(--bg-card); border:1px solid var(--line); border-radius:16px; overflow:hidden;
    transition:transform .2s, border-color .2s;
  }
  .entry-card:hover{ transform:translateY(-4px); border-color:rgba(255,46,136,0.4); }
  .entry-thumb{
    height:130px; background:linear-gradient(135deg, #2a1830, #14101a);
    display:flex; align-items:center; justify-content:center;
    position:relative;
  }
  .entry-thumb .new-tape{
    position:absolute; top:10px; left:10px;
    background:var(--pink); color:#fff; font-weight:900; font-size:10px;
    padding:4px 10px; border-radius:3px; letter-spacing:.06em;
  }
  .entry-thumb .mono{ font-size:22px; color:var(--muted-dim); font-weight:700; }
  .entry-body{ padding:16px 18px 18px; }
  .entry-area{ font-size:11px; color:var(--pink); font-weight:700; margin-bottom:4px; }
  .entry-furigana{ font-size:9.5px; color:var(--muted-dim); margin-bottom:1px; }
  .entry-name{ font-family:'Zen Maru Gothic'; font-weight:700; font-size:15px; margin-bottom:6px; }
  .entry-copy{ font-size:12px; color:var(--muted-dim); line-height:1.6; }

  /* ---------- cta banner ---------- */
  .cta-banner{
    background:linear-gradient(135deg, var(--plum), #1a0410 60%, var(--bg));
    border-radius:28px;
    padding:64px 40px;
    text-align:center;
    position:relative; overflow:hidden;
    margin:0 20px;
    max-width:1140px; margin-left:auto; margin-right:auto;
  }
  .cta-banner::before{
    content:''; position:absolute; inset:0;
    background:radial-gradient(circle at 50% 0%, rgba(255,46,136,0.25), transparent 60%);
  }
  .cta-banner h2{
    font-family:'Zen Maru Gothic'; font-weight:900; font-size:clamp(24px,4vw,38px);
    margin-bottom:16px; position:relative; z-index:1;
  }
  .cta-banner p{ color:var(--muted); margin-bottom:30px; position:relative; z-index:1; }

  /* ---------- footer ---------- */
  footer{ border-top:1px solid var(--line); padding:56px 20px 30px; }
  .footer-inner{ max-width:1180px; margin:0 auto; }
  .footer-top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:40px; margin-bottom:40px; }
  .footer-logo-text{
    font-weight:900; font-size:22px;
    background:linear-gradient(135deg, var(--pink), var(--pink-deep));
    -webkit-background-clip:text; background-clip:text; color:transparent;
    margin-bottom:14px; display:inline-block;
  }
  .footer-tag{ color:var(--muted-dim); font-size:12px; max-width:260px; line-height:1.7; }
  .footer-cols{ display:flex; gap:56px; flex-wrap:wrap; }
  .footer-col h4{ font-size:12px; color:var(--muted-dim); letter-spacing:.08em; margin-bottom:14px; }
  .footer-col a{ display:block; font-size:13px; color:var(--muted); margin-bottom:10px; transition:color .2s; }
  .footer-col a:hover{ color:var(--pink); }
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
    padding-top:24px; border-top:1px solid var(--line);
    font-size:11px; color:var(--muted-dim);
  }
  .social-row{ display:flex; gap:12px; }
  .social-row a{
    width:34px; height:34px; border-radius:50%; border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center; font-size:13px;
    transition:border-color .2s, color .2s;
  }
  .social-row a:hover{ border-color:var(--pink); color:var(--pink); }

  /* ---------- responsive ---------- */
  @media (max-width:860px){
    nav.links{ display:none; }
    .logo-mark{ height:50px; }
    .cta-btn{ padding:9px 14px; font-size:11.5px; }
    .hero{ min-height:auto; }
    .hero-inner{ padding:20px 20px 40px; gap:4px; }
    .eyebrow-tape{ margin-bottom:12px; }
    .hero h1{ font-size:clamp(28px, 8vw, 40px); line-height:1.12; margin-bottom:14px; }
    .hero p.lead{ font-size:14px; margin-bottom:22px; }
    .hero-inner{ grid-template-columns:1fr; text-align:center; }
    .hero p.lead{ margin-left:auto; margin-right:auto; }
    .hero-cta-row{ justify-content:center; }
    .hero-visual{ order:-1; margin-bottom:0; }
    .hero-visual img{ max-height:340px; }
    .glow-ring{ width:460px !important; height:460px !important; }
    .stats-inner{ grid-template-columns:repeat(2,1fr); }
    .stat{ border-right:none; border-bottom:1px solid var(--line); padding:16px 10px; }
    .rank-grid{ grid-template-columns:repeat(2, 1fr); }
    .point-grid{ grid-template-columns:1fr; }
    .entry-grid{ grid-template-columns:1fr 1fr; }
    .rank-row{ grid-template-columns:26px 38px 1fr auto; }
    .rank-row .votes{ display:none; }
    section{ padding:64px 16px; }
  }
  @media (max-width:520px){
    .entry-grid{ grid-template-columns:1fr; }
  }

  /* focus visibility */
  a:focus-visible, button:focus-visible{ outline:2px solid var(--pink); outline-offset:3px; }

  /* ---------- ranking list (契約有無で非対称表示・単一列) ---------- */
  .rank-list{ display:flex; flex-direction:column; gap:10px; }

  .medal-badge{ display:flex; align-items:center; gap:5px; justify-content:center;
    font-weight:900; font-family:'Space Mono'; border-radius:999px !important; }
  .medal-badge .mb-icon{ font-size:1.15em; line-height:1; } .medal-badge .mb-num{ font-size:1em; line-height:1; }
  .medal-badge.gold{ background:linear-gradient(145deg,#FFEFC0,#FFC93C,#E8940A); color:#4a2c00; box-shadow:0 6px 18px rgba(255,193,60,.6); }
  .medal-badge.silver{ background:linear-gradient(145deg,#F5F6FA,#C6CCD6,#8B909C); color:#26282e; box-shadow:0 6px 16px rgba(180,186,196,.5); }
  .medal-badge.bronze{ background:linear-gradient(145deg,#F0C29A,#C97F4A,#8B5A2E); color:#331c0a; box-shadow:0 6px 16px rgba(201,127,74,.5); }
  .medal-badge.plain{ background:var(--cream); color:#7A0F45; }

  .rank-row{ display:grid; grid-template-columns:34px 1fr auto; align-items:center; gap:11px;
    background:var(--bg-card); border:1px solid var(--line); border-radius:12px; padding:10px 14px; }
  .rank-row .medal-badge{ position:static; min-width:30px; height:26px; padding:0 8px; font-size:11px; margin:0 auto; }
  .rank-row .medal-badge.plain{ width:30px; height:30px; padding:0; border-radius:50%; }
  .rank-row .rr-name{ font-family:'Zen Maru Gothic'; font-weight:700; font-size:13px; }
  .rank-row .rr-meta{ font-size:10px; color:var(--muted-dim); }
  .rank-row .rr-votes{ font-family:'Space Mono'; font-weight:700; font-size:12px; color:var(--pink); white-space:nowrap; }

  .rank-card-big{ position:relative; display:block; background:var(--bg-card); border:1px solid rgba(255,46,136,.3);
    border-radius:20px; overflow:hidden; box-shadow:0 12px 30px rgba(255,46,136,.15); }
  .rank-card-big .rcb-photo{ width:100%; aspect-ratio:1/1; background:linear-gradient(150deg,#3a2440,#1c1220);
    display:flex; align-items:center; justify-content:center; position:relative; }
  .rank-card-big .rcb-photo.wide{ aspect-ratio:16/9; }
  .rank-card-big .rcb-photo .rcb-letter{ font-family:'Zen Maru Gothic'; font-weight:900; font-size:100px; color:rgba(255,255,255,.14); }
  .rank-card-big .rcb-photo::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 50%,rgba(10,10,13,.9) 100%); }
  .rank-card-big .medal-badge{ position:absolute; top:14px; left:14px; min-width:56px; height:34px; padding:0 12px; font-size:17px; }
  .rank-card-big .rcb-tier{ position:absolute; top:14px; right:14px; z-index:3; font-size:10px; font-weight:900;
    padding:6px 12px; border-radius:999px; display:flex; align-items:center; gap:4px; backdrop-filter:blur(4px); }
  .rcb-tier.s-rank{ background:linear-gradient(135deg,#FFE9A8,#E8940A); color:#4a2c00; }
  .rcb-tier.standard{ background:rgba(255,255,255,.16); color:#fff; border:1px solid rgba(255,255,255,.3); }
  .rank-card-big .rcb-info{ position:absolute; bottom:0; left:0; right:0; z-index:2; padding:16px 18px; }
  .rank-card-big .rcb-furi{ font-size:10.5px; color:rgba(255,255,255,.6); }
  .rank-card-big .rcb-name{ font-family:'Zen Maru Gothic'; font-weight:900; font-size:19px; color:#fff; margin-bottom:4px; }
  .rank-card-big .rcb-bottom-row{ display:flex; align-items:flex-end; justify-content:space-between; gap:10px; }
  .rank-card-big .rcb-store{ font-size:11px; color:rgba(255,255,255,.75); }
  .rank-card-big .rcb-votes{ font-family:'Space Mono'; font-weight:900; font-size:30px; color:var(--pink);
    text-shadow:0 0 20px rgba(255,46,136,.7); line-height:1; white-space:nowrap; }
  .shine{ position:relative; overflow:hidden; }
  .shine::before{ content:''; position:absolute; top:0; left:-60%; width:40%; height:100%;
    background:linear-gradient(115deg,transparent 0%,rgba(255,255,255,.35) 50%,transparent 100%);
    transform:skewX(-20deg); animation:shineSweep 3.2s ease-in-out infinite; }
  @keyframes shineSweep{ 0%{left:-60%;} 35%{left:130%;} 100%{left:130%;} }

  .store-row{ display:grid; grid-template-columns:34px 1fr auto; align-items:center; gap:11px;
    background:var(--bg-card); border:1px solid var(--line); border-radius:12px; padding:13px 14px; }
  .store-row .medal-badge{ position:static; min-width:30px; height:26px; padding:0 8px; font-size:11px; margin:0 auto; }
  .store-row .medal-badge.plain{ width:30px; height:30px; padding:0; border-radius:50%; }
  .store-row .sr2-name{ font-family:'Zen Maru Gothic'; font-weight:700; font-size:13.5px; }
  .store-row .sr2-area{ font-size:10px; color:var(--muted-dim); }
  .store-row .sr2-votes{ font-family:'Space Mono'; font-weight:700; font-size:12px; color:var(--pink); }

  /* ---------- トップページ: 姫ランキングTOP5(コンパクト版) ---------- */
  .hime-tier1{
    position:relative; border-radius:20px; overflow:hidden; margin-bottom:12px;
    background:linear-gradient(150deg,#FFF3D0,#FFC93C 45%,#E8940A);
    padding:22px 20px; text-align:center;
    box-shadow:0 14px 32px rgba(232,148,10,0.35);
  }
  .hime-tier1 .ht-crown{ font-size:32px; margin-bottom:4px; }
  .hime-tier1 .ht-name{ font-family:'Zen Maru Gothic'; font-weight:900; font-size:18px; color:#3a2400; }
  .hime-tier1 .ht-rank{
    display:inline-block; font-family:'Zen Maru Gothic'; font-weight:900; font-size:13px; color:#D6003A;
    background:rgba(255,255,255,0.55); padding:3px 12px; border-radius:999px; margin:5px 0 8px;
  }
  .hime-tier1 .ht-points{ font-family:'Space Mono'; font-weight:900; font-size:26px; color:#3a2400; }
  .hime-row{
    display:grid; grid-template-columns:44px 1fr auto; align-items:center; gap:12px;
    border-radius:14px; padding:12px 16px; margin-bottom:8px;
  }
  .hime-row.silver{ background:linear-gradient(120deg,#F5F6FA,#C6CCD6 55%,#8B909C); }
  .hime-row.bronze{ background:linear-gradient(120deg,#F0C29A,#C97F4A 55%,#8B5A2E); }
  .hime-row.plain{ background:var(--bg-card); border:1px solid var(--line); }
  .hime-row .ht-medal{ font-size:22px; text-align:center; }
  .hime-row .ht-name-sm{ font-family:'Zen Maru Gothic'; font-weight:800; font-size:13px; color:#2b2620; }
  .hime-row.plain .ht-name-sm{ color:var(--white); }
  .hime-row .ht-points-sm{ font-family:'Space Mono'; font-weight:800; font-size:12px; color:#2b2620; }
  .hime-row.plain .ht-points-sm{ color:var(--pink); }

  /* ---------- 投票ページ: 写真エリア(契約=イニシャル大文字/未契約=マスコットロック演出) ---------- */
  .hero-photo{
    position:relative; height:340px; border-radius:24px; overflow:hidden;
    background:radial-gradient(ellipse 90% 70% at 50% 20%, rgba(255,46,136,0.30), transparent 65%),
      linear-gradient(180deg, #241726, #120c15);
  }
  .hero-photo .photo-fill{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; flex-direction:column; }
  .hero-photo .photo-fill .ph-letter{ font-family:'Zen Maru Gothic'; font-weight:900; font-size:180px;
    color:rgba(255,255,255,0.06); line-height:1; user-select:none; }
  .hero-photo .photo-fill .ph-hint{ position:absolute; bottom:16px; left:50%; transform:translateX(-50%);
    font-size:10.5px; color:rgba(255,255,255,0.35); background:rgba(0,0,0,0.35); padding:6px 14px; border-radius:999px; white-space:nowrap; }
  .hero-photo::after{ content:''; position:absolute; inset:0;
    background:linear-gradient(180deg, transparent 55%, rgba(10,10,13,0.55) 100%); pointer-events:none; }
  .hero-photo .rank-pill{ position:absolute; top:16px; left:16px; z-index:2;
    background:var(--pink); color:#fff; font-weight:900; font-size:14px; padding:9px 16px; border-radius:999px;
    display:flex; align-items:center; gap:6px; box-shadow:0 8px 22px rgba(255,46,136,0.45); }
  .hero-photo .area-pill{ position:absolute; top:16px; right:16px; z-index:2;
    background:rgba(255,255,255,0.14); color:#fff; font-weight:800; font-size:12px; padding:9px 16px;
    border-radius:999px; backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,0.2); }

  .hero-photo.locked{ height:300px; }
  .hero-photo.locked .photo-fill{
    background:radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255,46,136,0.18), transparent 65%),
      linear-gradient(180deg, #201420, #120c15); gap:10px; }
  .hero-photo.locked .lock-mascot{ width:70px; filter:drop-shadow(0 8px 18px rgba(255,46,136,0.4)); }
  .hero-photo.locked .lock-tag{ display:inline-flex; align-items:center; gap:6px;
    background:var(--cream); color:#7A0F45; font-weight:900; font-size:12px; padding:6px 14px; border-radius:3px; transform:rotate(-2deg); }
  .hero-photo.locked .lock-sub{ font-size:11.5px; color:var(--muted-dim); text-align:center; max-width:260px; line-height:1.7; padding:0 20px; }
  .hero-photo.locked .req-counter{ display:flex; align-items:center; gap:8px;
    background:rgba(255,46,136,0.1); border:1px solid rgba(255,46,136,0.3); border-radius:999px; padding:8px 16px; margin-top:2px; }
  .hero-photo.locked .req-counter .rc-num{ font-family:'Space Mono'; font-weight:900; font-size:14px; color:var(--pink); }
  .hero-photo.locked .req-counter .rc-label{ font-size:10.5px; color:var(--muted); }
  .hero-photo.locked .req-btn{ background:var(--pink); color:#fff; font-weight:900; font-size:12px;
    padding:9px 18px; border-radius:999px; border:none; box-shadow:0 6px 18px rgba(255,46,136,0.4); cursor:pointer; }

  .name-row{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }

  /* ---------- favorite button (うさぎシルエット・丸ボタン) ---------- */
  .fav-btn{
    width:44px; height:44px; border-radius:50%; flex-shrink:0;
    background:var(--bg-card); border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    color:var(--muted-dim); cursor:pointer; padding:0;
    transition:transform .2s ease, background .2s, border-color .2s, color .2s;
  }
  .fav-btn:hover{ border-color:rgba(255,46,136,0.4); }
  .fav-btn.active{
    color:#fff; background:linear-gradient(135deg, var(--pink), var(--pink-deep));
    border-color:var(--pink); box-shadow:0 6px 20px rgba(255,46,136,0.5);
  }
  .fav-btn.bump{ animation:favBump .45s cubic-bezier(.34,1.56,.64,1); }
  @keyframes favBump{
    0%{ transform:scale(1); } 35%{ transform:scale(1.32) rotate(-6deg); }
    60%{ transform:scale(0.92) rotate(3deg); } 100%{ transform:scale(1) rotate(0); }
  }
  /* absolute配置で使う場合(カード右上等) */
  .fav-btn.abs{ position:absolute; top:14px; right:14px; z-index:5; }

  .store-fav-btn{
    width:24px; height:24px; border-radius:50%; flex-shrink:0;
    display:inline-flex; align-items:center; justify-content:center;
    color:var(--muted-dim); background:rgba(255,255,255,0.05); border:1px solid var(--line);
    vertical-align:middle; margin:0 2px; cursor:pointer; padding:0;
    transition:transform .2s ease, background .2s, border-color .2s, color .2s;
  }
  .store-fav-btn.active{
    color:#fff; background:linear-gradient(135deg, var(--pink), var(--pink-deep)); border-color:var(--pink);
  }
  .store-fav-btn.bump{ animation:favBump .45s cubic-bezier(.34,1.56,.64,1); }
