:root {
  --color-bg: #faf6ef;
  --color-text: #2b2520;
  --color-accent: #c1272d;
  --color-dark: #1d1a17;
  --font-mincho: "Shippori Mincho", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
}

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

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(20, 13, 10, 0.42), transparent);
  transition: padding 0.3s, background 0.3s, border-color 0.3s;
}

.header.scrolled {
  padding-top: 11px;
  padding-bottom: 11px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(29, 26, 23, 0.9);
  backdrop-filter: blur(12px);
}

.header-home {
  justify-content: flex-end;
}

.header-logo {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
}

.nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  margin-left: 28px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* ヒーロー：大きな写真とスナップ写真を重ねた、活気のあるファーストビュー */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(540px, 1.3fr);
  align-items: center;
  gap: clamp(20px, 3vw, 54px);
  min-height: clamp(720px, 100svh, 940px);
  padding: clamp(104px, 10vh, 132px) clamp(28px, 5vw, 84px) 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 221, 160, 0.18), transparent 28%),
    linear-gradient(118deg, #ba2028 0%, #ce2a31 44%, #241b17 44.1%, #171310 100%);
  color: #fff;
}

.hero::before {
  content: "KAZUO\A UDON";
  position: absolute;
  left: -0.04em;
  bottom: -0.2em;
  z-index: -1;
  opacity: 0.055;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.08em;
  white-space: pre;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 4;
  max-width: 610px;
  padding-left: clamp(0px, 2vw, 28px);
  color: #fff;
}

.hero-text > * {
  opacity: 0;
  animation: fade-up 0.85s ease forwards;
}

.hero-text > *:nth-child(2) { animation-delay: 0.1s; }
.hero-text > *:nth-child(3) { animation-delay: 0.2s; }
.hero-text > *:nth-child(4) { animation-delay: 0.3s; }
.hero-text > *:nth-child(5) { animation-delay: 0.4s; }
.hero-text > *:nth-child(6) { animation-delay: 0.5s; }

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(28px, 5vh, 48px);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-kicker span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mincho);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.hero-sub::before {
  content: "";
  width: 42px;
  height: 2px;
  background: #f4c97c;
}

.hero-text h1 {
  margin: 0.22em 0 0.34em;
  font-family: var(--font-mincho);
  font-size: clamp(3rem, 5.9vw, 6rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.055em;
}

.hero-text h1 span {
  display: block;
  white-space: nowrap;
}

.hero-text h1 span:last-child {
  color: #f5cf8c;
}

.hero-lead {
  max-width: 540px;
  font-size: clamp(0.9rem, 1.25vw, 1.05rem);
  font-weight: 500;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions .btn {
  min-width: 174px;
  margin-top: 26px;
  padding: 12px 24px;
  text-align: center;
}

.hero .hero-actions .btn {
  border: 1px solid #f7efe1;
  background: #f7efe1;
  color: #241b17;
}

.hero .hero-actions .btn:hover {
  border-color: #fff;
  background: #fff;
}

.hero .hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(32, 22, 18, 0.25);
  color: #fff;
}

.hero .hero-actions .btn-outline:hover {
  border-color: #fff;
  background: rgba(32, 22, 18, 0.62);
}

.hero-info {
  display: flex;
  gap: clamp(24px, 4vw, 50px);
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.hero-info div {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: baseline;
}

.hero-info dt {
  color: #f5cf8c;
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-info dd {
  font-family: var(--font-mincho);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: min(76vh, 760px);
  min-height: 590px;
}

.hero-photo {
  --photo-transform: rotate(0deg);
  position: absolute;
  margin: 0;
  opacity: 0;
  background: #f5eee2;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
  animation: hero-photo-in 0.75s cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  --photo-transform: rotate(2.5deg);
  inset: 2% -9% 14% 2%;
  padding: clamp(8px, 0.8vw, 13px);
  animation-delay: 0.12s;
}

.hero-photo-main .hero-img {
  object-position: center;
}

.hero-photo:not(.hero-photo-main) {
  width: clamp(118px, 12vw, 188px);
  padding: 8px 8px 34px;
  aspect-ratio: 4 / 5;
}

.hero-photo:not(.hero-photo-main) img {
  aspect-ratio: 1 / 1.08;
}

.hero-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 6px;
  left: 10px;
  color: #3a2d25;
  font-family: var(--font-mincho);
  font-size: clamp(0.62rem, 0.8vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}

.hero-photo-beer {
  --photo-transform: rotate(-9deg);
  top: -1%;
  left: -5%;
  z-index: 3;
  animation-delay: 0.42s;
}

.hero-photo-food {
  --photo-transform: rotate(7deg);
  bottom: 2%;
  left: -5%;
  z-index: 4;
  animation-delay: 0.62s;
}

.hero-photo-udon {
  --photo-transform: rotate(-7deg);
  right: -2%;
  bottom: -1%;
  z-index: 4;
  animation-delay: 0.78s;
}

@keyframes hero-photo-in {
  from {
    opacity: 0;
    transform: translateY(36px) rotate(0);
  }
  to {
    opacity: 1;
    transform: var(--photo-transform);
  }
}

.hero-scene-label {
  position: absolute;
  top: 8%;
  right: -1%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #1c1713;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transform: rotate(2deg);
}

.hero-scene-label span {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

.hero-scene-label strong {
  color: #f5cf8c;
  font-family: var(--font-mincho);
  font-size: 1.15rem;
}

.hero-scroll {
  position: absolute;
  bottom: 17px;
  left: 50%;
  z-index: 5;
  color: rgba(255, 255, 255, 0.8);
  font-family: Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 7px auto 0;
  background: rgba(255, 255, 255, 0.68);
}

.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 40px;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: #9e1f24;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(22, 18, 14, 0.42);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(22, 18, 14, 0.78);
}

/* セクション共通 */
main > section {
  padding: 72px 0;
}

h2 {
  font-family: var(--font-mincho);
  font-size: 1rem;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
}

h2 span {
  display: block;
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

h2 span::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  margin: 14px auto 0;
}

h3 {
  font-family: var(--font-mincho);
  font-size: 1.25rem;
  border-left: 4px solid var(--color-accent);
  padding-left: 12px;
  margin: 32px 0 16px;
}

/* トップページ：居酒屋と締めのうどんを二本柱で見せる */
.night-style {
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--color-accent);
  background:
    radial-gradient(circle at 9% 10%, rgba(193, 39, 45, 0.2), transparent 28%),
    linear-gradient(135deg, #171310 0%, #2a211b 55%, #1c1713 100%);
  color: #fff;
}

.night-style::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: repeating-linear-gradient(90deg, transparent 0 72px, rgba(255, 255, 255, 0.025) 72px 73px);
  pointer-events: none;
}

.night-style .container {
  position: relative;
  z-index: 1;
}

.night-style-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.night-style-kicker {
  margin-bottom: 8px;
  color: #e2ad72;
  font-family: var(--font-mincho);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.night-style-heading h2 {
  margin-bottom: 18px;
  color: #e2ad72;
}

.night-style-heading h2 span {
  color: #fff;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  letter-spacing: 0.05em;
  text-transform: none;
}

.night-style-heading h2 span::after {
  background: #d8a25f;
}

.night-style-heading > p:last-child {
  color: #c9beb2;
  line-height: 2;
}

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

.night-style-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #f8f1e7;
  color: var(--color-text);
  text-decoration: none;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.night-style-card:hover,
.night-style-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.42);
}

.night-style-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #201813;
}

