/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
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-block;
  margin-top: 12px;
  padding: 3px 12px;
  background: #1a1409;
  border: 1px dashed #6b3f1f;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #d6b27a;
  letter-spacing: 0.1em;
}
.head-notice::before { content: "[!] "; color: #c41e3a; font-weight: 900; }

/* ===== Counter ribbon (アクセスカウンター風) ===== */
.counter-bar {
  background: #14080c;
  color: #6b5a48;
  font-family: "Courier New", monospace;
  font-size: 10px;
  padding: 5px 12px;
  text-align: right;
  letter-spacing: 0.1em;
  border-bottom: 1px dashed rgba(214, 178, 122, 0.15);
}
.counter-bar span { color: #ffd35c; font-weight: 700; }
.counter-bar .num {
  display: inline-block;
  background: #0a0709;
  color: #ffd35c;
  padding: 1px 4px;
  margin: 0 4px;
  border: 1px solid #3a2f1a;
  font-weight: 700;
}


/* ===== 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: #0a0709;
  color: #6b5a48;
  font-family: "Courier New", monospace;
  font-size: 8px;
  padding: 1px 4px;
  letter-spacing: 0.05em;
  border: 1px solid #3a2f1a;
}

.card__thumb {
  aspect-ratio: 2 / 3;   /* DMM ps.jpg は縦長(約2:3) に合わせる */
  position: relative;
  overflow: hidden;
}
.card__thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;   /* 顔・タイトルが上にあることが多いので上寄せ */
  filter: contrast(1.2) saturate(0.55) brightness(0.55) sepia(0.28) hue-rotate(-12deg);
  z-index: 1;
  background: #14080c;
}
/* 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;
}
/* ビネット強化 + カラーキャスト */
.card__thumb::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.85) 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;
}

/* 録画オーバーレイ要素群 */
.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 {
  color: #6b5a48; font-size: 10px;
  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;
  margin: 0 0 16px;
}
.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 {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.92) brightness(0.95);
}
.gallery-grid .gallery-3span {
  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 {
  flex: 0 0 90px;
}
.work-data-card__img img {
  width: 90px; height: 90px;
  object-fit: cover;
  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 {
  aspect-ratio: 9/13;
  width: 100%;
  object-fit: cover;
  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%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.92) brightness(0.95);
}
.hybrid-grid__item--span2 {
  grid-column: span 2;
}
.hybrid-grid__item--span2 video,
.hybrid-grid__item--span2 img {
  aspect-ratio: 16/9;
}
.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;
}
.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: 9/13;
  object-fit: cover;
  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/3;
  object-fit: cover;
  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; }
}
