/* ==========================================================================
   えびすだ — 共有スタイル
   商品ページ（products/<slug>/index.html）はこのファイルを読み込む。
   商品を増やすときは products/ 配下にHTMLを1枚足すだけでよい。
   ========================================================================== */

:root{
  --ink:#161d2b;
  --ink-soft:#3d4759;
  --paper:#faf7f2;
  --paper-2:#f2ede4;
  --card:#ffffff;
  --accent:#e2621f;
  --accent-ink:#b84c12;
  --teal:#1f7a70;
  --line:#e3dccf;
  --shadow:0 18px 50px -24px rgba(22,29,43,.35);
  --radius:18px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Noto Sans JP",system-ui,-apple-system,"Segoe UI",sans-serif;
  color:var(--ink);background:var(--paper);
  font-weight:500;font-size:17px;line-height:1.9;letter-spacing:.01em;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
h1,h2,h3,h4{font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;line-height:1.4;letter-spacing:.005em}
a{color:inherit}
.wrap{max-width:1080px;margin:0 auto;padding:0 24px}
.narrow{max-width:820px}
.accent{color:var(--accent-ink)}

/* ---- ヘッダー ---- */
header{position:sticky;top:0;z-index:50;background:rgba(250,247,242,.92);backdrop-filter:blur(12px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;height:66px}
.brand{display:flex;align-items:center;gap:12px;font-family:"Zen Kaku Gothic New",sans-serif;font-weight:900;font-size:22px;text-decoration:none;letter-spacing:.02em}
.brand img{width:38px;height:38px;border-radius:50%;border:2px solid var(--accent)}
.brand small{display:block;font-size:11px;font-weight:700;color:var(--ink-soft);letter-spacing:.18em;margin-top:-2px}
.nav-links{display:flex;gap:24px;align-items:center}
.nav-links a{text-decoration:none;font-weight:700;font-size:14.5px;color:var(--ink-soft)}
.nav-links a:hover{color:var(--accent-ink)}
@media(max-width:900px){.nav-links a:not(.btn){display:none}}

/* ---- ボタン ---- */
.btn{display:inline-flex;align-items:center;gap:8px;background:var(--accent);color:#fff;text-decoration:none;font-weight:800;padding:11px 20px;border-radius:999px;font-size:14.5px;box-shadow:0 8px 20px -8px rgba(226,98,31,.7);transition:transform .15s,box-shadow .15s}
.btn:hover{transform:translateY(-2px);box-shadow:0 12px 24px -8px rgba(226,98,31,.8)}
.btn-ghost{background:transparent;color:var(--ink);border:2px solid var(--ink);box-shadow:none}
.btn-ghost:hover{background:var(--ink);color:#fff}

/* ---- ドラフト告知 ---- */
.draft-banner{background:var(--ink);color:#f4e9dd;font-size:13px;font-weight:600;text-align:center;padding:8px 16px;letter-spacing:.02em}
.draft-banner b{color:#ffc79a}

/* ---- セクション ---- */
section{padding:66px 0}
.sec-tag{font-weight:800;font-size:13px;letter-spacing:.14em;color:var(--accent-ink);text-transform:uppercase;margin-bottom:12px}
.sec-title{font-size:clamp(25px,3.4vw,35px);font-weight:900;margin-bottom:16px;line-height:1.35}
.sec-desc{font-size:17px;color:var(--ink-soft);max-width:41em;margin-bottom:34px}
.alt{background:var(--paper-2)}

/* ---- パンくず ---- */
.crumb{padding:22px 0 0;font-size:13.5px;font-weight:700;color:var(--ink-soft)}
.crumb a{text-decoration:none}
.crumb a:hover{color:var(--accent-ink)}
.crumb span{margin:0 8px;color:#b9b0a2}

/* ---- 商品ページのヒーロー ---- */
.p-hero{background:
    radial-gradient(1000px 420px at 85% -10%,rgba(226,98,31,.14),transparent 60%),
    radial-gradient(800px 420px at 0% 110%,rgba(31,122,112,.10),transparent 55%),var(--paper);
  padding:44px 0 56px}
.p-eyebrow{display:inline-flex;align-items:center;gap:9px;font-weight:800;font-size:13px;letter-spacing:.08em;color:var(--accent-ink);background:#fff;border:1px solid var(--line);padding:7px 15px;border-radius:999px;margin-bottom:20px}
.p-hero h1{font-size:clamp(30px,4.6vw,48px);font-weight:900;margin-bottom:18px}
.p-hero .p-sub{font-size:clamp(16px,2.1vw,20px);font-weight:700;color:var(--ink-soft);line-height:1.75;margin-bottom:22px}
.p-hero .p-lead{font-size:17px;color:var(--ink-soft);line-height:1.9;max-width:40em;margin-bottom:26px}
.p-cta{display:flex;gap:14px;flex-wrap:wrap}

/* ---- 汎用: 箇条書きカード ---- */
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.grid4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
@media(max-width:900px){.grid3,.grid4{grid-template-columns:1fr 1fr}}
@media(max-width:700px){.grid2,.grid3,.grid4{grid-template-columns:1fr}}

.box{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:28px 26px}
.box h3{font-size:20px;font-weight:900;margin-bottom:12px;line-height:1.5}
.box h4{font-size:17px;font-weight:900;margin-bottom:9px;line-height:1.5}
.box p{font-size:15px;color:var(--ink-soft);line-height:1.85}
.box .k{font-family:"Zen Kaku Gothic New";font-weight:900;font-size:13px;color:#fff;background:var(--teal);width:32px;height:32px;border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:13px}

ul.ticks{list-style:none;display:flex;flex-direction:column;gap:11px}
ul.ticks li{position:relative;padding-left:28px;font-size:15.5px;line-height:1.75}
ul.ticks li::before{content:"✓";position:absolute;left:0;color:var(--accent);font-weight:900}
ul.arrows{list-style:none;display:flex;flex-direction:column;gap:11px}
ul.arrows li{position:relative;padding-left:28px;font-size:15.5px;line-height:1.75}
ul.arrows li::before{content:"▸";position:absolute;left:0;color:var(--accent);font-weight:900}

/* ---- 安心ボックス（緑） ---- */
.safe{background:#e7f2f0;border:1px solid #bcdcd7;border-radius:var(--radius);padding:28px 26px}
.safe h4{font-size:17.5px;font-weight:900;margin-bottom:16px;color:#155f57}
.safe ul{list-style:none;display:flex;flex-direction:column;gap:14px}
.safe li{font-size:14.5px;color:#1f4a45;line-height:1.8;position:relative;padding-left:20px}
.safe li::before{content:"✓";position:absolute;left:0;color:var(--teal);font-weight:900}

/* ---- 進め方ステップ ---- */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.steps .st{background:var(--card);border:1px solid var(--line);border-radius:14px;padding:20px 18px;display:flex;flex-direction:column;gap:6px}
.steps .st .n{font-family:"Zen Kaku Gothic New";font-weight:900;font-size:13px;color:#fff;background:var(--ink);width:28px;height:28px;border-radius:8px;display:flex;align-items:center;justify-content:center;margin-bottom:4px}
.steps .st b{font-size:16px;font-weight:900}
.steps .st span:last-child{font-size:13.5px;color:var(--ink-soft);line-height:1.7}
@media(max-width:880px){.steps{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.steps{grid-template-columns:1fr}}

/* ---- 価格カード ---- */
.prices{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.pcard{background:var(--card);border:1px solid var(--line);border-radius:20px;padding:30px 28px;display:flex;flex-direction:column}
.pcard.dim{background:var(--paper-2)}
.pcard .nm{font-size:19px;font-weight:900;font-family:"Zen Kaku Gothic New"}
.pcard .fo{font-size:13.5px;font-weight:800;color:var(--teal);margin:4px 0 16px}
.pcard .pv{font-family:"Zen Kaku Gothic New";font-weight:900;font-size:31px;line-height:1.15}
.pcard .pv small{font-size:13.5px;font-weight:700;color:var(--ink-soft);display:block;margin-top:2px}
.pcard ul{list-style:none;margin:20px 0 24px;display:flex;flex-direction:column;gap:10px}
.pcard li{position:relative;padding-left:26px;font-size:14.5px;line-height:1.7}
.pcard li::before{content:"✓";position:absolute;left:0;color:var(--accent);font-weight:900}
.pcard .btn{margin-top:auto;justify-content:center}
@media(max-width:820px){.prices{grid-template-columns:1fr}}

/* ---- 注記 ---- */
.note{font-size:14px;color:var(--ink-soft);background:var(--card);border:1px dashed var(--line);border-radius:12px;padding:18px 22px;line-height:1.9}
.callout{background:var(--card);border:1px solid var(--line);border-left:5px solid var(--accent);border-radius:14px;padding:26px 28px}
.callout h3{font-size:20px;font-weight:900;margin-bottom:11px;line-height:1.5}
.callout p{font-size:15.5px;color:var(--ink-soft);line-height:1.9}
.callout p+p{margin-top:12px}

/* ---- タグ列 ---- */
.tags{display:flex;flex-wrap:wrap;gap:9px}
.tags span{font-size:13.5px;font-weight:700;color:var(--ink);background:var(--paper-2);border:1px solid var(--line);padding:7px 13px;border-radius:9px;line-height:1.4}

/* ---- CTA帯 ---- */
.cta-band{background:radial-gradient(700px 300px at 80% 0%,rgba(226,98,31,.16),transparent 60%),var(--paper-2);text-align:center;padding:66px 0}
.cta-band h2{font-size:clamp(25px,3.4vw,35px);font-weight:900;margin-bottom:14px}
.cta-band p{font-size:17px;color:var(--ink-soft);max-width:35em;margin:0 auto 28px}
.cta-band .p-cta{justify-content:center}

/* ---- フッター ---- */
footer{background:var(--ink);color:#b9b1a5;padding:46px 0 38px;font-size:14px}
.fgrid{display:flex;justify-content:space-between;flex-wrap:wrap;gap:24px;align-items:flex-start}
.fbrand{font-family:"Zen Kaku Gothic New";font-weight:900;font-size:20px;color:#fff}
.fbrand small{display:block;font-size:12px;font-weight:600;color:#8f877b;letter-spacing:.12em;margin-top:4px}
footer a{color:#d5cdc1;text-decoration:none}
footer a:hover{color:#fff}
.fdisclaimer{margin-top:28px;padding-top:20px;border-top:1px solid rgba(255,255,255,.1);font-size:12.5px;color:#8f877b;line-height:1.8}