.night-style-media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.night-style-card:hover .night-style-media > img:first-child,
.night-style-card:focus-visible .night-style-media > img:first-child {
  transform: scale(1.035);
}

.night-style-card-izakaya .night-style-media > img:first-child {
  object-position: center 61%;
}

.night-style-card-udon .night-style-media {
  background: #201813;
}

.night-style-card-udon .night-style-media > img:first-child {
  object-fit: cover;
  object-position: center;
}

.night-style-subphoto {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 36%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 4px solid #f8f1e7;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.night-style-card-body {
  position: relative;
  padding: 26px 28px 28px;
}

.night-style-card-izakaya .night-style-card-body {
  border-top: 4px solid var(--color-accent);
}

.night-style-card-udon .night-style-card-body {
  border-top: 4px solid #b7782d;
}

.night-style-number {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent);
  font-family: var(--font-mincho);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.night-style-card-udon .night-style-number {
  color: #9a5d1f;
}

.night-style-number span {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
}

.night-style-card h3 {
  border: 0;
  padding: 0;
  margin: 8px 0 10px;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
}

.night-style-card-body > p:not(.night-style-number) {
  color: #6f6358;
  font-size: 0.9rem;
  line-height: 1.9;
}

.night-style-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.night-style-card-udon .night-style-link {
  color: #8d541c;
}

.night-style-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.night-style-card:hover .night-style-link::after,
.night-style-card:focus-visible .night-style-link::after {
  transform: translateX(5px);
}

.night-style-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: fit-content;
  margin: 34px auto 0;
  padding: 10px 24px;
  border: 1px solid rgba(226, 173, 114, 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

.night-style-hours span {
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 700;
}

.night-style-hours strong {
  color: #fff7e9;
  font-family: var(--font-mincho);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.night-style-hours small {
  color: #bdb0a4;
  font-size: 0.72rem;
}

/* こだわり */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "職人の手仕事";
  position: absolute;
  top: 32px;
  right: 8px;
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 1;
  color: rgba(193, 39, 45, 0.07);
  writing-mode: vertical-rl;
  white-space: nowrap;
  pointer-events: none;
}

.about-catch {
  font-family: var(--font-mincho);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 0.6em;
}

.about-intro {
  max-width: 620px;
  margin: 0 auto 80px;
  text-align: center;
}

.feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.feature + .feature {
  margin-top: 96px;
}

.feature.reverse .feature-photo {
  order: 2;
}

.feature-photo {
  position: relative;
}

.feature-photo::before {
  content: "";
  position: absolute;
  top: 16px;
  left: -16px;
  right: 16px;
  bottom: -16px;
  border: 2px solid var(--color-accent);
}

.feature.reverse .feature-photo::before {
  left: 16px;
  right: -16px;
}

.feature-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(43, 37, 32, 0.25);
}

.about-vertical {
  position: absolute;
  top: -24px;
  right: -14px;
  writing-mode: vertical-rl;
  font-family: var(--font-mincho);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: #fff;
  background: var(--color-dark);
  padding: 20px 10px;
  z-index: 1;
}

.feature-en {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mincho);
  color: var(--color-accent);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.feature-en::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--color-accent);
}

.feature-body h3 {
  border: none;
  padding: 0;
  margin: 12px 0 16px;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.feature-body > p:last-child {
  color: #6e6459;
  line-height: 2;
}

/* メニュー */
.menu {
  background: #fff;
}

.menu-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.menu-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.menu-photos figure:hover img {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.menu-photos figcaption {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 6px;
}

.menu-photos figcaption::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 8px;
  vertical-align: middle;
}

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.menu-list dl div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed #ccc4b8;
}

.menu-list dd {
  white-space: nowrap;
  font-weight: 500;
}

.osusume dt::after {
  content: "おすすめ";
  font-size: 0.7rem;
  color: #fff;
  background: var(--color-accent);
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: 8px;
  vertical-align: middle;
}

.menu-photos .price {
  display: block;
  font-family: var(--font-mincho);
  color: var(--color-accent);
  font-size: 1.05rem;
}

/* トップページ：おすすめメニューの横スライド */
.recommend-lead {
  margin: -28px 0 24px;
  color: #756a5f;
  font-size: 0.9rem;
  text-align: center;
}

.recommend-marquees {
  display: grid;
  gap: 22px;
  overflow: hidden;
}

.recommend-row {
  min-width: 0;
}

