/* 規約・ポリシーページ共通スタイル（アプリと同じ白基調＋空色） */
:root {
  color-scheme: light;
  --bg: #ffffff; --surface: #ffffff; --line: #e4e9f0;
  --text: #16202f; --muted: #6b7789; --primary: #38c2f5; --link: #0b82b8;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 15px/1.9 -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
}
header {
  border-bottom: 1px solid var(--line); padding: 14px 20px;
  display: flex; align-items: center; gap: 10px; position: sticky; top: 0; background: var(--surface);
}
header .mark { width: 30px; height: 30px; border-radius: 9px; background: var(--primary); display: grid; place-items: center; }
header .mark svg { width: 18px; height: 18px; fill: none; stroke: #05334c; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
header a { color: var(--text); text-decoration: none; font-weight: 700; }
main { max-width: 760px; margin: 0 auto; padding: 28px 20px 80px; }
h1 { font-size: 22px; margin: 0 0 6px; }
.updated { color: var(--muted); font-size: 12px; margin: 0 0 28px; }
h2 { font-size: 16px; margin: 32px 0 8px; padding-top: 8px; border-top: 1px solid var(--line); }
p, li { font-size: 14px; }
ul, ol { padding-left: 1.3em; }
a { color: var(--link); }
table { border-collapse: collapse; width: 100%; font-size: 14px; margin: 8px 0; }
th, td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; vertical-align: top; }
th { background: #f2f5f9; width: 30%; white-space: nowrap; }
.note { background: #f2f5f9; border-radius: 10px; padding: 12px 14px; font-size: 13px; color: var(--muted); }
footer { border-top: 1px solid var(--line); padding: 20px; text-align: center; font-size: 12px; color: var(--muted); }
footer a { margin: 0 8px; }
