:root {
  --red: #981c1c;
  --red-dark: #721313;
  --cream: #fbeebf;
  --paper: #fffdf7;
  --ink: #050505;
  --muted: #5d504b;
  --green: #48c20e;
  --orange: #ff7a00;
  --brown: #b96343;
  color-scheme: light;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  animation: pageFade 700ms ease both;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 247, 0.95);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  animation: headerDrop 700ms ease both;
}

.header-logo img {
  width: 74px;
  height: 54px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 38px;
  border-radius: 2px;
  padding: 0 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: opacity 180ms ease, transform 180ms ease;
}

.icon-link:hover,
.reservation-buttons a:hover,
.hotpepper-card:hover,
.view-more:hover {
  opacity: 0.86;
  transform: translateY(-2px);
}

.icon-link.instagram {
  background: var(--orange);
}

.icon-link.line {
  background: var(--green);
}

.menu-toggle {
  display: inline-grid;
  gap: 6px;
  align-content: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 2px;
  padding: 0;
  background: #050505;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 220ms ease, opacity 220ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  visibility: hidden;
}

.site-menu-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  cursor: pointer;
  transition: opacity 260ms ease;
}

.site-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  width: min(420px, 88vw);
  min-height: 100vh;
  padding: 42px clamp(28px, 5vw, 54px);
  background: #050505;
  color: #fff;
  transform: translateX(100%);
  transition: transform 320ms ease;
}

body.menu-open .site-menu {
  pointer-events: auto;
  visibility: visible;
}

body.menu-open .site-menu-overlay {
  opacity: 1;
}

body.menu-open .site-menu-panel {
  transform: translateX(0);
}

.site-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.site-menu-logo {
  width: 150px;
  margin: 26px auto 0;
  border-radius: 8px;
}

.drawer-nav {
  display: grid;
  gap: 16px;
  text-align: center;
}

.drawer-nav a {
  display: block;
  padding: 8px 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 180ms ease, transform 180ms ease;
}

.drawer-nav a:hover,
.drawer-nav a[aria-current="page"] {
  color: var(--cream);
  transform: translateX(4px);
}

.drawer-buttons {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.drawer-buttons a {
  width: 300px;
  max-width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.main-visual {
  min-height: 50vh;
  margin-top: 86px;
  display: grid;
  place-items: center;
  padding: 70px 20px;
  background:
    linear-gradient(rgba(30, 16, 10, 0.42), rgba(30, 16, 10, 0.42)),
    url("./assets/original-hero.png");
  background-position: center;
  background-size: cover;
  animation: imageDrift 18s ease-in-out infinite alternate;
}

.visual-logo {
  display: grid;
  justify-items: center;
  gap: 18px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
  animation: fadeUp 900ms ease 180ms both;
}

.visual-logo img {
  width: min(220px, 52vw);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(19px, 3.4vw, 30px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4.8vw, 44px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.hotpepper-section {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 70px 20px 24px;
  text-align: center;
  animation: fadeUp 850ms ease 320ms both;
}

.hotpepper-card {
  display: grid;
  place-items: center;
  width: 270px;
  height: 90px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hotpepper-card img {
  width: 270px;
  height: 90px;
  object-fit: contain;
}

.hotpepper-section p,
.reservation-section p {
  font-size: 16px;
  line-height: 2;
}

.information-section,
.shop-section,
.reservation-section,
.menu-section {
  display: grid;
  justify-items: center;
  padding: 36px 20px;
  text-align: center;
  animation: fadeUp 850ms ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 28%;
}

.news-list {
  display: grid;
  gap: 14px;
  width: min(680px, 100%);
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
}

.news-list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(5, 5, 5, 0.14);
  border-bottom: 1px solid rgba(5, 5, 5, 0.14);
}

.news-list time {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.news-list a:hover {
  color: var(--red);
}

.archive-link {
  display: inline-flex;
  justify-content: flex-end;
  width: min(260px, 72vw);
  margin-top: 28px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--red);
  color: var(--red);
  font-size: 16px;
  font-weight: 500;
  transition: opacity 180ms ease, transform 180ms ease;
}

.archive-link:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

.concept-section {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: clamp(58px, 9vw, 100px) 20px clamp(70px, 12vw, 150px);
  background: var(--red);
  color: #fff;
  animation: sectionReveal 900ms ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 24%;
}

.concept-section::before,
.concept-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 54px;
  background: var(--cream);
  transform: skewY(-4deg);
}

.concept-section::before {
  top: -30px;
}

.concept-section::after {
  bottom: -30px;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1000px, 100%);
  margin: 0 auto;
}

.heading-line {
  display: block;
  width: min(400px, 54vw);
  height: 1px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.75);
  transform-origin: left center;
  animation: lineGrow 900ms ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 38%;
}

.concept-lead {
  margin-top: 48px;
  text-align: center;
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 600;
  line-height: 2;
}

mark {
  background: #fff;
  color: var(--red);
  padding: 2px 8px;
}

.concept-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 0;
  margin-top: 36px;
}

