/* SUNARU 法務ページ共通スタイル（配色トークンは index.html と同値） */
:root {
  --base-bg: #F0F0EE;
  --surface: #FFFFFF;
  --base-text: #2C2C2A;
  --base-muted: #5F5E5A;
  --yohaku: #854F0B;
  --accent: #0C447C;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  background: var(--base-bg);
  color: var(--base-text);
  line-height: 1.8;
}
.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
header.page { padding: 48px 0 8px; }
header.page .brand {
  font-size: 13px; letter-spacing: 0.35em; color: var(--base-muted); font-weight: 600;
}
header.page .brand a { color: inherit; text-decoration: none; }
main { padding: 24px 0 64px; }
article {
  background: var(--surface); border-radius: 16px;
  border: 1px solid rgba(95, 94, 90, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 36px 32px;
}
article h1 { font-size: 24px; margin-bottom: 8px; letter-spacing: 0.04em; }
article .updated { font-size: 13px; color: var(--base-muted); margin-bottom: 28px; }
article h2 {
  font-size: 17px; margin: 32px 0 12px; padding-left: 12px;
  border-left: 6px solid var(--accent);
}
article h3 { font-size: 15px; margin: 20px 0 8px; }
article p { font-size: 14.5px; margin-bottom: 12px; }
article ul, article ol { font-size: 14.5px; padding-left: 24px; margin-bottom: 12px; }
article li { margin-bottom: 4px; }
article table {
  width: 100%; border-collapse: collapse; font-size: 13.5px; margin-bottom: 12px;
}
article th, article td {
  border: 1px solid rgba(95, 94, 90, 0.25); padding: 8px 10px; text-align: left;
  vertical-align: top;
}
article th { background: rgba(95, 94, 90, 0.06); font-weight: 600; }
article strong { font-weight: 700; }
.notice {
  background: rgba(133, 79, 11, 0.06); border: 1px dashed rgba(133, 79, 11, 0.5);
  border-radius: 8px; padding: 12px 16px; font-size: 14px; margin-bottom: 12px;
}
footer {
  background: var(--surface); border-top: 1px solid rgba(95, 94, 90, 0.15);
  padding: 32px 0; text-align: center; font-size: 13px; color: var(--base-muted);
}
footer a { color: var(--accent); text-decoration: none; margin: 0 10px; }
footer .copyright { margin-top: 16px; font-size: 12px; }
