:root {
  --color-red: #D9482F;
  --color-red-deep: #C0392B;   /* 白文字ボタン/バッジ用(AA確保: 約5.4:1) */
  --color-green: #4F6B3F;
  --color-orange: #E08A37;
  --color-cream: #FBF6EC;
  --color-cream-deep: #F2E8D5;
  --color-ink: #3A2D28;
  --font-body: "Zen Maru Gothic", system-ui, sans-serif;
  --font-display: "Mochiy Pop One", var(--font-body);
  --maxw: 720px;            /* スマホ中心の読みやすい幅 */
  --radius: 18px;
  --tap-min: 52px;          /* タップ領域の最小高さ(年配対応) */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 18px;          /* 年配対応の大きめ本文 */
  line-height: 1.8;
  color: var(--color-ink);
  background: var(--color-cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* 大きく押しやすいボタン(手描き風の厚みのある影) */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--tap-min); padding: 0 26px;
  border-radius: 999px; font-weight: 700; font-size: 1.08rem;
  text-decoration: none; border: 3px solid var(--color-ink);
  background: #fff; color: var(--color-ink);
  box-shadow: 3px 3px 0 rgba(58, 45, 40, .22);
  transition: transform .08s ease, box-shadow .08s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 rgba(58, 45, 40, .22); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 rgba(58, 45, 40, .22); }