.concept-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.concept-feature:hover img,
.commitment-grid article:hover img {
  filter: brightness(1.05);
  transform: scale(1.025);
}

.concept-text {
  margin-left: -120px;
  padding: 20px;
  background: #fff;
  color: var(--red);
  font-size: 15px;
  line-height: 1.9;
  animation: slideInRight 900ms ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 38%;
}

.concept-text p + p {
  margin-top: 10px;
}

.commitment-title {
  margin-top: 68px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.commitment-grid article {
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 240ms ease, background 240ms ease;
}

.commitment-grid article:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
}

.commitment-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.commitment-grid h3 {
  margin: 16px 18px 8px;
  font-size: 20px;
}

.commitment-grid p {
  margin: 0 18px 20px;
  font-size: 14px;
  line-height: 1.8;
}

.view-more {
  display: flex;
  justify-content: flex-end;
  width: min(400px, 70vw);
  margin: 28px 0 0 auto;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  font-size: 20px;
  font-weight: 500;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-section {
  padding-top: 82px;
  background: var(--paper);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(900px, 100%);
  margin-top: 34px;
}

.menu-list div {
  border: 1px solid rgba(152, 28, 28, 0.2);
  padding: 28px 24px;
  background: #fff;
}

.menu-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-list strong {
  display: block;
  font-size: 20px;
}

.menu-list p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.shop-section {
  margin-top: 24px;
}

.down-icon {
  margin-top: 20px;
  color: var(--red);
  font-size: 74px;
  line-height: 1;
}

.shop-card {
  width: min(900px, 100%);
  margin-top: 24px;
  padding: 48px clamp(24px, 6vw, 64px);
  background: var(--red);
  color: #fff;
}

.shop-logo {
  width: 150px;
  margin: 0 auto 24px;
  border-radius: 8px;
}

.map-wrap {
  width: min(500px, 100%);
  margin: 0 auto;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

.shop-text {
  margin-top: 48px;
  font-size: 16px;
  line-height: 2;
}

.reservation-section {
  padding-top: 120px;
}

.reservation-section p {
  margin-top: 24px;
}

.reservation-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(960px, 100%);
  margin-top: 48px;
}

.reservation-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  transition: opacity 180ms ease, transform 180ms ease;
}

.line-button {
  background: var(--green);
}

.instagram-button {
  background: rgba(255, 122, 0, 0.82);
}

.hotpepper-button {
  background: var(--brown);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 48px 20px;
  background: var(--red);
  color: #fff;
  text-align: center;
}

.site-footer img {
  width: 128px;
  border-radius: 8px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  font-size: 14px;
}

.m-menu-page {
  --black: #050505;
  --paper: #f8f6f1;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.42);
  --gold: #c6a25a;
  margin-top: 86px;
  background: var(--paper);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
}

.m-menu-page * {
  box-sizing: border-box;
}

.archive-page {
  margin-top: 86px;
  background: var(--paper);
}

.archive-hero {
  min-height: 34vh;
  display: grid;
  place-items: center;
  padding: 100px 20px 72px;
  color: #fff;
  background:
    linear-gradient(rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.58)),
    url("./assets/original-hero.png") center / cover;
  text-align: center;
  animation: imageDrift 18s ease-in-out infinite alternate;
}

.archive-hero h1 {
  font-size: clamp(36px, 7vw, 70px);
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.38);
  animation: fadeUp 850ms ease 140ms both;
}

.archive-list-section {
  padding: clamp(58px, 8vw, 92px) 20px;
}

.archive-inner {
  display: grid;
  gap: 20px;
  width: min(880px, 100%);
  margin: 0 auto;
}

.archive-card a {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(5, 5, 5, 0.16);
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease;
}

.archive-card a:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.archive-card time {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.archive-card h2 {
  font-size: clamp(20px, 3vw, 26px);
}

.archive-card p {
  color: var(--muted);
  line-height: 1.9;
}

.single-inner {
  width: min(860px, 100%);
  margin: 0 auto;
}

.single-article {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(5, 5, 5, 0.16);
  background: #fff;
}

.single-article time {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.single-content {
  color: var(--ink);
  line-height: 2;
}

.single-content > * + * {
  margin-top: 1.4em;
}

.single-content img {
  height: auto;
}

.m-menu-hero {
  min-height: 36vh;
  display: grid;
  place-items: center;
  padding: 110px 20px 76px;
  color: #fff;
  background:
    linear-gradient(rgba(5, 5, 5, 0.48), rgba(5, 5, 5, 0.55)),
    url("https://emudot.com/wp-content/uploads/2024/07/26074377_s.jpg") top center / cover;
  text-align: center;
  animation: imageDrift 18s ease-in-out infinite alternate;
}

.m-menu-hero h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 70px);
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.38);
  animation: fadeUp 850ms ease 140ms both;
}

.m-menu-intro {
  padding: 46px 20px 50px;
  color: #201d1a;
  text-align: center;
}

