/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body { overflow-x: clip; }
body {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, "Hiragino Sans", "Yu Gothic", sans-serif;
  background: #0a0709;
  color: #cbc1b8;
  line-height: 1.6;
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
  /* グレインノイズ + 走査線 */
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012) 0px,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 3px
    ),
    radial-gradient(ellipse at center, #14080c 0%, #0a0709 70%, #050304 100%);
  background-attachment: fixed;
}
/* グレイン用の擬似要素 */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #d6b27a; text-decoration: none; }
a:hover { color: #ffd35c; }
ul { list-style: none; padding: 0; margin: 0; }

.mono { font-family: "Courier New", "Menlo", "Consolas", monospace; }

.wrap {
  max-width: 720px; margin: 0 auto; padding: 0 10px;
  position: relative;
}

/* ===== PR Bar (黄黒の警告テープ) ===== */
.pr-bar {
  background: repeating-linear-gradient(
    -45deg,
    #1a1409,
    #1a1409 12px,
    #2a1f0a 12px,
    #2a1f0a 24px
  );
  color: #d6b27a;
  font-family: "Courier New", monospace;
  font-size: 10px;
  padding: 5px 10px;
  text-align: center;
  letter-spacing: 0.15em;
  border-bottom: 1px solid #3a2f1a;
}
.pr-bar strong { color: #ffd35c; font-weight: 700; }

/* ===== Header ===== */
.site-head {
  padding: 28px 12px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(214, 178, 122, 0.15);
  background: rgba(10, 7, 9, 0.7);
  position: relative;
}
.site-head::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #6b3f1f, transparent);
}
.logo-mark {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  display: inline-block;
  position: relative;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.6));
}
.logo-mark__a {
  color: #c41e3a;
  display: inline-block;
  transform: rotate(-3deg) skewX(-3deg);
  text-shadow: 1px 1px 0 #2a0a0e, 2px 2px 0 rgba(196, 30, 58, 0.3);
}
.logo-mark__b {
  color: #d6b27a;
  display: inline-block;
  transform: rotate(2deg);
  margin-left: 1px;
  text-shadow: 1px 1px 0 #1a1409;
}
.logo-mark__c {
  color: #c41e3a;
  display: inline-block;
  transform: rotate(-2deg) skewX(2deg);
  margin-left: -3px;
  text-shadow: 1px 1px 0 #2a0a0e;
}
.logo-tag {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #6b5a48;
  letter-spacing: 0.4em;
  margin-top: 2px;
  text-transform: uppercase;
}
.head-notice {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 10px 16px;
  background: #1a1409;
  border: 1px dashed #6b3f1f;
  font-family: "Courier New", monospace;
  font-size: 12px;
  color: #e6c590;
  letter-spacing: 0.1em;
}
.head-notice::before { content: "[!] "; color: #c41e3a; font-weight: 900; }

/* ===== Actress page nav (header global links) ===== */
.actress-nav {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.actress-nav a {
  color: #d6b27a;
  padding: 4px 14px;
  text-decoration: none;
  border-right: 1px dashed rgba(214, 178, 122, 0.25);
  transition: color 0.15s ease, background 0.15s ease;
}
.actress-nav a:last-child { border-right: none; }
.actress-nav a:hover {
  color: #ffd35c;
  background: rgba(196, 30, 58, 0.08);
}
@media (max-width: 600px) {
  .actress-nav { font-size: 10px; letter-spacing: 0.12em; }
  .actress-nav a { padding: 3px 8px; }
}


/* ===== Date Header ===== */
.date-bar {
  background: linear-gradient(180deg, #2a0a0e 0%, #1a0608 100%);
  color: #d6b27a;
  padding: 7px 12px;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 18px -10px 10px;
  position: relative;
  border-top: 1px solid #6b3f1f;
  border-bottom: 1px solid #6b3f1f;
}
.date-bar::before {
  content: ">>";
  color: #c41e3a;
  margin-right: 10px;
  font-weight: 900;
}
.date-bar__count {
  float: right;
  font-size: 9px;
  color: #6b5a48;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.date-bar__count strong { color: #ffd35c; }

/* ===== Card Grid ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 0 0 8px;
}
.card {
  background: linear-gradient(180deg, #1a0e10 0%, #0e0608 100%);
  border: 1px solid #2a1820;
  border-bottom: 2px solid #1a0608;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
  position: relative;
}
.card:hover {
  border-color: #c41e3a;
  transform: translateY(-1px);
}
.card a { color: #cbc1b8; display: flex; flex-direction: column; height: 100%; }

.card__num {
  position: absolute;
  top: 3px; left: 3px;
  z-index: 5;
  background: #1a1409;
  color: #d6b27a;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 6px;
  letter-spacing: 0.05em;
  border: 1px solid #6b3f1f;
}

.card__thumb {
  aspect-ratio: 2 / 3;   /* カード比率は縦長 2:3 のまま統一 */
  position: relative;
  overflow: hidden;
  background: #14080c;
}
/* 背景blur層: 同じ画像を裏で大きく blur して余白を埋める (Netflix方式) */
/* HTML 側で style="--thumb-bg: url('...')" を inline 注入する必要あり */
.card__thumb::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--thumb-bg, none);
  background-size: cover;
  background-position: center;
  filter: blur(24px) saturate(0.6) brightness(0.42) hue-rotate(-8deg);
  transform: scale(1.18);   /* blur edge の透明縁を隠す */
  pointer-events: none;
  z-index: 0;
}
/* メイン画像: cover + 完全右寄せ
   (FANZA DVD pl.jpg は見開き型: 左=タイトル/裏面、右=女優面。右ページ全表示のため 100% に)
   個別カードで位置を override したい場合は HTML inline で --face-x, --face-y を上書き */
.card__thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--face-x, 100%) var(--face-y, 25%);
  filter: contrast(1.2) saturate(0.55) brightness(0.55) sepia(0.28) hue-rotate(-12deg);
  z-index: 1;
}
/* ビネット + カラーキャスト (画像と CRT の間に挟む) */
.card__thumb > .card__thumb-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(196, 30, 58, 0.08) 0%, transparent 50%, rgba(91, 140, 214, 0.05) 100%);
  pointer-events: none;
  z-index: 2;
}
/* CRT スキャンライン + ハーフトーン */
.card__thumb::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0) 0px,
      rgba(0,0,0,0) 2px,
      rgba(0,0,0,0.22) 2px,
      rgba(0,0,0,0.22) 3px
    ),
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1.5px);
  background-size: auto, 4px 4px;
  pointer-events: none;
  z-index: 3;
}

/* 録画オーバーレイ要素群 */
.thumb-rec {
  position: absolute;
  top: 4px; left: 28px;
  z-index: 5;
  display: flex; align-items: center; gap: 4px;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 0 0 4px rgba(0,0,0,0.9), 1px 1px 0 #000;
}
.thumb-rec::before {
  content: "●";
  color: #ff2030;
  animation: rec-blink 1.4s ease-in-out infinite;
  font-size: 10px;
}
@keyframes rec-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.thumb-tc {
  position: absolute;
  bottom: 4px; right: 4px;
  z-index: 5;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 1px 5px;
  letter-spacing: 0.08em;
  text-shadow: 1px 1px 0 #000;
  border: 1px solid rgba(255,255,255,0.15);
}
.thumb-res {
  position: absolute;
  top: 4px;
  left: auto; right: auto;
  z-index: 5;
  font-family: "Courier New", monospace;
  font-size: 8px;
  font-weight: 900;
  color: #1a0608;
  background: #ffd35c;
  padding: 1px 4px;
  letter-spacing: 0.1em;
  border: 1px solid #1a0608;
}
.thumb-res--right { right: 4px; }
.thumb-res--mid   { left: 50%; transform: translateX(-50%); top: 4px; background: #5b8cd6; color: #fff; }
.thumb-watermark {
  position: absolute; inset: 0;
  z-index: 4;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px; font-weight: 900;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.05);
  transform: rotate(-22deg);
  text-shadow: 0 0 1px rgba(0,0,0,0.4);
}
/* VHS風グリッチライン (時々現れる感じ) */
.thumb-glitch {
  position: absolute;
  top: 38%; left: 0; right: 0;
  height: 1px;
  background: rgba(91, 140, 214, 0.45);
  z-index: 5;
  box-shadow: 0 6px 0 rgba(196, 30, 58, 0.3);
}

