/* 女優ドールガイド — 高額商品にふさわしい「静かな高級感」のダークテーマ。
   50万円の買い物を検討する40代男性が、深夜にひとりで読む前提のデザイン。 */

:root {
  --bg: #14161b;
  --bg2: #1b1e25;
  --bg3: #22262f;
  --line: #2e333e;
  --text: #d8dae0;
  --muted: #9298a4;
  --gold: #c9a24b;
  --gold2: #e2c274;
  --accent: #b04a5a;
  --maxw: 780px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

/* ---- 帯・ヘッダー ---- */
.agebar {
  background: #0d0e11;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  padding: 6px 10px;
  letter-spacing: .04em;
}

.site-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .06em;
}

.brand-mark {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #8a6a2a);
  color: #14161b;
  font-family: Georgia, serif;
  font-size: 14px;
  padding: 2px 7px;
  border-radius: 6px;
  margin-right: 6px;
  vertical-align: 2px;
}

.gnav { display: flex; flex-wrap: wrap; gap: 2px; }

.gnav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
}

.gnav a:hover { color: var(--gold2); background: var(--bg3); }

/* ---- 本文 ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 32px 20px 64px; }

h1 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 27px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 6px;
}

.pubdate { color: var(--muted); font-size: 12px; margin-bottom: 26px; }

h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 21px;
  line-height: 1.5;
  color: var(--gold2);
  margin: 52px 0 18px;
  padding: 10px 0 10px 14px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(201,162,75,.08), transparent 70%);
}

h3 {
  font-size: 17px;
  color: #fff;
  margin: 30px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px dashed var(--line);
}

p { margin: 14px 0; }

a { color: var(--gold2); }

strong { color: #fff; }

ul, ol { margin: 14px 0 14px 24px; }

li { margin: 7px 0; }

.lead {
  font-size: 17px;
  color: #e8eaef;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  background: var(--bg2);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  color: #cfd3db;
  font-size: 15px;
}

blockquote cite { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; font-style: normal; }

.note { color: var(--muted); font-size: 13px; }

/* ---- 目次 ---- */
.toc {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 24px 0;
}

.toc p { margin: 0 0 6px; font-size: 13px; color: var(--muted); letter-spacing: .1em; }

.toc ol { margin: 0 0 0 22px; }

.toc li { margin: 4px 0; font-size: 14px; }

.toc a { text-decoration: none; }

.toc a:hover { text-decoration: underline; }

/* ---- 表 ---- */
table.spec {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14.5px;
  background: var(--bg2);
  border-radius: 10px;
  overflow: hidden;
}

.spec th, .spec td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.spec th { background: var(--bg3); color: #fff; font-weight: 600; white-space: nowrap; }

.spec td.num { text-align: right; white-space: nowrap; }

.table-scroll { overflow-x: auto; }

/* ---- FAQ ---- */
.faq dt {
  margin: 22px 0 6px;
  padding: 10px 14px;
  background: var(--bg3);
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
}

.faq dt::before { content: "Q. "; color: var(--gold); font-family: Georgia, serif; }

.faq dd { margin-left: 14px; padding-left: 14px; border-left: 2px solid var(--line); }

/* ---- CTAカード ---- */
.cta-card {
  display: flex;
  gap: 18px;
  background: linear-gradient(135deg, #1e222c, #171a21);
  border: 1px solid #3a3f4d;
  border-radius: 14px;
  padding: 18px;
  margin: 26px 0;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}

.cta-img img {
  width: 132px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.cta-body { flex: 1; min-width: 0; }

.cta-pr { margin: 0; font-size: 10px; color: var(--muted); letter-spacing: .15em; }

.cta-title {
  margin: 4px 0 2px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

.cta-hook { margin: 0 0 8px; font-size: 13px; color: var(--gold2); }

.cta-price { margin: 0 0 12px; font-size: 22px; color: #fff; font-weight: 700; }

.cta-price .tax { font-size: 12px; color: var(--muted); font-weight: 400; }

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 99px;
  vertical-align: 3px;
  margin-left: 6px;
  font-weight: 600;
}

.badge.instock { background: rgba(78,160,110,.18); color: #7fd0a2; border: 1px solid #3c6e52; }

.badge.soldout { background: rgba(176,74,90,.18); color: #e2909d; border: 1px solid #7a3a45; }

.fav { font-size: 12px; color: var(--accent); margin-left: 8px; vertical-align: 3px; }

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold2), #a87f2f);
  color: #14161b;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(201,162,75,.25);
  transition: transform .12s ease, box-shadow .12s ease;
}

.cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(201,162,75,.4); }

.cta-sub { margin: 10px 0 0; font-size: 13px; }

.btn-wrap { text-align: center; margin: 24px 0; }

/* ---- ギャラリー ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0 6px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: block;
}

/* ---- 商品カードグリッド(メーカー一覧) ---- */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0 6px;
}

.pcard {
  display: flex;
  flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .12s ease, border-color .12s ease;
}

.pcard:hover { transform: translateY(-2px); border-color: var(--gold); }

.pcard img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

.pcard-title {
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.5;
  padding: 10px 12px 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pcard-price {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 0 12px 12px;
  margin-top: auto;
}

/* ---- トップページ ---- */
.hero {
  background: linear-gradient(135deg, #1d2029, #14161b 60%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px;
  margin-bottom: 10px;
}

.hero-catch {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.6;
  margin: 0 0 10px;
}

.stepgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}

.step {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}

.step h3 { margin-top: 0; border-bottom: none; font-size: 15.5px; color: var(--gold2); }

.step p { font-size: 13.5px; margin: 8px 0 0; }

.morelink { font-weight: 600; }

/* ---- フッター ---- */
.site-foot {
  border-top: 1px solid var(--line);
  background: var(--bg2);
  padding: 34px 20px 26px;
  margin-top: 40px;
}

.ft-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ft-h { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 8px; }

.ft-grid a { display: block; color: var(--muted); font-size: 13px; text-decoration: none; margin: 5px 0; }

.ft-grid a:hover { color: var(--gold2); }

.ft-note { max-width: var(--maxw); margin: 22px auto 0; color: var(--muted); font-size: 11.5px; line-height: 1.7; }

.ft-copy { max-width: var(--maxw); margin: 10px auto 0; color: #565c68; font-size: 12px; }

/* ---- レスポンシブ ---- */
@media (max-width: 640px) {
  .wrap { padding: 24px 16px 48px; }
  h1 { font-size: 22px; }
  h2 { font-size: 18.5px; margin-top: 40px; }
  .hero-catch { font-size: 20px; }
  .stepgrid { grid-template-columns: 1fr; }
  .cta-card { flex-direction: row; padding: 14px; gap: 12px; }
  .cta-img img { width: 96px; }
  .cta-title { font-size: 15.5px; }
  .cta-price { font-size: 18px; }
  .cta-btn { display: block; text-align: center; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  table.spec { display: block; overflow-x: auto; white-space: nowrap; }
  .spec td { white-space: normal; min-width: 120px; }
}
