/* Lock in の法的文書サイト。読みやすさだけを目的にした最小限のスタイル。
   外部CDN・Webフォントは読み込まない（システムフォントのみ）。 */

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --faint: #8a8a8a;
  --rule: #e2e2e2;
  --link: #0a4fa0;
  --card: #f7f7f7;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16181c;
    --text: #e8e8e8;
    --muted: #a8a8a8;
    --faint: #7e7e7e;
    --rule: #2e3238;
    --link: #7fb3f0;
    --card: #1e2126;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0 20px 64px;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  overflow-wrap: break-word;
}

/* 上部バー: ホームへの戻りと日英切り替え */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 0 18px;
  border-bottom: 1px solid var(--rule);
}

.topbar .home {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}

.topbar .lang {
  font-size: 14px;
  color: var(--link);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  white-space: nowrap;
}

.topbar .lang:hover,
.topbar .home:hover {
  text-decoration: underline;
}

main {
  max-width: 720px;
  margin: 0 auto;
}

/* 見出し。階層が一目で分かるよう、大きさと余白に明確な差をつける */
h1 {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 40px 0 8px;
}

h2 {
  font-size: 21px;
  line-height: 1.5;
  font-weight: 700;
  margin: 48px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rule);
}

h3 {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--muted);
  margin: 32px 0 8px;
}

p {
  margin: 0 0 18px;
}

ul,
ol {
  margin: 0 0 20px;
  padding-left: 1.5em;
}

li {
  margin-bottom: 8px;
}

li:last-child {
  margin-bottom: 0;
}

a {
  color: var(--link);
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 36px 0;
}

/* 見出し直下の最終更新日 */
.updated {
  color: var(--faint);
  font-size: 14px;
  margin: 0 0 8px;
}

h1 + .updated,
.updated + h1 {
  margin-top: 0;
}

/* トップページの文書一覧 */
.intro {
  color: var(--muted);
  margin-bottom: 32px;
}

.docs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.docs li {
  margin-bottom: 12px;
}

.docs a {
  display: block;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
}

.docs a:hover {
  border-color: var(--faint);
}

.docs .name {
  display: block;
  font-weight: 700;
  font-size: 17px;
}

.docs .sub {
  display: block;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.6;
}

footer {
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  color: var(--faint);
  font-size: 13px;
}

footer p {
  margin: 0;
}

@media (max-width: 480px) {
  body {
    font-size: 15.5px;
    line-height: 1.85;
    padding: 0 16px 48px;
  }

  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 19px;
    margin-top: 40px;
  }

  h3 {
    font-size: 16px;
  }
}
