/* ============================================================
   DOUGA REVIEW - 静的アダルト動画レビューサイト
   男性向け一般 / カテゴリ一覧ページ用スタイル（強化版）
   ============================================================ */

:root {
  --bg:        #121419;
  --bg-card:   #1d2026;
  --bg-side:   #1a1c22;
  --text:      #e6e8ec;
  --text-mute: #9aa0ad;
  --line:      #2b2f38;
  --accent:    #e8344e;   /* テーマカラー（リンク・バッジ等） */
  --accent-d:  #c11f37;
  --accent-grad: linear-gradient(135deg, #e8344e 0%, #ff6b4a 100%);
  --gold:      #ffc107;
  --star:      #ffc107;
  --radius:    10px;
  --maxw:      1100px;
  --shadow:    0 6px 24px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  background:
    radial-gradient(1200px 500px at 80% -100px, rgba(232,52,78,.08), transparent 60%),
    radial-gradient(900px 400px at -10% 0, rgba(80,120,255,.05), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

a { color: var(--text); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

/* ============ 年齢確認モーダル ============ */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(8,9,11,.97);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px;
}
.age-gate__box {
  background: var(--bg-card); border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius); padding: 40px 32px; text-align: center;
  max-width: 400px; width: 100%;
  box-shadow: var(--shadow);
  animation: pop .35s ease;
}
@keyframes pop {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.age-gate__box h2 { margin: 0 0 14px; font-size: 24px; letter-spacing: 2px; }
.age-gate__box p { color: var(--text-mute); margin: 0 0 26px; }
.age-gate__btns { display: flex; gap: 12px; justify-content: center; }

.btn {
  display: inline-block; padding: 13px 26px; border-radius: 8px;
  border: none; cursor: pointer; font-size: 15px; font-weight: 700;
  transition: transform .12s, box-shadow .12s, background .15s;
}
.btn--primary {
  background: var(--accent-grad); color: #fff;
  box-shadow: 0 4px 14px rgba(232,52,78,.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,52,78,.55); color: #fff; }
.btn--ghost { background: transparent; border: 1px solid var(--line); color: var(--text-mute); }
.btn--ghost:hover { border-color: var(--text-mute); }

/* ============ ヘッダー ============ */
.site-header {
  background: rgba(20,22,28,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.logo {
  font-size: 23px; font-weight: 800; letter-spacing: 1px; color: #fff;
  display: flex; align-items: center; gap: 2px;
}
.logo::before {
  content: "▶"; font-size: 13px; color: #fff;
  background: var(--accent-grad);
  border-radius: 6px; padding: 4px 7px; margin-right: 8px;
}
.logo span { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.gnav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.gnav a {
  display: block; padding: 9px 15px; font-size: 14px; border-radius: 8px;
  color: var(--text-mute); position: relative;
}
.gnav a:hover { color: #fff; background: rgba(255,255,255,.06); }
.gnav a.is-current { color: #fff; }
.gnav a.is-current::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--accent-grad);
}

.nav-toggle {
  display: none; background: none; border: none; color: var(--text);
  font-size: 24px; cursor: pointer;
}

/* ============ パンくず ============ */
.breadcrumb { font-size: 12px; color: var(--text-mute); padding: 14px 0 10px; }
.breadcrumb a { color: var(--text-mute); }
.breadcrumb a:hover { color: var(--accent); }

/* ============ カテゴリヒーロー ============ */
.cat-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #23131a 0%, #1d2026 55%, #16202c 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  margin-bottom: 8px;
  box-shadow: var(--shadow);
}
.cat-hero__deco {
  position: absolute; right: -60px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,52,78,.25), transparent 65%);
  pointer-events: none;
}
.cat-hero__title {
  margin: 0 0 8px; font-size: 28px; letter-spacing: 1px;
  display: inline-block;
}
.cat-hero__title::after {
  content: ""; display: block; height: 4px; border-radius: 2px;
  background: var(--accent-grad); margin-top: 6px; width: 60%;
}
.cat-hero__lead { color: var(--text-mute); margin: 6px 0 14px; font-size: 14px; max-width: 640px; }
.cat-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-hero__tags a {
  font-size: 12px; color: #ffb3be;
  background: rgba(232,52,78,.12); border: 1px solid rgba(232,52,78,.35);
  padding: 3px 12px; border-radius: 20px;
}
.cat-hero__tags a:hover { background: var(--accent); color: #fff; }

/* ============ レイアウト ============ */
.layout { display: flex; gap: 28px; padding: 14px 16px 48px; align-items: flex-start; }
.main { flex: 1; min-width: 0; }
.sidebar { width: 280px; flex-shrink: 0; }

.page-title {
  font-size: 20px; margin: 8px 0 18px; padding-left: 12px;
  border-left: 4px solid var(--accent);
}

/* ============ ソートバー ============ */
.sortbar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 10px 16px; margin-bottom: 18px;
  font-size: 13px;
}
.sortbar__count strong { color: var(--accent); font-size: 17px; }
.sortbar__sort select {
  background: var(--bg); color: var(--text); border: 1px solid var(--line);
  border-radius: 6px; padding: 6px 10px; cursor: pointer;
}
.sortbar__sort select:hover { border-color: var(--accent); }

/* ============ カードグリッド ============ */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .18s, border-color .18s, box-shadow .18s;
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(232,52,78,.18);
}

.card__thumb {
  display: flex; align-items: center; justify-content: center;
  position: relative; aspect-ratio: 16 / 11; overflow: hidden;
  background:
    linear-gradient(160deg, rgba(232,52,78,.10), transparent 50%),
    repeating-linear-gradient(45deg,#23262d,#23262d 10px,#1f2228 10px,#1f2228 20px);
  color: var(--text-mute); font-size: 13px;
}
.card__thumb::after {                   /* 再生アイコン風 */
  content: "▶"; position: absolute; right: 10px; bottom: 10px; z-index: 2;
  width: 32px; height: 32px; line-height: 32px; text-align: center;
  font-size: 12px; color: #fff;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  transition: background .15s, transform .15s;
}
.card:hover .card__thumb::after { background: var(--accent); transform: scale(1.1); }
.card__noimg {
  font-size: 18px; font-weight: 800; letter-spacing: 2px;
  color: rgba(230,232,236,.55);
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
  padding: 0 12px; text-align: center;
}
.card:hover .card__noimg { color: rgba(230,232,236,.85); transition: color .2s; }

/* 実画像（img/entry-XX.jpg があれば配色＋名前の上に被せて表示） */
.card__thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  transition: transform .25s;
}
.card:hover .card__thumb img { transform: scale(1.04); }

/* バッジ群（独占／準新作） */
.card__badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 6px; z-index: 2;
}
.badge-ex {
  background: var(--accent-grad); color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 4px; letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(232,52,78,.5);
}
.badge-sub {
  background: #2d6cdf; color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 4px; letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(45,108,223,.45);
}

.card__body { padding: 12px 14px 14px; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: 11px; color: var(--accent); margin: 0 0 4px; font-weight: 700; }
.card__title { font-size: 14px; margin: 0 0 10px; line-height: 1.55; flex: 1; }
.card__title a:hover { text-decoration: underline; }

.card__price {
  display: flex; align-items: center; gap: 8px; margin: 0 0 8px;
}
.sale-badge {
  background: var(--gold); color: #1a1400; font-size: 10px; font-weight: 800;
  padding: 2px 7px; border-radius: 3px; letter-spacing: .5px;
}
.price-now { color: var(--accent); font-size: 17px; font-weight: 800; }
.price-old { color: var(--text-mute); font-size: 12px; text-decoration: line-through; }
.sale-days {
  margin-left: auto;
  color: #ff8095; font-size: 11px; font-weight: 700;
  border: 1px solid rgba(232,52,78,.5); border-radius: 4px;
  padding: 1px 7px; white-space: nowrap;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .45; }
}

.card__meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--text-mute);
  border-top: 1px dashed var(--line); padding-top: 8px;
}
.stars { color: var(--star); letter-spacing: 1px; text-shadow: 0 0 6px rgba(255,193,7,.35); }
.stars--none { color: var(--text-mute); text-shadow: none; }
.rate-num { font-style: normal; color: var(--text); font-size: 12px; font-weight: 700; }

