:root {
  --bg: #fffaf1;
  --paper: #fffdf7;
  --cream: #fff3d8;
  --brown: #6f4a2f;
  --brown-deep: #3f2b21;
  --text: #3d332d;
  --muted: #75685f;
  --red: #9f3f32;
  --mustard: #c08320;
  --green: #687d54;
  --blue: #5f7c8f;
  --line: #eadbc8;
  --shadow: 0 14px 34px rgba(91, 62, 40, 0.12);
  --shadow-soft: 0 8px 20px rgba(91, 62, 40, 0.09);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1120px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(159, 63, 50, 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--brown-deep);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.sample-bar {
  background: #efe2ce;
  color: #5f4937;
  font-size: 0.82rem;
  text-align: center;
  padding: 7px 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 241, 0.96);
  border-bottom: 1px solid rgba(234, 219, 200, 0.9);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(100% - 28px, var(--max));
  margin: 0 auto;
  padding: 13px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  width: fit-content;
}

.brand-name {
  color: var(--brown-deep);
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.15;
}

.brand-copy {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.site-nav a {
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--brown);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.phone-link,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: var(--shadow-soft);
}

.header-phone {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  background: var(--red);
  color: #fff;
  box-shadow: none;
  min-height: 40px;
  padding: 9px 14px;
}

.section,
.section-band {
  padding: 58px 0;
}

.section > *,
.section-band > * {
  width: min(100% - 28px, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.section-paper {
  background: var(--paper);
  border-block: 1px solid rgba(234, 219, 200, 0.72);
}

.hero {
  padding-top: 34px;
}

.hero-inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--brown-deep);
  line-height: 1.45;
  margin: 0;
}

h1 {
  font-size: 2.06rem;
  line-height: 1.32;
}

h2 {
  font-size: 1.72rem;
}

h3 {
  font-size: 1.08rem;
}

.lead {
  margin: 18px 0 0;
  font-size: 1.03rem;
  color: #57483f;
}

.hero-status {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
}