.card__thumb--noimage {
  background:
    repeating-linear-gradient(45deg, #1a1014 0, #1a1014 8px, #14080c 8px, #14080c 16px);
  display: flex; align-items: center; justify-content: center;
}
.card__thumb--noimage span {
  position: relative; z-index: 4;
  border: 1px dashed #6b3f1f;
  padding: 4px 10px;
  background: rgba(10, 7, 9, 0.85);
  color: #6b3f1f;
  font-family: "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
}
.card__thumb-tag {
  position: absolute;
  top: 0; right: 0;
  background: #c41e3a;
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  letter-spacing: 0.05em;
  z-index: 4;
  border-bottom-left-radius: 2px;
}
.card__thumb-tag--warning {
  background: #ffd35c; color: #0a0709;
  border: 1px solid #1a1409;
  border-top: none; border-right: none;
}
.card__thumb-tag--secret {
  background: #1a0608; color: #c41e3a;
  border: 1px solid #c41e3a;
}

/* スタイライズドサムネ */
.thumb-st-1 { background: linear-gradient(135deg, #2a0d12 0%, #5C0A14 50%, #1a0608 100%); }
.thumb-st-2 { background: linear-gradient(135deg, #1a3a4a 0%, #0a1820 50%, #050a14 100%); }
.thumb-st-3 { background: linear-gradient(135deg, #4a2a1a 0%, #2a1408 50%, #14080c 100%); }
.thumb-st-4 { background: linear-gradient(135deg, #3a1a2a 0%, #1a0a14 50%, #0e0608 100%); }
.thumb-st-5 { background: linear-gradient(135deg, #2a3a1a 0%, #0a1a08 50%, #04140c 100%); }
.thumb-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 6px 8px;
  color: #d6b27a;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 2;
  text-shadow: 1px 1px 0 #000;
}

.card__body {
  padding: 7px 8px 8px;
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #1a0e10 0%, #0e0608 100%);
}
.card__title {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  color: #cbc1b8;
  margin: 0 0 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tag-悲報 { color: #c41e3a; font-weight: 900; }
.tag-画像 { color: #5b8cd6; font-weight: 900; }
.tag-神 { color: #ffd35c; font-weight: 900; }
.tag-速報 { color: #c41e3a; font-weight: 900; }
.tag-禁断 { color: #ffd35c; font-weight: 900; background: #2a0a0e; padding: 0 3px; }
.tag-極秘 { color: #1a0608; font-weight: 900; background: #ffd35c; padding: 0 3px; }
.tag-裏 { color: #c41e3a; font-weight: 900; border: 1px solid #c41e3a; padding: 0 3px; }

.card__meta {
  font-family: "Courier New", monospace;
  font-size: 9px;
  color: #6b5a48;
  letter-spacing: 0.05em;
  display: flex; gap: 6px;
  margin-top: 2px;
}
.card__meta__code {
  background: #14080c;
  color: #d6b27a;
  padding: 1px 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid #3a2f1a;
}

/* ===== Inline CTA ===== */
.inline-cta {
  display: block;
  background:
    repeating-linear-gradient(
      -45deg,
      #c41e3a,
      #c41e3a 14px,
      #a3001f 14px,
      #a3001f 28px
    );
  color: #fff;
  padding: 12px 14px;
  margin: 12px -10px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  position: relative;
  border-top: 2px solid #ffd35c;
  border-bottom: 2px solid #ffd35c;
  text-shadow: 1px 1px 0 #2a0a0e;
}
.inline-cta::before {
  content: "▼ FANZA ▼";
  display: inline-block;
  background: #ffd35c;
  color: #1a0608;
  padding: 2px 8px;
  margin-right: 10px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-shadow: none;
}

/* ===== Pagination ===== */
.pager {
  display: flex; justify-content: center; gap: 5px;
  padding: 22px 12px;
  background: transparent;
}
.pager a {
  display: inline-block;
  padding: 5px 10px;
  background: #1a0e10;
  border: 1px solid #3a2f1a;
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #d6b27a;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.pager a:hover { background: #c41e3a; color: #fff; border-color: #c41e3a; }
.pager a.current { background: #c41e3a; color: #fff; border-color: #c41e3a; }

/* ===== Footer ===== */
.site-foot {
  background: #050304;
  color: #6b5a48;
  padding: 24px 14px 18px;
  font-size: 10px;
  text-align: center;
  margin-top: 18px;
  border-top: 1px solid #3a2f1a;
  font-family: "Noto Sans JP", sans-serif;
}
.site-foot__brand {
  font-family: "Courier New", monospace;
  font-size: 13px;
  color: #c41e3a;
  font-weight: 900;
  margin: 0 0 8px;
  letter-spacing: 0.15em;
}
.site-foot p {
  margin: 0 auto 12px;
  max-width: 480px;
  line-height: 1.7;
  color: #6b5a48;
  font-size: 10px;
}
.site-foot ul {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 4px 14px;
  margin: 0 0 14px;
}
.site-foot ul a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  color: #c8a882;
  font-size: 12px;
  font-family: "Courier New", monospace;
  letter-spacing: 0.1em;
}
.site-foot__copy {
  font-family: "Courier New", monospace;
  font-size: 9px;
  color: #3a2f1a;
  border-top: 1px solid #1a1409;
  padding-top: 10px;
  margin-top: 10px;
  letter-spacing: 0.1em;
}

/* ===== Responsive ===== */
@media (min-width: 720px) {
  .wrap { padding: 0 14px; }
  .card-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .card__title { font-size: 12px; }
  .logo-mark { font-size: 46px; }
  .date-bar { margin-left: -14px; margin-right: -14px; }
  .inline-cta { margin-left: -14px; margin-right: -14px; }
}

/* ============================================ */
/* ===== Article Page (記事個別) ============== */
/* ============================================ */

.article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 14px;
}

/* ===== Article Hero ===== */
.article-hero {
  padding: 32px 0 24px;
  border-bottom: 1px dashed rgba(214, 178, 122, 0.18);
}
.breadcrumb {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #6b5a48;
  letter-spacing: 0.1em;
  max-width: 760px;
  margin: 14px auto 16px;
  padding: 0 14px;
}
.breadcrumb a { color: #6b5a48; }
.breadcrumb a:hover { color: #d6b27a; }
.breadcrumb__sep { color: #3a2f1a; margin: 0 5px; }

.article-cat {
  display: inline-block;
  background: #2a0a0e;
  color: #d6b27a;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 3px 10px;
  border: 1px solid #6b3f1f;
  margin-bottom: 14px;
}

.article-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
  color: #e8e0d0;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}

.article-meta {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #6b5a48;
  letter-spacing: 0.12em;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.article-meta__author { color: #c41e3a; font-weight: 700; }
.article-meta__divider { color: #3a2f1a; }

/* ===== Article Body ===== */
.article-body {
  padding: 28px 0 40px;
  font-size: 15px;
  line-height: 1.9;
  color: #c8bfb1;
}
.article-body p { margin: 0 0 22px; }
.article-body p strong { color: #ffd35c; font-weight: 700; }

.article-body h2 {
  font-size: 19px;
  font-weight: 900;
  color: #e8e0d0;
  margin: 56px 0 24px;
  padding: 0 0 14px;
  border-bottom: 2px solid #c41e3a;
  letter-spacing: 0.03em;
}
.article-body h2::before {
  content: "▍";
  color: #c41e3a;
  margin-right: 8px;
  font-size: 18px;
}
.article-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #d6b27a;
  margin: 36px 0 16px;
  letter-spacing: 0.04em;
  padding-left: 10px;
  border-left: 3px solid #6b3f1f;
}
.article-body h4 {
  font-size: 14px;
  color: #c9a961;
  margin: 22px 0 10px;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.article-body ul, .article-body ol {
  margin: 0 0 22px;
  padding-left: 22px;
}
.article-body li {
  margin: 0 0 8px;
}
.article-body li::marker { color: #c41e3a; }

/* Article Tables */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 13px;
  background: #1a0e10;
  border: 1px solid #3a2f1a;
  display: block;
  overflow-x: auto;
}
.article-body table thead { display: table-header-group; }
.article-body table tbody { display: table-row-group; width: 100%; }
.article-body table tr { display: table-row; }
.article-body table th, .article-body table td { display: table-cell; }
.article-body table th {
  background: #2a0a0e;
  color: #d6b27a;
  padding: 10px 9px;
  text-align: left;
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #6b3f1f;
  white-space: nowrap;
}
.article-body table td {
  padding: 11px 9px;
  border-bottom: 1px solid #2a1820;
  color: #d8cebc;
  font-weight: 500;
}
.article-body table td strong { color: #ffd35c; }
.article-body table tr:last-child td { border-bottom: none; }

/* Blockquote */
.article-body blockquote {
  margin: 24px 0;
  padding: 16px 18px;
  background: #14080c;
  border-left: 4px solid #c9a961;
  font-size: 14px;
  color: #d6b27a;
}
.article-body blockquote p { margin: 0 0 10px; line-height: 1.75; }
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body blockquote strong { color: #ffd35c; }

/* Conclusion Box */
.conclusion-box {
  background:
    linear-gradient(180deg, rgba(196, 30, 58, 0.18) 0%, rgba(20, 8, 12, 0.7) 100%);
  border: 1px solid #6b3f1f;
  border-left: 4px solid #c41e3a;
  padding: 24px 22px 22px;
  margin: 28px 0 32px;
  position: relative;
}
.conclusion-box::before {
  content: "結論 / CONCLUSION";
  position: absolute;
  top: -10px; left: 18px;
  background: #14080c;
  color: #c41e3a;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  padding: 0 10px;
  font-weight: 700;
}
.conclusion-box table {
  background: transparent;
  border: none;
  margin: 14px 0 14px;
}
.conclusion-box table th {
  background: transparent;
  border-bottom: 1px solid #6b3f1f;
  color: #c9a961;
}
.conclusion-box table td {
  color: #e8e0d0;
  border-bottom: 1px solid rgba(107, 63, 31, 0.4);
}
.conclusion-box p:last-child { margin-bottom: 0; }

/* Inline CTA */
.article-cta {
  display: block;
  background:
    repeating-linear-gradient(-45deg, #c41e3a, #c41e3a 14px, #a3001f 14px, #a3001f 28px);
  color: #fff;
  padding: 14px 18px;
  margin: 28px -14px;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-top: 2px solid #ffd35c;
  border-bottom: 2px solid #ffd35c;
  text-decoration: none;
  text-shadow: 1px 1px 0 #2a0a0e;
  position: relative;
}
.article-cta::before {
  content: "▼ FANZA ▼";
  display: inline-block;
  background: #ffd35c;
  color: #1a0608;
  padding: 2px 8px;
  margin-right: 10px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-shadow: none;
}

/* Inline PR notice */
.inline-pr {
  background: rgba(20, 8, 12, 0.6);
  border-top: 1px dashed rgba(214, 178, 122, 0.22);
  border-bottom: 1px dashed rgba(214, 178, 122, 0.22);
  padding: 14px 16px;
  margin: 28px -14px;
  font-size: 11px;
  color: #8a8278;
  font-family: "Courier New", monospace;
  letter-spacing: 0.04em;
  line-height: 1.85;
}
.inline-pr strong { color: #c41e3a; }

/* Final Mega CTA */
.final-cta {
  background:
    linear-gradient(135deg, rgba(196, 30, 58, 0.95) 0%, rgba(120, 10, 25, 0.95) 100%),
    radial-gradient(circle at 50% 30%, rgba(255, 211, 92, 0.45), transparent 65%);
  color: #fff;
  text-align: center;
  padding: 36px 22px 32px;
  margin: 40px -14px;
  border-top: 2px solid #ffd35c;
  border-bottom: 2px solid #ffd35c;
  position: relative;
  overflow: hidden;
}
.final-cta::after {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shine 3.5s ease-in-out infinite;
}
@keyframes shine {
  0% { left: -50%; }
  100% { left: 150%; }
}
.final-cta__head {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #ffd35c;
  letter-spacing: 0.25em;
  margin: 0 0 10px;
}
.final-cta__title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 14px;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.5);
}
.final-cta__btn {
  display: inline-block;
  background: #ffd35c;
  color: #1a0608;
  padding: 13px 32px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  margin: 4px 0 14px;
  border: 1px solid #1a0608;
  position: relative; z-index: 2;
}
.final-cta__note {
  display: block;
  font-size: 10px;
  font-family: "Courier New", monospace;
  letter-spacing: 0.1em;
  opacity: 0.85;
  position: relative; z-index: 2;
}

/* Author Bio Box */
.author-bio-block {
  border-top: 1px solid rgba(201, 169, 97, 0.22);
  border-bottom: 1px solid rgba(201, 169, 97, 0.22);
  padding: 28px 18px;
  margin: 36px 0 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(20, 8, 12, 0.6), transparent);
}
.author-bio-block__by {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #c9a961;
  letter-spacing: 0.32em;
  margin: 0 0 8px;
}
.author-bio-block__name {
  font-size: 20px;
  font-weight: 900;
  color: #e8e0d0;
  margin: 0 0 8px;
  letter-spacing: 0.06em;
}
.author-bio-block__stats {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #c9a961;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

/* Related Articles */
.related-block {
  padding: 28px 0 0;
}
.related-block__head {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #c9a961;
  letter-spacing: 0.3em;
  text-align: center;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.related-list { list-style: none; padding: 0; margin: 0; }
.related-list li {
  border-bottom: 1px solid #2a1820;
  background: #1a0e10;
}
.related-list li:first-child { border-top: 1px solid #2a1820; }
.related-list a {
  display: block;
  padding: 14px 14px;
  color: #d8cebc;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
}
.related-list a:hover {
  background: #2a0a0e;
  color: #ffd35c;
}
.related-list a::before {
  content: "» ";
  color: #c41e3a;
  font-weight: 900;
  margin-right: 4px;
}

/* Article HR (section divider) */
.article-body hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 97, 0.4), transparent);
  margin: 40px 0;
}

@media (min-width: 720px) {
  .article-title { font-size: 30px; }
  .article-body { font-size: 16px; }
  .article-body h2 { font-size: 22px; }
  .article-body h3 { font-size: 17px; }
  .article-cta, .inline-pr, .final-cta {
    margin-left: 0; margin-right: 0;
  }
}

/* ===== Review Pattern Common ===== */
.pattern-badge {
  position: fixed; top: 0; right: 0;
  background: #c41e3a; color: #fff;
  font-family: "Courier New", monospace;
  font-size: 10px;
  padding: 4px 12px;
  letter-spacing: 0.15em;
  z-index: 99;
  border-bottom: 2px solid #ffd35c;
  border-left: 2px solid #ffd35c;
}

.review-hero {
  position: relative;
  margin: 0 -10px 22px;
  overflow: hidden;
  background: #050304;
  border-top: 1px solid #6b3f1f;
  border-bottom: 1px solid #6b3f1f;
}
.review-hero__cover {
  width: 100%;
  display: block;
  filter: contrast(1.05) saturate(0.95);
}
.review-hero__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,7,9,0.92) 70%, #050304 100%);
  padding: 80px 16px 16px;
}
.review-hero__cat {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #ec1a3d;
  letter-spacing: 0.25em;
  font-weight: 700;
}
.review-hero__title {
  font-size: 22px; font-weight: 900;
  color: #fff;
  margin: 6px 0 8px;
  line-height: 1.3;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.85);
  letter-spacing: -0.01em;
}
.review-hero__catch {
  font-size: 12px; color: #ffd35c;
  margin: 0 0 14px;
  font-family: "Courier New", monospace;
  letter-spacing: 0.05em;
}
.review-hero__cta {
  display: block; width: 100%;
  background: linear-gradient(180deg, #ec1a3d 0%, #a8112c 100%);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  padding: 12px;
  text-align: center;
  border: 1px solid #ffd35c;
  text-shadow: 1px 1px 0 #2a0a0e;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.review-hero__cta strong {
  color: #ffd35c; font-size: 18px;
  display: block; margin-top: 2px;
}

/* ----- Visual gallery ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin: 0 -10px 24px;
  background: #050304;
}
.gallery-grid img {
  /* ★画像ソース契約: jp-N.jpg (DMMサンプル, 多くは800×534=3:2横長) を入れる */
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(0.92) brightness(0.95);
}
.gallery-grid .gallery-3span {
  /* ★パノラマタイル: jp-N.jpg のままでOK。3:2→16:9で上下11%トリム */
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ----- Video frame placeholder ----- */
.video-frame {
  position: relative;
  margin: 0 -10px 22px;
  background: #050304;
  border-top: 1px solid #6b3f1f;
  border-bottom: 1px solid #6b3f1f;
}
.video-frame__inner {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  filter: contrast(1.08) saturate(0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-frame__inner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196,30,58,0.18) 0%, rgba(10,7,9,0.55) 100%);
}
.video-frame__play {
  width: 64px; height: 64px;
  background: rgba(196,30,58,0.92);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  border: 2px solid #ffd35c;
  position: relative; z-index: 1;
}
.video-frame__caption {
  background: #1a0608;
  color: #d6b27a;
  padding: 6px 12px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: center;
}

/* ----- 一言判定ブロック ----- */
.judge-block {
  background: #14080c;
  border-left: 4px solid #c41e3a;
  border-right: 1px solid #3a2f1a;
  border-top: 1px solid #3a2f1a;
  border-bottom: 1px solid #3a2f1a;
  padding: 16px 14px;
  margin: 0 -10px 24px;
}
.judge-block::before {
  content: "[ 一 言 判 定 ]";
  display: block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #c41e3a;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.judge-block p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.75;
  color: #e8dccf;
}

/* ----- 作品データカード ----- */
.work-data-card {
  display: flex; gap: 12px;
  background: #14080c;
  border: 1px solid #3a2f1a;
  padding: 14px;
  margin: 0 -10px 24px;
}
.work-data-card__img {
  /* ★画像ソース契約: pl.jpg (800×538=3:2横長) を入れる。ps.jpg(縦長)NG */
  flex: 0 0 120px;
}
.work-data-card__img img {
  width: 120px; height: 80px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #6b3f1f;
  filter: contrast(1.05);
}
.work-data-card__name {
  font-size: 14px; font-weight: 700;
  color: #ffd35c;
  margin: 0 0 4px;
}
.work-data-card__sub { font-size: 11px; color: #6b5a48; }
.work-data-card dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 4px 12px;
  margin: 8px 0 0;
  font-size: 11px;
}
.work-data-card dt { color: #6b5a48; font-family: "Courier New", monospace; }
.work-data-card dd { color: #cbc1b8; margin: 0; }

.tag-chip {
  display: inline-block;
  background: #2a0a0e;
  border: 1px solid #6b3f1f;
  color: #d6b27a;
  font-size: 10px;
  padding: 2px 7px;
  margin: 2px 3px 2px 0;
  font-family: "Courier New", monospace;
  letter-spacing: 0.05em;
}

/* ----- シーン解説ブロック ----- */
.scene-block {
  margin: 0 -10px 22px;
  background: #050304;
  border-top: 1px solid #3a2f1a;
  border-bottom: 1px solid #3a2f1a;
}
.scene-block__head {
  background: #1a0608;
  padding: 6px 12px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #d6b27a;
  letter-spacing: 0.15em;
  display: flex;
  justify-content: space-between;
}
.scene-block__head__tc { color: #c41e3a; }
.scene-block__img img {
  width: 100%;
  filter: contrast(1.08) saturate(0.92) brightness(0.92);
}
.scene-block__caption {
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.7;
  color: #cbc1b8;
}

/* ----- スコアレーダー(β用) ----- */
.score-radar {
  background: #14080c;
  border: 1px solid #3a2f1a;
  padding: 16px 14px;
  margin: 0 -10px 24px;
}
.score-radar__title {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #c41e3a;
  letter-spacing: 0.2em;
  margin: 0 0 14px;
}
.score-radar__row {
  display: grid;
  grid-template-columns: 80px 1fr 38px;
  gap: 10px;
  align-items: center;
  margin: 0 0 10px;
}
.score-radar__label {
  font-size: 11px;
  color: #d6b27a;
  font-family: "Courier New", monospace;
  letter-spacing: 0.05em;
}
.score-radar__bar {
  height: 8px;
  background: #050304;
  border: 1px solid #3a2f1a;
  position: relative;
  overflow: hidden;
}
.score-radar__bar__fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: linear-gradient(90deg, #c41e3a 0%, #ffd35c 100%);
}
.score-radar__num {
  font-family: "Courier New", monospace;
  color: #ffd35c;
  font-weight: 900;
  font-size: 12px;
  text-align: right;
}
.score-radar__total {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #3a2f1a;
  text-align: center;
  font-family: "Courier New", monospace;
  color: #ffd35c;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

/* ----- Q&Aブロック(δ用) ----- */
.qa-toc {
  background: #050304;
  border: 1px dashed #6b3f1f;
  padding: 14px;
  margin: 0 -10px 24px;
}
.qa-toc__title {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #c41e3a;
  letter-spacing: 0.2em;
  margin: 0 0 10px;
}
.qa-toc ul { font-size: 12px; }
.qa-toc li {
  margin: 0 0 6px;
  padding-left: 18px;
  position: relative;
  color: #cbc1b8;
}
.qa-toc li::before {
  content: "▶";
  color: #d6b27a;
  position: absolute;
  left: 0;
  font-size: 10px;
}
.qa-toc a { color: #cbc1b8; }
.qa-toc a:hover { color: #ffd35c; }

.qa-block {
  background: #14080c;
  border-left: 3px solid #6b3f1f;
  padding: 14px;
  margin: 0 -10px 14px;
}
.qa-block__q {
  font-size: 14px;
  color: #ffd35c;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.5;
}
.qa-block__q::before {
  content: "Q. ";
  color: #c41e3a;
  font-family: "Courier New", monospace;
  font-size: 12px;
}
.qa-block__img { margin: 0 0 12px; }
.qa-block__img img {
  width: 100%;
  filter: contrast(1.05) saturate(0.92);
}
.qa-block__a {
  font-size: 12px;
  line-height: 1.75;
  color: #cbc1b8;
}
.qa-block__a::before {
  content: "A. ";
  color: #d6b27a;
  font-family: "Courier New", monospace;
  font-weight: 700;
}

/* ----- 比較ブロック(γ用) 原作×実写 ----- */
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 -10px 18px;
}
.compare-row > div {
  background: #14080c;
  border: 1px solid #3a2f1a;
  padding: 10px;
}
.compare-row__head {
  font-family: "Courier New", monospace;
  font-size: 9px;
  color: #c41e3a;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}
.compare-row img {
  filter: contrast(1.05) saturate(0.92);
  width: 100%;
}
.compare-row__cap {
  font-size: 11px;
  color: #cbc1b8;
  margin-top: 6px;
  line-height: 1.5;
}

/* ----- 関連作品ストリップ ----- */
.related-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 -10px 24px;
}
.related-strip a {
  display: block;
  background: #14080c;
  border: 1px solid #3a2f1a;
  padding: 6px;
}
.related-strip img {
  /* ★画像ソース契約: pl.jpg (800×538=3:2横長) を入れる。ps.jpg(縦長)NG */
  aspect-ratio: 3/2;
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.92);
}
.related-strip__title {
  font-size: 10px;
  color: #cbc1b8;
  line-height: 1.4;
  margin: 6px 0 4px;
  height: 28px;
  overflow: hidden;
}
.related-strip__price {
  font-size: 11px;
  color: #ffd35c;
  font-family: "Courier New", monospace;
  font-weight: 700;
}

/* ----- FANZAレビュー引用 ----- */
.fanza-quote {
  background: #14080c;
  border-left: 3px solid #ffd35c;
  padding: 12px 14px;
  margin: 0 -10px 14px;
}
.fanza-quote__author {
  font-size: 11px;
  color: #d6b27a;
  font-family: "Courier New", monospace;
  margin-bottom: 6px;
}
.fanza-quote__author::before { content: "[ "; color: #c41e3a; }
.fanza-quote__author::after { content: " ]"; color: #c41e3a; }
.fanza-quote__rating {
  color: #ffd35c;
  margin-left: 8px;
  letter-spacing: 0.1em;
}
.fanza-quote p {
  font-size: 12px;
  line-height: 1.75;
  color: #cbc1b8;
  font-style: italic;
  margin: 0;
}

/* ----- モバイル固定CTAバー ----- */
.fixed-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(10,7,9,0.96);
  border-top: 2px solid #c41e3a;
  padding: 8px 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  backdrop-filter: blur(4px);
}
.fixed-cta-bar__price {
  color: #ffd35c;
  font-weight: 900;
  font-size: 15px;
  flex: 0 0 auto;
  font-family: "Courier New", monospace;
  line-height: 1.1;
}
.fixed-cta-bar__price small {
  font-size: 9px;
  color: #6b5a48;
  display: block;
  font-weight: 400;
}
.fixed-cta-bar__btn {
  flex: 1;
  background: linear-gradient(180deg, #ec1a3d 0%, #a8112c 100%);
  color: #fff;
  font-weight: 900;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.05em;
  border: 1px solid #ffd35c;
  text-decoration: none;
  text-shadow: 1px 1px 0 #2a0a0e;
}

body.has-fixed-cta { padding-bottom: 64px; }

/* ----- 期間限定バッジ ----- */
.limited-banner {
  background: repeating-linear-gradient(
    -45deg,
    #2a0a0e 0%, #2a0a0e 10px,
    #1a0608 10px, #1a0608 20px
  );
  color: #ffd35c;
  border: 1px solid #c41e3a;
  padding: 12px 14px;
  margin: 0 -10px 22px;
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-align: center;
}
.limited-banner strong {
  color: #ec1a3d;
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  letter-spacing: 0.15em;
}

/* ----- パターン選択ナビ ----- */
.pattern-switch {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 0 -10px 22px;
}
.pattern-switch a {
  background: #14080c;
  border: 1px solid #3a2f1a;
  padding: 8px 4px;
  text-align: center;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #d6b27a;
  letter-spacing: 0.05em;
  text-decoration: none;
  line-height: 1.3;
}
.pattern-switch a strong {
  display: block;
  color: #ffd35c;
  font-size: 13px;
  margin-bottom: 2px;
}
.pattern-switch a.active {
  background: #2a0a0e;
  border-color: #c41e3a;
  color: #fff;
}
.pattern-switch a.active strong { color: #ec1a3d; }
.pattern-switch--5 { grid-template-columns: repeat(5, 1fr); }
.pattern-switch--6 { grid-template-columns: repeat(6, 1fr); }
.pattern-switch--6 a { padding: 8px 2px; font-size: 9px; }
.pattern-switch--6 a strong { font-size: 12px; }
.pattern-switch--7 { grid-template-columns: repeat(7, 1fr); gap: 2px; }
.pattern-switch--7 a { padding: 6px 1px; font-size: 8px; letter-spacing: 0; }
.pattern-switch--7 a strong { font-size: 11px; margin-bottom: 1px; }

/* ===== α4 / Masonry hero grid (大小混在) ===== */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 70px;
  gap: 3px;
  margin: 0 -10px 18px;
  background: #050304;
}
.masonry-grid__item {
  position: relative;
  background: #000;
  overflow: hidden;
  border: 1px solid #1a1409;
}
.masonry-grid__item video,
.masonry-grid__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.92) brightness(0.95);
}
.masonry-grid__item--w2 { grid-column: span 2; }
.masonry-grid__item--w2-h2 { grid-column: span 2; grid-row: span 2; }
.masonry-grid__item--h2 { grid-row: span 2; }
.masonry-grid__item--w3-h2 { grid-column: span 3; grid-row: span 2; }
.masonry-grid__item--w4-h2 { grid-column: span 4; grid-row: span 2; }
.masonry-grid__item__live {
  position: absolute;
  top: 3px; right: 3px;
  background: rgba(236,26,61,0.95);
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 7px;
  padding: 1px 4px;
  letter-spacing: 0.1em;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 3px;
  z-index: 2;
}
.masonry-grid__item__live::before {
  content: "";
  width: 4px; height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: rec-blink 1.4s infinite;
}
.masonry-grid__item__tc {
  position: absolute;
  bottom: 3px; right: 3px;
  background: rgba(10,7,9,0.92);
  color: #ffd35c;
  font-family: "Courier New", monospace;
  font-size: 7px;
  padding: 1px 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid #6b3f1f;
  z-index: 2;
}
.masonry-grid__item__lock {
  position: absolute;
  inset: 0;
  background: rgba(10,7,9,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd35c;
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
}
.masonry-grid__item:hover .masonry-grid__item__lock { opacity: 1; }

/* ===== α4 / Micro related strip (小型多数) ===== */
.micro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin: 0 -10px 18px;
}
.micro-strip__head {
  grid-column: 1 / -1;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #c41e3a;
  letter-spacing: 0.2em;
  padding: 0 0 4px;
}
.micro-strip a {
  position: relative;
  display: block;
  background: #14080c;
  border: 1px solid #3a2f1a;
  text-decoration: none;
}
.micro-strip a:hover { border-color: #c41e3a; }
.micro-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 9/13;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
}
.micro-strip__title {
  font-size: 8px;
  color: #cbc1b8;
  line-height: 1.3;
  padding: 3px 4px 1px;
  height: 22px;
  overflow: hidden;
}
.micro-strip__price {
  font-size: 9px;
  color: #ffd35c;
  font-family: "Courier New", monospace;
  font-weight: 700;
  padding: 0 4px 3px;
  display: flex;
  justify-content: space-between;
}
.micro-strip__price span { color: #c41e3a; font-size: 7px; }
.micro-strip__rank {
  position: absolute;
  top: 0; left: 0;
  background: #c41e3a;
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 8px;
  padding: 1px 4px;
  font-weight: 900;
  z-index: 1;
}

/* α4 セクション見出し */
.section-divider {
  margin: 26px -10px 14px;
  padding: 0 12px;
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #c41e3a;
  letter-spacing: 0.2em;
  border-top: 1px solid #3a2f1a;
  padding-top: 14px;
  font-weight: 700;
}
.section-divider strong {
  color: #ffd35c;
  font-size: 14px;
  display: block;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

/* ===== α3 hybrid: 10枚混在グリッド ===== */
.hybrid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin: 0 -10px 18px;
  background: #050304;
}
.hybrid-grid__item {
  position: relative;
  background: #000;
  overflow: hidden;
  border: 1px solid #1a1409;
}
.hybrid-grid__item video,
.hybrid-grid__item img {
  display: block;
  width: 100%;
  filter: contrast(1.08) saturate(0.92) brightness(0.95);
}
/* video は基本 16:9 (mhb_w / dmb_w 由来) */
.hybrid-grid__item video {
  aspect-ratio: 16/9;
  object-fit: cover;
}
/* img のデフォルトは ps.jpg を想定 (3:4 縦長)。
   顔・タイトルが上部にあるので center top でクロップ */
.hybrid-grid__item img {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
/* 横長サムネ系 (pl.jpg / jp-N.jpg) は 3:2 横長 */
.hybrid-grid__item img.is-pl,
.hybrid-grid__item img.is-jp,
.hybrid-grid__item img.is-landscape {
  aspect-ratio: 3/2;
  object-position: center center;
}
.hybrid-grid__item--span2 {
  grid-column: span 2;
}
/* span2 (横長大): video は 16/9 統一、画像はオリジナル比率を尊重して見切れゼロ */
.hybrid-grid__item--span2 video {
  aspect-ratio: 16/9;
}
.hybrid-grid__item--span2 img {
  aspect-ratio: auto;
  height: auto;
  width: 100%;
  object-fit: contain;
  background: #0a0204;
}
.hybrid-grid__item__label {
  position: absolute;
  top: 4px; left: 4px;
  background: rgba(196,30,58,0.92);
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 8px;
  padding: 1px 6px;
  letter-spacing: 0.1em;
  font-weight: 900;
  z-index: 2;
}
.hybrid-grid__item__tc {
  position: absolute;
  bottom: 4px; right: 4px;
  background: rgba(10,7,9,0.92);
  color: #ffd35c;
  font-family: "Courier New", monospace;
  font-size: 9px;
  padding: 1px 5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid #6b3f1f;
  z-index: 2;
}
.hybrid-grid__item__live {
  position: absolute;
  top: 4px; right: 4px;
  background: rgba(236,26,61,0.95);
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 8px;
  padding: 1px 6px;
  letter-spacing: 0.15em;
  font-weight: 900;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hybrid-grid__item__live::before {
  content: "";
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: rec-blink 1.4s infinite;
}
.hybrid-grid__item__lock {
  position: absolute;
  inset: 0;
  background: rgba(10,7,9,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd35c;
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
}
.hybrid-grid__item:hover .hybrid-grid__item__lock {
  opacity: 1;
}

/* ===== Pattern α2 / Player Stage ===== */
.player-stage {
  position: relative;
  margin: 0 -10px 0;
  background: #000;
  border-top: 1px solid #6b3f1f;
  border-bottom: 1px solid #6b3f1f;
}
.player-stage__video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}
/* mp4 が無い時 pl.jpg を <img> でフォールバック表示する場合は見切れ防止 */
img.player-stage__video {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}
.player-stage__rec {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(196,30,58,0.92);
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  letter-spacing: 0.15em;
  display: flex; align-items: center; gap: 6px;
}
.player-stage__rec::before {
  content: "";
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: rec-blink 1.4s infinite;
}
@keyframes rec-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.2; }
}
.player-stage__hud {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(10,7,9,0.85);
  border: 1px solid #6b3f1f;
  font-family: "Courier New", monospace;
  font-size: 9px;
  color: #d6b27a;
  padding: 4px 8px;
  letter-spacing: 0.1em;
}
.player-stage__hud strong { color: #ffd35c; }

.player-stage__overlay-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  padding: 30px 12px 10px;
  pointer-events: none;
}
.player-stage__progress {
  height: 4px;
  background: rgba(255,255,255,0.2);
  position: relative;
  margin-bottom: 8px;
}
.player-stage__progress__bar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0.7%;
  background: #c41e3a;
}
.player-stage__progress__bar::after {
  content: "";
  position: absolute;
  right: -5px; top: -3px;
  width: 10px; height: 10px;
  background: #ffd35c;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,211,92,0.8);
}
.player-stage__time {
  display: flex;
  justify-content: space-between;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #d6b27a;
  letter-spacing: 0.1em;
}
.player-stage__time strong { color: #ffd35c; }

.player-stage__sound {
  position: absolute;
  bottom: 36px; right: 12px;
  background: rgba(10,7,9,0.85);
  color: #ffd35c;
  border: 1px solid #ffd35c;
  font-family: "Courier New", monospace;
  font-size: 10px;
  padding: 5px 10px;
  letter-spacing: 0.1em;
  z-index: 2;
  cursor: pointer;
}

.player-stage__lock {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,7,9,0.85) 0%, rgba(196,30,58,0.4) 100%);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}
.player-stage__lock.is-active { display: flex; }
.player-stage__lock__title {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
}
.player-stage__lock__sub {
  color: #ffd35c;
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.player-stage__lock__btn {
  display: inline-block;
  background: linear-gradient(180deg, #ec1a3d 0%, #a8112c 100%);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 12px 24px;
  border: 2px solid #ffd35c;
  text-decoration: none;
}

.player-meta {
  background: #14080c;
  padding: 12px 14px;
  margin: 0 -10px 16px;
  border-bottom: 1px solid #3a2f1a;
}
.player-meta__cat {
  font-family: "Courier New", monospace;
  font-size: 9px;
  color: #c41e3a;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
}
.player-meta__title {
  font-size: 16px;
  color: #fff;
  font-weight: 900;
  margin: 0 0 6px;
  line-height: 1.4;
}
.player-meta__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #d6b27a;
  letter-spacing: 0.05em;
}
.player-meta__sub span { color: #ffd35c; }
.player-meta__sub__divider { color: #3a2f1a; }

/* ----- シーンチャプター(タイムライン風) ----- */
.scene-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 0 -10px 18px;
}
.scene-strip__item {
  position: relative;
  background: #000;
  border: 1px solid #3a2f1a;
  overflow: hidden;
  cursor: pointer;
}
.scene-strip__item video, .scene-strip__item img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.scene-strip__item__tc {
  position: absolute;
  bottom: 4px; right: 4px;
  background: rgba(10,7,9,0.92);
  color: #ffd35c;
  font-family: "Courier New", monospace;
  font-size: 9px;
  padding: 1px 5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid #6b3f1f;
}
.scene-strip__item__label {
  position: absolute;
  top: 4px; left: 4px;
  background: rgba(196,30,58,0.92);
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 8px;
  padding: 1px 5px;
  letter-spacing: 0.1em;
  font-weight: 900;
}
.scene-strip__item:hover { border-color: #c41e3a; }

.scene-strip__item--locked::after {
  content: "▶ 全編";
  position: absolute;
  inset: 0;
  background: rgba(10,7,9,0.65);
  color: #ffd35c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  border: 1px solid #ffd35c;
}

/* ----- 自動再生 関連作品 strip ----- */
.auto-related {
  margin: 0 -10px 24px;
  background: #050304;
  padding: 10px 0;
  border-top: 1px solid #3a2f1a;
  border-bottom: 1px solid #3a2f1a;
}
.auto-related__head {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #c41e3a;
  letter-spacing: 0.2em;
  padding: 0 12px 8px;
}
.auto-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 0 4px;
}
.auto-related__tile {
  position: relative;
  background: #000;
  border: 1px solid #3a2f1a;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.auto-related__tile video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.auto-related__tile__title {
  padding: 6px 8px;
  font-size: 11px;
  color: #cbc1b8;
  background: #0a0709;
  line-height: 1.4;
  height: 38px;
  overflow: hidden;
}
.auto-related__tile__price {
  background: #14080c;
  color: #ffd35c;
  font-family: "Courier New", monospace;
  font-size: 10px;
  padding: 3px 8px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
.auto-related__tile__price span { color: #c41e3a; }
.auto-related__tile__lock {
  position: absolute;
  top: 4px; right: 4px;
  background: rgba(196,30,58,0.9);
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 8px;
  padding: 1px 5px;
  letter-spacing: 0.1em;
  font-weight: 900;
  z-index: 1;
}

/* ----- スティッキー大CTA ----- */
.sticky-watch-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(10,7,9,0.88) 0%, rgba(10,7,9,0.98) 100%);
  border-top: 2px solid #c41e3a;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  backdrop-filter: blur(6px);
}
.sticky-watch-cta__price {
  font-family: "Courier New", monospace;
  color: #ffd35c;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.1;
}
.sticky-watch-cta__price small {
  display: block;
  font-size: 9px;
  color: #6b5a48;
  font-weight: 400;
  margin-top: 2px;
}
.sticky-watch-cta__btn {
  background: linear-gradient(180deg, #ec1a3d 0%, #a8112c 100%);
  color: #fff;
  font-weight: 900;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid #ffd35c;
  text-decoration: none;
  text-shadow: 1px 1px 0 #2a0a0e;
  display: block;
}

/* ===== まとめver template (pillar / actress / genre) ===== */

/* リード3行 */
.lede {
  background: #14080c;
  border-left: 4px solid #ffd35c;
  border-right: 1px solid #3a2f1a;
  border-top: 1px solid #3a2f1a;
  border-bottom: 1px solid #3a2f1a;
  padding: 14px 16px;
  margin: 0 -10px 22px;
}
.lede p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.7;
  color: #e8dccf;
}
.lede p:last-child { margin-bottom: 0; }
.lede strong { color: #ffd35c; }

/* 評価基準セクション */
.criteria {
  background: #050304;
  border: 1px dashed #6b3f1f;
  padding: 14px;
  margin: 0 -10px 24px;
}
.criteria__title {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #c41e3a;
  letter-spacing: 0.2em;
  margin: 0 0 12px;
}
.criteria__title strong { color: #ffd35c; font-size: 14px; display: block; margin-top: 2px; letter-spacing: 0.05em; }
.criteria__list { display: grid; gap: 10px; }
.criteria__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}
.criteria__item__num {
  font-family: "Courier New", monospace;
  background: #c41e3a;
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  padding: 3px 0;
  text-align: center;
  letter-spacing: 0.05em;
}
.criteria__item__head {
  font-size: 13px;
  color: #ffd35c;
  font-weight: 700;
  margin: 0 0 3px;
}
.criteria__item__body {
  font-size: 12px;
  color: #cbc1b8;
  line-height: 1.6;
  margin: 0;
}

/* 作品ブロック × N (まとめ内の各作品) */
.matome-item {
  background: #14080c;
  border: 1px solid #3a2f1a;
  margin: 0 -10px 22px;
  position: relative;
}
.matome-item__rank {
  position: absolute;
  top: -1px;
  left: -1px;
  background: linear-gradient(180deg, #c41e3a 0%, #a8112c 100%);
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 14px;
  font-weight: 900;
  padding: 4px 10px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #ffd35c;
  border-right: 1px solid #ffd35c;
  z-index: 2;
}
.matome-item__rank--top { background: linear-gradient(180deg, #ffd35c 0%, #c89c2a 100%); color: #2a0a0e; }
.matome-item__head {
  background: #1a0608;
  padding: 28px 14px 10px;
  border-bottom: 1px solid #3a2f1a;
}
.matome-item__title {
  font-size: 15px;
  color: #fff;
  font-weight: 900;
  margin: 0 0 6px;
  line-height: 1.4;
}
.matome-item__sub {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #d6b27a;
  letter-spacing: 0.05em;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.matome-item__sub span { color: #ffd35c; }
.matome-item__media {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 12px 14px;
}
.matome-item__media img {
  width: 110px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #6b3f1f;
  filter: contrast(1.05) saturate(0.92);
}
.matome-item__data dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 3px 10px;
  margin: 0 0 8px;
  font-size: 11px;
}
.matome-item__data dt { color: #6b5a48; font-family: "Courier New", monospace; }
.matome-item__data dd { color: #cbc1b8; margin: 0; }
.matome-item__score {
  display: flex; gap: 4px; align-items: center;
  font-family: "Courier New", monospace;
  font-size: 12px;
  color: #ffd35c;
  font-weight: 700;
  margin-top: 6px;
}
.matome-item__score__star { color: #ec1a3d; font-size: 13px; }

.matome-item__sample {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 14px 12px;
}
.matome-item__sample img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: contain;
  background: #0a0204;
  filter: contrast(1.05) saturate(0.92) brightness(0.95);
}

.matome-item__comment {
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.75;
  color: #e8dccf;
  border-top: 1px dashed #3a2f1a;
}
.matome-item__comment p { margin: 0 0 8px; }
.matome-item__comment p:last-child { margin-bottom: 0; }

.matome-item__quote {
  background: #050304;
  border-left: 2px solid #6b3f1f;
  padding: 8px 12px;
  margin: 0 14px 12px;
  font-size: 11px;
  font-style: italic;
  color: #cbc1b8;
  line-height: 1.6;
}
.matome-item__quote::before {
  content: "[FANZAレビュー] ";
  color: #c41e3a;
  font-style: normal;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.matome-item__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 0 14px 14px;
}
.matome-item__cta a {
  text-align: center;
  padding: 9px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid #ffd35c;
  text-shadow: 1px 1px 0 #2a0a0e;
}
.matome-item__cta__primary {
  background: linear-gradient(180deg, #ec1a3d 0%, #a8112c 100%);
  color: #fff;
}
.matome-item__cta__secondary {
  background: linear-gradient(180deg, #1a1409 0%, #2a1f0a 100%);
  color: #ffd35c;
}

/* 比較表セクション */
.compare-table {
  margin: 0 -10px 24px;
  background: #14080c;
  border: 1px solid #3a2f1a;
  overflow-x: auto;
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
.compare-table th {
  background: #2a0a0e;
  color: #ffd35c;
  padding: 8px 6px;
  text-align: left;
  font-family: "Courier New", monospace;
  letter-spacing: 0.05em;
  border: 1px solid #6b3f1f;
  font-weight: 700;
  white-space: nowrap;
}
.compare-table td {
  padding: 6px;
  border: 1px solid #3a2f1a;
  color: #cbc1b8;
}
.compare-table td strong { color: #ffd35c; }
.compare-table tr:nth-child(even) td { background: rgba(26, 6, 8, 0.4); }

/* 内部リンク（関連まとめ記事へ） */
.related-matome {
  margin: 0 -10px 24px;
  background: #050304;
  border: 1px solid #3a2f1a;
  padding: 14px;
}
.related-matome__title {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #c41e3a;
  letter-spacing: 0.2em;
  margin: 0 0 12px;
}
.related-matome__list {
  display: grid;
  gap: 8px;
}
.related-matome__list a {
  display: block;
  padding: 10px 12px;
  background: #14080c;
  border: 1px solid #3a2f1a;
  font-size: 12px;
  color: #d6b27a;
  text-decoration: none;
  position: relative;
  padding-left: 24px;
}
.related-matome__list a::before {
  content: "▶";
  position: absolute;
  left: 10px;
  color: #c41e3a;
}
.related-matome__list a:hover { color: #ffd35c; border-color: #6b3f1f; }
.related-matome__list a strong { color: #ffd35c; }

/* ============================================================
   [3] シェアボタン
   ============================================================ */
.share-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
  padding: 10px 12px;
  border: 1px solid #2a1f0a;
  background: #110c08;
}
.share-row__label {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #c41e3a;
  letter-spacing: 0.2em;
  margin-right: 4px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  border: 1px solid #3a2f1a;
  background: #0a0709;
  color: #cbc1b8;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.share-btn:hover { border-color: #ffd35c; color: #ffd35c; background: rgba(255,211,92,0.05); }
.share-btn--x:hover { border-color: #1d9bf0; color: #1d9bf0; background: rgba(29,155,240,0.05); }
@media (max-width: 480px) {
  .share-row { gap: 6px; padding: 8px 10px; }
  .share-btn { padding: 7px 10px; font-size: 10px; }
}

/* ============================================================
   [4] 18禁 ageゲート
   ============================================================ */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(8, 5, 3, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.age-gate__panel {
  max-width: 460px;
  width: 100%;
  background: #1a1409;
  border: 1px solid #c41e3a;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 0 0 4px #0a0709, 0 0 40px rgba(196,30,58,0.25);
}
.age-gate__brand {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #ffd35c;
  margin: 0 0 18px;
}
.age-gate__title {
  font-size: 16px;
  color: #c41e3a;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0 0 16px;
  font-family: 'Courier New', monospace;
}
.age-gate__lede {
  font-size: 12px;
  color: #cbc1b8;
  line-height: 1.85;
  margin: 0 0 22px;
  text-align: left;
}
.age-gate__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 18px;
}
.age-gate__btn {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 14px;
  border: 1px solid;
  cursor: pointer;
}
.age-gate__btn--yes {
  background: #c41e3a;
  border-color: #c41e3a;
  color: #fff;
}
.age-gate__btn--yes:hover { background: #a01830; border-color: #a01830; }
.age-gate__btn--no {
  background: transparent;
  border-color: #3a2f1a;
  color: #cbc1b8;
}
.age-gate__btn--no:hover { border-color: #cbc1b8; color: #ffd35c; }
.age-gate__note {
  font-size: 10px;
  color: #6b5a48;
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   [7] 目次 (TOC)
   ============================================================ */
.toc {
  margin: 18px 0 24px;
  padding: 0;
  border: 1px solid #2a1f0a;
  background: linear-gradient(180deg, #110c08 0%, #0e0805 100%);
  position: relative;
}
.toc::before {
  content: 'INDEX';
  position: absolute;
  top: -1px;
  left: 12px;
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: #1a1409;
  background: #ffd35c;
  padding: 2px 8px 2px 8px;
}
.toc__summary {
  padding: 18px 16px 14px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #ffd35c;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toc__summary::-webkit-details-marker { display: none; }
.toc__summary::after {
  content: '＋';
  font-size: 16px;
  color: #c41e3a;
  transition: transform .2s;
}
.toc[open] .toc__summary::after { content: '−'; }
.toc__count {
  font-size: 10px;
  color: #6b5a48;
  margin-left: 8px;
  letter-spacing: 0.1em;
}
.toc__list {
  list-style: none;
  padding: 0 0 14px;
  margin: 0;
  border-top: 1px solid #2a1f0a;
}
.toc__item a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 18px;
  text-decoration: none;
  font-size: 13px;
  color: #cbc1b8;
  line-height: 1.55;
  border-left: 2px solid transparent;
  transition: border-color .12s, color .12s, background .12s;
}
.toc__item a:hover {
  border-left-color: #ffd35c;
  color: #ffd35c;
  background: rgba(255,211,92,0.04);
}
.toc__num {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #c41e3a;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 22px;
}
.toc__text { flex: 1; }
@media (max-width: 480px) {
  .toc__summary { padding: 14px 12px 12px; font-size: 12px; }
  .toc__item a { padding: 8px 14px; font-size: 12px; }
}

/* ============================================================
   [9] アーカイブページ
   ============================================================ */
.archive-search {
  margin: 0 0 24px;
}
.archive-search input {
  width: 100%;
  background: #0d0a07;
  border: 1px solid #3a2e22;
  color: #c8a882;
  font-size: 14px;
  padding: 12px 14px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  outline: none;
}
.archive-search input:focus { border-color: #c41e3a; }
.archive-section { margin: 0 0 22px; }
.archive-section__label {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #c41e3a;
  margin: 0 0 10px;
  padding-left: 4px;
}
.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.afilter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 6px 12px;
  background: #0a0709;
  border: 1px solid #3a2f1a;
  color: #cbc1b8;
  cursor: pointer;
  transition: border-color .12s, color .12s, background .12s;
}
.afilter:hover { border-color: #ffd35c; color: #ffd35c; }
.afilter--active {
  background: #c41e3a;
  border-color: #c41e3a;
  color: #fff;
}
.afilter--active:hover { color: #fff; }
.afilter__n {
  font-family: 'Courier New', monospace;
  font-size: 9px;
  color: #6b5a48;
  background: rgba(0,0,0,0.3);
  padding: 2px 5px;
  letter-spacing: 0.05em;
}
.afilter--active .afilter__n { color: #ffd35c; background: rgba(0,0,0,0.4); }
.archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.archive-list__item { margin: 0 0 1px; }
.archive-list__item a {
  display: flex;
  gap: 14px;
  padding: 12px;
  background: #110c08;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: border-color .12s, background .12s;
}
.archive-list__item a:hover {
  border-left-color: #ffd35c;
  background: #181106;
}
.archive-list__thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
  background: #0a0709;
}
.archive-list__body { flex: 1; min-width: 0; }
.archive-list__title {
  font-size: 13px;
  color: #cbc1b8;
  line-height: 1.55;
  margin: 0 0 6px;
  font-weight: 700;
}
.archive-list__meta {
  font-size: 11px;
  color: #7a6855;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}
.archive-list__cat {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #c41e3a;
  letter-spacing: 0.15em;
  flex-shrink: 0;
}
.archive-list__sum {
  font-size: 11px;
  color: #7a6855;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .archive-list__thumb { width: 60px; height: 45px; }
  .archive-list__title { font-size: 12px; }
}

/* ===== SALE BADGE (P4) ===== */
.sale-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin: 0 0 8px;
  background: #c41e3a;
  color: #ffefca;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 2px 2px 0 #1a1208;
  position: relative;
  animation: sale-pulse 2s ease-in-out infinite;
}
.sale-badge__tag {
  background: #ffefca;
  color: #c41e3a;
  padding: 2px 6px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.sale-badge__end {
  color: #ffefca;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.sale-badge[hidden] { display: none !important; }
@keyframes sale-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); box-shadow: 2px 3px 0 #1a1208; }
}

/* ============================================
   Axis A — Narrative styles (v1.1, 2026-05-08)
   軸A 女優別決定版辞書のnarrative改造で追加
   既存 v7 design language（CRT/grunge/警告テープ/REC）継承
   ============================================ */

/* === Opening Hook（ヒーロー直下、読者を引き込むリード） === */
.opening-hook {
  position: relative;
  background: #14080c;
  border-left: 4px solid #d6b27a;
  border-right: 1px solid #3a2f1a;
  border-top: 1px solid #3a2f1a;
  border-bottom: 1px solid #3a2f1a;
  padding: 18px 16px 16px;
  margin: 0 -10px 28px;
  font-size: 14px;
  line-height: 1.85;
  color: #e8dccf;
}
.opening-hook p { margin: 0 0 10px; }
.opening-hook p:last-child { margin-bottom: 0; }
.hook-marker {
  display: inline-block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #c41e3a;
  letter-spacing: 0.15em;
  margin-right: 6px;
}

/* === Narrative Bio（経歴の物語化、3章のコンテナ） === */
.narrative-bio {
  margin: 24px -10px 28px;
  padding: 0 10px;
}

/* === Turning Point Chapter（3章の物語ブロック） === */
.turning-point-chapter {
  background: rgba(20, 8, 12, 0.6);
  border: 1px solid #3a2f1a;
  border-left: 3px solid #6b3f1f;
  padding: 18px 14px 14px;
  margin: 0 0 18px;
  position: relative;
}
.turning-point-chapter::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #6b3f1f, transparent);
}
.chapter-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(214, 178, 122, 0.2);
  padding-bottom: 8px;
}
.chapter-header h3 {
  margin: 0;
  font-size: 16px;
  color: #e8dccf;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex: 1;
}
.chapter-era {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #d6b27a;
  letter-spacing: 0.18em;
  background: #2a1f0a;
  padding: 3px 8px;
  border-radius: 1px;
  white-space: nowrap;
}
.chapter-narrative {
  font-size: 13px;
  line-height: 1.85;
  color: #cbc1b8;
}
.chapter-narrative p { margin: 0 0 12px; }
.chapter-narrative p:last-child { margin-bottom: 0; }

/* === Chapter Key Scene（場面切り取り） === */
.chapter-key-scene {
  background: #0d0608;
  border-left: 2px solid #c41e3a;
  padding: 12px 12px 10px;
  margin: 14px 0 10px;
  font-size: 12px;
}
.chapter-key-scene::before {
  content: "";
  display: block;
}
.scene-marker {
  display: inline-block;
  font-family: "Courier New", monospace;
  font-size: 9px;
  color: #c41e3a;
  letter-spacing: 0.25em;
  background: #1a0608;
  padding: 2px 6px;
  margin-bottom: 8px;
  border: 1px solid #3a1015;
}
.chapter-key-scene p { margin: 0 0 6px; line-height: 1.75; color: #cbc1b8; }
.chapter-key-scene p:last-child { margin-bottom: 0; }

/* === Chapter Industry Reaction（業界の反応） === */
.chapter-industry-reaction {
  background: #0c0a06;
  border-left: 2px solid #d6b27a;
  padding: 12px 12px 10px;
  margin: 10px 0 0;
  font-size: 12px;
}
.reaction-marker {
  display: inline-block;
  font-family: "Courier New", monospace;
  font-size: 9px;
  color: #d6b27a;
  letter-spacing: 0.25em;
  background: #1a1409;
  padding: 2px 6px;
  margin-bottom: 8px;
  border: 1px solid #3a2f1a;
}
.chapter-industry-reaction p { margin: 0 0 6px; line-height: 1.75; color: #cbc1b8; }
.chapter-industry-reaction p:last-child { margin-bottom: 0; }

/* === Narrative Voice Section（本人の言葉セクション全体） === */
.narrative-voice-section {
  margin: 28px -10px;
  padding: 0 10px;
}

/* === Interview Quotes（インタビュー引用） === */
.interview-quotes {
  margin: 16px 0;
}
.interview-quote {
  background: #14080c;
  border-left: 3px solid #d6b27a;
  border-right: 1px solid #3a2f1a;
  border-top: 1px solid #3a2f1a;
  border-bottom: 1px solid #3a2f1a;
  padding: 14px 14px 12px;
  margin: 0 0 16px;
  font-style: normal;
}
.interview-quote .quote-meta,
.interview-quote-meta {
  display: flex;
  gap: 10px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #6b5a48;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(214, 178, 122, 0.15);
  flex-wrap: wrap;
}
.interview-quote .quote-source,
.interview-quote-source { color: #d6b27a; }
.interview-quote .quote-date,
.interview-quote-date { color: #7a6855; }
.interview-quote .quote-q,
.interview-quote-q {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #c41e3a;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  font-weight: 700;
}
.interview-quote .quote-a,
.interview-quote-a {
  font-size: 13px;
  line-height: 1.8;
  color: #e8dccf;
  margin-bottom: 0;
}
.interview-quote cite {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #6b5a48;
  letter-spacing: 0.15em;
  margin-top: 8px;
  font-style: normal;
}

/* === Signature Phrases（本人の口癖・モットー） === */
.signature-phrases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 16px 0;
}
.signature-phrase-card {
  background: #0d0608;
  border: 1px solid #3a2f1a;
  border-top: 2px solid #d6b27a;
  padding: 12px 12px 10px;
  font-size: 13px;
  line-height: 1.75;
  color: #cbc1b8;
  position: relative;
}
.signature-phrase-card::before {
  content: "\201C";
  position: absolute;
  top: 4px; left: 8px;
  font-family: Georgia, serif;
  font-size: 28px;
  color: rgba(214, 178, 122, 0.3);
  line-height: 1;
}
.signature-phrase-card p { margin: 0 0 6px 22px; }
.signature-phrase-card cite,
.signature-phrase-card .source-label {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #6b5a48;
  letter-spacing: 0.15em;
  margin-top: 8px;
  font-style: normal;
}

/* === Peer Voices（第三者証言） === */
.peer-voices {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}
.peer-voice {
  background: #14080c;
  border: 1px solid #3a2f1a;
  border-left: 3px solid #6b3f1f;
  padding: 12px 12px 10px;
  margin: 0;
}
.peer-voice .voice-source,
.voice-source {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #d6b27a;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-weight: 700;
}
.peer-voice .voice-type-badge,
.voice-type-badge {
  display: inline-block;
  font-family: "Courier New", monospace;
  font-size: 9px;
  color: #2a0a0e;
  background: #d6b27a;
  letter-spacing: 0.18em;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 1px;
  text-transform: uppercase;
  vertical-align: middle;
}
.peer-voice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #cbc1b8;
}
.peer-voice cite {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #6b5a48;
  letter-spacing: 0.15em;
  margin-top: 8px;
  font-style: normal;
}

/* === Industry Reactions（業界の反応セクション） === */
.industry-reactions {
  background: rgba(20, 8, 12, 0.4);
  border: 1px solid #3a2f1a;
  border-top: 2px solid #d6b27a;
  padding: 14px;
  margin: 16px 0;
}
.industry-reactions h4 {
  margin: 0 0 10px;
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #d6b27a;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.industry-reactions p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.75;
  color: #cbc1b8;
}

/* === Fan Voices === */
.fan-voices {
  margin: 16px 0;
}
.fan-voices h3 {
  margin: 0 0 10px;
  font-size: 14px;
  color: #d6b27a;
  letter-spacing: 0.05em;
}

/* === Tastes Block（趣味の具体エピソード、抽象キーワード単独NG） === */
.tastes-block {
  background: #0d0608;
  border: 1px solid #3a2f1a;
  border-left: 3px solid #d6b27a;
  padding: 14px;
  margin: 12px 0;
}
.tastes-block::before {
  content: "[ TASTES ]";
  display: block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #d6b27a;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.tastes-block .tastes-episode {
  font-size: 13px;
  line-height: 1.75;
  color: #cbc1b8;
  margin: 0 0 10px;
}
.tastes-block .tastes-episode:last-child { margin-bottom: 0; }
.tastes-block cite {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #6b5a48;
  letter-spacing: 0.15em;
  margin-top: 4px;
  font-style: normal;
}

/* === Watch Next Section（観るべき5人） === */
.watch-next-section {
  margin: 28px -10px;
  padding: 0 10px;
}
.watch-next-section h2 {
  margin: 0 0 12px;
}
.watch-next-card {
  background: #14080c;
  border: 1px solid #3a2f1a;
  border-left: 3px solid #c41e3a;
  padding: 14px;
  margin: 0 0 12px;
  position: relative;
}
.watch-next-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #e8dccf;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.watch-next-card .why,
.watch-next-card p.why {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #d6b27a;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  line-height: 1.6;
}
.watch-next-card .connection,
.watch-next-card p.connection {
  font-size: 12px;
  color: #cbc1b8;
  line-height: 1.75;
  margin: 0;
}
.watch-next-card a { color: #ffd35c; }
.watch-next-card a:hover { color: #ffefca; }

/* === Closing Note（教訓化エンディング） === */
.closing-note-section {
  margin: 32px -10px 24px;
  padding: 0 10px;
}
.closing-note-section h2 {
  margin: 0 0 14px;
  text-align: center;
}
.closing-note-card {
  background: #14080c;
  border: 2px solid #c41e3a;
  border-left: 4px solid #c41e3a;
  padding: 20px 16px;
  position: relative;
  text-align: center;
}
.closing-note-card::before {
  content: "[ FIN ]";
  position: absolute;
  top: -10px; left: 12px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #ffd35c;
  background: #0a0709;
  padding: 0 8px;
  letter-spacing: 0.25em;
}
.closing-note-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.85;
  color: #e8dccf;
}
.closing-note-card p:last-child { margin-bottom: 0; }
.closing-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  background: linear-gradient(180deg, #ec1a3d 0%, #a8112c 100%);
  border: 1px solid #ffd35c;
  color: #ffefca;
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-shadow: 1px 1px 0 #2a0a0e;
  text-decoration: none;
}
.closing-cta:hover { color: #ffefca; }

/* === Pending Citation（実データ取得待ちプレースホルダ） === */
.pending-citation {
  opacity: 0.55;
  border-style: dashed !important;
  position: relative;
}
.pending-citation::after {
  content: "[ PENDING ]";
  position: absolute;
  top: 6px; right: 8px;
  font-family: "Courier New", monospace;
  font-size: 9px;
  color: #c41e3a;
  background: #1a0608;
  padding: 2px 6px;
  letter-spacing: 0.2em;
  border: 1px solid #3a1015;
  pointer-events: none;
}
.citation-pending-note {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #7a6855;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

/* === Callout（自著ボックス、blockquote 誤用置換用） === */
.callout {
  background: rgba(20, 8, 12, 0.5);
  border: 1px solid #3a2f1a;
  border-left: 3px solid #6b3f1f;
  padding: 12px 14px;
  margin: 14px 0;
  font-size: 12px;
  line-height: 1.75;
  color: #cbc1b8;
}
.callout p { margin: 0 0 8px; }
.callout p:last-child { margin-bottom: 0; }
.callout.note {
  border-left-color: #6b5a48;
  background: rgba(20, 14, 8, 0.4);
}
.callout.note::before {
  content: "[ NOTE ]";
  display: block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #6b5a48;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.callout.warning {
  border-left-color: #c41e3a;
  background: rgba(26, 6, 8, 0.4);
}
.callout.warning::before {
  content: "[ ⚠ WARNING ]";
  display: block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #c41e3a;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.callout.decision-tree {
  border-left-color: #d6b27a;
  background: rgba(26, 20, 9, 0.4);
  font-family: "Courier New", monospace;
}
.callout.decision-tree::before {
  content: "[ DECISION ]";
  display: block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #d6b27a;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.callout.decision-tree p {
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* === Data Source Note（footer 内の出典注記、57記事に挿入済） === */
.data-source-note {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #6b5a48;
  letter-spacing: 0.08em;
  margin: 0.5em 0 0;
  line-height: 1.5;
  font-style: italic;
}

/* ===== Mobile responsive (Axis A narrative) ===== */
@media (max-width: 480px) {
  .opening-hook { padding: 14px 12px; font-size: 13px; }
  .turning-point-chapter { padding: 14px 10px; }
  .chapter-header { flex-direction: column; gap: 4px; align-items: flex-start; }
  .chapter-header h3 { font-size: 15px; }
  .chapter-era { font-size: 10px; }
  .chapter-narrative { font-size: 12px; }
  .interview-quote { padding: 12px 10px; }
  .interview-quote .quote-a,
  .interview-quote-a { font-size: 12px; }
  .closing-note-card { padding: 16px 12px; }
  .closing-note-card p { font-size: 13px; }
  .watch-next-card { padding: 12px 10px; }
  .peer-voice { padding: 10px; }
}

/* ============================================================
   Axis A v1.2 — 画像/embed スロット (hero-image-stack / chapter-image-strip / sns-embeds / watch-next-thumb)
   v7 デザイン語彙（grain-noise / CRT / 警告テープ）準拠、モバイル最適化
   ============================================================ */
.hero-image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.hero-image-stack .actress-portrait {
  max-width: 320px;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  /* デフォルト center 20% (portrait用)、is-pl 修飾子で pl.jpg 用に右半分crop に切替 */
  object-position: center 20%;
  border: 1px solid var(--c-line, #2a2a2a);
}
.hero-image-stack .actress-portrait.is-pl {
  /* FANZA pl.jpg は見開き型(左=裏面・右=女優面)、右半分crop デフォルト
     ([[feedback_dmm_jacket_object_position_2026-05-20]] 準拠) */
  object-position: var(--face-x, 100%) var(--face-y, 25%);
}
.hero-image-stack .sns-embed {
  max-width: 480px;
  width: 100%;
}

.actress-image {
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.actress-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--c-line, #2a2a2a);
  display: block;
}
.actress-image figcaption {
  font-size: 12px;
  color: var(--c-text-dim, #888);
  letter-spacing: 0.04em;
}
.actress-image--amazon img {
  max-width: 280px;
}

.chapter-image-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin: 12px 0;
}
.chapter-image-strip .actress-image {
  margin: 0;
}
.chapter-image-strip .actress-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.chapter-embed { margin: 10px 0; }

.sns-embeds {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
.sns-embed--x .twitter-timeline,
.sns-embed--x blockquote.twitter-tweet {
  max-width: 100% !important;
  margin: 0 auto;
}
.sns-embed--ig blockquote.instagram-media {
  margin: 0 auto !important;
  max-width: 100% !important;
}
.sns-embed--yt iframe {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  height: auto;
}

.watch-next-thumb-link {
  display: block;
  margin-bottom: 8px;
}
.watch-next-thumb {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  /* pl.jpg 見開きの右半分(女優面)を表示、顔ドアップ回避 (2026-05-22) */
  object-position: 100% 25%;
  border: 1px solid var(--c-line, #2a2a2a);
  display: block;
}
.watch-next-card {
  display: flex;
  flex-direction: column;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 12px 0;
}

@media (max-width: 600px) {
  .hero-image-stack .actress-portrait { max-width: 100%; }
  .actress-image--amazon img { max-width: 100%; }
  .chapter-image-strip { grid-template-columns: 1fr 1fr; }
  .recommended-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== work-item (各作品セクション) — 14_v2 で導入 ===== */
.work-item {
  margin: 24px -10px 28px;
  padding: 14px 10px 18px;
  background: linear-gradient(180deg, rgba(20,8,12,0.5) 0%, rgba(10,4,6,0.2) 100%);
  border-top: 1px solid #2a1a16;
  border-bottom: 1px solid #2a1a16;
}
.work-item > h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffd35c;
  margin: 0 0 4px;
  line-height: 1.42;
}
.work-meta {
  font-size: 11px;
  color: #7a6855;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.work-comment {
  font-size: 13.5px;
  line-height: 1.78;
  color: #d8cfc6;
  margin: 10px 0 14px;
  padding: 10px 12px;
  border-left: 3px solid #c4263b;
  background: rgba(0,0,0,0.28);
}
.work-cta {
  display: block;
  text-align: center;
  background: #c4263b;
  color: #fff !important;
  text-decoration: none;
  padding: 12px 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 14px;
  border: 1px solid #ff8a99;
  margin: 6px 0 0;
}
.work-cta:hover { background: #ff3650; }

/* ===== scene-grid (シーン画像5枚並べ) — 14_v2 で導入 ===== */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin: 10px -10px 14px;
  align-items: start;
}
.scene-grid a {
  display: block;
  position: relative;
  overflow: hidden;
  background: #0a0204;
}
.scene-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0a0204;
  display: block;
  filter: contrast(1.08) saturate(0.92) brightness(0.92);
  transition: filter 0.2s;
}
.scene-grid a:hover img {
  filter: contrast(1.15) saturate(1.0) brightness(1.0);
}
@media (max-width: 600px) {
  .scene-grid { grid-template-columns: repeat(3, 1fr); }
}

/* CTA帯 (記事中段の強調CTA) */
.cta-band {
  margin: 24px 0;
  padding: 18px 16px;
  background: linear-gradient(135deg, #c41e3a 0%, #a31530 100%);
  border: 2px solid #ffd35c;
  border-radius: 0;
}
.cta-band__title {
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  margin: 0 0 4px;
  letter-spacing: 0.05em;
}
.cta-band__sub {
  color: #fff3d3;
  font-size: 12px;
  margin: 0 0 12px;
  line-height: 1.6;
}
.cta-band__btn {
  display: block;
  padding: 12px 16px;
  background: #ffd35c;
  color: #0d0a06;
  text-align: center;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.cta-band__btn:hover { background: #fff; }

/* ===== 作品CTA 2ボタン並列 (14_v6 で導入) ===== */
.work-cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0;
}
/* 3ボタン版 (無料お試し登録を追加した記事用, B-3a で導入) */
.work-cta-pair.work-cta-pair--trio {
  grid-template-columns: 1fr 1fr 1fr;
}
.work-cta-pair__single,
.work-cta-pair__monthly,
.work-cta-pair__trial {
  display: block;
  padding: 16px 12px;
  text-align: center;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.work-cta-pair__single {
  background: linear-gradient(180deg, #c41e3a 0%, #a31530 100%);
  border: 2px solid #ffd35c;
  color: #fff;
}
.work-cta-pair__single:hover { background: #d62848; }
.work-cta-pair__monthly {
  background: #0d0a06;
  border: 2px solid #ffd35c;
  color: #ffd35c;
}
.work-cta-pair__monthly:hover { background: #1a1409; }
.work-cta-pair__trial {
  background: #ffd35c;
  border: 2px solid #ffd35c;
  color: #1a0608;
}
.work-cta-pair__trial:hover { background: #fff; }
@media (max-width: 600px) {
  .work-cta-pair { grid-template-columns: 1fr; gap: 6px; }
  .work-cta-pair.work-cta-pair--trio { grid-template-columns: 1fr; }
  .work-cta-pair__single, .work-cta-pair__monthly, .work-cta-pair__trial { padding: 14px 10px; font-size: 13px; }
}

/* ===== 比較表 サイトロゴセル (14_v6 で導入) ===== */
.site-cell a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.site-cell img.site-logo {
  width: 60px;
  height: auto;
  max-height: 30px;
  object-fit: contain;
  filter: none;
  display: inline-block;
  background: transparent;
}
.site-cell .site-name {
  font-weight: 700;
  color: #ffd35c;
}
@media (max-width: 600px) {
  .site-cell img.site-logo { width: 40px; max-height: 20px; }
  .site-cell .site-name { font-size: 11px; }
}

/* ===== 記事内目次 (TOC) — 14_v7 で導入 ===== */
.article-toc {
  margin: 16px 0 24px;
  padding: 14px 16px;
  background: #0d0a06;
  border: 1px solid #2a2014;
}
.article-toc__head {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: #ffd35c;
  letter-spacing: 0.05em;
}
.article-toc__list,
.article-toc__sublist {
  margin: 0;
  padding-left: 20px;
  list-style: decimal;
  font-size: 13px;
  line-height: 1.7;
}
.article-toc__sublist {
  margin-top: 4px;
  margin-bottom: 6px;
  font-size: 12px;
  color: #cbc1b8;
}
.article-toc a {
  color: #cbc1b8;
  text-decoration: none;
}
.article-toc a:hover {
  color: #ffd35c;
  text-decoration: underline;
}

/* ===== 比較表 サイト名リンク (青系・14_v7 で導入) ===== */
.site-link {
  display: block;
  text-decoration: none;
  color: #4a9eff;
}
.site-link strong {
  display: block;
  color: #4a9eff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}
.site-link:hover strong {
  color: #82bfff;
}
.site-link__suffix {
  display: inline-block;
  margin-top: 2px;
  font-size: 11px;
  color: #6699cc;
}

/* ===========================================================
   軸A actress テンプレ未完成パート（2026-05-15 追記）
   元設計: 独立 actress.css 予定 → style.css に統合
   =========================================================== */

.actress-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 14px 60px;
}

/* Hero (記事冒頭の女優ヒーローセクション) */
.hero-actress {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 24px 0 36px;
  padding: 18px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(214,178,122,0.18);
  border-radius: 2px;
}
@media (min-width: 600px) {
  .hero-actress { grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
}
.hero-actress--no-player .hero-image-stack { display: flex; flex-direction: column; gap: 10px; }
.hero-actress__meta { display: flex; flex-direction: column; gap: 12px; }
/* opening-hook 等は grid 2列横断（画像下に全幅で配置） */
.hero-actress > .opening-hook,
.hero-actress > .work-data-card { grid-column: 1 / -1; }

.opening-hook {
  margin: 10px 0;
  padding: 16px 18px;
  background: rgba(0,0,0,0.5);
  border-left: 3px solid #d6b27a;
  font-size: 14px;
  line-height: 1.75;
  color: #e7dbc8;
}
.opening-hook p { margin: 6px 0; }
.opening-hook .hook-marker {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #d6b27a;
  margin-bottom: 6px;
}

.work-data-card {
  margin: 10px 0;
  padding: 14px 16px;
  background: rgba(20,8,12,0.7);
  border: 1px solid rgba(214,178,122,0.18);
  font-size: 12.5px;
}
.work-data-card h3, .work-data-card h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #d6b27a;
  font-family: "Courier New", monospace;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.signature-phrases { margin: 18px 0; display: grid; gap: 10px; }
.signature-phrase-card {
  padding: 12px 14px;
  background: rgba(214,178,122,0.04);
  border: 1px dashed rgba(214,178,122,0.2);
  font-size: 13.5px;
  color: #e7dbc8;
}

.sns-embeds { display: grid; gap: 14px; margin: 14px 0; }
.sns-embed {
  padding: 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(214,178,122,0.1);
  font-size: 12.5px;
}

.work-group { margin: 18px 0; }
.work-group h3 {
  font-size: 13px;
  color: #d6b27a;
  margin: 0 0 10px;
  font-family: "Courier New", monospace;
  letter-spacing: 0.1em;
}

.industry-reactions { display: grid; gap: 10px; margin: 14px 0; }

.actress-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.25;
  margin: 0;
  color: #f3e8d8;
  letter-spacing: 0.02em;
}
.actress-name rt { font-size: 0.45em; color: #9a8e80; font-weight: 500; letter-spacing: 0.08em; }

.actress-meta {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #a99a85;
  letter-spacing: 0.06em;
}
.actress-meta li { white-space: nowrap; }
.actress-meta li::before { content: "› "; color: #5d4d3a; }

/* Profile / biography sections */
.profile-section, .biography-section, .narrative-bio,
.quote-section, .sns-section, .works-section,
.industry-reaction-section, .related-actresses-section, .watch-next-section {
  margin: 32px 0;
}
.profile-section h2, .biography-section h2, .quote-section h2,
.sns-section h2, .works-section h2, .industry-reaction-section h2,
.related-actresses-section h2, .watch-next-section h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #d6b27a;
  border-left: 3px solid #d6b27a;
  padding-left: 10px;
  margin: 0 0 16px;
}

/* Turning point chapters (narrative 章) */
.turning-point-chapter {
  margin: 22px 0;
  padding: 16px 16px 18px;
  background: rgba(20,8,12,0.6);
  border: 1px solid rgba(214,178,122,0.12);
  border-radius: 2px;
  position: relative;
}
.chapter-header {
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(214,178,122,0.22);
  padding-bottom: 8px;
}
.chapter-era {
  display: inline-block;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #d6b27a;
  background: rgba(214,178,122,0.08);
  padding: 3px 10px;
  border: 1px solid rgba(214,178,122,0.2);
  margin-bottom: 6px;
}
.chapter-header h3 {
  font-size: 16px; font-weight: 700; color: #f3e8d8;
  margin: 6px 0 0; line-height: 1.4;
}

.chapter-quote {
  border-left: 3px solid #d6b27a;
  background: rgba(214,178,122,0.05);
  padding: 12px 14px;
  margin: 12px 0;
  font-size: 14px;
  color: #e7dbc8;
  font-style: italic;
}
.chapter-quote p { margin: 0 0 8px; }
.chapter-quote footer { font-style: normal; }

.chapter-key-scene, .chapter-industry-reaction {
  margin: 14px 0;
  padding: 12px 14px;
  background: rgba(0,0,0,0.4);
  border-left: 2px solid rgba(214,178,122,0.4);
  font-size: 12.5px;
  color: #c2b39a;
}
.chapter-key-scene h4, .chapter-industry-reaction h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d6b27a;
  margin: 0 0 6px;
  font-family: "Courier New", monospace;
}

.citation-attribution {
  font-size: 10.5px;
  color: #7a6c5a;
  margin-top: 8px;
  font-family: "Courier New", monospace;
  letter-spacing: 0.04em;
}
.citation-attribution cite { font-style: normal; }
.citation-attribution a { color: #9a8a70; border-bottom: 1px dotted #5a4a36; }
.citation-attribution a:hover { color: #d6b27a; }

.industry-reaction-card {
  margin: 10px 0;
  padding: 11px 14px;
  background: rgba(20,8,12,0.5);
  border: 1px solid rgba(214,178,122,0.1);
  font-size: 12.5px;
}
.industry-reaction-card cite { font-style: normal; color: #d6b27a; }

/* Images (女優写真ブロック) */
.actress-image {
  margin: 0;
  position: relative;
}
.actress-image img {
  width: 100%; height: auto; display: block;
  border: 1px solid rgba(214,178,122,0.15);
}
.actress-image figcaption {
  font-size: 10.5px; color: #7a6c5a;
  margin-top: 6px; font-family: "Courier New", monospace;
  letter-spacing: 0.04em;
}
.actress-image--amazon img { background: #1a0d12; }

/* Related actresses / watch-next cards */
.related-actresses-section ul, .watch-next-section ul {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) {
  .related-actresses-section ul, .watch-next-section ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.related-actresses-section li, .watch-next-section li {
  background: rgba(20,8,12,0.6);
  border: 1px solid rgba(214,178,122,0.12);
  padding: 12px;
}
.related-actresses-section a, .watch-next-section a {
  display: block; color: #cbc1b8;
}
.related-actresses-section h3, .watch-next-section h3 {
  font-size: 13px; margin: 0 0 4px; color: #f3e8d8;
}
.related-actresses-section p, .watch-next-section p {
  font-size: 11.5px; color: #a99a85; margin: 0; line-height: 1.5;
}

/* CTA + closing */
.closing-cta, .final-cta {
  margin: 40px 0;
  text-align: center;
}
.closing-note-section { margin: 32px 0; }
.closing-note-card {
  padding: 18px 16px;
  background: rgba(214,178,122,0.06);
  border: 1px dashed rgba(214,178,122,0.25);
  color: #d6b27a;
  font-size: 13px;
  line-height: 1.7;
}
.cta-button--primary {
  display: inline-block;
  padding: 12px 26px;
  background: #d6b27a;
  color: #14080c !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid #d6b27a;
  text-transform: uppercase;
  transition: opacity 0.15s;
}
.cta-button--primary:hover { opacity: 0.85; color: #14080c !important; }

/* Article footer */
.article-footer {
  margin: 40px 0 0;
  padding: 18px 8px;
  border-top: 1px solid rgba(214,178,122,0.18);
  font-size: 13px;
  color: #a08770;
  line-height: 1.7;
}
.article-footer p { margin: 8px 0; }
.article-footer a {
  display: inline-block;
  padding: 6px 10px;
  font-size: 13px;
  color: #c8a882;
  font-weight: 600;
  text-decoration: underline;
}

/* Exclusive 系タグ */
.exclusive, .exclusive-tag {
  display: inline-block;
  font-family: "Courier New", monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: #c41e3a;
  background: rgba(196,30,58,0.08);
  padding: 2px 8px;
  border: 1px solid rgba(196,30,58,0.4);
  text-transform: uppercase;
}

/* Hook marker / accent */
.hook-marker {
  display: inline-block;
  color: #d6b27a;
  font-family: "Courier New", monospace;
  font-weight: 700;
  margin-right: 6px;
}

/* Quote section h3 */
.quote-section blockquote {
  border-left: 3px solid #d6b27a;
  margin: 14px 0;
  padding: 10px 14px;
  background: rgba(214,178,122,0.04);
  font-style: italic;
  color: #e7dbc8;
}

/* hero-grid (まとめ記事冒頭5作品ティーザー、2026-05-15 追加) */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin: 0 -10px 18px;
  background: #050304;
}
.hero-grid a {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid #1a1409;
}
.hero-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.3s;
}
.hero-grid a:hover img { transform: scale(1.05); }
@media (max-width: 600px) {
  .hero-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid a:nth-child(n+4) { display: none; }
}

/* hero-strip (まとめ記事冒頭、横スクロール 10作品ティーザー、2026-05-15 追加) */
.hero-strip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0 -10px 18px;
  padding: 0 10px 8px;
  background: #050304;
  scrollbar-width: thin;
  scrollbar-color: #ffd35c #1a1409;
}
.hero-strip::-webkit-scrollbar { height: 6px; }
.hero-strip::-webkit-scrollbar-track { background: #1a1409; }
.hero-strip::-webkit-scrollbar-thumb { background: #ffd35c; }
.hero-strip a {
  flex: 0 0 auto;
  width: 380px;
  scroll-snap-align: start;
  border: 1px solid #1a1409;
  display: block;
  overflow: hidden;
}
.hero-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.3s;
}
.hero-strip a:hover img { transform: scale(1.05); }
@media (max-width: 600px) {
  .hero-strip a { width: 280px; }
}

/* compare-table 特徴列を広く (2026-05-15) */
.compare-table table { table-layout: auto; }
.compare-table th:nth-child(4),
.compare-table td:nth-child(4) {
  min-width: 240px;
  font-size: 12px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .compare-table th:nth-child(4),
  .compare-table td:nth-child(4) { min-width: 180px; font-size: 11px; }
}

/* ===========================================================
   work-item__* BEM 子要素（2026-05-15 追記、actress 詳細レビュー用）
   =========================================================== */
.work-item__head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px;
  margin-bottom: 12px;
}
.work-item__num {
  font-family: "Courier New", monospace;
  font-size: 18px; font-weight: 700;
  color: #d6b27a;
  letter-spacing: 0.04em;
}
.work-item__title {
  font-size: 16px; font-weight: 700;
  color: #f3e8d8;
  margin: 0;
  line-height: 1.4;
  flex: 1 1 100%;
}
.work-item__meta {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 4px 10px;
  font-family: "Courier New", monospace;
  font-size: 11px; color: #a99a85;
  letter-spacing: 0.04em;
}
.work-item__meta li { white-space: nowrap; }
.work-item__player {
  margin: 12px 0 14px;
  background: #050304;
  border: 1px solid rgba(214,178,122,0.15);
  aspect-ratio: 16 / 10.4;
  overflow: hidden;
  position: relative;
}
.work-item__player video,
.work-item__player img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.work-item__scenes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin: 12px 0;
}
.work-item__scenes img {
  width: 100%; height: auto; display: block;
  border: 1px solid rgba(214,178,122,0.1);
}
@media (max-width: 540px) {
  .work-item__scenes { grid-template-columns: repeat(2, 1fr); }
}
.work-item__review {
  margin: 14px 0;
  padding: 12px 14px;
  background: rgba(0,0,0,0.4);
  border-left: 3px solid rgba(214,178,122,0.4);
  font-size: 13.5px;
  line-height: 1.75;
  color: #e7dbc8;
}
.work-item--upcoming {
  opacity: 0.85;
}
.work-item--upcoming .work-item__player {
  aspect-ratio: 16 / 10.4;
}

/* grain-filter (poster/video の上にうっすらノイズ) */
.grain-filter {
  position: relative;
}
.player-stage__poster {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* works-summary / works-fanza-link */
.works-summary {
  font-size: 13.5px;
  line-height: 1.75;
  color: #c2b39a;
  margin: 0 0 22px;
}
.works-fanza-link {
  margin: 24px 0 0;
  text-align: center;
}
.works-fanza-link a {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(214,178,122,0.4);
  color: #d6b27a;
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.works-fanza-link a:hover { background: rgba(214,178,122,0.06); }

/* ============================================================
   ランキングバッジ + 構造化メタ + ジャンルchip (Ver14, 2026-05-15)
   articles/_drafts/14_kosupure_av_hikaku_v14.html 起点
============================================================ */
.work-item {
  position: relative;
  padding: 36px 18px 18px;  /* バッジ用上余白 + 内側パディング */
  margin: 32px 0;
  border: 1px solid #2a2014;
  background: #0a0705;
}
.rank-badge {
  position: absolute;
  top: -1px; left: -1px;  /* 枠線にぴったり重ねる */
  background: #ffd35c;
  color: #0d0a06;
  font-weight: 900;
  font-size: 15px;
  padding: 6px 14px;
  letter-spacing: 0.05em;
  z-index: 2;
}
@media (max-width: 600px) {
  .work-item { padding: 32px 12px 14px; }
}
.work-title {
  margin: 0 0 8px;
  padding-left: 12px;
  border-left: 4px solid #c41e3a;
  font-size: 18px;
  font-weight: 900;
}
.work-id-bar {
  margin: 0 0 14px;
  padding: 0 0 10px;
  border-bottom: 1px solid #2a2014;
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: #cbc1b8;
  letter-spacing: 0.04em;
}
.work-id-bar .highlight { color: #c41e3a; font-weight: 700; }
.work-detail__list {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 6px 12px;
  margin: 0 0 16px;
  font-size: 12px;
}
.work-detail__list dt {
  color: #8b7d68;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.work-detail__list dd {
  margin: 0;
  color: #e7dbc8;
}
.genre-chip {
  display: inline-block;
  margin: 2px 4px 2px 0;
  padding: 3px 10px;
  background: #1a1409;
  border: 1px solid #3a2c1a;
  font-size: 11px;
  color: #ffd35c;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .work-detail__list { grid-template-columns: 70px 1fr; font-size: 11px; }
  .genre-chip { font-size: 10px; padding: 2px 8px; }
}

/* ===========================================================
   /av/actress/ 系のカード・ヒーロー画像をTOP同等のカラー寄りに（2026-05-16）
   既存 .card__thumb-img のセピア/暗色フィルタを actress-card 限定で解除
   =========================================================== */
.actress-card .card__thumb-img {
  filter: contrast(1.05) saturate(1.05);
}
/* CRT スキャンライン無効化 */
.actress-card .card__thumb::after {
  display: none;
}
/* ビネット軽く: photo 状態のみ。placeholder は専用ビネット */
.actress-card .card__thumb[data-thumb-state="photo"]::before {
  /* 背景blur層を残しつつ、ビネットをvignette spanに移譲済 */
}
/* 個別ページの hero ポートレートもセピア解除 */
.hero-image-stack .actress-portrait {
  filter: contrast(1.05) saturate(1.05);
}

/* ===========================================================
   2026-05-20 ユーザー指示: actress-card は overlay 最小化（ゴチャゴチャ解消）
   - メーカー watermark (S1/MOODYZ 等) 撤去
   - REC バッジ撤去
   - card__thumb-tag (DEBUT/NEW/引退) と debut年月は残す
   =========================================================== */
.actress-card .thumb-watermark,
.actress-card .thumb-rec {
  display: none !important;
}

/* ===========================================================
   統一プレースホルダーカード（2026-05-20）
   メーカー公式 / 本人 SNS / グラビア取材 等のvetted画像が揃うまで
   全女優を同一デザインで揃える「underground 名簿カード」風
   =========================================================== */
.card__thumb[data-thumb-state="placeholder"] {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196,30,58,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #1a0f12 0%, #0a0608 100%);
}
.card__thumb[data-thumb-state="placeholder"]::before {
  /* placeholder 時は blur 背景レイヤーを潰す */
  display: none;
}
.card__thumb[data-thumb-state="placeholder"]::after {
  /* CRTスキャンラインは控えめに残す */
  opacity: 0.5;
}
.card__thumb-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12% 8%;
  gap: 14px;
  color: #d6c5b1;
  font-family: "Noto Sans JP", sans-serif;
}
.placeholder__mark {
  font-size: 14px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #ffb84a;
  border: 1px solid rgba(255,184,74,0.45);
  padding: 4px 14px;
  border-radius: 2px;
  text-transform: uppercase;
}
.placeholder__name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #f4e8d8;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.placeholder__year {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #88746a;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
@media (max-width: 600px) {
  .placeholder__name { font-size: 16px; }
  .placeholder__mark { font-size: 11px; padding: 3px 10px; }
  .placeholder__year { font-size: 9px; letter-spacing: 0.18em; }
}

/* ===========================================================
   タグ機能 (2026-05-20 追加)
   - 記事末尾の .tag-list / .article-tags
   - /av/tag/{slug}/ のタグページ専用カード
   =========================================================== */
.article-tags {
  margin: 40px 0 24px;
  padding: 16px 20px;
  border-top: 1px solid #3a2c1a;
  border-bottom: 1px solid #3a2c1a;
  background: rgba(20, 8, 12, 0.6);
}
.article-tags__head {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #d6b27a;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-item {
  display: inline-block;
}
.tag-link {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  border: 1px solid #3a2c1a;
  border-radius: 3px;
  color: #d6c5b1;
  text-decoration: none;
  background: rgba(0,0,0,0.3);
  letter-spacing: 0.04em;
}
.tag-link:hover {
  background: rgba(196, 30, 58, 0.18);
  color: #fff;
}
.tag-item--actress .tag-link { border-color: rgba(196, 30, 58, 0.5); }
.tag-item--maker .tag-link { border-color: rgba(91, 140, 214, 0.5); }
.tag-item--situation .tag-link { border-color: rgba(255, 184, 74, 0.5); }
.tag-item--play .tag-link { border-color: rgba(127, 199, 255, 0.4); }
.tag-item--event .tag-link { border-color: rgba(255, 74, 106, 0.6); color: #ff9aa8; }

/* タグページのアーカイブ */
.tag-archive {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.tag-card {
  display: block;
  background: rgba(20, 8, 12, 0.7);
  border: 1px solid #3a2c1a;
  border-radius: 4px;
  text-decoration: none;
  color: #d6c5b1;
  overflow: hidden;
}
.tag-card:hover { border-color: rgba(196, 30, 58, 0.6); }
.tag-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: 75% 25%;
  filter: contrast(1.1) saturate(0.8);
}
.tag-card__thumb--placeholder { background: linear-gradient(135deg, #1a0f12, #0a0608); }
.tag-card__body { padding: 12px 14px; }
.tag-card__title { font-size: 14px; line-height: 1.4; margin: 0 0 6px; color: #f4e8d8; }
.tag-card__desc { font-size: 11px; line-height: 1.5; color: #88746a; margin: 0; }

.tag-cat-section { margin: 32px 0; }
.tag-cat-head {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #ffb84a;
  border-bottom: 1px solid #3a2c1a;
  padding-bottom: 6px;
}
.tag-cat-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cat-list a { color: #d6c5b1; text-decoration: none; padding: 4px 10px; border: 1px solid #3a2c1a; border-radius: 3px; font-size: 13px; }
.tag-cat-list a:hover { color: #fff; background: rgba(196, 30, 58, 0.18); }

/* === sticky-watch-cta : モバイル含む全画面サイズで適用 (2026-05-21) === */
/* 旧定義は @media (min-width: 720px) 内のみ→モバイルで死亡。ここで後勝ち上書き */
.sticky-watch-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(10,7,9,0.92) 0%, rgba(10,7,9,0.98) 100%);
  border-top: 2px solid #c41e3a;
  padding: 8px 10px;
  display: block;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.sticky-watch-cta > a {
  display: block;
  background: linear-gradient(180deg, #ec1a3d 0%, #a8112c 100%);
  color: #fff;
  font-weight: 900;
  padding: 13px 12px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 1px solid #ffd35c;
  text-decoration: none;
  text-shadow: 1px 1px 0 #2a0a0e;
  border-radius: 2px;
  line-height: 1.3;
}
/* 帯がコンテンツを隠さないよう body 末尾余白を自動付与 (iOS Safari 15.4+ / Chrome 105+) */
body:has(.sticky-watch-cta) { padding-bottom: 64px; }
.tag-count { color: #88746a; font-size: 11px; margin-left: 4px; }
