:root {
  --ink: #23232b;
  --sub: #7c7c80;
  --hair: #ececee;
  --gold: #edb43a;
  --gold-deep: #a06b00;
  --bg: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
/* Lenis が要求する土台。入れないと慣性スクロールと native のスクロールが競合する */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--gold); }
img { max-width: 100%; display: block; }

/* top bar */

/* sticky header: hidden until hero scrolls out */
.sitehead {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px; background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hair);
  transform: translateY(-100%); opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s;
}
.sitehead.is-shown { transform: translateY(0); opacity: 1; }
.brand { display: flex; align-items: center; gap: 9px; }
.brand-word { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: 0.04em; }
.brand-word em { margin-left: 5px; }
.head-nav { display: flex; gap: 28px; }
.head-nav a { font-size: 13px; position: relative; padding-bottom: 4px; }
.head-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.head-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* hero */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; position: relative; overflow: hidden;
}
.hero-title { margin: 0; line-height: 0; }
.hero-logo { width: min(52vw, 460px); height: auto; }
/* 目には出さないが検索エンジンと読み上げには渡す */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.scroll-cue { position: absolute; bottom: 28px; left: 50%; width: 1px; height: 56px; background: var(--hair); overflow: hidden; }
.scroll-cue span { position: absolute; top: -40%; left: 0; width: 1px; height: 40%; background: var(--ink); animation: cue 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite; }
@keyframes cue { 0% { top: -40%; } 60% { top: 100%; } 100% { top: 100%; } }

/* featured 注目のMONO */
.featured { padding: 8px 40px 56px; }
.featured .sec-title { margin-bottom: 20px; }
.featured .sec-title span { border-bottom: 3px solid var(--gold); padding-bottom: 6px; }
/* 3列で固定する。記事が2本のときは右が1枚ぶん空くだけで、カードの大きさは変わらない。
   auto-fit にすると本数が減ったときにカードが巨大化するので使わない */
.feat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.feat-card h3 { font-size: 14px; }
.feat-card .price { font-size: 13px; }

