@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800&family=Zen+Kaku+Gothic+Antique:wght@500;700;900&family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* ── Kusumi (muted/dusty) surfaces ── */
  --bg:           #f6ede4;
  --bg-2:         #fdf9f3;
  --bg-pink:      #f0dcd7;
  --bg-pink-2:    #e5c5bd;
  --bg-cream:     #ebdfcd;
  --bg-mint:      #dde2d2;
  --bg-lav:       #e5dde3;

  /* Ink */
  --ink:          #2f292e;
  --ink-2:        #6d5f66;
  --ink-3:        #9f9298;
  --ink-4:        #c9bdc2;
  --line:         #e7d9d2;
  --line-2:       #d4c2b8;

  /* Brand: kusumi pink */
  --pink:         #c89598;
  --pink-mid:     #b6807f;
  --pink-deep:    #9d6266;   /* CTA — muted but readable */
  --pink-darker:  #794a4e;
  --pink-soft:    #e6cdcb;
  --pink-pale:    #f3dedc;

  /* Accents (all muted) */
  --berry:        #885860;
  --sage:         #9aab8e;
  --mint:         #c5d4b9;
  --amber:        #b09356;   /* くすみゴールド (stars/coupons) */
  --amber-soft:   #ecddb0;
  --blue-link:    #6f8294;
  --lavender:     #ad9bb0;

  /* Type */
  --f-display: 'Zen Kaku Gothic Antique', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --f-body:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', system-ui, sans-serif;
  --f-num:     'Inter', system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --pad: clamp(16px, 4vw, 40px);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;
  --shadow-card: 0 1px 0 rgba(47,41,46,0.04), 0 6px 18px -10px rgba(47,41,46,0.10);
  --shadow-hover: 0 4px 0 rgba(47,41,46,0.04), 0 18px 32px -12px rgba(157,98,102,0.22);
}

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.wrap-narrow { max-width: 960px; margin: 0 auto; padding: 0 var(--pad); }

/* ── Topbar ── */
.topbar {
  background: linear-gradient(90deg, var(--pink-deep) 0%, var(--pink-mid) 100%);
  color: #fcf3ef;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.topbar-inner {
  display: flex; justify-content: center; gap: 20px;
  align-items: center; padding: 8px var(--pad); flex-wrap: wrap;
}
.topbar a { text-decoration: underline; text-underline-offset: 3px; color: #fff; }
.topbar .dot { width: 4px; height: 4px; background: rgba(255,255,255,0.55); border-radius: 50%; }

/* ── Header ── */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: center; padding: 14px 0;
}
.logo {
  font-family: var(--f-display); font-weight: 900;
  font-size: 24px; letter-spacing: -0.02em; line-height: 1;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.logo .heart { color: var(--pink-mid); font-size: 14px; transform: translateY(-1px); }
.logo small {
  font-family: var(--f-body); font-weight: 500;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink-3); margin-left: 4px;
}
.gnav { display: flex; justify-content: center; gap: 28px; font-size: 14px; font-weight: 500; }
.gnav a { position: relative; padding: 6px 0; transition: color .2s; }
.gnav a:hover { color: var(--pink-deep); }
.gnav a.is-active { color: var(--pink-deep); }
.gnav a.is-active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--pink);
  border-radius: 2px;
}
.gnav .badge {
  display: inline-block; font-size: 10px;
  background: var(--pink-soft); color: var(--pink-deep);
  border-radius: var(--r-pill); padding: 2px 7px;
  margin-left: 4px; font-weight: 700;
  letter-spacing: 0.02em; font-family: var(--f-num);
}
.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta .search {
  width: 36px; height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background .2s, border-color .2s;
}
.header-cta .search:hover { background: var(--bg-pink); border-color: var(--pink-soft); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 22px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px; letter-spacing: 0.04em;
  background: var(--pink-deep); color: #fff; border: 0;
  transition: transform .15s, background .2s, box-shadow .2s;
  box-shadow: 0 6px 14px -4px rgba(157,98,102,0.30);
}
.btn:hover { background: var(--pink-darker); transform: translateY(-1px); box-shadow: 0 10px 18px -4px rgba(157,98,102,0.40); }
.btn:active { transform: translateY(0); }
.btn .ar { transition: transform .2s; }
.btn:hover .ar { transform: translateX(3px); }
.btn-pink { background: var(--pink-mid); box-shadow: 0 6px 14px -4px rgba(182,128,127,0.30); }
.btn-pink:hover { background: var(--pink-deep); }
.btn-outline { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); box-shadow: none; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: var(--bg-pink); color: var(--pink-deep); box-shadow: none; }
.btn-ghost:hover { background: var(--pink-soft); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.linklike {
  color: var(--pink-deep); font-weight: 600;
  font-size: 14px; display: inline-flex; align-items: center;
  gap: 6px; border-bottom: 1px solid currentColor;
  padding-bottom: 1px; transition: gap .2s;
}
.linklike:hover { gap: 10px; }

/* ── Sections / headings ── */
.section { padding: clamp(60px, 9vw, 96px) 0; }
.section--pink { background: var(--bg-pink); }
.section--cream { background: var(--bg-cream); }
.section--soft { background: var(--bg-2); }
.section--lav { background: var(--bg-lav); }

.section-head {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: end; margin-bottom: 36px;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  color: var(--pink-deep); background: var(--pink-pale);
  padding: 4px 12px; border-radius: var(--r-pill);
  letter-spacing: 0.06em;
}
.section-tag .em { font-family: var(--f-num); }
.h-section {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.35; letter-spacing: -0.005em;
  margin: 12px 0 10px;
}
.h-section em {
  font-style: normal; color: var(--pink-deep); position: relative;
}
.h-section em::after {
  content: ''; position: absolute;
  left: -2px; right: -2px; bottom: 4px;
  height: 8px; background: var(--pink-pale);
  z-index: -1; border-radius: 2px;
}
.h-section .ruby {
  font-family: var(--f-num); font-weight: 700;
  font-size: 0.55em; color: var(--ink-3);
  letter-spacing: 0.08em; display: inline-block;
  margin-left: 6px; vertical-align: middle;
}
.lede {
  font-size: 15px; color: var(--ink-2);
  line-height: 1.95; max-width: 60ch;
}

/* ── Hero (with diagnose card) ── */
.hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(50px, 7vw, 88px);
  background: linear-gradient(180deg, var(--bg-pink) 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--pink-soft) 0%, rgba(230,205,203,0) 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -100px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(200,149,152,0.18) 0%, rgba(230,205,203,0) 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--pink-soft);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700;
  color: var(--pink-deep); letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--pink-mid);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(182,128,127,0.20);
}
.hero h1 {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.32; letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.hero h1 .hl {
  background: linear-gradient(transparent 60%, var(--pink-pale) 60%);
  padding: 0 2px;
}
.hero h1 .pink { color: var(--pink-deep); }
.hero-sub {
  font-size: 15px; color: var(--ink-2);
  line-height: 1.95; margin-bottom: 28px;
}
.hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px dashed var(--line-2);
  border-bottom: 1px dashed var(--line-2);
  margin: 24px 0 28px;
}
.hero-stats div { display: flex; flex-direction: column; align-items: flex-start; }
.hero-stats label { font-size: 11px; color: var(--ink-3); font-weight: 500; letter-spacing: 0.08em; }
.hero-stats strong { font-family: var(--f-num); font-weight: 700; font-size: 22px; color: var(--ink); margin-top: 2px; }
.hero-stats strong .unit { font-family: var(--f-body); font-size: 13px; color: var(--ink-2); margin-left: 2px; font-weight: 600; }

