/* === 基本フォント・レイアウト === */
body {
  font-family: system-ui, -apple-system, "Segoe UI", "Noto Sans JP", Helvetica, Arial, sans-serif;
  line-height: 1.8;
  margin: 0;
  color: #111;
  background: #fff;
}

/* === 見出し === */
h1 {
  font-size: 1.8rem;
  margin: 1.2rem 0 0.6rem;
}
h2 {
  font-size: 1.3rem;
  margin: 1.4rem 0 0.4rem;
  border-left: 4px solid #0f172a;
  padding-left: 8px;
}

/* === リンク === */
a {
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid #94a3b8;
}
a:hover {
  border-bottom-color: #0f172a;
}

/* === 共通ラッパー === */
.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* === ナビゲーション・フッター === */
header, footer {
  background: #0f172a;
  color: #fff;
}
nav a {
  color: #fff;
  margin-right: 16px;
  text-decoration: none;
  border: none;
}
nav a:hover {
  text-decoration: underline;
}

/* === テーブル（公告一覧など） === */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.95rem;
}
th, td {
  border: 1px solid #e5e7eb;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}
th {
  background: #f1f5f9;
  font-weight: 600;
}
code {
  background: #f8fafc;
  padding: 2px 6px;
  border-radius: 6px;
}

/* === 情報ブロック（公告や注意書き） === */
.note {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  margin: 1rem 0;
}

/* === 細字補助テキスト === */
.muted {
  color: #64748b;
  font-size: 0.9rem;
}

/* === ボタン／コールトゥアクション === */
.cta a {
  display: inline-block;
  background: #0f172a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
}
.cta a:hover {
  background: #1e293b;
}
