/* ================================
   案B:ポップ&ビビッド ─ 白×原色
================================= */
:root {
  --bg: #fffdf6;
  --bg-soft: #ffffff;
  --border: #2c2c2c;
  --text: #2c2c2c;
  --text-muted: #6b6458;
  --accent: #ff5f3d;
  --accent-2: #ffb800;
  --accent-3: #3ec46d;
  --shadow-hard: 5px 5px 0 #2c2c2c;
}

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

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
}

h1, h2, h3, .logo, .special-name {
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
}

/* ===== ヘッダー ===== */
.header {
  position: sticky;
  top: 0;
  background: #fffdf6;
  border-bottom: 4px solid var(--border);
  z-index: 10;
}

.header-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 900;
  font-size: 20px;
  white-space: nowrap;
}

.logo span {
  background: var(--accent);
  color: #fff;
  padding: 2px 10px;
  border-radius: 999px;
  margin-left: 4px;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all 0.15s ease;
}

.nav a:hover {
  border-color: var(--border);
  background: var(--accent-2);
}

.lang-toggle {
  margin-left: 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.15s ease;
}

.lang-toggle:hover {
  background: var(--accent-2);
}

@media (max-width: 680px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .nav a,
  .lang-toggle {
    margin-left: 0;
  }
}

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 90px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: var(--accent-2);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--accent-3);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  border: 3px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
  box-shadow: var(--shadow-hard);
  transform: rotate(-3deg);
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 24px;
  color: var(--accent);
  -webkit-text-stroke: 2px var(--border);
}

.hero-lead {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 36px;
}

.hero-cta {
  display: inline-block;
  padding: 16px 38px;
  background: var(--accent-3);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  border: 3px solid var(--border);
  font-size: 15px;
  font-weight: 900;
  box-shadow: var(--shadow-hard);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-cta:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--border);
}

/* ===== 各セクション共通 ===== */
.section {
  max-width: 920px;
  margin: 0 auto;
  padding: 70px 24px;
}

.section h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 28px;
  display: inline-block;
  padding: 4px 4px;
  background: linear-gradient(to top, var(--accent-2) 40%, transparent 40%);
}

.section p {
  color: var(--text-muted);
  max-width: 620px;
}

/* ===== お店について ===== */
.about-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 3px solid var(--border);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--border);
}

@media (max-width: 640px) {
  .about-card {
    grid-template-columns: 1fr;
  }
}

/* ===== 名物メニュー ===== */
.special-card {
  background: var(--bg-soft);
  border: 3px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  box-shadow: 8px 8px 0 var(--border);
}

.special-thumb {
  overflow: hidden;
  min-height: 200px;
}

.special-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-body {
  padding: 30px 34px;
}

.special-name {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.special-price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 14px;
}

.special-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.special-desc {
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 600px) {
  .special-card {
    grid-template-columns: 1fr;
  }
}

/* ===== メニュー一覧 ===== */
.menu-hint {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.menu-cat {
  display: inline-block;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  background: var(--text);
  margin: 44px 0 16px;
  padding: 8px 22px;
  border-radius: 999px;
}

.menu-cat:first-of-type {
  margin-top: 0;
}

.menu-cat span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
  margin-left: 8px;
}

.menu-cat.cat-set   { background: #ff9d00; }
.menu-cat.cat-pilaf { background: #3ec46d; }
.menu-cat.cat-dry   { background: #8a5a2b; }
.menu-cat.cat-curry { background: #e0a815; }
.menu-cat.cat-spa   { background: #e0433f; }
.menu-cat.cat-omu   { background: #ffce3d; color: var(--text); }

.menu-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.menu-item {
  width: 100%;
  background: var(--bg-soft);
  border: 3px solid var(--border);
  border-radius: 18px;
  padding: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--border);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.menu-item-photo {
  width: 100%;
  height: 116px;
  object-fit: cover;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border-bottom: 3px solid var(--border);
}

.menu-item-photo--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.menu-item-name,
.menu-item-price,
.menu-note {
  padding: 0 14px;
}

.menu-item-price {
  color: var(--accent);
  font-weight: 900;
  font-size: 15px;
}

.menu-item:hover,
.menu-item:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--border);
  outline: none;
}

.menu-note {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.menu-footnote {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
}

.menu-footnote a {
  color: var(--accent);
  font-weight: 700;
}

/* ===== アクセス ===== */
.info-list {
  border-top: 3px solid var(--border);
}

.info-row {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 3px dashed var(--border);
}

.info-row dt {
  width: 100px;
  flex-shrink: 0;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
  font-size: 12px;
  padding: 4px 0;
  height: fit-content;
}

.info-row dd {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding-top: 4px;
}

/* ===== フッター ===== */
.footer {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 12px;
  border-top: 4px solid var(--border);
}

.footer-note {
  margin-top: 8px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== メニュー写真モーダル ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(44, 44, 44, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 100;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bg-soft);
  border: 4px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--border);
  transform: scale(0.96) translateY(8px);
  transition: transform 0.22s ease;
}

.modal-overlay.is-open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.modal-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  background: var(--bg);
  border-bottom: 4px solid var(--border);
}

.modal-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: none;
}

.modal-photo span {
  font-size: 84px;
}

.modal-body {
  padding: 26px 28px 30px;
}

.modal-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 6px;
}

.modal-price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 10px;
}

.modal-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
