/* 法定ページ共通スタイル（LP本体のトーンに合わせた最小構成） */
:root{
  --ink:#1c1a17;
  --wine:#8f3a28;
  --wine-dark:#6d2b1d;
  --cream:#faf7f1;
  --paper:#fffdfa;
  --line:#e8e1d5;
  --muted:rgba(28,26,23,.62);
}
*{margin:0;padding:0;box-sizing:border-box}
body{
  background:var(--cream);
  color:var(--ink);
  font-family:'Zen Kaku Gothic New',system-ui,sans-serif;
  -webkit-font-smoothing:antialiased;
  line-height:1.9;
}
a{color:var(--wine);text-decoration:none}
a:hover{color:var(--wine-dark);text-decoration:underline}

/* ヘッダー */
.lg-head{
  position:sticky;top:0;z-index:20;
  background:rgba(250,247,241,.94);
  backdrop-filter:saturate(140%) blur(8px);
  border-bottom:1px solid var(--line);
  padding:16px 40px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.lg-head__title{
  font-family:'Zen Old Mincho',serif;
  font-size:15px;line-height:1.5;letter-spacing:.03em;color:var(--ink);
}
.lg-head__back{
  font-size:13.5px;letter-spacing:.03em;white-space:nowrap;
  padding:9px 20px;border:1px solid rgba(28,26,23,.22);border-radius:999px;color:var(--ink);
  transition:background .2s,border-color .2s;
}
.lg-head__back:hover{background:#fff;border-color:var(--wine);color:var(--wine);text-decoration:none}

/* 本文 */
.lg-main{max-width:860px;margin:0 auto;padding:64px 40px 96px}
.lg-eyebrow{
  font-size:12px;letter-spacing:.34em;color:var(--wine);
  margin-bottom:18px;font-weight:500;
}
h1{
  font-family:'Zen Old Mincho',serif;
  font-size:38px;line-height:1.45;letter-spacing:.03em;font-weight:600;
  padding-left:18px;border-left:4px solid var(--wine);
  margin-bottom:20px;
}
.lg-lead{font-size:15.5px;color:var(--muted);line-height:2;margin-bottom:16px}
.lg-updated{font-size:13px;color:rgba(28,26,23,.45);margin-bottom:44px}

h2{
  font-family:'Zen Old Mincho',serif;
  font-size:21px;line-height:1.6;letter-spacing:.03em;font-weight:600;
  margin:52px 0 16px;
}
h2:first-of-type{margin-top:0}
p{font-size:15.5px;line-height:2.05;margin-bottom:14px}
ul,ol{margin:0 0 16px 1.3em}
li{font-size:15.5px;line-height:2.05;margin-bottom:6px}

/* 定義テーブル（特商法表記） */
.lg-table{
  width:100%;border-collapse:collapse;
  background:var(--paper);
  border:1px solid var(--line);border-radius:3px;overflow:hidden;
  margin-bottom:20px;
}
.lg-table th,.lg-table td{
  text-align:left;vertical-align:top;
  padding:18px 22px;border-bottom:1px solid var(--line);
  font-size:15px;line-height:1.95;
}
.lg-table tr:last-child th,.lg-table tr:last-child td{border-bottom:0}
.lg-table th{
  width:31%;font-weight:600;letter-spacing:.02em;
  background:#f4f0e7;color:var(--ink);
  border-right:1px solid var(--line);
}
.lg-table td{color:rgba(28,26,23,.82)}
.lg-note{font-size:13.5px;color:var(--muted);line-height:1.95}

/* 注意ボックス */
.lg-callout{
  background:#f7efe9;border:1px solid #e8bcac;border-radius:3px;
  padding:20px 24px;margin:20px 0 8px;
}
.lg-callout p{font-size:14.5px;line-height:1.95;margin:0}
.lg-callout p + p{margin-top:10px}

/* フッター */
.lg-foot{
  background:var(--ink);color:rgba(255,255,255,.75);
  padding:36px 40px;
}
.lg-foot__name{
  font-family:'Zen Old Mincho',serif;font-size:16px;color:#fff;
  letter-spacing:.03em;margin-bottom:14px;
}
.lg-foot__row{display:flex;flex-wrap:wrap;gap:8px 30px;font-size:14px;line-height:1.8}
.lg-foot a{color:#fff}
.lg-foot__links{
  margin-top:22px;padding-top:20px;border-top:1px solid rgba(255,255,255,.14);
  display:flex;flex-wrap:wrap;gap:10px 26px;font-size:13.5px;line-height:1.8;
}
.lg-foot__links a{color:rgba(255,255,255,.8)}
.lg-foot__c{margin-top:18px;font-size:12.5px;color:rgba(255,255,255,.42)}

@media (max-width:720px){
  .lg-head{padding:13px 20px}
  .lg-head__title{font-size:13px}
  .lg-head__back{padding:8px 15px;font-size:12.5px}
  .lg-main{padding:44px 20px 72px}
  h1{font-size:27px;padding-left:14px}
  h2{font-size:19px;margin:42px 0 14px}
  p,li,.lg-lead{font-size:15px}
  .lg-table th,.lg-table td{display:block;width:100%;border-right:0}
  .lg-table th{border-bottom:0;padding:14px 18px 4px;background:#f4f0e7}
  .lg-table td{padding:4px 18px 16px}
  .lg-foot{padding:30px 20px}
}
