/* 法務ページ共通スタイル（Sitegraphyトーン準拠・軽量） */
:root {
  --ink: #1f2937;
  --ink-muted: #6b7280;
  --border: #e5e7eb;
  --accent: #4f46e5;
  --bg: #fafaf9;
  --surface: #ffffff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
header.site { margin-bottom: 32px; }
header.site a { color: var(--accent); text-decoration: none; font-weight: 600; }
h1 { font-size: 1.5rem; border-bottom: 2px solid var(--ink); padding-bottom: 12px; }
h2 { font-size: 1.05rem; margin-top: 2em; }
table { width: 100%; border-collapse: collapse; background: var(--surface); font-size: 0.95rem; }
th, td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; vertical-align: top; }
th { background: #f3f4f6; white-space: nowrap; width: 12em; font-weight: 600; }
ol, ul { padding-left: 1.4em; }
li { margin: 0.3em 0; }
.muted { color: var(--ink-muted); font-size: 0.85rem; }
footer.site { margin-top: 48px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--ink-muted); }
footer.site a { color: var(--accent); }
@media (max-width: 600px) { th { width: auto; white-space: normal; } }
