:root {
  color-scheme: light;
  --navy: #16213e;
  --navy-mid: #27385f;
  --accent: #c0392b;
  --line: #dfe3e8;
  --radius: 12px;
  --shadow: 0 3px 16px rgba(22, 33, 62, .08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: #202938;
  background: #f5f7fa;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  line-height: 1.7;
}
button, input, select, textarea { font-family: inherit; }
a { color: var(--navy-mid); }
.site-header {
  padding: 12px max(18px, calc((100% - 920px) / 2));
  background: var(--navy);
}
.site-header a { display:inline-flex; align-items:center; min-height:40px; padding:7px 14px; border:1px solid rgba(255,255,255,.35); border-radius:999px; color:#fff; font-size:16px; font-weight:700; text-decoration:none; }
main, footer { width: min(920px, calc(100% - 32px)); margin: 0 auto; }
main { padding: 26px 0 48px; }
h1 { margin: 8px 0; color: #16213e; font-size: clamp(25px, 5vw, 36px); line-height: 1.35; }
h2 { color: #16213e; font-size: 21px; }
h3 { margin: 0 0 4px; font-size: 18px; }
p { margin: 5px 0; }
.lead { margin-bottom: 22px; }
.breadcrumb { font-size: 14px; }
.prefecture-picker { display: block; margin: 20px 0; font-weight: 700; }
.prefecture-picker select {
  display: block;
  width: min(100%, 420px);
  margin-top: 6px;
  padding: 12px;
  border: 1px solid #7c8799;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
}
.count { color: #566174; }
.status-guide { margin: 14px 0; color: #566174; font-size: 14px; }
.status {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 999px;
  vertical-align: middle;
  font-size: 12px;
  font-weight: 700;
}
.status.planned { color: #725400; background: #fff0bc; }
.date-section > h2 {
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 3px solid #d8a94c;
}
.meeting-list { display: grid; gap: 12px; }
.meeting-card {
  padding: 16px;
  border: 1px solid #d9dee7;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.time { color: #9a2537; font-weight: 700; }
.address, .recurrence { color: #566174; font-size: 14px; }
.exception { color: #a32235; font-weight: 700; }
.actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.button {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
.button.secondary { background: var(--navy-mid); }
.prefecture-links { padding: 0; list-style: none; }
.prefecture-links a {
  display: flex;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid #d9dee7;
  border-radius: var(--radius);
  background: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
}
footer { padding: 22px 0 40px; border-top: 1px solid #cbd2dd; color: #566174; font-size: 14px; }
@media (min-width: 720px) {
  .meeting-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
