/* legal.css — アプリの森・法律ページ共通スタイル */
:root{
  --ink:#1f2328; --sub:#6b7280; --line:#e5e7eb; --bg:#ffffff; --accent:#e8508a;
}
*{box-sizing:border-box}
body{
  font-family:system-ui,-apple-system,"Hiragino Kaku Gothic ProN",sans-serif;
  color:var(--ink); background:var(--bg); line-height:1.8;
  max-width:760px; margin:0 auto; padding:28px 18px 80px; font-size:15.5px;
}
header.lg{border-bottom:1px solid var(--line); padding-bottom:14px; margin-bottom:24px}
header.lg .brand{font-weight:700; color:var(--accent); font-size:14px; letter-spacing:.04em}
h1{font-size:22px; margin:6px 0 4px}
.updated{color:var(--sub); font-size:13px; margin:0}
h2{font-size:17px; margin:30px 0 8px; padding-top:6px}
p{margin:8px 0}
a{color:#2563eb}
.fill{background:#fff7d6; color:#9a6b00; border:1px dashed #e0b400; border-radius:6px; padding:1px 7px; font-weight:700; font-size:14px}
.note{background:#f6f8fa; border:1px solid var(--line); border-radius:10px; padding:12px 14px; color:var(--sub); font-size:13.5px; margin:18px 0}
table.spec{border-collapse:collapse; width:100%; margin:10px 0}
table.spec th,table.spec td{border:1px solid var(--line); padding:10px 12px; text-align:left; vertical-align:top; font-size:14.5px}
table.spec th{background:#fafafa; width:38%; white-space:nowrap; font-weight:700}
nav.lgnav{margin:8px 0 0; font-size:13.5px}
nav.lgnav a{margin-right:14px}
footer.lg{margin-top:40px; padding-top:16px; border-top:1px solid var(--line); color:var(--sub); font-size:13px}
@media (prefers-color-scheme: dark){
  :root{--ink:#e6e6e6; --sub:#9aa0a6; --line:#33373d; --bg:#15171a}
  table.spec th{background:#1d2024}
  .note{background:#1d2024}
  .fill{background:#3a2f00; color:#ffd76b; border-color:#7a5e00}
}