.hero-status p,
.today-box,
.daily-card,
.menu-card,
.commitment-list article,
.welcome-grid article,
.notice-list article,
.info-list,
.map-card {
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-status p {
  margin: 0;
  padding: 10px 12px;
  color: var(--brown-deep);
  font-weight: 700;
}

.hero-status span {
  display: inline-flex;
  min-width: 70px;
  color: var(--green);
  font-weight: 800;
}

.today-box {
  margin-top: 16px;
  padding: 16px;
  border-left: 5px solid var(--mustard);
}

.today-box p {
  margin: 0;
}

.today-label {
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 800;
}

.today-name {
  margin-top: 4px !important;
  color: var(--brown-deep);
  font-size: 1.22rem;
  font-weight: 800;
}

.today-name strong {
  color: var(--red);
}

.today-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.hero-actions .btn-soft {
  grid-column: 1 / -1;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-secondary {
  background: var(--brown);
  color: #fff;
}

.btn-soft {
  background: var(--cream);
  color: var(--brown-deep);
  border: 1px solid #edd6ad;
}

.hero-visual,
.shop-photo,
.front-photo {
  margin: 0;
}

.hero-visual figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 10px;
  text-align: center;
}

.photo-wrap {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 243, 216, 0.95), rgba(255, 253, 247, 0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.photo-wrap img.is-hidden {
  display: none;
}

.photo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.bowl-shape,
.plate-shape,
.table-shape,
.noren-shape {
  position: relative;
  width: 150px;
  height: 82px;
  border-radius: 0 0 90px 90px;
  background: #fffdf7;
  border: 5px solid #d6b58d;
  box-shadow: inset 0 -16px 0 rgba(192, 131, 32, 0.16);
}

.plate-shape {
  width: 170px;
  height: 92px;
  border-radius: 50%;
  border-color: #cf9f68;
}

.table-shape {
  width: 190px;
  height: 86px;
  border-radius: 8px;
  background: #b9824f;
  border-color: #8b5a38;
}

.noren-shape {
  width: 170px;
  height: 110px;
  border-radius: 8px 8px 16px 16px;
  background: #b94d3e;
  border-color: #8f3b31;
}

.steam {
  position: absolute;
  top: 58px;
  width: 18px;
  height: 72px;
  border: 3px solid rgba(111, 74, 47, 0.24);
  border-bottom: 0;
  border-left: 0;
  border-radius: 50%;
}

.steam-one {
  left: 42%;
}

.steam-two {
  right: 40%;
  transform: scaleX(-1);
}

.section-heading {
  text-align: center;
  max-width: 680px;
  margin-bottom: 26px;
}

.section-heading.align-left {
  text-align: left;
}

.section-heading p:not(.eyebrow),
.section-note {
  color: var(--muted);
  margin: 10px 0 0;
}

.daily-grid,
.access-grid,
.two-column,
.takeout-section {
  display: grid;
  gap: 22px;
}

.section.two-column,
.section.takeout-section {
  width: min(100% - 28px, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.section.two-column > *,
.section.takeout-section > * {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

.daily-card {
  padding: 18px;
  display: grid;
  gap: 18px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f8e4b9;
  color: #6f421e;
  font-size: 0.82rem;
  font-weight: 800;
}

.price {
  margin: 6px 0;
  color: var(--red);
  font-size: 1.28rem;
  font-weight: 800;
  white-space: nowrap;
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-photo {
  min-height: 210px;
}

.menu-grid {
  display: grid;
  gap: 12px;
}

.menu-grid.compact {
  width: 100%;
}

.menu-card {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.menu-card h3 {
  margin-bottom: 4px;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
}

.menu-card .price {
  color: var(--red);
  justify-self: start;
}

.commitment-list,
.welcome-grid {
  display: grid;
  gap: 12px;
}

.commitment-list article,
.welcome-grid article {
  padding: 17px;
}

.commitment-list p,
.welcome-grid p {
  margin: 6px 0 0;
  color: var(--muted);
}

.mini-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #f6e1bd;
  color: var(--brown-deep);
  font-size: 0.94rem;
  font-weight: 800;
}

.takeout-section {
  align-items: start;
}

.takeout-copy p {
  margin: 12px 0;
}

.takeout-copy .btn {
  margin-top: 8px;
}

.sub-heading {
  margin-bottom: 10px;
}

.notice-list {
  display: grid;
  gap: 10px;
}

.notice-list article {
  padding: 15px;
  display: grid;
  gap: 2px;
}

.notice-list time {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
}

.notice-list p {
  margin: 0;
}

.info-section h2 {
  margin-bottom: 10px;
}

.info-section p {
  margin-top: 0;
}

.shop-photo,
.front-photo {
  min-height: 220px;
}

.info-list {
  margin: 0;
  padding: 6px 16px;
}

.info-list div {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  border-bottom: 0;
}

.info-list dt {
  color: var(--green);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
}

.map-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(104, 125, 84, 0.18) 22% 25%, transparent 25% 100%),
    linear-gradient(0deg, transparent 0 38%, rgba(95, 124, 143, 0.16) 38% 42%, transparent 42% 100%),
    #f8efe0;
}

.map-label {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #fffdf7;
  color: var(--brown-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.map-road {
  position: absolute;
  border-radius: 999px;
  background: rgba(111, 74, 47, 0.16);
}

.road-one {
  left: -20px;
  right: -20px;
  top: 62%;
  height: 16px;
  transform: rotate(-9deg);
}

.road-two {
  top: -20px;
  bottom: -20px;
  left: 58%;
  width: 14px;
  transform: rotate(18deg);
}

.road-three {
  left: 12%;
  right: 10%;
  top: 26%;
  height: 12px;
  transform: rotate(6deg);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 34%;
  width: 22px;
  height: 22px;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  box-shadow: 0 4px 14px rgba(159, 63, 50, 0.25);
}

.access-copy h3 {
  margin-bottom: 8px;
}

.access-copy p {
  margin-top: 0;
}

.front-photo {
  margin: 16px 0;
}

.contact-actions {
  max-width: 680px;
}

.center {
  text-align: center;
}

.site-footer {
  background: var(--brown-deep);
  color: #fff7ec;
  text-align: center;
  padding: 28px 14px 34px;
}

.site-footer p {
  margin: 4px 0;
}

@media (min-width: 680px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .site-nav {
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
  }

  .header-phone {
    grid-column: auto;
    grid-row: auto;
    justify-self: end;
  }

  .hero-actions,
  .contact-actions {
    grid-template-columns: repeat(3, minmax(0, auto));
    justify-content: start;
  }

  .hero-actions .btn-soft {
    grid-column: auto;
  }

  .contact-actions {
    justify-content: center;
  }

  .hero-status {
    grid-template-columns: 1fr 1fr;
  }

  .daily-card,
  .two-column,
  .takeout-section,
  .access-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .daily-card {
    align-items: center;
    padding: 24px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .welcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-list div {
    grid-template-columns: 130px 1fr;
  }
}

@media (min-width: 920px) {
  .section,
  .section-band {
    padding: 76px 0;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-inner {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 46px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .lead {
    font-size: 1.12rem;
  }

  .hero-visual .photo-wrap {
    min-height: 430px;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .welcome-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .commitment-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 360px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.82rem;
  }

  .btn,
  .phone-link {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
}