.m-menu-intro p {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(14px, 2.4vw, 16px);
  line-height: 2.1;
}

.m-menu-section {
  padding: clamp(58px, 9vw, 88px) 20px;
  color: var(--ink);
  background: var(--black);
  animation: fadeUp 850ms ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 26%;
}

.m-menu-section.is-wine {
  background: #fff;
  color: #201d1a;
}

.m-menu-section.is-wine .m-menu-desc {
  color: rgba(32, 29, 26, 0.68);
}

.m-menu-section.is-wine .m-menu-item {
  border-color: rgba(32, 29, 26, 0.22);
}

.m-menu-section.is-paper {
  color: #201d1a;
  background: var(--paper);
}

.m-menu-inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.m-menu-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 34px;
  color: inherit;
  text-align: center;
  font-size: clamp(20px, 4.8vw, 28px);
  font-weight: 400;
  line-height: 1.5;
}

.m-menu-title::before,
.m-menu-title::after {
  content: "";
  width: 26px;
  height: 26px;
  background: currentColor;
  opacity: 0.9;
  -webkit-mask: url("./assets/paw-icon.svg") center / contain no-repeat;
  mask: url("./assets/paw-icon.svg") center / contain no-repeat;
}

.m-menu-list,
.m-option-list,
.m-drink-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.m-menu-list {
  display: grid;
  gap: 24px;
}

.m-menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 28px;
  align-items: start;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
  transition: transform 200ms ease, opacity 200ms ease;
}

.m-menu-item:hover {
  transform: translateX(6px);
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(38px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes sectionReveal {
  from {
    opacity: 0.35;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageDrift {
  from {
    background-position: center center;
  }
  to {
    background-position: center 42%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

.m-menu-section.is-paper .m-menu-item,
.m-menu-section.is-wine .m-menu-item {
  border-color: rgba(32, 29, 26, 0.22);
}

.m-menu-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.m-menu-name {
  margin: 0;
  font-size: clamp(17px, 3vw, 21px);
  font-weight: 500;
  line-height: 1.7;
}

.m-menu-desc {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(13px, 2.4vw, 15px);
  line-height: 1.9;
}

.m-menu-section.is-paper .m-menu-desc,
.m-menu-section.is-wine .m-menu-desc {
  color: rgba(32, 29, 26, 0.68);
}

.m-menu-price {
  min-width: 118px;
  padding-top: 3px;
  text-align: right;
  font-size: clamp(17px, 3vw, 22px);
  font-weight: 500;
  white-space: nowrap;
}

.m-menu-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.m-option-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  font-size: clamp(13px, 2.3vw, 15px);
  line-height: 1.8;
}

.m-option-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(32, 29, 26, 0.18);
  padding-bottom: 12px;
}

.m-option-list strong {
  font-weight: 500;
  white-space: nowrap;
}

.m-drink-group + .m-drink-group {
  margin-top: 34px;
}

.m-drink-heading {
  margin: 0 0 14px;
  color: #201d1a;
  font-size: clamp(18px, 3.8vw, 24px);
  font-weight: 500;
  line-height: 1.5;
}

.m-drink-list {
  display: grid;
  gap: 10px;
  font-size: clamp(14px, 2.6vw, 17px);
  line-height: 1.8;
}

.m-drink-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(32, 29, 26, 0.16);
  padding-bottom: 8px;
}

.m-drink-list strong {
  font-weight: 500;
  white-space: nowrap;
}

.m-menu-note {
  margin: 32px auto 0;
  color: rgba(32, 29, 26, 0.62);
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
    min-height: 74px;
  }

  .header-logo img {
    width: 58px;
    height: 44px;
  }

  .main-visual {
    min-height: 60vh;
    margin-top: 74px;
  }

  .m-menu-page {
    margin-top: 74px;
  }

  .archive-page {
    margin-top: 74px;
  }

  .concept-feature {
    grid-template-columns: 1fr;
  }

  .concept-text {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 84px;
    padding: 10px 14px;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-link {
    min-width: 42px;
    min-height: 34px;
    padding: 0 8px;
    font-size: 10px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .visual-logo img {
    width: 210px;
  }

  .main-visual {
    margin-top: 84px;
  }

  .m-menu-page {
    margin-top: 84px;
  }

  .archive-page {
    margin-top: 84px;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }

  .m-menu-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .m-menu-price {
    min-width: 0;
    text-align: left;
  }

  .m-option-list {
    grid-template-columns: 1fr;
  }

  .m-drink-list li {
    align-items: flex-start;
  }

  .hotpepper-section {
    padding-top: 48px;
  }

  .concept-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .commitment-grid,
  .menu-list,
  .reservation-buttons {
    grid-template-columns: 1fr;
  }

  .view-more {
    width: 200px;
    font-size: 16px;
  }

  .map-wrap iframe {
    height: 290px;
  }

  .shop-card {
    padding: 36px 20px;
  }

  .shop-text {
    margin-top: 24px;
    font-size: 13px;
  }

  .reservation-section {
    padding-top: 70px;
  }
}
