/* THE GOSHO — 法務ページ共通スタイル。
   index.html の実測トークン(terracotta / SF Pro JP)に合わせている。 */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --text: #1d1d1f;
  --text-sub: #86868b;
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --accent: #C2653D;
  --accent-dark: #A4522E;
  --line: rgba(0,0,0,0.10);
  --content: 720px;
}

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons", -apple-system,
               BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
               "Yu Gothic", Meiryo, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

/* ---------- ナビ ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--content); margin: 0 auto; padding: 0 24px;
  height: 52px; display: flex; align-items: center; justify-content: space-between;
}
.nav-title {
  font-size: 21px; font-weight: 600; line-height: 1.15;
  letter-spacing: 0.231px; text-decoration: none; color: var(--text);
}
.nav-back { font-size: 15px; text-decoration: none; }

/* ---------- 本文 ---------- */
main { max-width: var(--content); margin: 0 auto; padding: 56px 24px 96px; }

h1 {
  font-size: 34px; font-weight: 700; line-height: 1.2;
  margin: 0 0 8px; letter-spacing: 0.2px;
}
.updated { color: var(--text-sub); font-size: 14px; margin: 0 0 40px; }

h2 {
  font-size: 22px; font-weight: 600; line-height: 1.3;
  margin: 44px 0 12px; letter-spacing: 0.2px;
}
h3 {
  font-size: 18px; font-weight: 600; line-height: 1.4;
  margin: 28px 0 10px;
}
p { margin: 0 0 16px; }
ul, ol { margin: 0 0 16px; padding-left: 1.4em; }
li { margin: 0 0 8px; }
strong { font-weight: 600; }

.lead { font-size: 17px; color: var(--text); margin-bottom: 32px; }

/* ---------- 表 ---------- */
.table-wrap { overflow-x: auto; margin: 0 0 20px; }
table {
  border-collapse: collapse; width: 100%; font-size: 15px; line-height: 1.6;
  min-width: 480px;
}
th, td {
  text-align: left; vertical-align: top;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
}
th { font-weight: 600; background: var(--bg-alt); white-space: nowrap; }

/* ---------- フッター ---------- */
footer {
  max-width: var(--content); margin: 0 auto; padding: 32px 24px 64px;
  border-top: 1px solid var(--line);
  font-size: 13px; line-height: 1.6; color: var(--text-sub);
}
footer a { color: var(--text-sub); margin-right: 18px; }
footer p { margin: 12px 0 0; }

@media (max-width: 600px) {
  main { padding: 40px 20px 72px; }
  h1 { font-size: 28px; }
  h2 { font-size: 20px; }
}