/* ============ ページネーション ============ */
.pager { display: flex; gap: 8px; justify-content: center; margin-top: 34px; }
.pager a, .pager__current {
  display: block; min-width: 40px; text-align: center; padding: 9px 13px;
  border: 1px solid var(--line); border-radius: 8px; background: var(--bg-card);
  font-size: 14px; transition: transform .12s, border-color .12s;
}
.pager__current {
  background: var(--accent-grad); border-color: transparent; color: #fff;
  font-weight: 700; box-shadow: 0 4px 12px rgba(232,52,78,.4);
}
.pager a:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ============ サイドバー ============ */
.widget {
  background: var(--bg-side); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 16px; margin-bottom: 20px;
}
.widget__title {
  font-size: 14px; margin: 0 0 14px; padding-bottom: 10px; padding-left: 10px;
  border-bottom: 1px solid var(--line); position: relative;
}
.widget__title::before {
  content: ""; position: absolute; left: 0; top: 2px; bottom: 12px;
  width: 3px; border-radius: 2px; background: var(--accent-grad);
}

.searchbox { display: flex; }
.searchbox input {
  flex: 1; min-width: 0; background: var(--bg); border: 1px solid var(--line);
  border-radius: 6px 0 0 6px; padding: 9px 10px; color: var(--text);
}
.searchbox input:focus { outline: none; border-color: var(--accent); }
.searchbox button {
  background: var(--accent-grad); color: #fff; border: none; padding: 0 16px;
  border-radius: 0 6px 6px 0; cursor: pointer; font-weight: 700;
}

