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

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

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

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

/* ヒーローエリア */
.hero {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.hero-logo {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  color: var(--footer-text);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  font-weight: 500;
}

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

/* ヘッダー */
header {
  margin-top: 3.5rem;
  margin-bottom: 0;
  text-align: center;
}

h1 {
  font-size: 2.6rem;
  color: var(--heading);
  margin: 0;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.tagline {
  margin-top: 0.6rem;
  color: var(--heading);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  opacity: 0.85;
}

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

h2 {
  font-size: 1.55rem;
  color: var(--heading);
  border-left: 3px solid var(--heading);
  padding-left: 0.7rem;
  margin-bottom: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 1.05rem;
  color: var(--heading);
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

/* セクション内の画像 */
section img,
.section-image {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 1.5rem auto;
}

/* テーブル */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
}

th {
  background-color: var(--accent);
  color: var(--heading);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--accent);
}

/* メニューリスト(点線区切り) */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  padding: 0.55rem 0;
  margin: 0;
  gap: 0.8rem;
}

.menu-name {
  flex: 0 0 auto;
}

.menu-list li::before {
  content: "";
  flex: 1 1 auto;
  order: 2;
  border-bottom: 1px dotted var(--accent);
  transform: translateY(-0.35em);
  min-width: 2rem;
}

.menu-price {
  order: 3;
  flex: 0 0 auto;
  color: var(--heading);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

/* リスト */
ul:not(.menu-list) {
  padding-left: 1.4rem;
  margin: 0.6rem 0;
}

ul:not(.menu-list) li {
  margin-bottom: 0.4rem;
}

/* 注記テキスト */
.note {
  font-size: 14px;
  color: var(--text);
  margin-top: 1.2rem;
  line-height: 1.8;
  opacity: 0.85;
}

/* フッター */
footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  margin-top: 6rem;
  padding: 2.2rem 24px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
}
