/* ═══════════════════════════════════════════════════════════
   legal_pages.css — 法務ページ共通スタイル
   Stripe審査・法務・料金導線ページ
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #1e1e2e;
  color: #cdd6f4;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
}
.page-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 100px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.site-nav a {
  color: #89b4fa;
  text-decoration: none;
  font-size: .9rem;
}
.site-nav a:hover { text-decoration: underline; }
h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #cba6f7;
  margin-bottom: 8px;
}
.updated {
  font-size: .85rem;
  color: #6c7086;
  margin-bottom: 40px;
}
h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #89b4fa;
  margin: 36px 0 12px;
  border-left: 3px solid #89b4fa;
  padding-left: 12px;
}
p { margin-bottom: 12px; color: #bac2de; font-size: .95rem; }
ul { margin: 8px 0 12px 24px; color: #bac2de; font-size: .95rem; }
ul li { margin-bottom: 6px; }
a { color: #89b4fa; }
a:hover { text-decoration: underline; }
table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: .9rem;
}
th {
  background: #313244;
  color: #cba6f7;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #45475a;
  width: 220px;
  white-space: nowrap;
  vertical-align: top;
}
td {
  padding: 12px 16px;
  border: 1px solid #45475a;
  color: #bac2de;
  vertical-align: top;
}
p.note {
  font-size: .85rem;
  color: #6c7086;
  margin-top: 24px;
}
/* ─── 共通フッター ─── */
.page-footer-nav {
  border-top: 1px solid #313244;
  padding: 28px 24px;
  text-align: center;
  margin-top: 40px;
}
.page-footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  list-style: none;
}
.page-footer-links a {
  color: #89b4fa;
  text-decoration: none;
  font-size: .85rem;
}
.page-footer-links a:hover { text-decoration: underline; }
.page-footer-copy {
  font-size: .8rem;
  color: #6c7086;
}
/* ─── モバイル対応 ─── */
@media (max-width: 600px) {
  .page-wrap { padding: 32px 16px 80px; }
  h1 { font-size: 1.4rem; }
  th { width: 110px; font-size: .85rem; }
  td { font-size: .85rem; }
  .page-footer-links { gap: 12px; }
}