.cat-list { list-style: none; margin: 0; padding: 0; }
.cat-list li { border-bottom: 1px dashed var(--line); }
.cat-list li:last-child { border-bottom: none; }
.cat-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 4px; color: var(--text-mute); font-size: 14px;
}
.cat-list a::before { content: "›"; margin-right: 8px; color: var(--accent); font-weight: 700; }
.cat-list a:hover { color: var(--accent); padding-left: 8px; transition: padding .15s; }
.cat-list span {
  margin-left: auto;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px; padding: 0 9px; font-size: 11px;
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
  background: var(--bg); border: 1px solid var(--line); border-radius: 20px;
  padding: 5px 13px; font-size: 12px; color: var(--text-mute);
  transition: all .15s;
}
.tag-cloud a:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
  transform: translateY(-2px);
}

/* ランキング：メダル風ナンバリング */
.rank-list { list-style: none; margin: 0; padding: 0; counter-reset: rank; }
.rank-list li {
  counter-increment: rank;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 13px;
  border-bottom: 1px dashed var(--line);
}
.rank-list li:last-child { border-bottom: none; }
.rank-list li::before {
  content: counter(rank);
  flex-shrink: 0;
  width: 24px; height: 24px; line-height: 24px; text-align: center;
  border-radius: 50%; font-size: 12px; font-weight: 800;
  background: var(--bg); border: 1px solid var(--line); color: var(--text-mute);
}
.rank-list li:nth-child(1)::before { background: linear-gradient(135deg,#ffd54f,#ff9800); color: #3a2800; border: none; box-shadow: 0 2px 8px rgba(255,193,7,.4); }
.rank-list li:nth-child(2)::before { background: linear-gradient(135deg,#e0e0e0,#9e9e9e); color: #222; border: none; }
.rank-list li:nth-child(3)::before { background: linear-gradient(135deg,#d7a86e,#a05a2c); color: #fff; border: none; }
.rank-list a { color: var(--text-mute); }
.rank-list a:hover { color: var(--accent); }
.rank-list small {
  display: block; color: var(--accent); font-size: 11px; font-weight: 700;
}

.ad-banner {
  display: flex; align-items: center; justify-content: center; text-align: center;
  height: 120px; background: var(--bg);
  border: 1px dashed var(--line); border-radius: 8px;
  color: var(--text-mute); font-size: 13px;
  transition: border-color .15s;
}
.ad-banner:hover { border-color: var(--accent); }

/* ============ ページトップ ============ */
.page-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent-grad); color: #fff; border: none;
  font-size: 18px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(232,52,78,.45);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.page-top.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.page-top:hover { transform: translateY(-3px); }

/* ============ フッター ============ */
.site-footer {
  background: var(--bg-side); border-top: 1px solid var(--line);
  padding: 30px 0; margin-top: 20px; text-align: center;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: var(--accent-grad); opacity: .6;
}
.footer-nav {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  list-style: none; margin: 0 0 16px; padding: 0; font-size: 13px;
}
.footer-nav a { color: var(--text-mute); }
.footer-note { color: var(--text-mute); font-size: 12px; margin: 0 0 10px; }
.copyright { color: var(--text-mute); font-size: 12px; margin: 0; letter-spacing: 1px; }

/* ============ レスポンシブ ============ */
@media (max-width: 880px) {
  .layout { flex-direction: column; }
  .sidebar { width: 100%; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle { display: block; }
  .gnav {
    display: none; position: absolute; top: 62px; left: 0; right: 0;
    background: var(--bg-side); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .gnav.is-open { display: block; animation: pop .2s ease; }
  .gnav ul { flex-direction: column; padding: 10px; }
  .cat-hero { padding: 24px 20px; }
  .cat-hero__title { font-size: 23px; }
}
@media (max-width: 520px) {
  .card-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card__title { font-size: 13px; }
  .price-now { font-size: 15px; }
  .sortbar { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ============================================================
   作品サムネイル配色（t1〜t16）
   実画像に差し替える場合は <a class="card__thumb"> 内に
   <img src="..."> を入れるだけでOK（背景の上に表示される）
   ============================================================ */
.t1  { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #6d1736 0%, #15171c 90%); }
.t2  { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #5b1a5e 0%, #15171c 90%); }
.t3  { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #1a3a6b 0%, #15171c 90%); }
.t4  { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #0f5b55 0%, #15171c 90%); }
.t5  { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #6b3d12 0%, #15171c 90%); }
.t6  { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #4a154a 0%, #15171c 90%); }
.t7  { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #14365c 0%, #15171c 90%); }
.t8  { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #5e1224 0%, #15171c 90%); }
.t9  { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #145c46 0%, #15171c 90%); }
.t10 { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #3c1d66 0%, #15171c 90%); }
.t11 { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #155b66 0%, #15171c 90%); }
.t12 { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #66264a 0%, #15171c 90%); }
.t13 { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #1c4f24 0%, #15171c 90%); }
.t14 { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #67380f 0%, #15171c 90%); }
.t15 { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #232a72 0%, #15171c 90%); }
.t16 { background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.12), transparent 50%), linear-gradient(150deg, #701d18 0%, #15171c 90%); }

/* ============================================================
   作品詳細ページ（entry-XX.html）
   ============================================================ */
.detail { max-width: 780px; margin: 0 auto; padding: 8px 0 48px; }

.detail__title {
  font-size: 22px; line-height: 1.5; margin: 10px 0 18px;
  padding-left: 14px; border-left: 4px solid var(--accent);
}

.detail__hero {
  position: relative; display: flex; align-items: center; justify-content: center;
  aspect-ratio: 16 / 9; border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 20px;
}
.detail__hero-name {
  font-size: 34px; font-weight: 800; letter-spacing: 4px;
  color: rgba(230,232,236,.8); text-shadow: 0 2px 14px rgba(0,0,0,.7);
}
.detail__hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}

.detail__table {
  width: 100%; border-collapse: collapse; margin-bottom: 22px; font-size: 14px;
}
.detail__table th, .detail__table td {
  border: 1px solid var(--line); padding: 11px 14px; text-align: left;
}
.detail__table th {
  width: 130px; background: var(--bg-side); color: var(--text-mute);
  font-weight: 700; white-space: nowrap;
}

.detail__buy {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 26px;
}
.detail__buy .card__price { margin: 0; }
.detail__buy .price-now { font-size: 24px; }
.btn--cta { font-size: 16px; padding: 14px 30px; }

.price-note {
  width: 100%; margin: 4px 0 0;
  color: var(--text-mute); font-size: 11px;
}

.detail__review {
  background: var(--bg-side); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; margin-bottom: 26px;
}
.detail__review h2 {
  font-size: 16px; margin: 0 0 12px; padding-bottom: 10px; padding-left: 10px;
  border-bottom: 1px solid var(--line); position: relative;
}
.detail__review h2::before {
  content: ""; position: absolute; left: 0; top: 2px; bottom: 12px;
  width: 3px; border-radius: 2px; background: var(--accent-grad);
}
.detail__review p { color: var(--text-mute); font-size: 14px; }

.detail__nav {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.detail__nav a, .detail__nav span {
  padding: 10px 16px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--bg-card); font-size: 13px;
}
.detail__nav a:hover { border-color: var(--accent); }
.detail__nav .is-disabled { opacity: .35; }
.detail__nav-list { font-weight: 700; }

@media (max-width: 520px) {
  .detail__title { font-size: 18px; }
  .detail__hero-name { font-size: 22px; letter-spacing: 2px; }
  .detail__buy { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ============================================================
   追加ページ共通（トップ / ランキング / 女優 / About）
   ============================================================ */

/* セクション見出し（「もっと見る」付き） */
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin: 30px 0 16px;
}
.section-head h2 {
  font-size: 20px; margin: 0; padding-left: 12px;
  border-left: 4px solid var(--accent);
}
.section-head .more { font-size: 13px; color: var(--text-mute); white-space: nowrap; }
.section-head .more:hover { color: var(--accent); }

.page-lead { color: var(--text-mute); font-size: 14px; margin: -4px 0 18px; max-width: 720px; }

/* ============ トップ：ピックアップヒーロー ============ */
.top-hero {
  display: grid; grid-template-columns: 1.05fr .95fr;
  background: linear-gradient(120deg, #23131a 0%, #1d2026 60%, #16202c 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); margin: 16px 0 8px;
}
.top-hero__body { padding: 34px 30px; display: flex; flex-direction: column; }
.top-hero__eyebrow {
  align-self: flex-start; font-size: 12px; font-weight: 700; color: #ffb3be;
  background: rgba(232,52,78,.12); border: 1px solid rgba(232,52,78,.35);
  padding: 4px 13px; border-radius: 20px; margin-bottom: 14px;
}
.top-hero__title { font-size: 25px; line-height: 1.45; margin: 0 0 12px; }
.top-hero__lead { color: var(--text-mute); font-size: 14px; margin: 0 0 18px; }
.top-hero__body .card__price { margin: 0 0 18px; }
.top-hero__body .btn { align-self: flex-start; }
.top-hero__media {
  position: relative; min-height: 250px; display: block;
}
.top-hero__media .ph {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 800; letter-spacing: 3px;
  color: rgba(230,232,236,.72); text-shadow: 0 2px 14px rgba(0,0,0,.7); text-align: center;
}
.top-hero__media img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.top-hero__media .card__badges { z-index: 3; }

/* ============ ランキングページ ============ */
.rank-page { list-style: none; margin: 0; padding: 0; }
.rank-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 12px 16px; margin-bottom: 12px;
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.rank-row:hover { transform: translateX(4px); border-color: var(--accent); box-shadow: 0 8px 22px rgba(232,52,78,.15); }
.rank-row__no {
  flex-shrink: 0; width: 44px; height: 44px; line-height: 44px; text-align: center;
  border-radius: 50%; font-size: 18px; font-weight: 800;
  background: var(--bg); border: 1px solid var(--line); color: var(--text-mute);
}
.rank-row--1 .rank-row__no { background: linear-gradient(135deg,#ffd54f,#ff9800); color: #3a2800; border: none; box-shadow: 0 2px 10px rgba(255,193,7,.45); }
.rank-row--2 .rank-row__no { background: linear-gradient(135deg,#e0e0e0,#9e9e9e); color: #222; border: none; }
.rank-row--3 .rank-row__no { background: linear-gradient(135deg,#d7a86e,#a05a2c); color: #fff; border: none; }
.rank-row__thumb {
  flex-shrink: 0; width: 116px; aspect-ratio: 16 / 11; border-radius: 8px; overflow: hidden;
  position: relative; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: rgba(230,232,236,.6); text-align: center; padding: 0 6px;
}
.rank-row__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rank-row__info { flex: 1; min-width: 0; }
.rank-row__cat { font-size: 11px; color: var(--accent); font-weight: 700; margin: 0 0 4px; }
.rank-row__title { font-size: 15px; line-height: 1.4; margin: 0 0 8px; }
.rank-row__meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--text-mute); }
.rank-row__meta .price-now { font-size: 16px; }
.rank-row .btn { flex-shrink: 0; padding: 10px 18px; font-size: 14px; }

/* ============ 女優一覧 ============ */
.actress-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.actress-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 14px; text-align: center; color: var(--text);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.actress-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 10px 26px rgba(232,52,78,.16); }
.actress-ava {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; color: #fff;
  background: var(--accent-grad); box-shadow: 0 4px 14px rgba(232,52,78,.35);
}
.actress-card__name { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.actress-card__count { font-size: 12px; color: var(--text-mute); margin: 0; }
.actress-card__count b { color: var(--accent); font-size: 14px; }

/* ============ About / 運営者情報 ============ */
.page-article { max-width: 820px; margin: 0 auto; padding: 8px 0 48px; }
.page-article h2 {
  font-size: 18px; margin: 30px 0 12px; padding-left: 12px;
  border-left: 4px solid var(--accent);
}
.about-card {
  background: var(--bg-side); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 4px 22px 18px; margin-bottom: 22px;
}
.about-card p { color: var(--text); font-size: 14px; margin: 14px 0; }
.about-card ul { margin: 14px 0; padding-left: 20px; color: var(--text-mute); font-size: 14px; }
.about-card li { margin-bottom: 6px; }
.about-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 22px; }
.about-table th, .about-table td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; }
.about-table th { width: 150px; background: var(--bg-side); color: var(--text-mute); white-space: nowrap; font-weight: 700; }
.notice {
  background: rgba(232,52,78,.08); border: 1px solid rgba(232,52,78,.3);
  border-radius: 8px; padding: 14px 16px; font-size: 13px; color: #ffb3be; margin: 0 0 22px;
}

@media (max-width: 880px) {
  .top-hero { grid-template-columns: 1fr; }
  .top-hero__media { min-height: 200px; order: -1; }
  .actress-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .top-hero__body { padding: 24px 20px; }
  .top-hero__title { font-size: 21px; }
  .actress-grid { grid-template-columns: repeat(2, 1fr); }
  .rank-row__thumb { display: none; }
  .rank-row__no { width: 38px; height: 38px; line-height: 38px; font-size: 16px; }
  .rank-row .btn { padding: 9px 13px; font-size: 13px; }
}