.recommend-row-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px 4px;
  color: #8a7e72;
  font-size: 0.74rem;
}

.recommend-row-label > span {
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.recommend-row:first-child .recommend-row-label > span {
  background: var(--color-accent);
}

.menu-marquee {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--color-accent) #e7ddd2;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.recommend-slider-shell {
  position: relative;
}

.recommend-slider-button {
  position: absolute;
  top: calc(50% - 7px);
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(29, 26, 23, 0.92);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.34);
  transform: translateY(-50%);
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
}

.recommend-slider-button:hover:not(:disabled),
.recommend-slider-button:focus-visible:not(:disabled) {
  background: var(--color-accent);
  transform: translateY(-50%) scale(1.06);
}

.recommend-slider-button:disabled {
  opacity: 0;
  pointer-events: none;
}

.recommend-slider-prev {
  left: 10px;
}

.recommend-slider-next {
  right: 10px;
}

.recommend-card {
  position: relative;
  flex: 0 0 238px;
  height: 166px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-dark);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(43, 37, 32, 0.18);
  scroll-snap-align: start;
}

.recommend-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recommend-card:hover img,
.recommend-card:focus-visible img {
  transform: scale(1.05);
}

.recommend-card-caption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 36px 13px 11px;
  background: linear-gradient(transparent, rgba(12, 10, 8, 0.9));
  font-family: var(--font-mincho);
  font-size: 0.9rem;
  line-height: 1.35;
  white-space: nowrap;
}

.recommend-card-caption > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.recommend-card-price {
  flex: 0 0 auto;
  color: #f2c5a2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
}

.menu-more {
  text-align: center;
  margin-top: 40px;
}

.menu-more .btn {
  margin-top: 16px;
}

/* 下層ページのタイトル帯 */
.page-head {
  background: var(--color-dark);
  border-bottom: 4px solid var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 130px 20px 56px;
}

.page-head-en {
  font-family: var(--font-mincho);
  color: var(--color-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-head h1 {
  font-family: var(--font-mincho);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.page-head-summary {
  max-width: 640px;
  margin-top: 20px;
  color: #f7eee4;
  font-size: 0.92rem;
  line-height: 1.9;
}

.page-head-note {
  font-size: 0.8rem;
  color: #b8b0a4;
  margin-top: 12px;
}

/* お品書きページ */
.menu-detail-section {
  scroll-margin-top: 64px;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.menu-detail-light {
  background: #fff;
}

.menu-category-nav {
  position: sticky;
  top: 56px;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-bottom: 1px solid #e5d9ca;
  background: rgba(250, 246, 239, 0.96);
  box-shadow: 0 6px 18px rgba(43, 37, 32, 0.08);
  backdrop-filter: blur(10px);
}

.menu-category-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  padding: 9px 20px;
  border: 1px solid #dfd1bf;
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-mincho);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.menu-category-nav a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.menu-category-nav span {
  color: var(--color-accent);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.menu-photo-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: -28px 0 24px;
  color: #756a5f;
  font-size: 0.88rem;
  text-align: center;
}

.menu-photo-guide span {
  padding: 3px 10px;
  border-radius: 999px;
  background: #f0e6da;
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 700;
}

.category-slider-shell {
  position: relative;
  margin: -12px 0 38px;
}

.category-image-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(205px, 27%);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--color-accent) #ddd3c6;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
}

.category-slide {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-dark);
  box-shadow: 0 8px 20px rgba(43, 37, 32, 0.17);
  scroll-snap-align: start;
}

.category-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-slide-landscape img {
  object-position: center;
}

.category-slide-featured::before {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  content: "おすすめ";
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(43, 37, 32, 0.24);
}

.category-slide:hover img {
  transform: scale(1.035);
}

.category-slide figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 13px 11px;
  background: linear-gradient(transparent, rgba(12, 10, 8, 0.9));
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  line-height: 1.35;
  white-space: nowrap;
}

.category-slider-button {
  position: absolute;
  top: calc(50% - 30px);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(29, 26, 23, 0.92);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.23);
  transition: background 0.25s, opacity 0.25s, transform 0.25s;
}

.category-slider-button:hover:not(:disabled) {
  background: var(--color-accent);
  transform: scale(1.06);
}

.category-slider-button:disabled {
  opacity: 0.25;
  cursor: default;
}

.category-slider-prev { left: -18px; }
.category-slider-next { right: -18px; }

.menu-accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  align-items: start;
}

.menu-accordion {
  overflow: hidden;
  border: 1px solid #e1d5c7;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.menu-accordion[open] {
  border-color: #d3b9a4;
  box-shadow: 0 8px 22px rgba(60, 46, 34, 0.08);
}

.menu-accordion summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: var(--color-text);
  font-family: var(--font-mincho);
  font-size: 1.1rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.menu-accordion summary::-webkit-details-marker {
  display: none;
}

.menu-accordion summary span {
  flex: 1;
}

.menu-accordion summary small {
  padding: 2px 8px;
  border-radius: 999px;
  background: #f2e8dd;
  color: #806f61;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.menu-accordion summary::after {
  content: "+";
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.menu-accordion[open] summary::after {
  content: "−";
}

.menu-accordion dl {
  padding: 0 16px 12px;
}

.izakaya .menu-accordion {
  border-color: #4b433c;
  background: #27231f;
}

.izakaya .menu-accordion[open] {
  border-color: #75665a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.izakaya .menu-accordion summary {
  color: #fff;
}

.izakaya .menu-accordion summary small {
  background: #3b342e;
  color: #d9cec2;
}

.izakaya .menu-photo-guide {
  color: #d5cabf;
}

.izakaya .menu-photo-guide span {
  background: #3b342e;
  color: #f1c1a1;
}

.menu-note {
  margin-top: 22px;
  color: #756a5f;
  font-size: 0.85rem;
  text-align: center;
}

.izakaya .menu-note {
  color: #d5cabf;
}

.menu-accordion-note {
  margin: 10px 0 0;
  color: #756a5f;
  font-size: 0.8rem;
}

.menu-subsection {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 2px solid #ddd3c6;
}

.menu-subsection-title {
  border-left: 0;
  padding-left: 0;
  font-size: 1.55rem;
  text-align: center;
}

.menu-subsection-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--color-accent);
}