.btn .ico { width: 1.25em; height: 1.25em; }
.btn--primary { background: var(--color-red-deep); color: #fff; border-color: var(--color-ink); }
.btn--ghost { background: #fff; }

.section { padding: 56px 0; }
.section__title { font-family: var(--font-display); font-size: 1.9rem; color: var(--color-red); text-align: center; margin-bottom: 24px; }

/* ===== ヒーロー ===== */
.hero {
  position: relative; overflow: hidden; text-align: center; padding: 0 0 64px;
  background:
    radial-gradient(78% 56% at 50% 80%, rgba(224,138,55,.20), transparent 60%),
    radial-gradient(125% 100% at 50% 0%, #fffdf8 0%, var(--color-cream) 60%);
}
/* 屋台テント(縞) */
.hero__awning {
  height: 38px; border-bottom: 4px solid var(--color-ink);
  background: repeating-linear-gradient(90deg, var(--color-red) 0 32px, #fbeee9 32px 64px);
}
.hero__awning::after {
  content: ""; display: block; height: 16px; margin-bottom: -16px;
  background: radial-gradient(14px at 16px -2px, var(--color-cream) 0 12px, transparent 13px) repeat-x;
  background-size: 32px 16px; position: relative; z-index: 2;
}
/* 言語切り替え */
.lang-switch {
  position: absolute; top: 14px; right: 14px; z-index: 6;
  background: #fff; border: 2.5px solid var(--color-ink); border-radius: 999px;
  padding: 7px 15px; font-weight: 700; font-size: .92rem; text-decoration: none;
  box-shadow: 2px 2px 0 rgba(58,45,40,.2);
}
.lang-switch:active { transform: translate(2px,2px); box-shadow: none; }
/* 見出し */
.hero__sub { margin-top: 26px; color: var(--color-green); font-weight: 700; letter-spacing: .16em; font-size: 1rem; }
.hero__sub::before, .hero__sub::after { content: "•"; color: var(--color-orange); margin: 0 .55em; }
.hero__title {
  font-family: var(--font-display); font-size: clamp(2.7rem, 11.5vw, 4rem);
  color: var(--color-red); line-height: 1; margin: .08em 0 0;
  text-shadow: 2px 2px 0 #fff, 4px 5px 0 rgba(58,45,40,.16);
}
/* キャラ・湯気・吹き出しの舞台 */
.hero__stage { position: relative; width: min(92%, 440px); margin: 10px auto 0; padding-top: 104px; }
.hero__char {
  position: relative; z-index: 2; margin: 0 auto; width: auto;
  max-height: 54vh; max-width: min(70vw, 290px);
  filter: drop-shadow(0 12px 14px rgba(58,45,40,.16));
  animation: bob 4.5s ease-in-out infinite;
}
.hero__char--octo { max-width: min(64vw, 250px); margin-top: 40px; }
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-9px) } }
/* 湯気(アツアツ) */
.steam { position: absolute; left: 50%; top: 122px; transform: translateX(-50%); display: flex; gap: 22px; z-index: 1; pointer-events: none; }
.steam span {
  width: 12px; height: 52px; border-radius: 50%; opacity: 0; filter: blur(3px);
  background: linear-gradient(to top, transparent, rgba(150,138,128,.55));
  animation: steam 3.4s ease-in-out infinite;
}
.steam span:nth-child(2) { height: 66px; animation-delay: .7s; }
.steam span:nth-child(3) { animation-delay: 1.4s; }
@keyframes steam {
  0% { opacity: 0; transform: translateY(14px) scaleX(1); }
  35% { opacity: .85; }
  100% { opacity: 0; transform: translateY(-44px) scaleX(1.5); }
}
/* 手描き吹き出し */
.hero__bubble {
  position: absolute; right: 8px; top: 0; z-index: 4;
  background: #fff; color: var(--color-ink); font-family: var(--font-display);
  font-size: clamp(1.05rem, 4.6vw, 1.45rem); line-height: 1.32; text-align: center;
  padding: 15px 17px; border: 3.5px solid var(--color-ink); border-radius: 28px 28px 28px 8px;
  box-shadow: 3px 4px 0 rgba(58,45,40,.18); transform: rotate(3deg);
  animation: wobble 5s ease-in-out infinite;
}
.hero__bubble::after {
  content: ""; position: absolute; left: 22px; bottom: -15px; width: 22px; height: 22px;
  background: #fff; border-right: 3.5px solid var(--color-ink); border-bottom: 3.5px solid var(--color-ink);
  transform: rotate(45deg);
}
@keyframes wobble { 0%,100% { transform: rotate(3deg) } 50% { transform: rotate(-1deg) } }
/* CTA */
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; position: relative; z-index: 4; }
/* 登場アニメ(staggered) */
.hero__sub, .hero__title, .hero__stage, .hero__cta { opacity: 0; animation: rise .7s ease forwards; }
.hero__sub { animation-delay: .05s; }
.hero__title { animation-delay: .18s; }
.hero__stage { animation-delay: .32s; }
.hero__cta { animation-delay: .5s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
/* モーション軽減設定への配慮 */
@media (prefers-reduced-motion: reduce) {
  .hero__char, .hero__bubble, .steam span { animation: none; }
  .hero__sub, .hero__title, .hero__stage, .hero__cta { opacity: 1; animation: none; }
}

/* ===== こだわり ===== */
.about { text-align: center; }
.about__img { width: min(92%, 520px); margin: 0 auto 18px; }
.about__text { max-width: 30em; margin: 0 auto; font-size: 1.12rem; }
.badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.badge { font-weight: 700; font-size: .98rem; padding: 8px 16px; border-radius: 999px; border: 2.5px solid var(--color-ink); color: #fff; box-shadow: 2px 2px 0 rgba(58,45,40,.18); }
.badge--green { background: var(--color-green); }
.badge--red { background: var(--color-red-deep); }
.badge--orange { background: var(--color-orange); color: var(--color-ink); }
.about__owner { max-width: 26em; margin: 24px auto 0; background: #fff; border: 2.5px dashed var(--color-orange); border-radius: var(--radius); padding: 16px 20px; font-size: 1.05rem; }
.about__owner strong { color: var(--color-red); font-size: 1.1em; }

/* ===== メニュー ===== */
.menu { background: var(--color-cream-deep); }
.menu__card { max-width: 30em; margin: 0 auto; background: #fff; border: 3px solid var(--color-ink); border-radius: var(--radius); box-shadow: 4px 4px 0 rgba(58,45,40,.18); padding: 14px 24px 20px; }
.menu__list { list-style: none; }
.menu__item { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 18px 4px; border-bottom: 3px dashed var(--color-orange); }
.menu__item:last-child { border-bottom: none; }
.menu__name { font-size: 1.25rem; font-weight: 700; }
.menu__name small { font-size: .8em; color: var(--color-green); }
.menu__price { font-family: var(--font-display); font-size: 2rem; color: var(--color-red); white-space: nowrap; }
.menu__price small { font-size: .55em; }
.menu__note { text-align: center; margin-top: 16px; color: var(--color-ink); font-weight: 700; }
.menu__caution { max-width: 30em; margin: 12px auto 0; text-align: center; font-size: .88rem; color: #7c6f68; }

/* ===== 出店場所 ===== */
.places { background:
  radial-gradient(60% 40% at 50% 0, rgba(94,125,79,.10), transparent 70%), var(--color-cream); }
.place { background: #fff; border: 3px solid var(--color-ink); border-radius: var(--radius); box-shadow: 4px 4px 0 rgba(58,45,40,.16); padding: 22px; margin: 0 auto 18px; max-width: 30em; text-align: center; }
.place__name { font-size: 1.3rem; color: var(--color-red); margin-bottom: 8px; }
.place__when { font-weight: 700; font-size: 1.08rem; }
.place__note { font-size: .8rem; color: #7c6f68; line-height: 1.55; margin: 4px 0 12px; }
.place__addr { color: var(--color-ink); margin-bottom: 16px; }
.places__note { max-width: 32em; margin: 6px auto 0; text-align: center; background: #FFF1DD; border: 2.5px solid var(--color-orange); border-radius: var(--radius); padding: 16px 18px; font-size: 1.02rem; }
.places__note strong { color: var(--color-red-deep); }
.places__note a { font-weight: 700; color: var(--color-red-deep); text-underline-offset: 3px; }

/* ===== SNS誘導 ===== */
.sns { text-align: center; background: var(--color-cream-deep); }
.sns__octo { width: 84px; margin: 0 auto 6px; animation: bob 4s ease-in-out infinite; }
.sns__text { max-width: 28em; margin: 0 auto; }
.sns__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* ===== フッター ===== */
.footer { background: var(--color-ink); color: var(--color-cream); text-align: center; padding: 32px 0 28px; }
.footer__char { margin: 0 auto 10px; filter: drop-shadow(0 4px 6px rgba(0,0,0,.3)); }
.footer__name { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.footer__copy { font-size: .85rem; opacity: .8; margin-top: 4px; }