/* Quiz card */
.quiz-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--line);
}
.quiz-card::before {
  content: '60秒';
  position: absolute;
  top: -14px; right: 20px;
  background: var(--pink-mid);
  color: #fff;
  font-family: var(--f-num);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 10px -2px rgba(182,128,127,0.40);
}
.quiz-card .title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.quiz-card .title em { font-style: normal; color: var(--pink-deep); }
.quiz-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 22px; }
.quiz-step {
  background: var(--bg-pink); border-radius: var(--r-md);
  padding: 14px 12px; text-align: center; position: relative;
}
.quiz-step .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; background: #fff;
  color: var(--pink-deep); border-radius: 50%;
  font-family: var(--f-num); font-weight: 700;
  font-size: 13px; margin-bottom: 6px;
}
.quiz-step .lb { font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.quiz-step .sub { font-size: 10px; color: var(--ink-3); font-weight: 500; margin-top: 2px; }
.quiz-foot {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 14px; gap: 12px;
}
.quiz-foot .meta { font-size: 11px; color: var(--ink-3); }
.quiz-foot .meta strong { color: var(--pink-deep); font-weight: 700; font-family: var(--f-num); }

/* Hero photo collage */
.hero-photos { position: relative; aspect-ratio: 1/1; }
.hero-photos .ph {
  position: absolute; border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.hero-photos .ph img { width: 100%; height: 100%; object-fit: cover; }
.hero-photos .ph-1 { top: 0; left: 8%; width: 55%; aspect-ratio: 3/4; }
.hero-photos .ph-2 { top: 18%; right: 0; width: 42%; aspect-ratio: 4/3; }
.hero-photos .ph-3 { bottom: 0; right: 14%; width: 48%; aspect-ratio: 4/5; }
.hero-photos .ph-stamp {
  position: absolute; top: -10px; right: -10px;
  background: var(--ink); color: #fff;
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.08em; text-align: center;
  line-height: 1.2; transform: rotate(-8deg); z-index: 3;
}
.hero-photos .ph-stamp strong { font-family: var(--f-num); font-size: 15px; font-weight: 700; }

/* ── Tag rail ── */
.tagrail {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.tagrail-inner {
  display: flex; gap: 10px; align-items: center;
  overflow-x: auto; scrollbar-width: none;
}
.tagrail-inner::-webkit-scrollbar { display: none; }
.tagrail-label {
  font-size: 12px; color: var(--ink-3);
  font-weight: 700; white-space: nowrap; padding-right: 4px;
}
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; background: var(--bg-pink);
  color: var(--ink); border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; white-space: nowrap;
  border: 1px solid transparent; transition: all .2s;
}
.tag:hover { background: #fff; border-color: var(--pink-soft); color: var(--pink-deep); }
.tag .ic { font-size: 13px; }
.tag.is-hot { background: var(--pink-mid); color: #fff; }
.tag.is-hot:hover { background: var(--pink-deep); border-color: var(--pink-deep); color: #fff; }

/* ── Ranking cards ── */
.rank-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rank-card {
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.rank-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--pink-soft); }
.rank-card .photo { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.rank-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.rank-card:hover .photo img { transform: scale(1.04); }
.rank-card .crown {
  position: absolute; top: 12px; left: 12px;
  background: #fff; border-radius: var(--r-pill);
  padding: 5px 12px 5px 8px;
  font-weight: 700; font-size: 13px; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-card);
}
.rank-card .crown .ic { font-size: 16px; }
.rank-card .crown.gold .ic   { color: var(--amber); }
.rank-card .crown.silver .ic { color: #a0a4a8; }
.rank-card .crown.bronze .ic { color: #b88a6a; }
.rank-card .crown .num { font-family: var(--f-num); font-weight: 800; }
.rank-card .pr-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(47,41,46,0.78); color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; padding: 3px 8px;
  border-radius: var(--r-sm);
}
.rank-card .coupon {
  position: absolute; top: 12px; right: 12px;
  background: var(--amber); color: #fff;
  border-radius: var(--r-sm); padding: 4px 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.02em;
}
.rank-card .coupon strong { font-family: var(--f-num); }

.rank-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.rank-card .name {
  font-family: var(--f-display); font-weight: 700;
  font-size: 19px; line-height: 1.5; margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.rank-card .name-en {
  font-family: var(--f-num); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.04em;
  margin-bottom: 10px; text-transform: uppercase;
}
.rank-card .star-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 13px; }
.rank-card .stars { color: var(--amber); letter-spacing: 0.04em; }
.rank-card .rating { font-family: var(--f-num); font-weight: 700; color: var(--ink); }
.rank-card .reviews { color: var(--ink-3); font-size: 12px; font-weight: 500; }
.rank-card .tags-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.tag-sm {
  display: inline-flex; font-size: 11px;
  background: var(--bg-pink); color: var(--pink-deep);
  padding: 3px 9px; border-radius: var(--r-sm);
  font-weight: 600;
}
.tag-sm.mint  { background: var(--mint); color: #58705f; }
.tag-sm.amber { background: var(--amber-soft); color: #7a5b1c; }
.tag-sm.gray  { background: var(--bg-cream); color: var(--ink-2); }
.tag-sm.lav   { background: var(--bg-lav); color: var(--lavender); }

.rank-card .price-row {
  display: flex; justify-content: space-between;
  align-items: baseline; padding-top: 14px;
  border-top: 1px dashed var(--line-2); margin-top: auto;
}
.rank-card .price {
  font-family: var(--f-num); font-weight: 700;
  font-size: 22px; color: var(--pink-deep);
}
.rank-card .price .from { font-family: var(--f-body); font-size: 11px; color: var(--ink-3); font-weight: 500; margin-right: 4px; }
.rank-card .price .yen  { font-size: 14px; color: var(--ink-2); font-weight: 600; }
.rank-card .price small { font-family: var(--f-body); font-size: 11px; font-weight: 500; color: var(--ink-3); margin-left: 4px; }

.rank-card .actions { margin-top: 14px; display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.rank-card .actions .btn { padding: 11px 14px; font-size: 13px; box-shadow: none; }
.rank-card .actions .alt {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 14px; border: 1.5px solid var(--line-2);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; color: var(--ink);
  transition: border-color .2s, color .2s;
}
.rank-card .actions .alt:hover { border-color: var(--ink); color: var(--ink); }

/* ── Movie-type cards (replaces "Style") ── */
.style-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.style-card {
  background: #fff; border-radius: var(--r-md);
  border: 1px solid var(--line); padding: 18px 16px;
  transition: transform .2s, border-color .2s, background .2s;
  position: relative;
}
.style-card:hover { transform: translateY(-3px); border-color: var(--pink-soft); background: var(--bg-pink); }
.style-card .ic-circle {
  width: 52px; height: 52px; background: var(--bg-pink);
  border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 12px;
}
.style-card .name { font-weight: 700; font-size: 15px; line-height: 1.45; }
.style-card .desc {
  font-size: 11px; color: var(--ink-3);
  margin-top: 4px; line-height: 1.55;
}
.style-card .count {
  font-family: var(--f-num); font-size: 11px;
  color: var(--ink-3); font-weight: 600; margin-top: 8px;
}
.style-card .count em { color: var(--pink-deep); font-style: normal; font-weight: 700; font-size: 13px; }
.style-card .arrow {
  position: absolute; top: 18px; right: 16px;
  color: var(--ink-3); font-size: 13px;
  transition: transform .2s, color .2s;
}
.style-card:hover .arrow { color: var(--pink-deep); transform: translateX(2px); }

/* ── Comparison strip ── */
/* TOP3 横並び指標ストリップ（フローティング比較バー .compare-bar とは別物。クラス名衝突を避けて分離） */
.top3-compare {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px 24px;
  display: grid; grid-template-columns: auto repeat(4, 1fr);
  gap: 20px; align-items: center; margin-top: 20px;
}
.top3-compare .lb {
  font-weight: 700; font-size: 13px; color: var(--ink-2);
  border-right: 1px solid var(--line); padding-right: 16px;
}
.top3-compare .cell { display: flex; flex-direction: column; gap: 2px; }
.top3-compare .cell .k { font-size: 11px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.04em; }
.top3-compare .cell .v {
  font-family: var(--f-num); font-weight: 700;
  font-size: 18px; color: var(--ink);
}
.top3-compare .cell .v .unit { font-family: var(--f-body); font-size: 12px; color: var(--ink-2); margin-left: 2px; }

/* ── Campaign banner ── */
.campaign {
  background: linear-gradient(135deg, #f0e2cd 0%, #ead4be 100%);
  border-radius: var(--r-lg); padding: 28px 32px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 24px; align-items: center;
  border: 1px solid #ddc7af;
  position: relative; overflow: hidden;
}
.campaign-tag {
  background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: var(--r-sm);
  letter-spacing: 0.04em;
}
.campaign-body .title {
  font-family: var(--f-display); font-weight: 700;
  font-size: 20px; line-height: 1.5; margin-bottom: 4px;
}
.campaign-body .title em { color: #876419; font-style: normal; }
.campaign-body .sub { font-size: 13px; color: var(--ink-2); }
.campaign-body .sub strong { color: var(--ink); font-family: var(--f-num); }

/* ── Inline SVG icon system ── */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  flex-shrink: 0;
  fill: currentColor;
  color: inherit;
  line-height: 1;
}
.icon--sm { width: 0.85em; height: 0.85em; }
.icon--lg { width: 1.25em; height: 1.25em; }
.icon--xl { width: 1.75em; height: 1.75em; }
/* eyebrow / section-tag 内のアイコン用余白 */
.section-tag .icon,
.hero-eyebrow .icon,
.btn .icon,
.chip .icon { margin-right: 4px; }

/* ── Campaign slider ── */
.campaign-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.campaign-track {
  display: flex;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  touch-action: pan-y;
  will-change: transform;
}
.campaign-track.is-dragging { transition: none; }
.campaign-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  border-radius: var(--r-lg);
  user-select: none;
  -webkit-user-drag: none;
}
.campaign-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid #ddc7af;
  color: var(--ink);
  font-size: 22px; line-height: 1; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  transition: background .2s, transform .2s;
}
.campaign-nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.campaign-nav--prev { left: 12px; }
.campaign-nav--next { right: 12px; }
.campaign-dots {
  position: absolute; bottom: 10px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
  z-index: 2;
}
.campaign-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(47,41,46,0.25); border: 0; padding: 0;
  cursor: pointer; transition: background .2s, transform .2s;
}
.campaign-dot.is-active { background: var(--ink); transform: scale(1.25); }
@media (max-width: 720px) {
  .campaign-nav { display: none; }
  .campaign-slide { padding: 22px 20px; }
}

/* ── Detail page CTA enhancements ── */
.detail-cta .cta-hint {
  font-size: 11.5px; color: var(--ink-3);
  line-height: 1.5; margin: 6px 0 10px;
  text-align: center;
}
.detail-cta .btn strong {
  font-weight: 800; color: inherit;
}

/* Mobile bottom-fixed CTA */
.cta-mobile-stick {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  display: none; align-items: center; gap: 12px;
  padding: 10px 14px 10px 16px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-md);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.45);
  text-decoration: none;
  z-index: 95;
  transform: translateY(120%);
  transition: transform .25s cubic-bezier(.22,.61,.36,1);
}
.cta-mobile-stick.is-visible { transform: translateY(0); }
.cta-mobile-stick__price {
  font-family: var(--f-num); font-weight: 800; font-size: 17px;
  white-space: nowrap;
}
.cta-mobile-stick__price small { font-size: 11px; font-weight: 600; opacity: .85; margin-left: 1px; }
.cta-mobile-stick__btn {
  margin-left: auto;
  background: var(--pink-deep); color: #fff;
  padding: 9px 16px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 700; white-space: nowrap;
}
@media (max-width: 860px) {
  .cta-mobile-stick { display: flex; }
}

/* ── Sample video grid (type ハブ) ── */
.sample-video-section { padding: 36px 0 24px; }
.sample-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sample-video { display: flex; flex-direction: column; gap: 10px; }
.sample-video-thumb,
.sample-video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #1a1418;
}
.sample-video-thumb { cursor: pointer; }
.sample-video-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease, filter .25s ease;
}
.sample-video-thumb:hover img { transform: scale(1.04); filter: brightness(.78); }
.sample-video-thumb:focus-visible { outline: 2px solid var(--pink-deep); outline-offset: 2px; }
.sample-video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 36px;
}
.sample-video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--pink-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; padding-left: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform .2s ease, background .2s ease;
}
.sample-video-thumb:hover .sample-video-play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.sample-video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.sample-video-meta { display: flex; flex-direction: column; gap: 2px; }
.sample-video-vendor {
  font-weight: 700; font-size: 14px; color: var(--ink);
  text-decoration: none;
}
.sample-video-vendor:hover { color: var(--pink-deep); }
.sample-video-title {
  font-size: 12px; color: var(--ink-3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
@media (max-width: 980px) {
  .sample-video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sample-video-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ── Reviews ── */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: #fff; border-radius: var(--r-md);
  padding: 22px; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.review-meta { display: flex; gap: 12px; align-items: center; }
.review-avatar {
  width: 42px; height: 42px;
  background: var(--bg-pink); color: var(--pink-deep);
  border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--f-num); font-size: 15px;
}
.review-who { display: flex; flex-direction: column; }
.review-who strong { font-weight: 700; font-size: 14px; }
.review-who small { font-size: 11px; color: var(--ink-3); }
.review-card .stars-line { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.review-card .stars-line .stars { color: var(--amber); }
.review-card .stars-line strong { font-family: var(--f-num); font-weight: 700; }
.review-card .title { font-weight: 700; font-size: 14px; line-height: 1.5; margin: 0; }
.review-card .body { font-size: 13px; line-height: 1.85; color: var(--ink-2); }
.review-card .review-studio {
  font-size: 12px; color: var(--pink-deep); font-weight: 600;
  padding-top: 10px; border-top: 1px dashed var(--line-2);
  margin-top: auto;
  word-break: break-word; overflow-wrap: anywhere;
}
.review-card .review-studio a { border-bottom: 1px dotted var(--pink); padding-bottom: 1px; }

/* ── Article cards ── */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { display: flex; flex-direction: column; gap: 12px; }
.article-card .photo { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--r-md); }
.article-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.article-card:hover .photo img { transform: scale(1.04); }
.article-card .tag-row { display: flex; gap: 6px; align-items: center; font-size: 11px; color: var(--ink-3); }
.article-card .tag-row .pill { background: var(--bg-pink); color: var(--pink-deep); font-weight: 700; padding: 2px 8px; border-radius: var(--r-pill); }
.article-card .title {
  font-family: var(--f-display); font-weight: 700;
  font-size: 16px; line-height: 1.55;
  letter-spacing: -0.005em;
}
.article-card .meta { font-size: 11px; color: var(--ink-3); }

/* ── CTA block ── */
.cta-block {
  background: linear-gradient(135deg, var(--pink-mid) 0%, var(--pink-deep) 100%);
  color: #fff; border-radius: var(--r-lg);
  padding: 56px var(--pad); text-align: center;
  position: relative; overflow: hidden;
}
.cta-block::before, .cta-block::after {
  content: ''; position: absolute;
  border-radius: 50%; background: rgba(255,255,255,0.12);
}
.cta-block::before { top: -60px; right: -60px; width: 240px; height: 240px; }
.cta-block::after  { bottom: -100px; left: -40px; width: 280px; height: 280px; }
.cta-block .inner { position: relative; z-index: 2; }
.cta-block h2 {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.4; margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.cta-block .lede { color: rgba(255,255,255,0.92); margin: 0 auto 24px; }
.cta-block .btn {
  background: #fff; color: var(--pink-deep);
  box-shadow: 0 8px 20px -4px rgba(0,0,0,0.16);
}
.cta-block .btn:hover { background: var(--ink); color: #fff; }
.cta-block .note { font-size: 11px; color: rgba(255,255,255,0.82); margin-top: 14px; }

/* ── Footer ── */
.footer { background: var(--ink); color: #c0b3b8; padding: 56px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer .logo { color: #fff; }
.footer .logo small { color: #897583; }
.footer h4 { color: #fff; font-size: 13px; margin: 0 0 14px; font-weight: 700; letter-spacing: 0.04em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; font-size: 13px; }
.footer ul li a:hover { color: #fff; }
.footer-brand p { font-size: 13px; line-height: 1.85; margin: 14px 0 0; max-width: 36ch; }
.footer-mini {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 18px;
  font-size: 11px; color: #897583;
  flex-wrap: wrap; gap: 12px;
}

/* ── Companies page ── */
.page-head { padding: clamp(32px, 5vw, 56px) 0 clamp(24px, 3vw, 36px); }
.breadcrumb {
  font-size: 12px; color: var(--ink-3);
  margin-bottom: 14px; display: flex; gap: 8px; align-items: center;
}
.breadcrumb a:hover { color: var(--pink-deep); }
.breadcrumb .sep { color: var(--ink-4); }
.page-head h1 {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.4; margin: 0 0 10px;
}
.page-head h1 em { font-style: normal; color: var(--pink-deep); }
.page-head .summary {
  display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center; font-size: 13px; color: var(--ink-2);
}
.page-head .summary .updated {
  background: var(--pink-pale); color: var(--pink-deep);
  font-weight: 700; padding: 4px 12px;
  border-radius: var(--r-pill); font-size: 12px;
}
.page-head .summary .count { font-family: var(--f-num); font-weight: 700; color: var(--ink); }

.filter-bar {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 18px;
}
.filter-bar .fb-label { font-size: 12px; color: var(--ink-3); font-weight: 700; }
.filter-bar .fb-mini {
  font-size: 11px; color: var(--ink-3); font-weight: 700;
  letter-spacing: .04em; min-width: 88px;
}
.filter-chips .chip-n {
  display: inline-block; margin-left: 6px;
  font-family: var(--f-num); font-size: 10px; font-weight: 700;
  color: var(--ink-3); opacity: .7;
}
.filter-chips .chip.is-active .chip-n { color: #fff; opacity: .9; }
.filter-chips .chip.is-empty { opacity: .4; pointer-events: none; }
.filter-sel {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border: 1px solid var(--line-2);
  border-radius: var(--r-pill); font-size: 13px; font-weight: 600;
  background: #fff; transition: border-color .2s; cursor: pointer;
}
.filter-sel:hover { border-color: var(--ink); }
.filter-sel.has-value { border-color: var(--pink-mid); background: var(--bg-pink); color: var(--pink-deep); }
.filter-sel .v { font-family: var(--f-num); font-weight: 700; }
.filter-sel .ar { color: var(--ink-3); font-size: 9px; }
.filter-bar .sort { display: flex; gap: 6px; font-size: 13px; flex-wrap: wrap; align-items: center; }
.filter-bar .sort::before {
  content: '↕ 並び替え'; font-size: 11px; color: var(--ink-3); font-weight: 700;
  letter-spacing: .04em; min-width: 88px;
}
.filter-bar .sort a { padding: 7px 12px; border-radius: var(--r-pill); font-weight: 600; color: var(--ink-2); }
.filter-bar .sort a.is-active { background: var(--ink); color: #fff; }
.filter-bar .sort a:hover { color: var(--ink); }
.filter-bar .sort a.is-active:hover { color: #fff; }
.filter-bar .reset {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700;
  color: var(--pink-deep);
  background: var(--bg-pink);
  border: 1px solid var(--pink-soft);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.filter-bar .reset::before {
  content: '×'; font-size: 14px; font-weight: 800; line-height: 1;
}
.filter-bar .reset:hover {
  background: var(--pink-soft); border-color: var(--pink-deep);
}

/* ── Compact filter (async list) ── */
.filter-bar--compact {
  padding: 10px 14px;
  gap: 6px;
  position: sticky; top: 60px; z-index: 40; /* ヘッダ (sticky top:0, z:50) の下に張り付き */
  box-shadow: 0 2px 8px -4px rgba(0,0,0,.06);
  backdrop-filter: saturate(180%) blur(6px);
  background: rgba(255,255,255,0.96);
}
.filter-bar--compact .filter-row {
  display: flex; align-items: center; gap: 10px;
  min-width: 0;
}
.filter-bar--compact .filter-row > .fb-mini {
  min-width: 64px; flex-shrink: 0;
}
.filter-bar--compact .filter-chips {
  flex: 1; min-width: 0;
  overflow-x: auto; flex-wrap: nowrap;
  scrollbar-width: thin; padding-bottom: 2px;
  scroll-padding-left: 8px;
}
.filter-bar--compact .filter-chips::-webkit-scrollbar { height: 4px; }
.filter-bar--compact .filter-chips::-webkit-scrollbar-thumb {
  background: var(--line-2); border-radius: 4px;
}
.filter-bar--compact .filter-chips .chip { flex-shrink: 0; padding: 4px 10px; font-size: 12px; }
.filter-bar--compact .filter-row--tail {
  border-top: 1px dashed var(--line-2);
  padding-top: 6px; margin-top: 2px;
}
.filter-bar--compact .sort { font-size: 12px; }
.filter-bar--compact .sort::before { display: none; }
.filter-bar--compact .sort a { padding: 4px 10px; font-size: 12px; }
.filter-bar--compact .filter-summary {
  margin-left: auto; font-size: 12px; color: var(--ink-3); white-space: nowrap;
}
.filter-bar--compact .filter-summary strong { color: var(--ink); font-family: var(--f-num); }
@media (max-width: 720px) {
  .filter-bar--compact { padding: 8px 10px; }
  .filter-bar--compact .filter-row { gap: 6px; }
  .filter-bar--compact .filter-row > .fb-mini { min-width: 48px; font-size: 10px; }
}

/* Studio (= vendor) list */
.studio-list { display: flex; flex-direction: column; gap: 16px; }
.studio {
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--line); overflow: hidden;
  display: grid; grid-template-columns: 64px 280px 1fr 220px;
  transition: box-shadow .2s, border-color .2s;
}
.studio:hover { border-color: var(--pink-soft); box-shadow: var(--shadow-card); }
.studio.is-top {
  border-color: var(--pink-mid);
  box-shadow: 0 2px 0 var(--pink-soft);
}
.studio-rank {
  background: var(--bg-pink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px 0; position: relative;
}
.studio.is-top .studio-rank { background: linear-gradient(180deg, var(--pink-mid) 0%, var(--pink-deep) 100%); color: #fff; }
.studio-rank .crown-ic { font-size: 22px; color: var(--amber); margin-bottom: 6px; }
.studio.is-top .studio-rank .crown-ic { color: #fff; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }
.studio-rank .num { font-family: var(--f-num); font-weight: 800; font-size: 28px; line-height: 1; color: var(--ink); }
.studio.is-top .studio-rank .num { color: #fff; }
.studio-rank .lb { font-size: 10px; color: var(--ink-2); margin-top: 2px; letter-spacing: 0.08em; font-weight: 700; }
.studio.is-top .studio-rank .lb { color: rgba(255,255,255,0.85); }

.studio-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.studio-photo img { width: 100%; height: 100%; object-fit: cover; }
.studio-photo .pr-badge {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(47,41,46,0.78); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: var(--r-sm);
}
.studio-photo .coupon-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--amber); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 9px; border-radius: var(--r-sm);
  letter-spacing: 0.02em;
}
.studio-photo .coupon-badge strong { font-family: var(--f-num); }

.studio-body { padding: 20px 24px; min-width: 0; }
.studio-body .name {
  font-family: var(--f-display); font-weight: 700;
  font-size: 20px; line-height: 1.45; margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.studio-body .name a:hover { color: var(--pink-deep); }
.studio-body .name-sub { font-size: 12px; color: var(--ink-3); margin-bottom: 12px; }
.studio-body .star-row { display: flex; align-items: center; gap: 10px; font-size: 13px; margin-bottom: 12px; }
.studio-body .stars { color: var(--amber); }
.studio-body .rating { font-family: var(--f-num); font-weight: 700; }
.studio-body .reviews { color: var(--ink-3); font-size: 12px; }
.studio-body .reviews a { border-bottom: 1px dotted; color: var(--blue-link); }
.studio-body .tags-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.studio-body .summary { font-size: 13px; line-height: 1.85; color: var(--ink-2); margin: 0 0 12px; }
.studio-body .summary mark {
  background: linear-gradient(transparent 60%, var(--pink-pale) 60%);
  color: var(--ink);
}
.studio-body .kv {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px; padding: 12px 14px;
  background: var(--bg-cream); border-radius: var(--r-sm);
  font-size: 12px;
}
.studio-body .kv div { display: flex; flex-direction: column; }
.studio-body .kv label { color: var(--ink-3); font-weight: 500; font-size: 11px; }
.studio-body .kv strong { color: var(--ink); font-weight: 700; font-size: 13px; }

.studio-cta {
  padding: 20px 22px; background: var(--bg);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  justify-content: center; gap: 10px;
}
.studio-cta .price-line { display: flex; align-items: baseline; gap: 4px; }
.studio-cta .from { font-size: 11px; color: var(--ink-3); font-weight: 600; }
.studio-cta .price {
  font-family: var(--f-num); font-weight: 800;
  font-size: 26px; line-height: 1.1; color: var(--pink-deep);
}
.studio-cta .price .yen { font-size: 14px; color: var(--ink-2); font-weight: 700; }
.studio-cta .price-sub { font-size: 11px; color: var(--ink-3); font-weight: 500; }
.studio-cta .btn { padding: 12px 14px; font-size: 14px; }
.studio-cta .btn-outline { padding: 10px 14px; font-size: 12px; }
.studio-cta .pr { font-size: 10px; color: var(--ink-3); text-align: center; }

.pagination {
  display: flex; justify-content: center;
  align-items: center; gap: 6px; padding: 56px 0 0;
}
.pagination a, .pagination span {
  min-width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); font-family: var(--f-num);
  font-weight: 700; font-size: 13px; color: var(--ink-2);
  padding: 0 4px;
}
.pagination a { border: 1px solid var(--line-2); }
.pagination a:hover { border-color: var(--ink); color: var(--ink); }
.pagination a.is-active { background: var(--pink-deep); color: #fff; border-color: var(--pink-deep); }
.pagination .dots { border: 0; color: var(--ink-3); }
.pagination .arrow { padding: 0 14px; }
.pagination .arrow.disabled { color: var(--ink-3); opacity: .4; border: 1px dashed var(--line-2); cursor: not-allowed; }

/* ── Editor report (vendor 詳細の取材レポート) ── */
.editor-report {
  background: linear-gradient(135deg, #fff 0%, #fdf8f4 100%);
  border: 1px solid #f0e3d8; border-left: 4px solid #c9806f;
  border-radius: 14px; padding: 28px 30px;
  margin: 0 0 28px;
  box-shadow: 0 6px 20px rgba(122,90,69,.06);
}
.editor-report__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 8px; }
.editor-report__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #c9806f, #b06a59); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .05em;
}
.editor-report__badge::before { content:"✎"; font-size: 13px; }
.editor-report__meta { font-size: 11.5px; color: #8a7869; }
.editor-report__body { font-size: 14.5px; line-height: 2.0; color: #3a2a22; }
.editor-report__body .lead { font-size: 15.5px; line-height: 1.95; color: #2a2018; margin: 0 0 18px; font-weight: 500; }
.editor-report__body h3 {
  font-family: var(--f-display); font-size: 16px;
  margin: 22px 0 8px; padding-left: 12px;
  border-left: 3px solid #c9806f; color: #2a2018;
  letter-spacing: .01em;
}
.editor-report__body p { margin: 0 0 12px; }
.editor-report__body .note { font-size: 12px; color: #8a7869; border-top: 1px dashed #e5d4c5; padding-top: 14px; margin-top: 18px; }
.editor-report__body a { color: #c9806f; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.editor-report__body a:hover { color: #b06a59; }

/* ── Compare links band ── */
.compare-links {
  background: #faf5f1; border: 1px solid #f0e3d8;
  border-radius: 10px; padding: 14px 18px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin: 0 0 28px;
}
.compare-links__label {
  font-size: 12px; font-weight: 700; color: #7a5a45;
  letter-spacing: .04em; padding-right: 6px;
  border-right: 1px solid #e5d4c5;
}
.compare-links__item {
  font-size: 13px; color: #7a5a45; text-decoration: none;
  background: #fff; border: 1px solid #e5d4c5; border-radius: 8px;
  padding: 6px 12px; transition: all .15s ease;
}
.compare-links__item:hover { background: #c9806f; color: #fff; border-color: #c9806f; }

/* ── Verdict narrative on /compare/* ── */
.verdict-narrative {
  background: linear-gradient(135deg, #fff8ed 0%, #fae8df 100%);
  border: 1px solid #f0d9c8; border-left: 4px solid #c9806f;
  border-radius: 12px; padding: 18px 22px;
  margin: 0 0 22px;
  font-size: 14.5px; line-height: 2.0; color: #2a2018;
}
.verdict-narrative p { margin: 0; }
.verdict-narrative a { color: #c9806f; text-decoration: underline; }

/* ── Article hub links band ── */
.article-hubs {
  background: linear-gradient(135deg, #fdf8f4 0%, #f5e9df 100%);
  border: 1px solid #f0d9c8; border-radius: 14px;
  padding: 20px 24px; margin: 36px 0;
}
.article-hubs__title {
  display: block; font-size: 13px; color: #7a5a45;
  margin-bottom: 12px; letter-spacing: .04em;
}
.article-hubs__list { display: flex; flex-wrap: wrap; gap: 8px; }
.article-hubs__chip {
  background: #fff; border: 1px solid #e5d4c5; border-radius: 8px;
  padding: 8px 14px; font-size: 13px; color: #5a4a3e;
  text-decoration: none; transition: all .15s ease;
}
.article-hubs__chip:hover { background: #c9806f; color: #fff; border-color: #c9806f; }

/* ── Detail page ── */
.detail-gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 6px; height: 420px;
}
.detail-gallery .g { position: relative; overflow: hidden; border-radius: var(--r-sm); }
.detail-gallery .g:first-child { grid-row: span 2; }
.detail-gallery .g img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.detail-gallery .g:hover img { transform: scale(1.04); }
.detail-gallery .g .more {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(47,41,46,0.78); color: #fff;
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700;
}

.detail-head {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 36px; padding: 32px 0 24px;
  align-items: start;
}
.detail-head .tags-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.detail-head h1 {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.4; margin: 0 0 8px;
}
.detail-head .name-en {
  font-family: var(--f-num); font-size: 13px;
  color: var(--ink-3); letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.detail-head .star-line { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.detail-head .star-line .stars { color: var(--amber); font-size: 22px; }
.detail-head .star-line .rating { font-family: var(--f-num); font-weight: 800; font-size: 24px; }
.detail-head .star-line .meta { font-size: 13px; color: var(--ink-3); }
.detail-head .star-line .meta a { color: var(--blue-link); border-bottom: 1px dotted; }
.detail-head .info-row { display: flex; gap: 24px; font-size: 13px; flex-wrap: wrap; }
.detail-head .info-row .lb { color: var(--ink-3); }
.detail-head .info-row strong { color: var(--ink); font-weight: 700; margin-left: 4px; }

.detail-cta {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px;
  position: sticky; top: 80px;
  z-index: 40; /* .header (z:50) より下、本文上 */
  max-height: calc(100vh - 96px);
  overflow-y: auto;
}
.detail-cta .head-row { display: flex; justify-content: space-between; align-items: baseline; }
.detail-cta .from { font-size: 11px; color: var(--ink-3); font-weight: 600; }
.detail-cta .price {
  font-family: var(--f-num); font-weight: 800;
  font-size: 32px; color: var(--pink-deep);
  line-height: 1.1; margin: 2px 0 4px;
}
.detail-cta .price .yen { font-size: 18px; color: var(--ink-2); font-weight: 700; }
.detail-cta .price-sub { font-size: 12px; color: var(--ink-3); margin-bottom: 14px; }
.detail-cta .coupon-card {
  background: var(--amber-soft);
  border: 1px dashed var(--amber);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  display: flex; justify-content: space-between;
  align-items: center; font-size: 12px;
  margin-bottom: 14px;
}
.detail-cta .coupon-card strong { color: #7a5b1c; font-family: var(--f-num); font-weight: 800; }
.detail-cta .btn { width: 100%; }
.detail-cta .alt-row { display: flex; gap: 8px; margin-top: 10px; }
.detail-cta .alt-row .alt {
  flex: 1; display: inline-flex;
  align-items: center; justify-content: center;
  padding: 10px 8px; border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; gap: 4px;
}
.detail-cta .alt-row .alt:hover { border-color: var(--ink); }
.detail-cta .pr { font-size: 10px; color: var(--ink-3); text-align: center; margin-top: 10px; }

.anchors {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; overflow-x: auto; overflow-y: hidden;
  margin-bottom: 32px; background: #fff;
}
.anchors a {
  padding: 14px 18px; font-size: 13px; font-weight: 700;
  color: var(--ink-2); white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.anchors a:hover, .anchors a.is-active { color: var(--pink-deep); border-bottom-color: var(--pink-mid); }

.info-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden; font-size: 14px;
}
.info-table th, .info-table td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--line); vertical-align: top;
}
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }
.info-table th {
  width: 28%; background: var(--bg-cream);
  font-weight: 600; font-size: 13px; color: var(--ink-2);
}
.info-table td .tag-sm { margin-right: 4px; }

/* template gallery (replaces "plans") */
.tmpl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tmpl {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.tmpl:hover { transform: translateY(-3px); border-color: var(--pink-soft); }
.tmpl .ph { aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--ink); }
.tmpl .ph img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: opacity .3s, transform .6s; }
.tmpl:hover .ph img { opacity: 1; transform: scale(1.04); }
.tmpl .ph .play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--pink-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 18px -4px rgba(0,0,0,0.3);
}
.tmpl .ph .dur {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(47,41,46,0.78); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: var(--r-sm);
  font-family: var(--f-num);
}
.tmpl .ph .type {
  position: absolute; top: 8px; left: 8px;
  background: rgba(255,255,255,0.9); color: var(--pink-deep);
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: var(--r-sm);
}
.tmpl .body { padding: 12px 14px; }
.tmpl .body .nm { font-weight: 700; font-size: 13px; line-height: 1.5; }
.tmpl .body .meta { font-size: 11px; color: var(--ink-3); margin-top: 4px; font-family: var(--f-num); }

/* type/price grid (replaces plan cards) */
.typeprice { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.typeprice-row {
  display: grid; grid-template-columns: 200px 1fr 140px 140px 160px;
  gap: 18px; padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.typeprice-row:last-child { border-bottom: 0; }
.typeprice-row.is-head {
  background: var(--bg-cream); font-size: 12px;
  color: var(--ink-3); font-weight: 700; letter-spacing: 0.04em;
}
.typeprice-row .nm {
  font-family: var(--f-display); font-weight: 700;
  font-size: 17px;
}
.typeprice-row .nm small { display: block; font-family: var(--f-body); font-weight: 500; font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.typeprice-row .desc { font-size: 12px; color: var(--ink-2); line-height: 1.7; }
.typeprice-row .price {
  font-family: var(--f-num); font-weight: 800;
  font-size: 20px; color: var(--pink-deep);
}
.typeprice-row .price .yen { font-size: 12px; color: var(--ink-2); font-weight: 700; }
.typeprice-row .lead { font-family: var(--f-num); font-weight: 700; font-size: 14px; }
.typeprice-row .lead small { font-family: var(--f-body); font-size: 11px; color: var(--ink-3); margin-left: 2px; font-weight: 500; }
.typeprice-row .ord {
  display: inline-flex; padding: 9px 14px;
  background: var(--pink-deep); color: #fff;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700;
  align-items: center; gap: 6px;
  justify-content: center;
}
.typeprice-row .ord:hover { background: var(--pink-darker); }

/* review summary */
.review-summary {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 32px; background: var(--bg-pink);
  border-radius: var(--r-lg); padding: 28px;
  margin-bottom: 28px; align-items: center;
}
.review-summary .big { text-align: center; }
.review-summary .big .num {
  font-family: var(--f-num); font-weight: 800;
  font-size: 56px; line-height: 1; color: var(--pink-deep);
}
.review-summary .big .stars { color: var(--amber); font-size: 18px; }
.review-summary .big .ct { font-size: 12px; color: var(--ink-2); font-weight: 600; margin-top: 4px; }
.review-summary .bars { display: flex; flex-direction: column; gap: 8px; }
.review-summary .bar-row { display: grid; grid-template-columns: 60px 1fr 50px; align-items: center; gap: 10px; font-size: 12px; }
.review-summary .bar-row .lb { color: var(--ink-2); font-weight: 600; }
.review-summary .bar-row .track { background: rgba(255,255,255,0.6); height: 8px; border-radius: var(--r-pill); overflow: hidden; }
.review-summary .bar-row .fill { background: var(--pink-mid); height: 100%; border-radius: var(--r-pill); }
.review-summary .bar-row .ct { color: var(--ink-3); font-family: var(--f-num); font-weight: 700; text-align: right; }

/* faq */
.faq { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  list-style: none; display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 24px; cursor: pointer;
  font-weight: 700; font-size: 15px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q {
  background: var(--pink-pale); color: var(--pink-deep);
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-num); font-weight: 800; font-size: 13px;
  flex-shrink: 0;
}
.faq summary .qt { flex: 1; }
.faq summary .ic {
  color: var(--ink-3); font-size: 14px; font-weight: 700;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
}
.faq summary:hover .ic { background: var(--pink-pale); color: var(--pink-deep); border-color: var(--pink-soft); }
.faq details[open] summary .ic { transform: rotate(45deg); background: var(--pink-deep); color:#fff; border-color: var(--pink-deep); }
.faq .a {
  display: flex; gap: 16px; padding: 0 24px 22px 24px;
  font-size: 14px; line-height: 1.95; color: var(--ink-2);
}
.faq .a::before {
  content: 'A'; background: var(--bg-cream);
  color: var(--ink-2); width: 26px; height: 26px;
  border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--f-num); font-weight: 800; font-size: 13px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .gnav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photos { aspect-ratio: 16/10; max-height: 380px; }
  .rank-grid, .review-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .style-grid { grid-template-columns: repeat(3, 1fr); }
  .studio { grid-template-columns: 56px 1fr; }
  .studio-photo { display: none; }
  .studio-cta { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); }
  .detail-head { grid-template-columns: 1fr; }
  .detail-cta { position: static; }
  .detail-gallery { grid-template-columns: 1fr 1fr; height: 320px; }
  .detail-gallery .g:first-child { grid-row: span 2; grid-column: 1 / -1; }
  .review-summary { grid-template-columns: 1fr; }
  .filter-bar { padding: 12px 14px; gap: 8px; }
  .filter-bar .fb-mini { min-width: 100%; margin-bottom: 2px; }
  .filter-bar .sort::before { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .info-table th { width: 36%; font-size: 12px; padding: 12px; }
  .tmpl-grid { grid-template-columns: repeat(2, 1fr); }
  .typeprice-row { grid-template-columns: 1fr; gap: 8px; padding: 16px; }
  .typeprice-row.is-head { display: none; }
  .top3-compare { grid-template-columns: 1fr 1fr; }
  .top3-compare .lb { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 10px 0; }
}
@media (max-width: 560px) {
  .rank-grid, .review-grid, .article-grid { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── 定義ブロック（AI抽出向け） ─── */
.def-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; padding: 24px 0 8px; }
.def-main .section-tag { margin-bottom: 8px; }
.def-main .h-section { margin-bottom: 16px; }
.def-lead { font-size: 15px; line-height: 2.0; color: var(--ink-1); margin: 0 0 12px; }
.def-lead strong { background: linear-gradient(transparent 60%, rgba(201,128,111,.18) 60%); padding: 0 1px; font-weight: 700; }
.def-meta { font-size: 12px; color: var(--ink-3); margin: 0; }
.def-bullets { list-style: none; padding: 20px 22px; margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); display: grid; gap: 14px; }
.def-bullets li { display: grid; grid-template-columns: 110px 1fr; gap: 12px; font-size: 13px; line-height: 1.7; align-items: baseline; }
.def-bullets li strong { font-size: 11px; letter-spacing: .04em; color: var(--ink-3); font-weight: 700; text-transform: uppercase; }
.def-bullets li span { color: var(--ink-1); }
@media (max-width: 880px) { .def-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ─── 比較表（AI抽出向け） ─── */
.cmp-table-wrap { margin-top: 28px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); }
.cmp-table-title { font-size: 17px; font-weight: 700; margin: 0 0 16px; letter-spacing: .02em; }
.cmp-table-scroll { overflow-x: auto; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 640px; }
.cmp-table th, .cmp-table td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); line-height: 1.7; }
.cmp-table thead th { font-weight: 700; font-size: 13px; background: var(--bg); color: var(--ink-1); }
.cmp-table thead th:first-child { font-size: 11px; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }
.cmp-table thead th a { color: inherit; text-decoration: none; }
.cmp-table thead th a:hover { color: var(--pink-deep); }
.cmp-table tbody th { font-weight: 600; color: var(--ink-2); width: 22%; background: rgba(0,0,0,.02); font-size: 12px; }
.cmp-table tbody td { color: var(--ink-1); }
.cmp-table tbody td strong { font-family: var(--f-num, inherit); font-weight: 700; }
.cmp-table tbody td a { color: var(--pink-deep); text-decoration: none; border-bottom: 1px dotted var(--pink-deep); }
.cmp-table-note { margin: 14px 0 0; font-size: 11px; color: var(--ink-3); line-height: 1.7; }

/* ─── Hero テンプレートギャラリー (FV) ─── */
.hero-tmpl { position: relative; }
.hero-tmpl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
}
.htc {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 2px 6px rgba(20,12,8,.04);
}
.htc:nth-child(1) { transform: translateY(0) rotate(-1.2deg); }
.htc:nth-child(2) { transform: translateY(14px) rotate(.8deg); }
.htc:nth-child(3) { transform: translateY(0) rotate(-.6deg); }
.htc:nth-child(4) { transform: translateY(14px) rotate(.4deg); }
.htc:nth-child(5) { transform: translateY(0) rotate(-1deg); }
.htc:nth-child(6) { transform: translateY(14px) rotate(.9deg); }
.htc:hover {
  transform: translateY(-4px) rotate(0) scale(1.02);
  box-shadow: 0 12px 28px rgba(20,12,8,.12);
  z-index: 3;
  border-color: var(--pink-soft, #e6c3b7);
}
.htc-ph {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f1ebe5;
}
.htc-ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.92);
  transition: transform .6s ease, filter .3s;
}
.htc:hover .htc-ph img { transform: scale(1.06); filter: saturate(1); }
.htc-type {
  position: absolute; top: 8px; left: 8px;
  background: rgba(255,255,255,.94);
  color: var(--ink, #2b211a);
  font-size: 10px;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.htc-play {
  position: absolute; right: 8px; bottom: 8px;
  width: 26px; height: 26px;
  background: rgba(20,12,8,.78);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 9px;
  padding-left: 1px;
}
.htc-body { padding: 8px 10px 10px; }
.htc-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.htc-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 6px; }
.htc-price {
  font-family: var(--f-num, inherit);
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-deep, #c25671);
}
.htc-vendor {
  font-size: 10px;
  color: var(--ink-3, #8e8278);
  letter-spacing: .02em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 60%;
  text-align: right;
}

/* スタンプ */
.hero-tmpl-stamp {
  position: absolute;
  top: -18px;
  right: -10px;
  z-index: 4;
  background: var(--ink, #2b211a);
  color: #fff;
  padding: 12px 16px;
  border-radius: 50%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 8px 20px rgba(20,12,8,.22);
  line-height: 1.15;
}
.hero-tmpl-stamp small { font-size: 9px; opacity: .8; letter-spacing: .04em; }
.hero-tmpl-stamp strong { font-family: var(--f-num, inherit); font-size: 17px; font-weight: 700; }
.hero-tmpl-stamp span { font-size: 9px; opacity: .8; }

/* キャプション */
.hero-tmpl-cap {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-2, #5b4d44);
  line-height: 1.7;
}
.hero-tmpl-cap .dot {
  width: 6px; height: 6px;
  background: var(--pink-deep, #c25671);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-tmpl-cap strong { color: var(--ink, #2b211a); font-weight: 700; }

@media (max-width: 1024px) {
  .hero-tmpl-stamp { top: -8px; width: 76px; height: 76px; padding: 8px; }
  .hero-tmpl-stamp strong { font-size: 13px; }
}
@media (max-width: 720px) {
  .hero-tmpl-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .htc:nth-child(n) { transform: none; }
  .htc-ph { aspect-ratio: 3 / 4; }
  .htc-name { font-size: 11px; }
}
@media (max-width: 480px) {
  .hero-tmpl-grid { grid-template-columns: repeat(2, 1fr); }
  .htc:nth-child(6) { display: none; }
}

/* ─── Filter chips (companies index) ─── */
.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.filter-chips .chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  transition: all .15s;
  line-height: 1.4;
}
.filter-chips .chip:hover {
  border-color: var(--pink-deep);
  color: var(--pink-deep);
  transform: translateY(-1px);
}
.filter-chips .chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.filter-bar .reset { cursor: pointer; align-self: center; }

/* Trust row (companies/index ファーストビューの権威付け) */
.trust-row {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: flex; flex-wrap: wrap; gap: 14px 22px;
}
.trust-row li {
  font-size: 12.5px; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
  line-height: 1.5;
}
.trust-row li .icon { color: var(--pink-deep); width: 14px; height: 14px; }
.trust-row li strong { color: var(--ink); font-family: var(--f-num); font-weight: 800; }
.trust-row li a { color: var(--pink-deep); text-decoration: underline; text-decoration-color: var(--pink-soft); }
@media (max-width: 720px) {
  .trust-row { gap: 8px 16px; margin-top: 12px; }
  .trust-row li { font-size: 11.5px; }
}

/* ── Compare picker (studio card) ── */
.studio-rank { position: relative; }
.compare-pick {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--ink-2);
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 7px 12px 7px 10px;  /* タップ領域 高さ ~34px / 幅 60px+ で WCAG 2.5.8 推奨に近づける */
  min-height: 34px;
  cursor: pointer; user-select: none;
  transition: border-color .15s, color .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
}
.compare-pick:hover { border-color: var(--pink-deep); color: var(--pink-deep); }
.compare-pick:has(.compare-pick__input:focus-visible) {
  outline: 2px solid var(--pink-deep); outline-offset: 2px;
}
.compare-pick__input { position: absolute; opacity: 0; pointer-events: none; }
.compare-pick__box {
  width: 12px; height: 12px; border-radius: 3px;
  border: 1.5px solid var(--ink-3); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.compare-pick__input:checked + .compare-pick__box {
  background: var(--pink-deep); border-color: var(--pink-deep);
}
.compare-pick__input:checked + .compare-pick__box::after {
  content: ''; width: 5px; height: 8px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}
.compare-pick:has(.compare-pick__input:checked) {
  border-color: var(--pink-deep); color: var(--pink-deep);
  background: var(--bg-pink);
}

/* ── Floating compare bar ── */
.compare-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  background: var(--ink); color: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 16px 36px -10px rgba(0,0,0,.45);
  animation: compareBarRise .25s cubic-bezier(.22,.61,.36,1);
}
@keyframes compareBarRise { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.compare-bar[hidden] { display: none; }
.compare-bar__inner {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px;
  max-width: 1100px; margin: 0 auto;
}
.compare-bar__count { display: inline-flex; align-items: baseline; gap: 3px; flex-shrink: 0; }
.compare-bar__count-num { font-family: var(--f-num); font-weight: 800; font-size: 22px; color: var(--pink-mid); }
.compare-bar__count-max { font-size: 11px; color: rgba(255,255,255,0.75); }
.compare-bar__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 6px; flex-wrap: wrap; flex: 1;
  min-width: 0; overflow-x: auto;
}
.compare-bar__chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  padding: 4px 4px 4px 10px;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700;
  white-space: nowrap;
}
.compare-bar__chip button {
  appearance: none; border: 0; background: rgba(255,255,255,0.18);
  color: #fff; border-radius: 50%;
  width: 18px; height: 18px; line-height: 1; cursor: pointer;
  font-size: 12px; font-weight: 700;
}
.compare-bar__chip button:hover { background: var(--pink-deep); }
.compare-bar__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.compare-bar__clear {
  appearance: none; border: 0; background: transparent;
  color: rgba(255,255,255,0.7); cursor: pointer;
  font-size: 12px; padding: 4px 8px;
}
.compare-bar__clear:hover { color: #fff; }
.compare-bar__go {
  background: var(--pink-deep); color: #fff !important; padding: 8px 16px;
  border-radius: var(--r-pill); font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.compare-bar__go[aria-disabled="true"] { background: rgba(255,255,255,0.18); pointer-events: none; opacity: .75; }
.compare-bar__go:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.compare-bar__chip button:focus-visible { outline: 2px solid #fff; outline-offset: 1px; }
.compare-bar__clear:focus-visible { outline: 2px solid #fff; outline-offset: 2px; border-radius: 4px; }
@media (max-width: 720px) {
  .compare-bar__inner { padding: 8px 10px; gap: 8px; }
  .compare-bar__count-max { display: none; }
  .compare-bar__chip { font-size: 11px; }
}

/* フィルター chip キーボードフォーカス */
.filter-chips .chip:focus-visible { outline: 2px solid var(--pink-deep); outline-offset: 2px; border-color: var(--pink-deep); }

/* ─── Empty state ─── */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
  margin: 24px 0;
}
.empty-state-icon { font-size: 36px; margin-bottom: 12px; }
.empty-state h3 { font-size: 17px; margin: 0 0 6px; font-weight: 700; }
.empty-state p { font-size: 13px; color: var(--ink-2); margin: 0 0 16px; }

/* ─── Movie type comparison matrix (home) ─── */
.type-matrix {
  margin: 26px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.type-matrix-head {
  display: grid;
  grid-template-columns: 232px repeat(3, 1fr);
  background: linear-gradient(180deg, var(--bg-pink) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.type-matrix-head > div { display: flex; align-items: center; padding: 15px 16px; }
.type-matrix-head .corner { font-size: 12px; font-weight: 800; color: var(--ink-2); letter-spacing: .02em; }
.type-matrix-head .nm { justify-content: center; gap: 7px; font-weight: 800; font-size: 13.5px; border-left: 1px solid var(--line); }
.type-matrix-head .nm .rk { width: 20px; height: 20px; border-radius: 50%; background: var(--pink-deep); color: #fff; font-family: var(--f-num, inherit); font-size: 11px; font-weight: 800; display: grid; place-items: center; flex-shrink: 0; }
.type-matrix-head .nm a { color: var(--ink); text-decoration: none; }
.type-matrix-head .nm a:hover { color: var(--pink-deep); }
.type-matrix-row {
  display: grid;
  grid-template-columns: 232px repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  transition: background .12s;
}
.type-matrix-row:last-child { border-bottom: 0; }
.type-matrix-row:hover { background: var(--bg-2); }
.type-matrix-row > .type, .type-matrix-row > .cell { padding: 16px; }
.type-matrix-row .type {
  display: flex; gap: 11px; align-items: flex-start;
}
.type-matrix-row .type .ic { flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; background: var(--bg-pink); color: var(--pink-deep); display: grid; place-items: center; }
.type-matrix-row .type .ic .icon { font-size: 19px; }
.type-matrix-row .type .tx { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.type-matrix-row .type .tx b { font-size: 14px; font-weight: 800; color: var(--ink); }
.type-matrix-row .type .tx small { font-size: 11px; color: var(--ink-3); line-height: 1.5; }
.type-matrix-row .type .see { font-size: 11px; font-weight: 700; color: var(--pink-deep); text-decoration: none; margin-top: 2px; }
.type-matrix-row .type .see:hover { text-decoration: underline; }
.type-matrix-row .cell {
  position: relative;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  text-align: center;
}
.type-matrix-row .cell .p { font-family: var(--f-num, inherit); font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -.01em; line-height: 1; }
.type-matrix-row .cell .p i { font-style: normal; font-size: 12px; font-weight: 700; color: var(--ink-3); margin-right: 1px; }
.type-matrix-row .cell .d { font-size: 10.5px; color: var(--ink-2); background: var(--bg-2); border: 1px solid var(--line); padding: 2px 9px; border-radius: 999px; }
.type-matrix-row .cell.is-best { background: var(--pink-pale); }
.type-matrix-row .cell.is-best .p { color: var(--pink-deep); }
.type-matrix-row .cell.is-best .d { background: #fff; border-color: var(--pink-soft); color: var(--pink-deep); }
.type-matrix-row .cell .badge-best {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 9.5px; font-weight: 800; letter-spacing: .04em;
  color: #fff; background: var(--pink-deep);
  padding: 2px 9px; border-radius: 999px;
}
.type-matrix-row .cell .badge-best .icon { font-size: 10px; }
.type-matrix-row .cell.empty { gap: 2px; }
.type-matrix-row .cell.empty .na { font-size: 18px; color: var(--ink-4); line-height: 1; }
.type-matrix-row .cell.empty .d { background: transparent; border: 0; color: var(--ink-4); padding: 0; }
@media (max-width: 720px) {
  .type-matrix-head, .type-matrix-row { grid-template-columns: 128px repeat(3, 1fr); }
  .type-matrix-head > div, .type-matrix-row > .type, .type-matrix-row > .cell { padding: 12px 10px; }
  .type-matrix-head .nm { font-size: 11px; gap: 4px; }
  .type-matrix-row .type { gap: 8px; }
  .type-matrix-row .type .ic { width: 30px; height: 30px; border-radius: 8px; }
  .type-matrix-row .type .ic .icon { font-size: 15px; }
  .type-matrix-row .type .tx b { font-size: 12px; }
  .type-matrix-row .type .tx small, .type-matrix-row .type .see { display: none; }
  .type-matrix-row .cell .p { font-size: 15px; }
}

/* ─── Hero single-photo + trust (FV v3) ─── */
.hero-shot { position: relative; }
.hero-shot-img {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  background: #ede5dd;
  position: relative;
}
.hero-shot-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.02);
  transition: filter .4s;
}
.hero-shot:hover .hero-shot-img img { filter: saturate(1) contrast(1.04); }

/* Hero graphic (no photo, JP-aware) */
.hero-shot-img--graphic { background: transparent; }
.hero-shot-bg {
  position: absolute; inset: 0; border-radius: 6px;
  background:
    radial-gradient(70% 80% at 70% 30%, #f3e2d6 0%, transparent 60%),
    radial-gradient(70% 80% at 30% 80%, #f6d3c4 0%, transparent 55%),
    linear-gradient(135deg, #fae7da 0%, #efd2bf 50%, #d99785 100%);
}
.hero-shot-deco { position: absolute; inset: 0; }
.hero-deco-circle {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.5), rgba(255,255,255,.1));
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
}
.hero-deco-circle--lg { width: 220px; height: 220px; top: -40px; right: -40px; }
.hero-deco-circle--md { width: 120px; height: 120px; bottom: 20px; left: -30px; }
.hero-deco-circle--sm { width: 70px; height: 70px; top: 40%; right: 30%; background: rgba(201,128,111,.18); border: 0; }
.hero-deco-line {
  position: absolute; left: 20%; right: 20%; top: 50%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(122,90,69,.35), transparent);
}
.hero-deco-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: var(--pink-deep);
  filter: drop-shadow(0 8px 18px rgba(122,90,69,.18));
}
.hero-deco-icon .icon { width: 88px; height: 88px; vertical-align: middle; stroke-width: 1.25; }
.hero-shot-mark {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(10px);
  border-radius: 12px; padding: 10px 14px;
  display: inline-flex; align-items: baseline; gap: 8px;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 6px 18px rgba(122,90,69,.12);
}
.hero-shot-mark-num { font-family: var(--f-num); font-size: 28px; font-weight: 800; color: #7a4f3d; line-height: 1; }
.hero-shot-mark-lb { font-size: 11px; color: #7a5a45; font-weight: 600; letter-spacing: .04em; }
@media (max-width: 720px) {
  .hero-deco-icon .icon { width: 56px; height: 56px; }
  .hero-deco-circle--lg { width: 140px; height: 140px; }
  .hero-deco-circle--md { width: 80px; height: 80px; }
}

/* TOP3 trust card (overlap photo bottom-left) */
.hero-shot-trust {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px 14px;
  box-shadow: 0 16px 38px rgba(20,12,8,.10), 0 2px 6px rgba(20,12,8,.04);
  min-width: 260px;
  z-index: 2;
}
.hero-shot-trust-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.hero-shot-trust-head .lb {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink-3);
  font-weight: 600;
}
.hero-shot-trust-head .num {
  font-family: var(--f-num, inherit);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
}
.hero-shot-logos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.hero-shot-logos li + li { border-top: 1px solid var(--line); }
.hero-shot-logos a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  padding: 11px 4px;
  transition: opacity .15s;
  min-height: 40px;
}
.hero-shot-logos a:hover { opacity: .55; }
.hero-shot-logos img {
  max-width: 150px;
  max-height: 22px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* facts row (replaces stats 4-tile) */
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  margin: 24px 0 28px;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
}
.hero-facts > div { display: inline-flex; align-items: baseline; gap: 6px; }
.hero-facts dt {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .02em;
  margin: 0;
  font-weight: 600;
}
.hero-facts dd {
  margin: 0;
  font-family: var(--f-num, inherit);
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .01em;
}
.hero-facts .sep { color: var(--ink-3); opacity: .5; }

@media (max-width: 1024px) {
  .hero-shot-trust { bottom: -16px; left: -8px; min-width: 220px; padding: 12px 14px; }
  .hero-shot-logos a { padding: 8px 4px; min-height: 34px; }
  .hero-shot-logos img { max-width: 120px; max-height: 18px; }
}
@media (max-width: 720px) {
  .hero-shot-img { aspect-ratio: 16 / 11; }
  .hero-shot-trust { position: static; margin-top: 16px; min-width: 0; box-shadow: none; }
  .hero-facts { gap: 8px; margin: 16px 0 20px; }
  .hero-facts > div { gap: 4px; }
  .hero-facts dd { font-size: 13px; }
}

/* ─── メリット・デメリット（pros/cons セクション）─── */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0 32px;
}
.proscons-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px 24px;
  position: relative;
}
.proscons-card.pros { border-top: 3px solid #4f9a6b; }
.proscons-card.cons { border-top: 3px solid #c25671; }
.proscons-card header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.proscons-card header .ic {
  font-size: 20px;
  line-height: 1;
}
.proscons-card header h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  letter-spacing: .02em;
}
.proscons-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.proscons-card li {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-1);
  padding-left: 22px;
  position: relative;
}
.proscons-card.pros li::before {
  content: "◯";
  position: absolute; left: 0;
  color: #4f9a6b;
  font-size: 11px;
  top: 6px;
  font-weight: 700;
}
.proscons-card.cons li::before {
  content: "△";
  position: absolute; left: 0;
  color: #c25671;
  font-size: 12px;
  top: 5px;
  font-weight: 700;
}

.proscons-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: 10px;
  margin: 24px 0;
}
.proscons-fit > div {
  padding: 14px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.proscons-fit .fit { border-left: 3px solid #4f9a6b; }
.proscons-fit .unfit { border-left: 3px solid #c25671; }
.proscons-fit .lb {
  display: block;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 6px;
}
.proscons-fit p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-1);
}

.proscons-sources {
  margin: 16px 0 0;
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.8;
}
.proscons-sources strong {
  font-weight: 700;
  color: var(--ink-2);
  margin-right: 6px;
}
.proscons-sources a {
  color: var(--pink-deep);
  text-decoration: none;
  margin-right: 4px;
  font-family: var(--f-num, inherit);
  font-weight: 600;
}
.proscons-sources a:hover { text-decoration: underline; }
.proscons-sources span { margin-left: 6px; }

@media (max-width: 720px) {
  .proscons-grid { grid-template-columns: 1fr; gap: 14px; }
  .proscons-fit { grid-template-columns: 1fr; }
}

/* ─── 1対1 比較ページ ─── */
.vs-hero {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 16px;
  align-items: stretch;
  margin: 24px 0 12px;
}
.vs-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  position: relative;
}
.vs-rank {
  position: absolute; top: -10px; left: 16px;
  background: var(--ink);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.vs-name {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 4px;
  letter-spacing: .01em;
}
.vs-name a { color: inherit; text-decoration: none; }
.vs-name a:hover { color: var(--pink-deep); }
.vs-sub {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .02em;
  margin-bottom: 12px;
}
.vs-stars {
  font-size: 14px;
  color: #c25671;
  font-weight: 700;
  margin-bottom: 8px;
}
.vs-stars small { color: var(--ink-3); font-weight: 400; font-size: 11px; }
.vs-price {
  font-family: var(--f-num, inherit);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.vs-price small { font-size: 13px; color: var(--ink-3); margin-left: 2px; }
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-num, inherit);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: .08em;
}
.vs-divider span {
  background: #fff;
  border: 1px solid var(--line);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
}

.vs-cmp-table tbody td.winner {
  background: rgba(186, 222, 196, .35);
  font-weight: 700;
  color: #2c6843;
  position: relative;
}
.vs-cmp-table tbody td.winner::after {
  content: "✓";
  position: absolute;
  right: 8px;
  top: 50%; transform: translateY(-50%);
  color: #4f9a6b;
  font-weight: 700;
}

.vs-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
.vs-proscons-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}
.vs-proscons-col .proscons-card + .proscons-card {
  margin-top: 14px;
}
.vs-proscons-col .proscons-card header h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}
.vs-proscons-col .proscons-card li { font-size: 12.5px; line-height: 1.75; }

.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 8px;
}
.verdict-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 22px;
}
.verdict-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px;
}
.verdict-card p {
  font-size: 13.5px;
  line-height: 1.85;
  margin: 0 0 14px;
  color: var(--ink-1);
}
.verdict-note {
  font-size: 12px;
  color: var(--ink-3);
  margin: 16px 0 0;
  padding: 14px 18px;
  background: var(--bg);
  border-radius: 8px;
  line-height: 1.85;
}

.other-compares {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.oc-link {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 12.5px;
  transition: all .15s;
  align-items: center;
}
.oc-link:hover { border-color: var(--pink-deep); color: var(--pink-deep); }
.oc-link .oc-vs { color: var(--ink-3); font-weight: 700; font-size: 11px; }
.oc-link .oc-b { font-weight: 700; }

@media (max-width: 720px) {
  .vs-hero { grid-template-columns: 1fr; gap: 8px; }
  .vs-divider { display: none; }
  .vs-proscons { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .other-compares { grid-template-columns: 1fr; }
}

/* ─── 記事ページ ─── */
.article-head { padding: 32px 0 16px; background: var(--bg); }
.article-head .breadcrumb { margin-bottom: 16px; }
.article-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--pink-deep);
  background: rgba(194, 86, 113, .08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.article-head h1 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .005em;
  margin: 0 0 12px;
}
.article-dek {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.85;
  margin: 0 0 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-3);
}
.author-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  transition: all .15s;
}
.author-chip:hover { border-color: var(--pink-deep); }
.author-chip img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.author-chip span { font-size: 12px; display: grid; line-height: 1.4; }
.author-chip strong { display: block; font-size: 12.5px; font-weight: 700; }
.article-date { font-size: 11px; }

.article-body-wrap { padding: 32px 20px 48px; }
.article-hero {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 32px;
}
.article-body { font-size: 16px; line-height: 1.95; color: var(--ink-1); }
.article-body p.lead { font-size: 17px; line-height: 2.05; margin: 0 0 24px; font-weight: 500; }
.article-body p { margin: 0 0 20px; }
.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
  line-height: 1.5;
}
.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--pink-deep);
}
.article-body ul, .article-body ol {
  margin: 16px 0 24px;
  padding-left: 22px;
}
.article-body li { margin: 6px 0; line-height: 1.85; }
.article-body strong { font-weight: 700; color: var(--ink); }
.article-body a { color: var(--pink-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.article-body a:hover { text-decoration-thickness: 2px; }
.article-body table.info-table { margin: 20px 0 28px; }
.article-body table.info-table th { width: 28%; font-size: 12.5px; }
.article-body table.info-table td { font-size: 13.5px; }

.article-faq { margin: 48px 0 32px; }
.article-faq h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
}
.article-faq h2 em { color: var(--pink-deep); font-style: normal; }
.article-faq .faq { background: var(--bg); padding: 6px 18px; border-radius: 8px; }

.article-mentions { margin: 32px 0; padding: 24px; background: var(--bg); border-radius: 10px; }
.article-mentions h2 { font-size: 16px; font-weight: 700; margin: 0 0 14px; }
.article-mentions h2 em { color: var(--pink-deep); font-style: normal; }
.mention-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.mention-card {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  text-decoration: none;
  color: inherit;
  transition: all .15s;
}
.mention-card:hover { border-color: var(--pink-deep); }
.mention-card img { width: 40px; height: 40px; border-radius: 4px; object-fit: cover; }
.mention-card strong { display: block; font-size: 13px; font-weight: 700; }
.mention-card small { font-size: 11px; color: var(--ink-3); }

.article-sources { margin: 32px 0; padding: 16px 20px; background: var(--bg); border-radius: 8px; font-size: 12px; color: var(--ink-3); }
.article-sources h3 { font-size: 11px; letter-spacing: .04em; margin: 0 0 8px; color: var(--ink-2); font-weight: 700; }
.article-sources ol { margin: 0; padding-left: 20px; }
.article-sources a { color: var(--pink-deep); font-size: 11px; }

.article-author-card {
  margin: 40px 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
}
.article-author-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.article-author-card h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.article-author-card h3 small { font-size: 12px; color: var(--ink-3); font-weight: 400; margin-left: 8px; }
.article-author-card p { font-size: 13px; line-height: 1.85; margin: 0 0 6px; color: var(--ink-2); }
.article-author-card .expertise { font-size: 12px; color: var(--ink-3); margin-bottom: 12px; }
.article-author-card .linklike { font-size: 12.5px; }

@media (max-width: 720px) {
  .article-author-card { grid-template-columns: 60px 1fr; gap: 14px; padding: 18px; }
  .article-author-card img { width: 60px; height: 60px; }
  .article-body h2 { font-size: 19px; margin: 32px 0 12px; }
}

/* ─── 編集部メンバー紹介 ─── */
.authors-list { display: grid; gap: 18px; margin: 24px 0 32px; }
.author-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  align-items: start;
  scroll-margin-top: 80px;
}
.author-photo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}
.author-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
}
.author-body h3 small {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 400;
  margin-left: 8px;
  letter-spacing: .04em;
}
.author-role {
  font-size: 12px;
  color: var(--pink-deep);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.author-bio {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink-1);
  margin: 0 0 10px;
}
.author-expertise {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 12px;
}
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11px;
  color: var(--ink-3);
  margin: 0;
}
.author-meta a { color: var(--pink-deep); text-decoration: none; }
.author-meta a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .author-card { grid-template-columns: 70px 1fr; gap: 14px; padding: 18px; }
  .author-photo img { width: 70px; height: 70px; }
  .author-body h3 { font-size: 15px; }
  .author-body h3 small { display: block; margin: 4px 0 0; }
}

/* ─────────────────────────────────────────────
   無料診断ウィザード（/diagnosis）
   ───────────────────────────────────────────── */
.dx-wrap { padding: clamp(28px, 6vw, 56px) 0 64px; }
.dx-head { max-width: 640px; margin: 0 auto 28px; text-align: center; }
.dx-title { font-family: var(--f-display); font-size: clamp(24px, 5vw, 34px); line-height: 1.3; margin: 14px 0 12px; color: var(--ink); }
.dx-title .pink { color: var(--pink-deep); }
.dx-lead { color: var(--ink-2); font-size: 15px; line-height: 1.85; margin: 0; }

.dx-form { max-width: 620px; margin: 0 auto; }
.dx-steps { list-style: none; margin: 0; padding: 0; }
.dx-step { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(20px, 4vw, 32px); margin-bottom: 18px; box-shadow: var(--shadow-card); }
/* JS有効時のみ1問ずつ表示。無効(no-JS)なら全問表示＋送信ボタンが出る */
.dx-form.is-stepper .dx-step:not(.is-active) { display: none; }

.dx-q-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.dx-q-num { flex: none; font-family: var(--f-num); font-weight: 700; font-size: 12px; letter-spacing: .04em; color: #fff; background: var(--pink-deep); border-radius: var(--r-pill); padding: 5px 12px; }
.dx-q-title { font-family: var(--f-display); font-size: clamp(18px, 4vw, 22px); margin: 0; color: var(--ink); }

.dx-options { display: grid; gap: 10px; }
.dx-option { position: relative; display: block; cursor: pointer; }
.dx-option input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.dx-option-body { display: flex; flex-direction: column; gap: 3px; border: 1.5px solid var(--line-2); border-radius: var(--r-md); padding: 16px 18px; transition: border-color .15s, background .15s, box-shadow .15s; }
.dx-option-label { font-weight: 700; font-size: 15px; color: var(--ink); }
.dx-option-sub { font-size: 12.5px; color: var(--ink-3); }
.dx-option:hover .dx-option-body { border-color: var(--pink); }
.dx-option input:checked + .dx-option-body { border-color: var(--pink-deep); background: var(--pink-pale); box-shadow: inset 0 0 0 1px var(--pink-deep); }
.dx-option input:focus-visible + .dx-option-body { outline: 2px solid var(--pink-deep); outline-offset: 2px; }

.dx-nav { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.dx-nav #dxNext, .dx-nav #dxSubmit { margin-left: auto; }
.dx-progress { display: flex; gap: 7px; margin: 0 auto; }
.dx-progress i { width: 28px; height: 5px; border-radius: var(--r-pill); background: var(--line-2); transition: background .2s; }
.dx-progress i.on { background: var(--pink-deep); }
/* no-JS フォールバック：ステッパーが動かない時は全問＋送信のみ */
.dx-form:not(.is-stepper) #dxNext,
.dx-form:not(.is-stepper) #dxBack,
.dx-form:not(.is-stepper) #dxProgress { display: none; }
.dx-form:not(.is-stepper) #dxSubmit { display: inline-flex !important; margin-left: auto; }

.dx-note { font-size: 11.5px; color: var(--ink-3); line-height: 1.7; margin: 18px 0 0; text-align: center; }

/* ── 診断結果 ── */
.dx-result-head { padding: clamp(24px, 5vw, 44px) 0 0; text-align: center; }
.dx-rerun { display: inline-block; color: var(--blue-link); text-decoration: none; font-size: 13px; margin-bottom: 14px; }
.dx-rerun:hover { text-decoration: underline; }
.dx-answer-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 0; margin: 16px 0 0; }
.dx-answer-chips li { font-size: 12.5px; color: var(--ink-2); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 6px 14px; }
.dx-answer-chips b { color: var(--ink-3); font-weight: 600; margin-right: 6px; }

.dx-result { padding: 28px 0 64px; }

.dx-hero-card { display: grid; grid-template-columns: 300px 1fr; gap: 0; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-hover); position: relative; }
.dx-hero-rank { position: absolute; top: 0; left: 0; z-index: 2; font-family: var(--f-display); font-weight: 700; font-size: 13px; line-height: 1.3; color: #fff; background: var(--pink-deep); padding: 10px 16px; border-bottom-right-radius: var(--r-md); }
.dx-hero-media { position: relative; min-height: 240px; }
.dx-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dx-hero-body { padding: clamp(22px, 4vw, 34px); }
.dx-hero-name { font-family: var(--f-display); font-size: clamp(22px, 4vw, 28px); margin: 0 0 4px; color: var(--ink); }
.dx-hero-sub { font-size: 12.5px; color: var(--ink-3); margin: 0 0 16px; }
.dx-hero-stats { display: flex; flex-wrap: wrap; gap: 18px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dx-hero-stats span { display: flex; flex-direction: column; }
.dx-hero-stats b { font-family: var(--f-num); font-size: 16px; color: var(--pink-deep); }
.dx-hero-stats i { font-style: normal; font-size: 11px; color: var(--ink-3); }
.dx-reasons { margin: 18px 0 22px; }
.dx-reasons h3 { font-family: var(--f-display); font-size: 14px; color: var(--ink); margin: 0 0 10px; }
.dx-reasons ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.dx-reasons li { position: relative; padding-left: 24px; font-size: 13.5px; line-height: 1.7; color: var(--ink-2); }
.dx-reasons li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--sage); font-weight: 700; }
.dx-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.dx-sub-h { font-family: var(--f-display); font-size: 18px; color: var(--ink); margin: 40px 0 16px; }
.dx-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dx-card { display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-card); position: relative; }
.dx-card-rank { position: absolute; top: 10px; left: 10px; z-index: 2; font-family: var(--f-num); font-weight: 700; font-size: 11px; color: var(--ink-2); background: rgba(253,249,243,.92); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px 10px; }
.dx-card-media { height: 130px; }
.dx-card-media img { width: 100%; height: 100%; object-fit: cover; }
.dx-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.dx-card-name { font-family: var(--f-display); font-size: 16px; margin: 0; color: var(--ink); }
.dx-card-meta { font-size: 12px; color: var(--ink-3); }
.dx-card-reason { font-size: 12.5px; line-height: 1.7; color: var(--ink-2); margin: 0; flex: 1; }
.dx-card-cta { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.dx-card-link { font-size: 12.5px; color: var(--blue-link); text-decoration: none; }
.dx-card-link:hover { text-decoration: underline; }

.dx-rest { margin: 32px 0 0; border-top: 1px solid var(--line); padding-top: 16px; }
.dx-rest summary { cursor: pointer; font-size: 14px; color: var(--ink-2); font-weight: 600; }
.dx-rest ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; }
.dx-rest li { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 13px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.dx-rest li a { color: var(--pink-deep); text-decoration: none; font-weight: 600; }
.dx-rest li span { color: var(--ink-3); font-size: 12px; }
.dx-warn { color: var(--amber) !important; }

.dx-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; justify-content: center; margin: 40px 0 0; }

@media (max-width: 720px) {
  .dx-hero-card { grid-template-columns: 1fr; }
  .dx-hero-media { min-height: 0; height: 180px; }
  .dx-hero-media img { position: static; height: 180px; }
  .dx-cards { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   口コミ投稿フォーム（公開ベンダーページ）
   ───────────────────────────────────────────── */
.review-submit { margin-top: 32px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(20px, 4vw, 32px); }
.review-submit h3 { font-family: var(--f-display); font-size: 17px; margin: 0 0 6px; color: var(--ink); }
.review-submit-note { font-size: 12.5px; color: var(--ink-3); line-height: 1.7; margin: 0 0 18px; }
.review-flash { background: #eef4ec; border: 1px solid var(--mint); color: #3f5640; padding: 11px 14px; border-radius: var(--r-md); font-size: 13.5px; margin-bottom: 16px; }
.review-err { background: #fbeeec; border: 1px solid var(--pink-soft); color: var(--pink-darker); padding: 11px 14px; border-radius: var(--r-md); font-size: 13px; margin-bottom: 16px; }
.review-err ul { margin: 0; padding-left: 18px; }
.review-form label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-2); margin-bottom: 14px; }
.review-form label span { font-weight: 400; color: var(--ink-3); margin-left: 6px; }
.review-form input, .review-form select, .review-form textarea {
  display: block; width: 100%; box-sizing: border-box; margin-top: 6px;
  padding: 10px 12px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  font-size: 14px; font-family: inherit; background: #fff; color: var(--ink); }
.review-form textarea { min-height: 120px; resize: vertical; }
.review-form input:focus, .review-form select:focus, .review-form textarea:focus { outline: 2px solid var(--pink-deep); outline-offset: 1px; border-color: var(--pink-deep); }
.review-form .rf-row { display: grid; grid-template-columns: 1.2fr 1.4fr .8fr; gap: 14px; }
.review-form button { margin-top: 6px; }
@media (max-width: 720px) { .review-form .rf-row { grid-template-columns: 1fr; } }

/* ============================================================
   Filter UI refresh — 2026-05-31
   くすみブライダルに合わせた、静かで高速な絞り込み（最高UI）
   既存マークアップ(.filter-bar--compact / .chip / .js-async)を踏襲し
   見た目だけを格上げ。CSP: インラインJS不要。
   ============================================================ */
.filter-bar--compact {
  padding: 13px 16px 12px; gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 8px 24px -16px rgba(47,41,46,.28);
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(253,249,243,0.92);
}
/* 行ラベル：固定幅＋アクセントのアイコン */
.filter-bar--compact .filter-row > .fb-mini {
  min-width: 74px; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
  color: var(--ink-2);
}
.filter-bar--compact .filter-row > .fb-mini .icon { color: var(--pink-deep); font-size: 14px; }
.filter-row + .filter-row { border-top: 1px solid color-mix(in srgb, var(--line) 60%, transparent); padding-top: 9px; }

/* スクロール端のフェード（まだ続きがある合図） */
.filter-bar--compact .filter-chips {
  gap: 7px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
}
.filter-bar--compact .filter-chips::-webkit-scrollbar { height: 0; }

/* チップ本体 */
.filter-chips .chip {
  gap: 6px; padding: 7px 13px;
  border: 1.5px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease,
              transform .12s ease, box-shadow .18s ease;
}
.filter-bar--compact .filter-chips .chip { padding: 7px 13px; font-size: 12.5px; }
.filter-chips .chip:hover {
  border-color: var(--pink-mid); color: var(--pink-deep);
  background: var(--pink-pale); transform: translateY(-1px);
}
.filter-chips .chip:focus-visible { outline: 2px solid var(--pink-deep); outline-offset: 2px; }
.filter-chips .chip.is-active {
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--pink-mid) 100%);
  border-color: var(--pink-deep); color: #fff;
  box-shadow: 0 7px 16px -8px rgba(157,98,102,.55);
}
.filter-chips .chip.is-active:hover { color: #fff; transform: translateY(-1px); }

/* 件数バッジ */
.filter-chips .chip-n {
  display: inline-grid; place-items: center;
  min-width: 18px; height: 18px; padding: 0 5px; margin-left: 1px;
  border-radius: 999px;
  background: var(--bg-pink); color: var(--pink-deep);
  font-family: var(--f-num); font-size: 10px; font-weight: 800; line-height: 1; opacity: 1;
}
.filter-chips .chip.is-active .chip-n { background: rgba(255,255,255,.26); color: #fff; }
.filter-chips .chip.is-empty { opacity: .34; pointer-events: none; }
.filter-chips .chip.is-empty .chip-n { background: var(--line); color: var(--ink-3); }

/* 並び替え：セグメント（ピル）コントロール */
.filter-bar--compact .sort {
  gap: 2px; padding: 3px; align-items: center;
  background: var(--bg-cream); border: 1px solid var(--line);
  border-radius: 999px;
}
.filter-bar--compact .sort .fb-mini { padding: 0 6px 0 8px; min-width: 0; }
.filter-bar--compact .sort a {
  padding: 5px 12px; font-size: 12px; font-weight: 700;
  border-radius: 999px; color: var(--ink-2); transition: background .15s, color .15s, box-shadow .15s;
}
.filter-bar--compact .sort a:hover { color: var(--pink-deep); }
.filter-bar--compact .sort a.is-active {
  background: #fff; color: var(--pink-deep);
  box-shadow: 0 1px 3px rgba(47,41,46,.12);
}

/* リセット */
.filter-bar--compact .filter-row--tail { border-top: 1px dashed var(--line-2); gap: 10px; align-items: center; }
.filter-bar--compact .reset {
  font-size: 12px; font-weight: 700; color: var(--pink-deep);
  background: var(--bg-pink); border: 1px solid var(--pink-soft);
  padding: 6px 13px; border-radius: 999px;
}
.filter-bar--compact .reset:hover { background: var(--pink-soft); border-color: var(--pink-deep); }

/* 該当件数：数字を主役に */
.filter-bar--compact .filter-summary {
  margin-left: auto; font-size: 12px; color: var(--ink-2); white-space: nowrap;
}
.filter-bar--compact .filter-summary strong {
  color: var(--pink-deep); font-family: var(--f-num); font-size: 17px; font-weight: 800; margin: 0 2px;
}

/* フィルタ更新中（async中）に一覧をふわっと */
#vendor-list-section[aria-busy="true"] .vendor-card,
#vendor-list-section[aria-busy="true"] .companies-list { opacity: .55; transition: opacity .2s; }

@media (max-width: 720px) {
  .filter-bar--compact .filter-row > .fb-mini { min-width: 56px; font-size: 10px; }
  .filter-bar--compact .sort { width: 100%; overflow-x: auto; }
}