.izakaya .category-slide {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.36);
}

/* 酒の肴 */
.izakaya {
  background: var(--color-dark);
  border-top: 4px solid var(--color-accent);
  color: #ece6dc;
}

.izakaya h2 span {
  color: #fff;
}

.izakaya .menu-list dl div {
  border-bottom-color: #4a443d;
}

/* 店舗案内 */
.access-grid {
  max-width: 760px;
  margin: 0 auto;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid #ddd5c8;
  font-weight: 400;
  vertical-align: top;
}

.info-table th {
  white-space: nowrap;
  width: 6em;
  color: var(--color-accent);
}

.info-table a {
  color: inherit;
}

.info-notice {
  color: var(--color-accent);
  font-weight: 700;
}

.store-info-photo {
  max-width: 420px;
  margin: 36px auto 0;
}

.store-info-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(68, 54, 40, 0.12);
}

.store-info-photo figcaption {
  margin-top: 8px;
  color: #786b60;
  font-size: 0.82rem;
  text-align: center;
}

.interior-guide {
  margin: 0 0 72px;
  padding: clamp(28px, 5vw, 52px);
  background: #fff;
  border: 1px solid #e4d9ca;
  border-top: 4px solid var(--color-accent);
  border-radius: 8px;
  color: var(--color-text);
  box-shadow: 0 12px 30px rgba(68, 54, 40, 0.08);
}

.interior-guide-heading {
  max-width: 660px;
  margin-bottom: 32px;
}

.interior-guide-label {
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.interior-guide-heading h3 {
  margin: 8px 0 12px;
  border-left: 0;
  padding-left: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.5;
}

.interior-guide-heading > p:last-child {
  color: #6e6459;
}

.interior-guide-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.interior-guide-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: #100e0d;
}

.interior-guide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.interior-guide-card:hover img {
  transform: scale(1.025);
}

.interior-guide-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 48px 20px 18px;
  background: linear-gradient(transparent, rgba(15, 12, 10, 0.94));
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
}

.interior-guide-card strong {
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 1.25rem;
}

.interior-guide-card span {
  color: #f3eee7;
  font-size: 0.82rem;
}

.access-map {
  margin-top: 40px;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px;
}

/* 宴会予約 */
.banquet {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(193, 39, 45, 0.1), transparent 32%),
    linear-gradient(135deg, #f4ecdf 0%, #faf6ef 100%);
}

.banquet::before,
.banquet::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(193, 39, 45, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.banquet::before {
  top: -150px;
  left: -90px;
}

.banquet::after {
  right: -120px;
  bottom: -180px;
}

.banquet-card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px);
  border: 1px solid #dfd1bf;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-text);
  text-align: center;
  box-shadow: 0 16px 36px rgba(68, 54, 40, 0.09);
}

.banquet-kicker {
  margin-bottom: 10px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.banquet h2 {
  margin-bottom: 20px;
  color: #8b7d70;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.banquet h2 span {
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: 0.06em;
  text-transform: none;
}

.banquet h2 span::after {
  background: var(--color-accent);
}

.banquet-lead {
  color: #6e6459;
}

.banquet-plan {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) 1.25fr;
  gap: 24px;
  align-items: stretch;
  margin: 36px 0 28px;
}

.banquet-price,
.banquet-includes {
  border: 1px solid #e7dac9;
  border-radius: 6px;
  background: #f8f1e7;
}

.banquet-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.banquet-price small {
  color: #806f61;
  font-size: 0.78rem;
}

.banquet-price strong {
  font-family: var(--font-mincho);
  font-size: clamp(2.25rem, 5vw, 3.2rem);
  line-height: 1.25;
}

.banquet-price em {
  margin-left: 3px;
  font-size: 0.45em;
  font-style: normal;
}

.banquet-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.banquet-includes li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 16px;
}

.banquet-includes li + li {
  border-left: 1px solid #dfd1bf;
}

.banquet-includes span {
  color: #806f61;
  font-size: 0.78rem;
}