/* filter bar */
.filterbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px 18px; border-bottom: 1px solid var(--hair);
  position: relative; z-index: 5; background: var(--bg);
}
.tabs { display: flex; gap: 26px; }
.tab {
  font: inherit; font-size: 13px; letter-spacing: 0.06em; color: var(--sub);
  background: none; border: 0; cursor: pointer; padding: 0 0 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.tab:hover { color: var(--ink); }
.tab.is-active { color: var(--ink); font-weight: 700; border-color: var(--ink); }
.count { font-family: 'Poppins', sans-serif; font-size: 12px; color: var(--sub); }

/* grid */
.grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px 24px; padding: 36px 40px 64px; background: var(--bg);
}
.card { display: flex; flex-direction: column; gap: 10px; }
.card .ph {
  aspect-ratio: 1 / 1; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.card .ph span { font-size: 12px; color: #9a968f; position: relative; z-index: 1; }
.card .ph::before {
  content: ""; position: absolute; inset: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.t1::before { background: #ece9e4; } .t2::before { background: #e4e6ea; }
.t3::before { background: #eae7e7; } .t4::before { background: #e6e9e5; }
.t5::before { background: #ebe8e3; }
.card:hover .ph::before { transform: scale(1.05); }
.card h3 { font-size: 13px; font-weight: 400; text-align: center; line-height: 1.7; transition: color 0.25s; }
.card:hover h3 { color: var(--gold-deep); }
.card:active { transform: scale(0.985); }
.card .price { font-family: 'Poppins', sans-serif; font-size: 12px; text-align: center; }

/* compare */
.compare { padding: 56px 40px 72px; border-top: 1px solid var(--hair); }
.sec-title { font-size: 20px; font-weight: 700; overflow: hidden; margin-bottom: 18px; }
.sec-title span { display: inline-block; }
.compare-list { list-style: none; }
.compare-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 4px; border-bottom: 1px solid var(--hair); font-size: 15px; font-weight: 700;
}
.compare-list .arrow { color: var(--gold-deep); transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.compare-list a:hover .arrow { transform: translateX(6px); }

/* footer */
.foot {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 56px 40px 64px; background: var(--ink); color: #fff; text-align: center;
}
.foot-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: 0.05em; }
.foot-name em { margin-left: 5px; }
.foot-note { font-size: 12px; color: #9a9aa0; }
.foot-nav { display: flex; gap: 22px; font-size: 12px; color: #9a9aa0; }
.foot-nav a { transition: color 0.25s; }
.foot-nav a:hover { color: #fff; }

/* ===== article (商品ページ) ===== */
.article { max-width: 760px; margin: 0 auto; padding: 40px 20px 96px; }
.a-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.crumbs { font-size: 12px; color: var(--sub); }
.adbadge { font-size: 11px; color: var(--sub); border: 1px solid var(--hair); padding: 3px 10px; letter-spacing: 0.04em; }
.a-title { font-size: 32px; line-height: 1.45; margin-bottom: 12px; }
.a-date { display: flex; gap: 14px; font-size: 12px; color: var(--sub); margin-bottom: 28px; }
.a-hero { overflow: hidden; margin-bottom: 32px; }
.a-hero .ph { aspect-ratio: 3 / 2; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.a-hero .ph span, .scene .ph span { font-size: 12px; color: #9a968f; position: relative; z-index: 1; }
.a-hero .ph::before, .scene .ph::before { content: ""; position: absolute; inset: 0; }
.a-lead { font-size: 15px; line-height: 2.1; margin-bottom: 48px; }
.a-sec { margin-bottom: 52px; }
.a-sec > p { font-size: 14px; line-height: 2.0; margin-top: 16px; }
.feature3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
.fcard { border: 1px solid var(--hair); padding: 20px 18px; }
.fcard h3 { font-size: 14px; margin-bottom: 8px; }
.fcard p { font-size: 12.5px; color: var(--sub); line-height: 1.8; }
.scene { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
/* 1枚だけ置く版。解説記事は横長1枚のほうが読みの流れを切らない */
.scene-1 { grid-template-columns: 1fr; }
/* 図版の説明。写真が何を写しているかを文字でも渡す（読者にも検索エンジンにも効く） */
.cap { font-size: 12.5px; line-height: 1.8; color: var(--sub); margin: 8px 2px 0; }
/* 実写真が入ったときの枠。プレースホルダの .ph をそのまま器として使う
   （main.js のアニメが .ph を対象にしているため、器を替えると動きが消える） */
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* 画面キャプチャは16:9。3:2の枠に入れると上下が切れるので比率を合わせる */
.ph-shot { aspect-ratio: 16 / 9 !important; background: #14141a; }

/* ===== 広告バナー =====
   条件は「さりげなく」（Founder 2026-08-30）。
   煽らない・色を足さない・囲まない。上下の細い罫線だけで本文と仕切る。
   黄色は左の短い線1本のみ。ここを増やすと売り込みの顔になるので増やさない。 */
.adbanner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin: 48px 0;
  padding: 20px 4px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  text-decoration: none; color: inherit;
  transition: opacity 0.25s;
}
.adbanner:hover { opacity: 0.68; }
.adbanner .ab-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.adbanner .ab-label {
  font-size: 10px; letter-spacing: 0.14em; color: var(--sub);
  display: flex; align-items: center; gap: 8px;
}
/* 「PR」の前に置く短い黄色線。広告だと分かる目印を色ではなく形で作る */
.adbanner .ab-label::before {
  content: ""; width: 14px; height: 2px; background: var(--gold); flex: none;
}
.adbanner .ab-text { font-size: 15px; line-height: 1.7; font-weight: 700; }
.adbanner .ab-sub { font-size: 12.5px; color: var(--sub); line-height: 1.7; }
.adbanner .ab-go { font-size: 12px; color: var(--sub); white-space: nowrap; }
.adbanner .ab-go::after { content: " →"; }

/* トップに置く版は左右の余白を本文に合わせる */
.adband { padding-left: 40px; padding-right: 40px; }
.adband .adbanner { margin: 0; }

@media (max-width: 700px) {
  .adband { padding-left: 20px; padding-right: 20px; }
  .adbanner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .adbanner .ab-go { align-self: flex-end; }
}
.scene .ph { aspect-ratio: 3 / 2; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.pricebox {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  border-top: 2px solid var(--ink); border-bottom: 1px solid var(--hair);
  padding: 24px 4px; margin-bottom: 52px;
}
.pb-label { font-size: 12px; color: var(--sub); }
.pb-price { font-family: 'Poppins', 'Noto Sans JP', sans-serif; font-size: 30px; font-weight: 600; }
.pb-price small { font-size: 12px; font-weight: 400; color: var(--sub); margin-left: 8px; }
.pb-note { font-size: 12px; color: var(--sub); max-width: 240px; text-align: right; }
.fitlist { list-style: none; margin-top: 8px; }
.fitlist li { font-size: 14px; padding: 14px 4px; border-bottom: 1px solid var(--hair); }
.fitlist li::before { content: "―"; color: var(--gold); margin-right: 12px; }
.vs { border: 1px solid var(--hair); margin-top: 16px; }
.vs-row { display: grid; grid-template-columns: 120px repeat(2, minmax(0, 1fr)); }
/* 4列版（比較の項目が多い解説記事用） */
.vs-4 { overflow-x: auto; }
.vs-4 .vs-row { grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr)); min-width: 620px; }
/* 4列版の1列目は「項目名」ではなく製品名なので、薄い色をやめて主役に戻す */
.vs-4 .vs-row > div:first-child { color: var(--ink); font-weight: 700; }
.vs-4 .vs-head > div:first-child { font-weight: 700; }
/* 公開前に消す編集メモ。読者に出ないよう、目立つ見た目にしておく */
.editnote {
  margin-top: 40px; padding: 16px 18px;
  border: 2px dashed var(--gold); background: #FFFBF1;
  font-size: 13.5px; line-height: 1.8; color: #6b5520;
}
.editnote b { display: block; margin-bottom: 4px; color: #23232B; }
.vs-row > div { padding: 13px 16px; font-size: 13.5px; border-top: 1px solid var(--hair); }
.vs-row > div:first-child { color: var(--sub); }
.vs-head > div { border-top: 0; background: #fafafa; font-weight: 700; color: var(--ink); }
.plusminus { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
.pm { border: 1px solid var(--hair); padding: 20px; }
.pm-plus { border-top: 2px solid var(--gold); }
.pm-minus { border-top: 2px solid var(--sub); }
.pm h3 { font-size: 14px; margin-bottom: 10px; }
.pm ul { list-style: none; }
.pm li { font-size: 13px; line-height: 1.8; padding: 5px 0; }
.cta { background: #fafafa; border: 1px solid var(--hair); padding: 30px 28px; text-align: center; }
.cta-name { font-size: 19px; margin-bottom: 6px; }
.cta-note { font-size: 12.5px; color: var(--sub); margin-bottom: 18px; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px; padding: 0 30px; font-size: 14px; font-weight: 700;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s, color 0.25s;
}
.btn:active { transform: scale(0.97); }
.btn-fill { background: var(--ink); color: #fff; }
.btn-fill:hover { background: #000; }
.btn-line { border: 1px solid var(--ink); color: var(--ink); background: #fff; }
.btn-line:hover { background: var(--ink); color: #fff; }

/* 固定購入バー: 価格を見た後から出す */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 20px; background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px); border-top: 1px solid var(--hair);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.buybar.is-shown { transform: translateY(0); }
.bb-info { display: flex; align-items: baseline; gap: 14px; min-width: 0; }
.bb-name { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bb-price { font-family: 'Poppins', 'Noto Sans JP', sans-serif; font-size: 14px; color: var(--sub); }
.bb-btn { height: 40px; padding: 0 24px; font-size: 13px; }

@media (max-width: 700px) {
  .a-title { font-size: 24px; }
  .feature3 { grid-template-columns: 1fr; }
  .plusminus { grid-template-columns: 1fr; }
  .pricebox { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pb-note { text-align: left; max-width: none; }
  .vs-row { grid-template-columns: 88px repeat(2, minmax(0, 1fr)); }
  .cta-btns .btn { width: 100%; }
}

/* reveal targets: initial state set by JS only when motion is allowed */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media (max-width: 1100px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) {
  .filterbar, .grid, .compare { padding-left: 20px; padding-right: 20px; }
  .sitehead { padding: 12px 20px; }
  .head-nav { display: none; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 14px; }
  .featured { padding-left: 20px; padding-right: 20px; }
  .feat-grid { grid-template-columns: 1fr; }
  .hero-logo { width: 74vw; }
  .tabs { gap: 16px; overflow-x: auto; }
}

/* 規約系ページの本文リンク。サイト全体は a を装飾しない方針なので、
   文中リンクが本当にリンクだと分かるのはここだけ。色に頼らず下線でも示す */
.legal .a-sec a, .legal .a-lead a, .legal .fitlist a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal .a-sec a:hover, .legal .a-lead a:hover { color: var(--ink); }
.legal .a-sec > ul { margin-top: 8px; }

/* 図解（比較の段差図）。色に頼らず、位置・ラベル・模様で読めるようにする */
.dgm { margin-top: 22px; }
.dgm-scroll { overflow-x: auto; }
.dgm svg { display: block; width: 100%; min-width: 620px; height: auto; font-family: inherit; }
.dgm .d-bar { fill: var(--ink); }
.dgm .d-bar-off { fill: #ffffff; stroke: var(--sub); stroke-width: 1; }
.dgm .d-axis { stroke: var(--ink); stroke-width: 1; }
.dgm .d-tick { stroke: var(--hair); stroke-width: 1; }
.dgm .d-name { font-size: 14px; font-weight: 700; fill: var(--ink); }
.dgm .d-sub { font-size: 11.5px; fill: var(--sub); }
.dgm .d-price { font-size: 12.5px; fill: var(--ink); }
.dgm .d-chip { fill: #fafafa; stroke: var(--hair); stroke-width: 1; }
.dgm .d-chip-key { fill: #fffbf1; stroke: var(--gold); stroke-width: 1; }
.dgm .d-diff { font-size: 13px; font-weight: 700; fill: var(--ink); }
.dgm .d-what { font-size: 11.5px; fill: var(--sub); }
.dgm .d-what-key { font-size: 11.5px; font-weight: 700; fill: var(--gold-deep); }

/* 記事末の回遊（関連記事）。トップの .card をそのまま3列で使う */
.rel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 20px; }
@media (max-width: 640px) { .rel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 14px; } }
/* .card は display:flex なので hidden 属性が効かない。絞り込み用に打ち消す */
.card[hidden] { display: none; }
/* 飛び先が決まっていない広告枠は出さない。ASPのリンクを入れれば自動で戻る */
.adbanner[href="#"] { display: none; }
.adband:has(> .adbanner[href="#"]) { display: none; }

/* 買う場所へのリンク。飛び先が決まるまでは出さない（.adbanner と同じ扱い） */
.buyrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin: -32px 0 52px;
}
.buy {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 168px; padding: 13px 22px;
  border: 1px solid var(--ink); border-radius: 2px;
  font-size: 14px; font-weight: 700; line-height: 1;
  transition: background-color 0.25s, color 0.25s;
}
.buy:hover { background: var(--ink); color: var(--bg); }
.buy::after { content: " →"; margin-left: 8px; font-weight: 400; }
.buyrow .buy-note { font-size: 12px; color: var(--sub); width: 100%; }
.buy[href="#"] { display: none; }
/* 締めのカードに足すぶん。飛び先が空なら同じく出さない */
.cta-btns .btn[href="#"] { display: none; }
.buyrow:not(:has(.buy:not([href="#"]))) { display: none; }

/* 記事の中の図（tools/chart.mjs が入れるインラインSVG）。
   色は CSS 変数を見るので、ブランドの色を変えれば図も追従する。装飾は足さない＝枠も影も無し */
.chart { margin: 26px 0 30px; }
.chart svg { width: 100%; height: auto; display: block; }
.c-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px; font-size: 13px; color: var(--sub); }
.c-key { display: inline-flex; align-items: center; gap: 7px; }
.c-key i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.chart .c-lab, .chart .c-val { font-size: 15px; fill: var(--ink); font-weight: 700; }
.chart .c-tick, .chart .c-note { font-size: 13px; fill: var(--sub); }

/* 図の文字は viewBox 単位。スマホでは画面幅に合わせて縮むので、その分だけ大きく指定する */
@media (max-width: 700px) {
  .chart .c-lab, .chart .c-val { font-size: 18px; }
  .chart .c-tick, .chart .c-note { font-size: 15px; }
}

/* レビュー記事の型（2026-09-01 Founder正式採用。docs/REVIEW-PROMPT.md が正本）
   godox-v1pro.html で試作 → 全記事に展開。結論枠・出典枠・注意書き・FAQ */
  /* 冒頭の結論。条件つきで答えを先に出す枠 */
  .verdict { border: 1px solid var(--hair); border-top: 3px solid var(--gold); padding: 26px 24px; margin-top: 30px; }
  .verdict h2 { font-size: 15px; letter-spacing: .04em; margin-bottom: 14px; }
  .verdict .v-row { display: grid; grid-template-columns: 92px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid var(--hair); font-size: 14px; }
  .verdict .v-row:first-of-type { border-top: 0; }
  .verdict .v-key { font-weight: 700; font-size: 12.5px; letter-spacing: .04em; }
  .verdict .v-yes .v-key { color: var(--gold-deep); }
  .verdict .v-no .v-key { color: var(--sub); }
  @media (max-width: 640px) { .verdict .v-row { grid-template-columns: 1fr; gap: 4px; } }

  /* 情報の出どころ。事実・評価・未確認を分ける */
  .srcbox { border: 1px solid var(--hair); background: #fafafa; padding: 22px 24px; margin-top: 26px; font-size: 13px; }
  .srcbox h3 { font-size: 13px; margin-bottom: 12px; letter-spacing: .04em; }
  .srcbox dl { display: grid; grid-template-columns: 116px 1fr; gap: 10px 14px; }
  .srcbox dt { font-weight: 700; font-size: 12px; }
  .srcbox dd { color: var(--sub); line-height: 1.75; }
  @media (max-width: 640px) { .srcbox dl { grid-template-columns: 1fr; gap: 2px; } .srcbox dd { margin-bottom: 10px; } }

  /* 本文中の注意書き */
  .flag { border-left: 2px solid var(--gold); padding: 4px 0 4px 16px; margin-top: 18px; font-size: 13.5px; color: var(--sub); }
  .flag b { color: var(--ink); }

  /* FAQ */
  .faq { border-top: 1px solid var(--hair); margin-top: 16px; }
  .faq details { border-bottom: 1px solid var(--hair); }
  .faq summary { cursor: pointer; padding: 16px 4px; font-size: 14px; font-weight: 700; list-style: none; display: flex; gap: 12px; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::before { content: "Q"; color: var(--gold); font-size: 12px; padding-top: 2px; }
  .faq p { padding: 0 4px 18px 26px; font-size: 13.5px; color: var(--sub); }
