:root {
  --fg: #111;
  --muted: #666;
  --line: #e5e7eb;
  --bg: #fff;
  --accent: #000;
  --maxw: 1040px;
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--fg);
  background: #fafafa;
}
/* キーアート */
.hero {
  background: #000;
  text-align: center
}
.hero img {
  width: 800px;
  height: auto;
  display: block;
  max-width: 90%;
  margin: 0 auto;
}
/* キャッチコピー */
.site-title-bar {
  width: 100%;
  background-color: #333;
  padding: 6px 0;
  text-align: center;
}
.site-title-bar p {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  margin: 0;
}
/* セクション */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 16px;
}
.section-title {
  font-size: 24px;
  margin: 8px 0 6px;
}
.week-label {
  font-size: 24px;
  font-weight: bold;
  color: var(--muted);
  margin: 8px 0 24px;
}
/*案内メッセージ*/
.info-note {
  width: 100%;
  background: #f9f9f9;
  border-left: 4px solid #333;
  margin: 10px 0 10px 0;
}
.info-note p {
  margin: 0;
  padding: 10px 14px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}
/* 日付カード＋時間帯 */
.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width:640px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width:960px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .03);
}
.card-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.dow {
  font-size: 12px;
  color: var(--muted);
}
.date {
  font-size: 18px;
  font-weight: 600;
}
.slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}
.pill {
  display: inline-block;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  background: #fff;
  color: #111;
  min-width: 120px;
  text-align: center;
}
.pill.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
/* 注意事項 */
.notes {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  padding-left: 18px;
}
.notes li + li {
  margin-top: 4px;
}
/* フッター */
.footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 24px 16px;
}