/* ============================================
   利用規約・プライバシーポリシー共通スタイル
   theme.css のCSS変数に依存
   ============================================ */

/* 残業モード: html.overtimeでbodyにクラスを伝播 */
html.overtime body {
  --navy: #e2e8f0;
  --navy-light: #c8d0dc;
  --tie-blue: #7ab0d4;
  --tie-blue-light: #9ac4e0;
  --shirt-white: #1a2744;
  --bg-light: #1e2230;
  --bg-card: #282c3a;
  --text-main: #e2e8f0;
  --text-sub: #a0a8b8;
  --text-muted: #6a7488;
  --border-light: #3a4258;
  --gold: #d4b030;
  --gold-light: #e8c840;
}

body {
  font-family: 'DotGothic16', cursive;
  background: var(--bg-light);
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 16px;
  line-height: 1.8;
}

h1 {
  text-align: center;
  color: var(--tie-blue-light);
  font-size: 20px;
  margin-bottom: 8px;
}

h2 {
  color: var(--tie-blue-light);
  font-size: 15px;
  margin-top: 28px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 4px;
}

p, li {
  font-size: 13px;
  color: var(--text-sub);
}

strong {
  color: var(--text-main);
}

ul {
  padding-left: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 12px;
}

th, td {
  border: 1px solid var(--border-light);
  padding: 8px;
  text-align: left;
}

th {
  background: var(--bg-card);
  color: var(--text-main);
}

td {
  color: var(--text-sub);
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 32px;
  color: var(--tie-blue-light);
  text-decoration: none;
  font-size: 14px;
}

.back-link:hover {
  text-decoration: underline;
}

.updated {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}

.contact {
  color: var(--tie-blue-light);
}
