/* 法務・運営系ページ（privacy / terms / about / contact / 404）の共通スタイル。
   チャット画面の styles.css とは別系統で、こちらは1カラムの読み物レイアウト。
   カラー変数は styles.css と同じ値を使い、サイト全体で見た目を揃える。 */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

:root {
  --sea-deep: #0b3d55;
  --sea: #136b8c;
  --sand-light: #faf6ec;
  --ink: #173238;
  --line: #d9cdb0;
  --card: #ffffff;
  --muted: #6b7d80;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Zen Kaku Gothic New', system-ui, sans-serif;
  background: var(--sand-light);
  color: var(--ink);
  line-height: 1.8;
  padding: 24px 16px 48px;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
}
h1 {
  font-size: 1.5rem;
  color: var(--sea-deep);
  margin: 0 0 4px;
}
h2 {
  font-size: 1.1rem;
  color: var(--sea);
  margin: 28px 0 8px;
  border-left: 4px solid var(--sea);
  padding-left: 10px;
}
h3 {
  font-size: 1rem;
  color: var(--sea-deep);
  margin: 20px 0 4px;
}
p,
li,
dd,
dt,
td,
th {
  font-size: 0.95rem;
}
a {
  color: var(--sea);
}
ul,
ol {
  padding-left: 1.4em;
}
.meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 20px;
}
.lead {
  margin: 0 0 20px;
}

/* 運営者情報などの項目表。狭い画面では横スクロールさせず縦積みにする */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 0;
}
.info-table th,
.info-table td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}
.info-table th {
  width: 30%;
  white-space: nowrap;
  color: var(--sea-deep);
  background: #fbf8f1;
  font-weight: 700;
}
@media (max-width: 480px) {
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }
  .info-table th {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* 注意書き・補足のボックス */
.note {
  background: #fbf8f1;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 16px 0 0;
}
.note p {
  margin: 0;
}
.note p + p {
  margin-top: 8px;
}

.back {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.9rem;
}

/* 全ページ共通のフッターナビ（法務ページへの到達手段） */
.page-nav {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 0.85rem;
  line-height: 2;
  color: var(--muted);
}
.page-nav a {
  white-space: nowrap;
}
footer {
  max-width: 760px;
  margin: 12px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

/* 404 ページ用の中央寄せ */
.center {
  text-align: center;
}
.center h1 {
  margin-bottom: 12px;
}
.big-code {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sea);
  margin: 0;
  line-height: 1.2;
}
