/* 法務ページ(プライバシーポリシー)共通のスタイル。
   トップページ(public/index.html)のパレットと同じものを使う。
   ja / en の 2 ページで共有するため、ここだけ外部ファイルにしている
   (同一オリジン。外部 CDN 等への依存は無い)。 */
:root {
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --text: #1a2233;
  --muted: #5c6a80;
  --line: #e4e8ee;
  /* ブランドパレット(Design/README.txt) */
  --ink: #16161e;
  --accent: #e5502a;
  --radius: 14px;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg-alt);
  color: var(--text);
  font-family:
    'Hiragino Sans', 'Yu Gothic', 'Noto Sans JP', system-ui, -apple-system,
    sans-serif;
  line-height: 1.85;
  font-size: 16px;
}
body[lang='en'] {
  font-family: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 56px;
}
.topbar {
  background: var(--ink);
  border-bottom: 5px solid var(--accent);
}
.topbar .wrap {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a {
  color: #ece6da;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.topbar a:hover {
  text-decoration: underline;
}
.topbar .home {
  font-weight: 700;
  letter-spacing: 0.08em;
}
article {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 28px;
}
h1 {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 6px;
}
.updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
}
h2 {
  font-size: 18px;
  margin: 40px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
h3 {
  font-size: 16px;
  margin: 26px 0 10px;
  color: var(--ink);
}
p,
li {
  font-size: 15px;
}
ul {
  padding-left: 22px;
}
li {
  margin-bottom: 6px;
}
a {
  color: #b93b1a;
}
code {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 5px;
  font-size: 13px;
  word-break: break-all;
}
/* 表は狭い画面で横スクロールさせる(本文は横スクロールさせない) */
.tableScroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 14px 0;
  font-size: 15px;
}
th,
td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
th {
  background: var(--bg-alt);
  font-weight: 700;
  white-space: nowrap;
}
td th,
tr > th:first-child {
  white-space: normal;
}
.callout {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 18px 0;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.langToggle {
  float: right;
  font-size: 14px;
}
footer {
  margin-top: 32px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
@media (max-width: 600px) {
  article {
    padding: 24px 18px;
    border-radius: 10px;
  }
  h1 {
    font-size: 21px;
  }
  th {
    white-space: normal;
  }
}