.banquet-includes strong {
  font-family: var(--font-mincho);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.banquet-notes {
  color: #6e6459;
  font-size: 0.92rem;
}

.banquet-notes p + p {
  margin-top: 6px;
}

.banquet-notes strong {
  color: var(--color-text);
}

.banquet-call {
  display: inline-flex;
  flex-direction: column;
  min-width: min(100%, 340px);
  margin-top: 30px;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.banquet-call:hover {
  background: #9e1f24;
  transform: translateY(-2px);
}

.banquet-call span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.banquet-call strong {
  font-family: var(--font-mincho);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.banquet-card.visible .banquet-price,
.banquet-card.visible .banquet-includes,
.banquet-card.visible .banquet-call {
  animation: banquet-pop 0.55s cubic-bezier(0.2, 0.85, 0.35, 1.2) both;
}

.banquet-card.visible .banquet-includes {
  animation-delay: 0.08s;
}

.banquet-card.visible .banquet-call {
  animation-delay: 0.16s;
}

@keyframes banquet-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* スクロールでふわっと表示 */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.menu-photos figure:nth-child(2) { transition-delay: 0.1s; }
.menu-photos figure:nth-child(3) { transition-delay: 0.2s; }
.menu-photos figure:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-text > * {
    animation: none;
    opacity: 1;
  }

  .hero-photo {
    animation: none;
    opacity: 1;
    transform: var(--photo-transform);
  }

  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .menu-marquee {
    overflow-x: auto;
    scroll-behavior: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .category-image-slider {
    scroll-behavior: auto;
  }

  .banquet-card.visible .banquet-price,
  .banquet-card.visible .banquet-includes,
  .banquet-card.visible .banquet-call {
    animation: none;
  }
}

/* フッター */
.footer {
  background: var(--color-dark);
  border-top: 4px solid var(--color-accent);
  color: #b8b0a4;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.85rem;
}

.footer-logo {
  font-family: var(--font-mincho);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}

.copyright {
  margin-top: 16px;
  font-size: 0.75rem;
}

/* タブレット */
@media (min-width: 769px) and (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(300px, 0.9fr) minmax(390px, 1.1fr);
    gap: 18px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-text {
    padding-left: 0;
  }

  .hero-text h1 {
    font-size: clamp(2.7rem, 5.8vw, 4.1rem);
  }

  .hero-visual {
    height: min(70vh, 650px);
    min-height: 540px;
  }

  .hero-photo:not(.hero-photo-main) {
    width: clamp(108px, 13vw, 148px);
  }

  .hero-info {
    display: grid;
    gap: 6px;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(70vw, 280px);
    height: 100vh;
    background: var(--color-dark);
    display: flex;
    flex-direction: column;
    padding: 80px 32px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav a {
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid #3a352f;
  }

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

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

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

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 84px 18px 58px;
    background:
      radial-gradient(circle at 20% 10%, rgba(255, 221, 160, 0.16), transparent 28%),
      linear-gradient(168deg, #c3222b 0%, #c3222b 56%, #211814 56.1%, #171310 100%);
  }

  .hero::before {
    bottom: 22%;
    font-size: 29vw;
  }

  .hero-visual {
    order: 1;
    width: 100%;
    height: min(58vh, 520px);
    min-height: 410px;
  }

  .hero-photo-main {
    inset: 3% -12% 16% 2%;
    padding: 7px;
  }

  .hero-photo-main .hero-img {
    object-position: 52% center;
  }

  .hero-photo:not(.hero-photo-main) {
    width: clamp(92px, 26vw, 130px);
    padding: 6px 6px 28px;
  }

  .hero-photo-beer {
    top: -1%;
    left: -2%;
  }

  .hero-photo-food {
    bottom: 3%;
    left: -1%;
  }

  .hero-photo-udon {
    right: -1%;
    bottom: 0;
  }

  .hero-photo figcaption {
    bottom: 4px;
    font-size: 0.58rem;
  }

  .hero-scene-label {
    top: 8%;
    right: -4px;
    padding: 8px 10px;
  }

  .hero-scene-label span {
    display: none;
  }

  .hero-text {
    order: 2;
    width: 100%;
    max-width: none;
    padding: 6px 2px 0;
  }

  .hero-kicker {
    margin-bottom: 22px;
    font-size: 0.58rem;
  }

  .hero-sub {
    font-size: 0.78rem;
  }

  .hero-text h1 {
    margin-top: 0.3em;
    font-size: clamp(2.55rem, 12vw, 3.8rem);
    line-height: 1.2;
  }

  .hero-text h1 span {
    white-space: normal;
  }

  .hero-lead {
    max-width: 360px;
    font-size: 0.82rem;
    line-height: 1.85;
  }

  .hero-actions {
    width: 100%;
    gap: 8px;
  }

  .hero-actions .btn {
    flex: 1 1 145px;
    min-width: 0;
    margin-top: 20px;
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .hero-info {
    gap: 18px;
    margin-top: 26px;
    padding-top: 14px;
  }

  .hero-info div {
    display: block;
  }

  .hero-info dt {
    margin-bottom: 2px;
  }

  .hero-info dd {
    font-size: 0.78rem;
  }

  .hero-scroll {
    display: none;
  }

  .night-style {
    padding-top: 68px;
  }

  .night-style-heading {
    margin-bottom: 26px;
    padding-right: 28px;
    text-align: left;
  }

  .night-style-heading h2 {
    margin-bottom: 14px;
    text-align: left;
  }

  .night-style-heading h2 span {
    font-size: 1.55rem;
    line-height: 1.55;
  }

  .night-style-heading h2 span::after {
    margin: 12px 0 0;
  }

  .night-style-heading > p:last-child {
    font-size: 0.84rem;
    line-height: 1.8;
  }

  .night-style-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .night-style-card {
    grid-template-columns: 42% 58%;
    grid-template-rows: 1fr;
    min-height: 244px;
    border-radius: 12px;
  }

  .night-style-media {
    height: 100%;
    aspect-ratio: auto;
  }

  .night-style-card-udon .night-style-media > img:first-child {
    object-position: 49% center;
  }

  .night-style-subphoto {
    right: 8px;
    bottom: 10px;
    width: 54%;
    border-width: 3px;
  }

  .night-style-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 14px;
  }

  .night-style-card-izakaya .night-style-card-body,
  .night-style-card-udon .night-style-card-body {
    border-top: 0;
    border-left: 3px solid var(--color-accent);
  }

  .night-style-card-udon .night-style-card-body {
    border-left-color: #b7782d;
  }

  .night-style-number {
    font-size: 0.62rem;
  }

  .night-style-card h3 {
    margin: 6px 0 8px;
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .night-style-card-body > p:not(.night-style-number) {
    font-size: 0.72rem;
    line-height: 1.7;
  }

  .night-style-link {
    margin-top: 12px;
    font-size: 0.7rem;
  }

  .night-style-hours {
    flex-wrap: wrap;
    gap: 4px 10px;
    margin-top: 22px;
    padding: 8px 14px;
  }

  .night-style-hours strong {
    font-size: 0.96rem;
  }

  .night-style-hours small {
    flex-basis: 100%;
    text-align: center;
  }

  main > section {
    padding: 56px 0;
  }

  .feature,
  .menu-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .interior-guide {
    margin: 0 0 48px;
    padding: 24px 20px;
  }

  .interior-guide-heading {
    margin-bottom: 20px;
  }

  .store-info-photo {
    width: min(82%, 320px);
    margin-top: 28px;
  }

  .interior-guide-heading h3 {
    margin-top: 5px;
    font-size: 1.4rem;
  }

  .interior-guide-heading > p:last-child {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .interior-guide-gallery {
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    margin-right: -20px;
    padding-right: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .interior-guide-gallery::-webkit-scrollbar {
    display: none;
  }

  .interior-guide-card {
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
  }

  .interior-guide-card figcaption {
    padding: 34px 14px 12px;
  }

  .interior-guide-card strong {
    font-size: 1rem;
  }

  .interior-guide-card span {
    font-size: 0.72rem;
  }

  .banquet-plan {
    grid-template-columns: minmax(105px, 0.8fr) 1.3fr;
    gap: 8px;
    margin: 20px 0 18px;
  }

  .banquet-card {
    padding: 26px 16px;
  }

  .banquet h2 span {
    font-size: clamp(1.35rem, 6vw, 1.55rem);
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .banquet-kicker {
    margin-bottom: 4px;
    font-size: 0.7rem;
  }

  .banquet h2 {
    margin-bottom: 12px;
    font-size: 0.62rem;
  }

  .banquet h2 span {
    margin-bottom: 2px;
  }

  .banquet h2 span::after {
    width: 36px;
    margin-top: 9px;
  }

  .banquet-lead {
    font-size: 0.84rem;
    line-height: 1.7;
  }

  .banquet-price {
    padding: 12px 7px;
  }

  .banquet-price strong {
    font-size: 1.65rem;
  }

  .banquet-includes li {
    padding: 12px 5px;
  }

  .banquet-includes strong {
    font-size: 1.25rem;
  }

  .banquet-price small,
  .banquet-includes span {
    font-size: 0.66rem;
  }

  .banquet-notes {
    font-size: 0.78rem;
    line-height: 1.65;
  }

  .banquet-call {
    margin-top: 18px;
    padding: 10px 18px;
  }

  .banquet-call strong {
    font-size: 1.2rem;
  }

  .feature.reverse .feature-photo {
    order: 0;
  }

  .feature + .feature {
    margin-top: 44px;
  }

  .about-intro {
    margin-bottom: 40px;
  }

  .feature {
    gap: 18px;
  }

  .feature-photo img {
    aspect-ratio: 16 / 10;
    max-height: 250px;
  }

  .feature-photo::before {
    top: 8px;
    right: 8px;
    bottom: -8px;
    left: -8px;
  }

  .feature.reverse .feature-photo::before {
    right: -8px;
    left: 8px;
  }

  .about-vertical {
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    writing-mode: horizontal-tb;
  }

  .feature-en {
    gap: 10px;
    font-size: 0.78rem;
  }

  .feature-en::after {
    width: 36px;
  }

  .feature-body h3 {
    margin: 8px 0 10px;
    font-size: 1.35rem;
  }

  .feature-body > p:last-child {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .recommend-lead {
    margin-top: -24px;
  }

  .recommend-marquees {
    margin-right: -20px;
    margin-left: -20px;
  }

  .recommend-row-label {
    margin-left: 20px;
    margin-right: 20px;
  }

  .recommend-card {
    flex-basis: 196px;
    height: 138px;
  }

  .recommend-card-caption {
    gap: 6px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.75rem;
  }

  .recommend-card-price {
    font-size: 0.66rem;
  }

  .menu-marquee {
    gap: 12px;
    padding: 4px 20px 12px;
    scrollbar-width: none;
  }

  .menu-marquee::-webkit-scrollbar {
    display: none;
  }

  .recommend-slider-button {
    top: calc(50% - 6px);
    width: 38px;
    height: 38px;
    border-width: 1px;
    font-size: 1.35rem;
  }

  .recommend-slider-prev {
    left: 8px;
  }

  .recommend-slider-next {
    right: 8px;
  }

  .page-head {
    padding: 96px 20px 34px;
  }

  .page-head-note {
    margin-top: 8px;
    font-size: 0.72rem;
  }

  .menu-category-nav {
    top: 56px;
    gap: 7px;
    padding: 8px 12px;
  }

  .menu-category-nav a {
    justify-content: center;
    min-width: 0;
    flex: 1;
    gap: 5px;
    padding: 8px 10px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .menu-detail-section {
    padding-top: 46px;
    padding-bottom: 46px;
    scroll-margin-top: 112px;
  }

  .menu-detail-section h2 {
    margin-bottom: 36px;
  }

  .menu-detail-section h2 span {
    font-size: 1.65rem;
    line-height: 1.45;
  }

  .menu-photo-guide {
    display: block;
    margin: -20px 0 16px;
    font-size: 0.8rem;
  }

  .menu-photo-guide span {
    display: table;
    margin: 6px auto 0;
  }

  .category-image-slider {
    grid-auto-columns: calc((100% - 16px) / 3);
    gap: 8px;
    margin-right: -20px;
    padding-right: 20px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .category-image-slider::-webkit-scrollbar {
    display: none;
  }

  .category-slide {
    border-radius: 9px;
  }

  .category-slide img {
    aspect-ratio: 1 / 1;
  }

  .category-slide figcaption {
    overflow: hidden;
    padding: 30px 7px 7px;
    font-size: 0.62rem;
    text-overflow: ellipsis;
  }

  .category-slider-button {
    display: none;
  }

  .category-slider-shell {
    margin-bottom: 24px;
  }

  .menu-accordion-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-accordion summary {
    padding: 12px 14px;
    font-size: 1rem;
  }

  .menu-accordion summary::after {
    width: 24px;
    height: 24px;
  }

  .menu-accordion dl {
    padding: 0 14px 10px;
  }

  .menu-accordion dl div {
    gap: 8px;
    padding: 7px 0;
    font-size: 0.86rem;
  }

  .menu-accordion dt {
    min-width: 0;
  }

  .osusume dt::after {
    display: inline-block;
    margin-left: 4px;
    padding: 0 4px;
    font-size: 0.58rem;
  }

  .menu-subsection {
    margin-top: 30px;
    padding-top: 16px;
  }

  .menu-subsection-title {
    margin-bottom: 18px;
    font-size: 1.3rem;
  }
}

/* 全ページのデザイン統一と仕上げ */
:root {
  --color-paper: #f4ede3;
  --color-surface: #fffdf9;
  --color-line: #dfd2c3;
  --color-gold: #d6a45f;
  --radius-lg: 24px;
  --shadow-soft: 0 18px 46px rgba(59, 43, 31, 0.11);
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(193, 39, 45, 0.035), transparent 24rem),
    var(--color-bg);
}

.container {
  max-width: 1120px;
}

main > section:not(.hero) {
  padding-top: clamp(78px, 8vw, 116px);
  padding-bottom: clamp(78px, 8vw, 116px);
}

.hero {
  grid-template-columns: minmax(360px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(40px, 6vw, 96px);
  min-height: clamp(720px, 94svh, 900px);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 223, 168, 0.17), transparent 26%),
    linear-gradient(112deg, #b91f27 0%, #ca2730 42%, #241a16 42.1%, #171310 100%);
}

.hero-visual {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(245, 207, 140, 0.52);
  border-radius: 26px 6px 26px 6px;
}

.hero-photo-main {
  --photo-transform: rotate(0.7deg);
  inset: 0;
  overflow: hidden;
  padding: 0;
  border: 8px solid #f7efe2;
  border-radius: 28px 6px 28px 6px;
  background: #201713;
}

.hero-photo-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(17, 12, 9, 0.76) 100%);
  pointer-events: none;
}

.hero-photo-main .hero-img {
  object-position: center;
}

.hero-photo-main figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  text-align: left;
}

.hero-photo-main figcaption span {
  font-family: Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-photo-main figcaption strong {
  color: #f5cf8c;
  font-family: var(--font-mincho);
  font-size: clamp(0.9rem, 1.3vw, 1.2rem);
  letter-spacing: 0.08em;
}

.hero-photo:not(.hero-photo-main),
.hero-scene-label {
  display: none;
}

.night-style-card {
  border-radius: var(--radius-lg);
}

#about > .container > h2,
#menu > .container > h2,
#access > .container > h2 {
  margin-bottom: clamp(42px, 6vw, 66px);
  text-align: left;
}

#about > .container > h2::before,
#menu > .container > h2::before,
#access > .container > h2::before {
  display: block;
  margin-bottom: 8px;
  color: #9b8b7c;
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

#about > .container > h2::before { content: "02  /  CRAFT"; }
#menu > .container > h2::before { content: "03  /  RECOMMEND"; }
#access > .container > h2::before { content: "05  /  INFORMATION"; }

#about > .container > h2 span,
#menu > .container > h2 span,
#access > .container > h2 span {
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  line-height: 1.35;
  letter-spacing: 0.03em;
}

#about > .container > h2 span::after,
#menu > .container > h2 span::after,
#access > .container > h2 span::after {
  width: 70px;
  margin-right: 0;
  margin-left: 0;
}

.about {
  background:
    linear-gradient(rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.46)),
    var(--color-paper);
}

.about-catch {
  font-size: clamp(1.7rem, 3.7vw, 2.65rem);
}

.about-intro {
  max-width: 720px;
}

.feature {
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.feature + .feature {
  margin-top: 48px;
}

.feature-photo {
  min-height: 390px;
}

.feature-photo::before {
  display: none;
}

.feature-photo img {
  height: 100%;
  aspect-ratio: auto;
  box-shadow: none;
}

.feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}

.feature.reverse {
  border-color: #352a24;
  background: #211a16;
  color: #fff;
}

.feature.reverse .feature-body > p:last-child {
  color: #cfc4b9;
}

.feature.reverse .feature-en {
  color: #e2ad72;
}

.feature.reverse .feature-en::after {
  background: #e2ad72;
}

.menu {
  background:
    radial-gradient(circle at 90% 8%, rgba(193, 39, 45, 0.08), transparent 26rem),
    #eee4d8;
}

.recommend-lead {
  margin-top: -42px;
  text-align: left;
}

.recommend-marquees {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow-soft);
}

.recommend-row + .recommend-row {
  padding-top: 22px;
  border-top: 1px solid #eadfd3;
}

.recommend-card {
  border-radius: 18px;
}

.menu-more {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(112, 89, 68, 0.2);
}

.banquet-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-soft);
}

.banquet-price,
.banquet-includes {
  border-radius: 14px;
}

.access {
  background:
    linear-gradient(180deg, #f8f3ec 0%, #eee4d8 100%);
}

.interior-guide {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.interior-guide-card {
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(37, 27, 21, 0.16);
}

.access-details {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.access-details-copy,
.access-map {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.access-details-copy {
  padding: clamp(22px, 4vw, 40px);
}

.access-grid {
  max-width: none;
}

.info-table th,
.info-table td {
  padding-top: 14px;
  padding-bottom: 14px;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.store-info-photo {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 18px;
  max-width: none;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e6dacd;
}

.store-info-photo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.store-info-photo figcaption {
  margin-top: 0;
  font-family: var(--font-mincho);
  font-size: 0.95rem;
  text-align: left;
}

.access-map {
  min-height: 620px;
  margin-top: 0;
  padding: 10px;
  overflow: hidden;
}

.access-map iframe {
  height: 100%;
  min-height: 598px;
  border-radius: 16px;
}

.page-head {
  position: relative;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - 1120px) / 2)) 80px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 214, 143, 0.16), transparent 24rem),
    linear-gradient(118deg, #b91f27 0%, #c8272f 38%, #211915 38.1%, #171310 100%);
  text-align: left;
}

.page-head::before {
  content: "MENU";
  position: absolute;
  right: -0.04em;
  bottom: -0.24em;
  opacity: 0.06;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: clamp(8rem, 24vw, 20rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.page-head > * {
  position: relative;
  z-index: 1;
}

.page-head-en {
  color: #f5cf8c;
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.page-head h1 {
  margin-top: 8px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.page-head-note {
  max-width: 420px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.menu-detail-light {
  background:
    radial-gradient(circle at 10% 12%, rgba(193, 39, 45, 0.045), transparent 24rem),
    #f7f1e8;
}

.menu-detail-section h2 span {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.category-slide {
  border-radius: 18px;
}

.menu-accordion {
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(60, 46, 34, 0.045);
}

.menu-accordion[open] {
  border-color: rgba(193, 39, 45, 0.42);
  box-shadow: 0 14px 30px rgba(60, 46, 34, 0.1);
}

.menu-accordion summary {
  padding: 17px 18px;
}

.izakaya .menu-accordion[open] {
  border-color: rgba(226, 173, 114, 0.55);
}

.footer {
  padding: 58px 20px 48px;
}

.footer-logo {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.1em;
}

.footer-logo::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin: 15px auto;
  background: var(--color-accent);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #f5cf8c;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  main > section:not(.hero) {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .hero {
    gap: 0;
    padding: 82px 18px 54px;
    background:
      radial-gradient(circle at 18% 8%, rgba(255, 223, 168, 0.16), transparent 20rem),
      linear-gradient(160deg, #bf2029 0%, #c92831 46%, #211814 46.1%, #171310 100%);
  }

  .hero-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    margin-bottom: 34px;
  }

  .hero-visual::before {
    inset: 10px -8px -10px 8px;
    border-radius: 18px 4px 18px 4px;
  }

  .hero-photo-main {
    inset: 0;
    border-width: 5px;
    border-radius: 20px 4px 20px 4px;
  }

  .hero-photo-main figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
  }

  .hero-photo-main figcaption span {
    font-size: 0.48rem;
  }

  .hero-photo-main figcaption strong {
    font-size: 0.82rem;
  }

  .hero-text {
    padding-top: 0;
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  #about > .container > h2,
  #menu > .container > h2,
  #access > .container > h2 {
    margin-bottom: 38px;
  }

  #about > .container > h2 span,
  #menu > .container > h2 span,
  #access > .container > h2 span {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .about-catch,
  .about-intro {
    text-align: left;
  }

  .feature {
    border-radius: 18px;
  }

  .feature-photo {
    min-height: 0;
  }

  .feature-photo img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .feature-body {
    padding: 28px 22px 30px;
  }

  .recommend-lead {
    margin-top: -24px;
    text-align: left;
  }

  .recommend-marquees {
    margin-right: 0;
    margin-left: 0;
    padding: 20px 0;
    border-radius: 18px;
  }

  .recommend-row-label {
    margin-left: 16px;
    margin-right: 16px;
  }

  .recommend-row + .recommend-row {
    padding-top: 18px;
  }

  .access-details {
    grid-template-columns: 1fr;
  }

  .access-details-copy {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .store-info-photo {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }

  .access-map {
    min-height: 0;
    padding: 7px;
    border-radius: 18px;
  }

  .access-map iframe {
    height: 360px;
    min-height: 0;
    border-radius: 13px;
  }

  .interior-guide {
    border-radius: 18px;
  }

  .page-head {
    padding: 106px 22px 48px;
  }

  .page-head h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .page-head-note {
    margin-top: 16px;
  }

  .page-head-summary {
    font-size: 0.84rem;
    line-height: 1.8;
  }

  .menu-accordion {
    border-radius: 13px;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(290px, 0.85fr) minmax(380px, 1.15fr);
    gap: 18px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-visual::before {
    inset: 12px -10px -12px 10px;
  }
}

/* トップ部分は初回Git保存時のデザインへ復元 */
.header {
  padding: 12px 20px;
  border-bottom: 0;
  background: transparent;
  transition: background 0.3s;
}

.header.scrolled {
  padding: 12px 20px;
  border-color: transparent;
  background: rgba(29, 26, 23, 0.92);
  backdrop-filter: none;
}

.header-logo {
  letter-spacing: normal;
}

.hero {
  position: relative;
  display: block;
  height: 88vh;
  min-height: 480px;
  padding: 0;
  overflow: hidden;
  background: var(--color-dark);
}

.hero::before {
  content: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: auto;
  max-width: none;
  padding: 0 8% 8vh;
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.3) 0%, rgba(20, 15, 10, 0) 30%, rgba(20, 15, 10, 0.8) 100%);
  color: #fff;
}

.hero-text > * {
  opacity: 0;
  animation: fade-up 0.9s ease forwards;
}

.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.4s; }
.hero-text > *:nth-child(4) { animation-delay: 0.6s; }

.hero-sub {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.hero-sub::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  margin-right: 12px;
  background: var(--color-accent);
  vertical-align: middle;
}

.hero-text h1 {
  margin: 0.4em 0;
  font-family: var(--font-mincho);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: normal;
}

.hero-lead {
  max-width: 660px;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: auto;
}

.hero-actions .btn {
  min-width: 0;
  margin-top: 28px;
  padding: 12px 40px;
}

.hero .hero-actions .btn {
  border: 0;
  background: var(--color-accent);
  color: #fff;
}

.hero .hero-actions .btn:hover {
  background: #9e1f24;
}

.hero .hero-actions .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(22, 18, 14, 0.42);
  color: #fff;
}

.hero .hero-actions .btn-outline:hover {
  border-color: #fff;
  background: rgba(22, 18, 14, 0.78);
}

@media (max-width: 768px) {
  .hero {
    display: block;
    height: 76vh;
    min-height: 600px;
    padding: 0;
  }

  .hero-text {
    position: absolute;
    width: auto;
    padding: 0 20px 48px;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.35;
  }

  .hero-lead {
    max-width: 340px;
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .hero-actions {
    width: 100%;
    gap: 8px;
  }

  .hero-actions .btn {
    flex: 1 1 145px;
    min-width: 0;
    margin-top: 20px;
    padding: 10px 14px;
    font-size: 0.8rem;
    text-align: center;
  }
}
