:root {
  --bg: #FBF7F0;
  --text: #222222;
  --heading: #3A2A1A;
  --accent: #D9C5A3;
  --footer-bg: #3A2A1A;
  --footer-text: #FBF7F0;
  color-scheme: light;
}

html, body {
  background-color: #FBF7F0 !important;
  color: #222222 !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background-color: var(--bg);
  color: var(--text);
}

/* バナー */
.workshop-banner {
  background-color: var(--accent);
  color: var(--heading);
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
}

/* コンテナ */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ヘッダー */
header {
  text-align: center;
  padding: 3rem 24px 2rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--heading);
  letter-spacing: 0.18em;
}

/* セクション */
section {
  margin-top: 3rem;
}

h2 {
  font-size: 1.6rem;
  color: var(--heading);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.4rem;
  margin-bottom: 1.4rem;
}

h3 {
  font-size: 1rem;
  color: var(--heading);
  margin: 1.2rem 0 0.4rem;
}

/* テーブル共通 */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

table th,
table td {
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--accent);
  text-align: left;
}

table th {
  color: var(--heading);
  font-weight: bold;
}

/* メニューセクション */
.menu-category {
  margin-bottom: 2rem;
}

.menu-category h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

/* 営業時間テーブル */
.hours-table th:first-child {
  width: 30%;
}

/* 注記 */
.note {
  font-size: 13px;
  color: var(--text);
  margin-top: 0.8rem;
  line-height: 1.6;
}

/* アクセス */
.access-block {
  margin-bottom: 1.8rem;
}

.access-block ul {
  list-style: none;
  padding: 0;
}

.access-block ul li {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--accent);
  font-size: 15px;
}

.access-block ul li:last-child {
  border-bottom: none;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.payment-item h4 {
  font-size: 0.9rem;
  color: var(--heading);
  margin-bottom: 0.3rem;
}

.payment-item p {
  font-size: 14px;
  line-height: 1.6;
}

/* フッター */
footer {
  margin-top: 4rem;
  background-color: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 1.5rem 24px;
  font-size: 13px;
}
