:root {
  --accent: #8b5e34;
  --bg: #faf6f0;
  --card: #ffffff;
  --text: #3d3229;
  --muted: #8a7a6b;
  --border: #e8ddd0;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "BIZ UDPMincho", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
}
.demo-banner {
  background: #b91c1c;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.35rem;
  font-family: sans-serif;
}
.hero {
  text-align: center;
  padding: 4.5rem 1rem 3rem;
  background: linear-gradient(160deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 70%, black) 100%);
  color: #fff;
}
.hero-tagline { margin: 0; font-size: 0.95rem; letter-spacing: 0.25em; opacity: 0.9; }
.hero-name { margin: 0.4rem 0 1.8rem; font-size: 2.4rem; font-weight: 600; letter-spacing: 0.15em; }
.hero-nav { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; }
.hero-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}
main { max-width: 720px; margin: 0 auto; padding: 0 1.2rem; }
.section { padding: 3rem 0 1rem; }
.section h2 {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1.8rem;
}
.section h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  margin: 0.6rem auto 0;
}
.about-text { text-align: center; max-width: 34em; margin: 0 auto 2rem; }

.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.8rem; }
.photo { margin: 0; }
.photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; }
.photo-placeholder span {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--border), var(--card));
  border-radius: 6px;
}
.photo figcaption { font-size: 0.8rem; text-align: center; color: var(--muted); margin-top: 0.3rem; }

.section h3 {
  font-size: 1.05rem;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.3rem;
  margin: 2rem 0 0.8rem;
}
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px dotted var(--border);
}
.menu-name small { display: block; color: var(--muted); font-size: 0.78rem; }
.menu-price { white-space: nowrap; font-weight: 600; }
.menu-note { font-size: 0.8rem; color: var(--muted); margin-top: 1.5rem; }

.news-list { list-style: none; padding: 0; margin: 0; }
.news-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.news-list time { color: var(--accent); font-size: 0.85rem; margin-right: 1rem; }

.hours { width: 100%; max-width: 420px; margin: 0 auto 1.5rem; border-collapse: collapse; }
.hours th, .hours td { padding: 0.5rem 0.8rem; border-bottom: 1px solid var(--border); text-align: left; font-weight: normal; }
.hours th { color: var(--accent); white-space: nowrap; }
.info-line { text-align: center; }
.map { width: 100%; height: 300px; border: 0; border-radius: 8px; margin-top: 1rem; }

.cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 2rem 0 1rem; }
.tel-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-family: sans-serif;
}
.sns {
  display: inline-block;
  color: var(--accent);
  border: 1px solid var(--accent);
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-family: sans-serif;
}
.footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding: 1.5rem 1rem 2rem;
}
