/* ============================================
   焼肉 うし和 - Style Sheet
   Design: 白基調・和テイスト・上品で綺麗な印象
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #efe2c4;             /* 生成り和紙 - 黄味強めクラフト */
  --color-bg-warm: #e7d6b4;        /* 生成り紙 warm variant */
  --color-bg-paper: #efe2c4;
  --color-bg-dark: #1a1a1a;
  --color-text: #1a1a1a;            /* 墨黒 */
  --color-text-light: #5a4d3c;
  --color-text-white: #fff;
  --color-accent: #8b6f3f;
  --color-accent-light: #b09472;
  --color-gold: #b88a3d;
  --color-stamp-red: #b8332a;      /* 朱印 */
  --color-stamp-red-deep: #962a23;
  --color-border: #d8caac;
  --color-border-light: #e8dcc1;
  --font-serif: 'Shippori Mincho', 'Noto Serif JP', '游明朝', 'Yu Mincho', serif;
  --font-sans: 'Noto Sans JP', '游ゴシック', 'Yu Gothic', sans-serif;
  --easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easing-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.6s var(--easing);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  /* 生成り和紙テクスチャ - 繊維感をはっきりめに */
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='500' height='500'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.32 0 0 0 0 0.18 0 0 0 0.13 0'/></filter><rect width='500' height='500' filter='url(%23n)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800'><filter id='f'><feTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.36 0 0 0 0 0.27 0 0 0 0 0.14 0 0 0 0.06 0'/></filter><rect width='800' height='800' filter='url(%23f)'/></svg>");
  background-attachment: fixed, fixed;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* utility: prevent line break inside a phrase block */
.nowrap {
  display: inline-block;
  white-space: nowrap;
}

/* utility: <br class="sp-br"> はスマホでのみ改行を発動 */
.sp-br { display: none; }
@media (max-width: 768px) {
  .sp-br { display: inline; }
}

/* ---------- Loading ---------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  text-align: center;
  animation: loadingZoom 3.2s var(--easing-out) forwards;
}

.loading-logo-img {
  width: 280px;
  height: auto;
}

@keyframes loadingZoom {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  30% {
    transform: scale(1);
    opacity: 1;
  }
  75% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 40px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.header.scrolled {
  background-color: #fff;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.header.scrolled .header-inner {
  height: 70px;
}

.header-logo {
  z-index: 10;
}

.header-logo-img {
  height: 55px;
  width: auto;
  filter: invert(1);
  transition: filter 0.4s ease;
}

.header.scrolled .header-logo-img {
  filter: none;
}

.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-list a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-white);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s ease;
}

.header.scrolled .nav-list a {
  color: var(--color-text);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav-list a:hover {
  opacity: 1;
}

.nav-list a:hover::after {
  width: 100%;
}

.header-sns {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: 18px;
}

.header-sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-sns-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* LINE は常に公式カラー(緑) */
.header-sns-link-line {
  color: #06C755;
}

.header-reserve-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--color-text-white);
  transition: all 0.4s ease;
}

.header.scrolled .header-reserve-btn {
  border-color: var(--color-text);
  color: var(--color-text);
}

.header-reserve-btn:hover {
  background: var(--color-text);
  color: var(--color-text-white);
  border-color: var(--color-text);
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text-white);
  transition: all 0.3s ease;
}

.header.scrolled .hamburger span {
  background: var(--color-text);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-sns {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  min-width: 220px;
  justify-content: center;
}

.mobile-nav-sns a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
}

.mobile-nav-sns a:hover {
  opacity: 0.7;
}

/* LINE は公式カラー(緑) で表示 */
.mobile-nav-sns a[aria-label="LINE"] {
  color: #06C755;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  text-align: center;
}

.mobile-nav-list li {
  margin-bottom: 28px;
}

.mobile-nav-list a {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--color-text);
}

.mobile-reserve-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 40px;
  border: 1px solid var(--color-text);
  font-family: var(--font-sans) !important;
  font-size: 0.85rem !important;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease;
  transform: scale(1.05);
  animation: heroScale 8s ease infinite alternate;
}

.hero-slide.active {
  opacity: 1;
}

/* 生産者写真は顔が切れないよう上寄せ */
.hero-slide-producer {
  background-position: center 25% !important;
}

@media (max-width: 1024px) {
  .hero-slide-producer { background-position: center 22% !important; }
}

@media (max-width: 600px) {
  .hero-slide-producer { background-position: center 18% !important; }
}

@keyframes heroScale {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* Hero slide labels (1st slide: 左=飛騨牛 / 右=大洞和牛(赤)) — beef-hero と統一 */
.hero-slide-labels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide-labels.is-visible {
  opacity: 1;
}

.hero-slide-label {
  position: relative;
  align-self: end;
  justify-self: center;
  margin-bottom: 22%;
  font-family: 'Yuji Syuku', var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.85),
    0 0 6px rgba(0, 0, 0, 0.6);
}

.hero-slide-label .paren {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.78em;
  letter-spacing: 0;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-slide-label {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    margin-bottom: 55%;
  }
}

/* スマホ/タブレットではScrollインジケーター非表示 */
@media (max-width: 1024px) {
  .hero-scroll-indicator { display: none !important; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-catchcopy {
  text-align: center;
  color: var(--color-text-white);
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1.4s var(--easing-out) forwards;
}

.hero-line:nth-child(1) {
  animation-delay: 3.5s;
}

.hero-line:nth-child(2) {
  animation-delay: 4.2s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-white);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 300;
  opacity: 0;
  animation: heroFadeUp 1s var(--easing-out) 5s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-text-white);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Hero SP Reserve Button - hidden on desktop, shown on mobile */
.hero-reserve-btn-sp {
  display: none;
  margin-top: 30px;
  padding: 14px 40px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  animation: heroFadeUp 1s var(--easing-out) 4.8s forwards;
}

.hero-reserve-btn-sp:hover {
  background: #fff;
  color: var(--color-text);
  opacity: 1;
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 40px;
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
}

.hero-dot.active {
  background: var(--color-text-white);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ---------- Section Common ---------- */
.section {
  padding: 120px 0;
}

.section-label {
  text-align: center;
  margin-bottom: 16px;
}

.label-en {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-title {
  text-align: center;
  font-family: 'Yuji Syuku', var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
  color: #0d0d0d;
  line-height: 1.4;
}

.section-title > span {
  display: inline-block;
  position: relative;
  padding-bottom: 22px;
}

/* 筆ストローク下線（金茶） */
.section-title > span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 8px;
  background:
    radial-gradient(ellipse at 10% 50%, var(--color-gold) 0%, transparent 70%),
    radial-gradient(ellipse at 90% 50%, var(--color-gold) 0%, transparent 70%),
    linear-gradient(to right,
      transparent 0%,
      var(--color-gold) 12%,
      var(--color-gold) 88%,
      transparent 100%);
  background-size: 30% 100%, 30% 100%, 100% 3px;
  background-position: left center, right center, left center;
  background-repeat: no-repeat;
  opacity: 0.85;
  filter: blur(0.3px);
}

.section-title > span::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-stamp-red);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.85;
}

/* Section divider decoration */
.section + .section::before {
  display: none;
}

/* Subtle top-edge gradient for smooth section transitions */
.section-beef,
.section-menu,
.section-news,
.section-shop {
  box-shadow: inset 0 1px 0 rgba(196, 162, 101, 0.15);
}

/* ---------- About ---------- */
.section-about {
  background: var(--color-bg-warm);
  position: relative;
  overflow: hidden;
}

.section-about::before {
  content: '';
  position: absolute;
  top: 80px;
  right: 80px;
  width: 2px;
  height: 240px;
  background:
    linear-gradient(to bottom, transparent 0%, var(--color-gold) 20%, var(--color-gold) 80%, transparent 100%);
  box-shadow:
    -14px 80px 0 -1px var(--color-gold),
    -14px 160px 0 -1px var(--color-gold);
  z-index: 0;
}

.section-about::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.15) 0%, rgba(196, 162, 101, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.section-about .container {
  position: relative;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s var(--easing);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text {
  font-family: var(--font-serif);
}

.about-text p {
  font-size: 0.95rem;
  line-height: 2.2;
  margin-bottom: 20px;
  color: var(--color-text);
}

.about-highlight {
  font-size: 1.1rem !important;
  font-weight: 500;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 28px 0 !important;
  line-height: 2.4 !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-top: 12px;
  transition: gap 0.3s ease;
}

.text-link:hover {
  gap: 14px;
  opacity: 1;
}

.text-link svg {
  width: 18px;
  height: 18px;
}

/* ---------- Beef ---------- */
.section-beef {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.section-beef::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-accent));
  z-index: 2;
}

.section-beef::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(196, 162, 101, 0.15) 0%, rgba(196, 162, 101, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Brush stroke decoration on beef section */
.section-beef .container::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 20'><path d='M5 10 Q20 2 40 10 T75 10' stroke='%23c4a265' stroke-width='2' fill='none' stroke-linecap='round' opacity='0.6'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

.section-beef .container {
  position: relative;
  z-index: 1;
}

/* Beef Hero — 飛騨牛＋大洞和牛(赤) を1枚の全幅写真として表示 */
.beef-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  height: 70vh;
  min-height: 480px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

/* 単一写真パターン: 1枚に両ブランドを写し、左右にラベルを配置 */
.beef-hero.beef-hero-single {
  display: block;
}

.beef-hero.beef-hero-single > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05);
  transition: transform 1s var(--easing), filter 0.6s ease;
}

.beef-hero.beef-hero-single:hover > img {
  transform: scale(1.03);
  filter: brightness(0.95) saturate(1.15);
}

.beef-hero.beef-hero-single::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 45%);
  pointer-events: none;
}

.beef-hero-half {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.beef-hero-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--easing), filter 0.6s ease;
  filter: brightness(0.82) saturate(1.05);
}

.beef-hero-half:hover img {
  transform: scale(1.05);
  filter: brightness(0.95) saturate(1.15);
}

.beef-hero-half::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 45%);
  pointer-events: none;
}

.beef-hero-label {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  font-family: 'Yuji Syuku', var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow:
    0 4px 30px rgba(0, 0, 0, 0.85),
    0 2px 8px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  line-height: 1.1;
  pointer-events: none;
  z-index: 2;
}

/* 単一写真の左右ラベル */
.beef-hero.beef-hero-single .beef-hero-label-left {
  left: 25%;
}
.beef-hero.beef-hero-single .beef-hero-label-right {
  left: 75%;
}

.beef-hero-label .paren {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.78em;
  color: #fff;
}

/* 詳細ページへの遷移ボタン */
.beef-detail-cta {
  text-align: center;
  margin: 0 auto 60px;
}

/* 2段目: 説明テキスト2カラム */
.beef-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.beef-desc-col {
  position: relative;
  padding: 8px 0 8px 24px;
  border-left: 2px solid var(--color-gold);
}

.beef-desc-title {
  font-family: 'Yuji Syuku', var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  color: var(--color-text);
}

.beef-desc-title .paren {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.8em;
  color: var(--color-stamp-red);
}

.beef-desc-text {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .beef-hero { height: 56vh; min-height: 380px; margin-bottom: 50px; }
  .beef-hero-label { font-size: clamp(1.6rem, 8vw, 2.4rem); bottom: 6%; }
  .beef-desc-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* (legacy) Beef Grid - now hidden */
.beef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 100px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.beef-card {
  position: relative;
  background: #0c0c0c;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

.beef-card-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.beef-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--easing), filter 0.8s ease;
  filter: brightness(0.78) saturate(1.05);
}

.beef-card:hover .beef-card-image img {
  transform: scale(1.08);
  filter: brightness(0.95) saturate(1.15);
}

.beef-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 1;
  pointer-events: none;
}

/* 写真上に大きく筆書きで部位ブランド名 */
.beef-card-brand-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: 'Yuji Syuku', var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow:
    0 4px 30px rgba(0, 0, 0, 0.75),
    0 2px 8px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  line-height: 1.1;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.8s var(--easing);
}

.beef-card:hover .beef-card-brand-label {
  transform: translate(-50%, -60%);
}

.beef-card-brand-label .paren {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.78em;
  color: #fff;
}

.beef-card-body {
  position: relative;
  z-index: 2;
  padding: 36px clamp(28px, 5vw, 64px) 56px;
  color: #fff;
  max-width: 640px;
}

.beef-card-title {
  display: none;
}

.beef-card-desc {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .beef-grid {
    grid-template-columns: 1fr;
  }
  .beef-card { min-height: 60vh; }
  .beef-card-brand-label { font-size: clamp(2rem, 9vw, 3rem); }
  .beef-card-body { padding: 24px 24px 36px; }
}

/* Tabekurabe Section — フルブリード / シネマティック */
.tabekurabe-section {
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 140px);
  background: #0a0a0a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* 大判の食べ比べ写真をぼかして背景全面に */
.tabekurabe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/tabekurabe-tokujou.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  filter: blur(4px) saturate(1.1);
  transform: scale(1.1);
  z-index: 0;
}

.tabekurabe-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.92) 100%);
  z-index: 0;
}

.tabekurabe-section > * { position: relative; z-index: 1; }

.tabekurabe-header {
  text-align: center;
  margin-bottom: clamp(50px, 7vw, 80px);
  padding: 0 14px;
}

.tabekurabe-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  padding: 4px 18px;
  border: 1px solid var(--color-gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.tabekurabe-title {
  font-family: 'Yuji Syuku', var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.6);
}

.tabekurabe-title .tabekurabe-title-accent {
  color: var(--color-gold);
  font-size: 1.18em;
  display: inline-block;
}

.tabekurabe-title .nowrap {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .tabekurabe-title { font-size: clamp(1.6rem, 7.5vw, 2.4rem); }
}

.tabekurabe-lead {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

/* メイン構成: 大きい写真 + 価格リスト */
.tabekurabe-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: 40px;
  max-width: 1400px;
  padding: 0 clamp(12px, 5vw, 60px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.tabekurabe-main-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 162, 101, 0.35);
  box-shadow:
    0 40px 100px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(196, 162, 101, 0.15);
  aspect-ratio: 4 / 3;
}

.tabekurabe-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--easing);
}

.tabekurabe-main-image:hover img {
  transform: scale(1.06);
}

/* 食べ比べ写真ギャラリー（特上 + 上 の2枚） */
.tabekurabe-main-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.tabekurabe-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(196, 162, 101, 0.35);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.85);
  background: #000;
}

.tabekurabe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--easing);
}

.tabekurabe-photo:hover img {
  transform: scale(1.06);
}

.tabekurabe-photo-primary {
  aspect-ratio: 4 / 3;
}

.tabekurabe-photo-secondary {
  aspect-ratio: 16 / 9;
}

.tabekurabe-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: 'Yuji Syuku', var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  background: linear-gradient(90deg, rgba(184, 51, 42, 0.85), rgba(150, 42, 35, 0.85));
  padding: 4px 16px;
  border-radius: 1px;
}

@media (max-width: 900px) {
  .tabekurabe-main { grid-template-columns: 1fr; }
}

.tabekurabe-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tabekurabe-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(196, 162, 101, 0.2);
  transition: border-color 0.4s ease, background 0.4s ease;
  gap: 16px;
}

.tabekurabe-row:hover {
  border-color: var(--color-gold);
  background: rgba(196, 162, 101, 0.06);
}

.tabekurabe-row-premium {
  background: linear-gradient(135deg, rgba(196, 162, 101, 0.12) 0%, rgba(196, 162, 101, 0.04) 100%);
  border-color: rgba(196, 162, 101, 0.5);
}

.tabekurabe-row-info {
  flex: 1;
  min-width: 0;
}

.tabekurabe-row-rank {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 8px;
  padding: 2px 10px;
  border: 1px solid var(--color-gold);
  font-weight: 500;
}

.tabekurabe-row-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.4;
}

.tabekurabe-row-detail {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  letter-spacing: 0.05em;
}

.tabekurabe-row-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  margin: 0;
  line-height: 1;
}

.tabekurabe-row-price span {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 4px;
  letter-spacing: 0.05em;
}

.tabekurabe-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.04em;
}

/* Legacy grid (3-card layout) - kept for backward compat */
.tabekurabe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.tabekurabe-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(196, 162, 101, 0.25);
  transition: transform 0.4s var(--easing), border-color 0.4s ease, background 0.4s ease;
  overflow: hidden;
}

.tabekurabe-card:hover {
  border-color: var(--color-gold);
  background: rgba(196, 162, 101, 0.06);
  transform: translateY(-4px);
}

.tabekurabe-card-image {
  height: 220px;
  overflow: hidden;
}

.tabekurabe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--easing);
}

.tabekurabe-card:hover .tabekurabe-card-image img {
  transform: scale(1.06);
}

.tabekurabe-card-body {
  padding: 26px 24px 28px;
}

.tabekurabe-rank {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.tabekurabe-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  color: #fff;
}

.tabekurabe-card-body p {
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
}

.tabekurabe-cta {
  text-align: center;
}

.tabekurabe-cta .btn {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.tabekurabe-cta .btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #1a1a1a;
  opacity: 1;
}

/* Beef Compare */
.beef-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px;
  background: var(--color-bg-warm);
}

.beef-compare-image {
  overflow: hidden;
}

.beef-compare-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.beef-compare-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.compare-badge {
  display: inline-block;
  background: var(--color-gold);
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 16px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.beef-compare-body p {
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 8px;
}

/* ---------- Kodawari ---------- */
.section-kodawari {
  background: var(--color-bg-warm);
  color: var(--color-text);
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(ellipse at 15% 30%, rgba(184, 138, 61, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(184, 51, 42, 0.06) 0%, transparent 50%);
}

.section-kodawari::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 30px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 30'><path d='M10 15 Q30 5 60 15 T110 15' stroke='%23c4a265' stroke-width='2' fill='none' stroke-linecap='round' opacity='0.5'/><circle cx='60' cy='26' r='2' fill='%23c4a265' opacity='0.5'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.section-kodawari .container {
  position: relative;
  z-index: 1;
}

.section-kodawari .label-en {
  color: var(--color-stamp-red);
}

.section-kodawari .section-title {
  color: #0d0d0d;
}

.kodawari-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 28px;
}

.kodawari-item:nth-child(2),
.kodawari-item:nth-child(5) {
  margin-top: 40px;
}

.kodawari-item {
  position: relative;
  border: 1px solid rgba(139, 111, 63, 0.25);
  background: rgba(255, 252, 244, 0.85);
  transition: transform 0.4s var(--easing), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 2px 6px rgba(60, 40, 15, 0.06);
}

.kodawari-item > * {
  position: relative;
  z-index: 1;
}

.kodawari-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.kodawari-item::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 16px;
  height: 16px;
  border-bottom: 1px solid rgba(196, 162, 101, 0.4);
  border-left: 1px solid rgba(196, 162, 101, 0.4);
  transition: all 0.4s ease;
}

.kodawari-item .kodawari-corner-tr {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(196, 162, 101, 0.4);
  border-right: 1px solid rgba(196, 162, 101, 0.4);
  transition: all 0.4s ease;
  pointer-events: none;
}

.kodawari-item:hover {
  border-color: var(--color-stamp-red);
  background: rgba(255, 253, 247, 0.95);
  box-shadow: 0 16px 32px -16px rgba(139, 111, 63, 0.5);
  transform: translateY(-3px);
}

.kodawari-item:hover::before {
  opacity: 1;
}

.kodawari-item:hover::after {
  bottom: 12px;
  left: 12px;
  border-color: var(--color-gold);
  width: 22px;
  height: 22px;
}

.kodawari-item:hover .kodawari-corner-tr {
  top: 12px;
  right: 12px;
  border-color: var(--color-gold);
  width: 22px;
  height: 22px;
}

.kodawari-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.kodawari-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 70%, rgba(26, 26, 26, 0.18) 100%);
  pointer-events: none;
}

.kodawari-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--easing);
}

.kodawari-item:hover .kodawari-image img {
  transform: scale(1.08);
}

.kodawari-body {
  padding: 28px 32px 36px;
  position: relative;
}

.kodawari-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196, 162, 101, 0.15);
}

.kodawari-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  line-height: 1;
  background: var(--color-stamp-red);
  border-radius: 50%;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 2px 4px rgba(150, 42, 35, 0.3);
}

.kodawari-number::after { display: none; }

.kodawari-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  opacity: 0.6;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.kodawari-icon svg {
  width: 100%;
  height: 100%;
}

.kodawari-item:hover .kodawari-icon {
  opacity: 1;
  transform: scale(1.08) rotate(-2deg);
}

.kodawari-item h3 {
  font-family: 'Yuji Syuku', var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  line-height: 1.55;
  word-break: keep-all;
  overflow-wrap: break-word;
  color: #0d0d0d;
}

.kodawari-item p {
  font-size: 0.86rem;
  line-height: 1.95;
  color: var(--color-text);
  font-weight: 400;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ---------- Menu ---------- */
.section-menu {
  background: var(--color-bg-warm);
  position: relative;
  overflow: hidden;
}

.section-menu::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 60px;
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-gold) 20%, var(--color-gold) 80%, transparent 100%);
  box-shadow:
    14px 70px 0 -1px var(--color-gold),
    14px 130px 0 -1px var(--color-gold);
  z-index: 0;
}

.section-menu::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.18) 0%, rgba(196, 162, 101, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.section-menu .container {
  position: relative;
  z-index: 1;
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.menu-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.menu-item:first-child img {
  height: 100%;
  min-height: 500px;
}

.menu-item {
  overflow: hidden;
  cursor: pointer;
}

.menu-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s var(--easing);
}

.menu-item:hover img {
  transform: scale(1.08);
}

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

.menu-item-drink {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2520 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 0;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(196, 162, 101, 0.3);
  box-sizing: border-box;
}

.menu-item-drink-icon {
  width: 60px;
  height: 60px;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.menu-item-drink-icon svg {
  width: 100%;
  height: 100%;
}

.menu-item-drink .menu-item-name {
  background: transparent;
  color: #fff;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.menu-item-drink .menu-item-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin: 0;
}

.menu-item-drink:hover {
  border-color: var(--color-gold);
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 14px 8px;
  background: #fff;
}

/* ---------- News ---------- */
.section-news {
  background: var(--color-bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-news::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.15) 0%, rgba(196, 162, 101, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-news::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: 60px;
  width: 80px;
  height: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 40'><path d='M5 20 Q20 10 40 20 T75 20' stroke='%23c4a265' stroke-width='2' fill='none' stroke-linecap='round' opacity='0.5'/><circle cx='40' cy='34' r='1.5' fill='%23c4a265' opacity='0.5'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.section-news .container {
  position: relative;
  z-index: 1;
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 12px;
  border-bottom: 1px solid var(--color-border-light);
  transition: background 0.3s ease;
}

.news-item:hover {
  background: var(--color-bg-warm);
}

.news-item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.news-date {
  font-size: 0.78rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  font-weight: 500;
}

.news-tag {
  display: inline-block;
  font-size: 0.65rem;
  padding: 3px 12px;
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.news-title {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

/* ---------- Online Store ---------- */
.section-store {
  padding: 80px 0;
  background: var(--color-bg);
  position: relative;
}

.section-store::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
  z-index: 0;
}

.store-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-bg-warm);
  overflow: hidden;
}

.store-banner-text {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store-badge {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-weight: 300;
}

.store-banner-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.store-banner-text p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.store-weight {
  font-size: 0.9rem !important;
  font-weight: 500;
  color: var(--color-text) !important;
  margin-bottom: 8px !important;
}

.store-price {
  font-family: var(--font-serif);
  font-size: 1.8rem !important;
  font-weight: 700;
  color: var(--color-text) !important;
  margin-bottom: 20px !important;
  line-height: 1.2 !important;
}

.store-price .price-tax {
  font-size: 0.75rem;
  font-weight: 400;
}

.store-note {
  font-size: 0.82rem !important;
  margin-bottom: 24px !important;
}

.store-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-cta {
  text-align: center;
  margin-top: 30px;
}

/* ---------- Online Store Carousel (horizontal scroll) ---------- */
.store-carousel-wrap {
  position: relative;
  margin-top: 40px;
}

.store-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.store-carousel::-webkit-scrollbar {
  height: 6px;
}
.store-carousel::-webkit-scrollbar-thumb {
  background: rgba(196, 162, 101, 0.35);
  border-radius: 3px;
}

.store-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--color-bg-warm);
  border: 1px solid rgba(196, 162, 101, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--easing), box-shadow 0.4s ease;
  overflow: hidden;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.store-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4ecd9;
}

.store-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--easing);
}

.store-card:hover .store-card-image img {
  transform: scale(1.05);
}

.store-card-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #efe2c4 0%, #d9c89a 100%);
  color: rgba(120, 90, 50, 0.6);
}

.store-card-image-tag {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  border: 1px solid rgba(120, 90, 50, 0.4);
  border-radius: 999px;
}

.store-card-body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.store-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin-bottom: 8px;
  color: var(--color-text);
}

.store-card-weight {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.store-card-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.store-card-price .price-tax {
  font-size: 0.7rem;
  font-weight: 400;
  margin-left: 2px;
}

.store-card-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--color-text-light);
  margin-bottom: 18px;
  flex: 1;
}

.btn-sm {
  padding: 8px 18px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
}

/* Arrows */
.store-carousel-arrow {
  position: absolute;
  top: 35%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 101, 0.4);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.store-carousel-arrow:hover {
  background: var(--color-text);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.store-carousel-prev {
  left: -8px;
  transform: translateY(-50%);
}
.store-carousel-next {
  right: -8px;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .store-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .store-card {
    flex: 0 0 80%;
  }
  .store-carousel {
    gap: 16px;
    padding: 8px 0 20px;
  }
  .store-carousel-arrow {
    display: none;
  }
}

/* ---------- Shop ---------- */
.section-shop {
  background: var(--color-bg-warm);
  position: relative;
  overflow: hidden;
}

.section-shop::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.18) 0%, rgba(196, 162, 101, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-shop::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: 60px;
  width: 2px;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-gold) 20%, var(--color-gold) 80%, transparent 100%);
  box-shadow:
    14px 80px 0 -1px var(--color-gold),
    14px 150px 0 -1px var(--color-gold);
  z-index: 0;
}

.section-shop .container {
  position: relative;
  z-index: 1;
}

.shop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.shop-gallery-main {
  margin-bottom: 12px;
  overflow: hidden;
}

.shop-gallery-main img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.shop-gallery-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.shop-gallery-sub img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

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

.shop-table tr {
  border-bottom: 1px solid var(--color-border-light);
}

.shop-table th {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 18px 0;
  width: 100px;
  vertical-align: top;
  text-align: left;
  color: var(--color-text);
}

.shop-table td {
  font-size: 0.85rem;
  padding: 18px 0;
  line-height: 1.9;
  color: var(--color-text-light);
}

.shop-tel {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text) !important;
}

.shop-map {
  overflow: hidden;
}

.shop-map iframe {
  display: block;
}

/* ---------- Reserve CTA ---------- */
.section-reserve {
  background: var(--color-bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-reserve::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 1px solid rgba(196, 162, 101, 0.2);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, transparent 50%, rgba(196, 162, 101, 0.04) 100%);
}

.section-reserve::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(196, 162, 101, 0.08);
  border-radius: 50%;
  pointer-events: none;
}


.reserve-content {
  text-align: center;
  color: var(--color-text-white);
}

.reserve-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.reserve-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  font-weight: 300;
}

.reserve-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 40px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: var(--font-sans);
}

.btn-lg {
  padding: 18px 50px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--color-text-white);
  color: var(--color-text);
  border-color: var(--color-text-white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-text-white);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.section-reserve .btn-outline {
  color: var(--color-text-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.section-reserve .btn-outline:hover {
  background: var(--color-text-white);
  color: var(--color-text);
  opacity: 1;
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-text-white);
  opacity: 1;
}

/* ---------- Footer ---------- */
.footer {
  background: #111;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: invert(1);
  margin-bottom: 16px;
}

.footer-address {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

.footer-nav ul {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  font-weight: 300;
}

.footer-nav a:hover {
  color: #fff;
  opacity: 1;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* ---------- Scroll Animations ---------- */
.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}

.fade-in {
  transform: translateY(40px);
}

.fade-in-left {
  transform: translateX(-40px);
}

.fade-in-right {
  transform: translateX(40px);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav-list {
    gap: 22px;
  }

  .nav-list a {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .header-reserve-btn {
    padding: 9px 20px;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  /* この範囲では既にハンバーガーへ切り替え（クラッシュ回避） */
  .header-nav,
  .header-reserve-btn,
  .header-sns {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header {
    padding: 0 20px;
  }

  /* PC向け強制改行をスマホでは解除（自然な折り返し優先） */
  .about-text br,
  .about-highlight br,
  .beef-card-desc br,
  .tabekurabe-lead br,
  .store-banner-text br,
  .news-item br {
    display: none;
  }

  /* Hide/adjust decorative elements on mobile to prevent overlap */
  .section-about::before,
  .section-about::after,
  .section-beef::after,
  .section-beef .container::before,
  .section-menu::before,
  .section-menu::after,
  .section-news::before,
  .section-news::after,
  .section-shop::before,
  .section-shop::after,
  .section-kodawari::before {
    display: none;
  }

  .header-nav,
  .header-reserve-btn,
  .header-sns {
    display: none;
  }

  /* Show hero reserve button on SP */
  .hero-reserve-btn-sp {
    display: inline-block;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }

  /* About */
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image img {
    height: 300px;
  }

  /* Beef */
  .beef-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .beef-card-image {
    height: 240px;
  }

  .beef-compare {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px;
  }

  .tabekurabe-section {
    margin-top: 50px;
    padding: 50px 24px;
  }

  .tabekurabe-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tabekurabe-card-image {
    height: 200px;
  }

  .tabekurabe-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 8px;
  }

  .tabekurabe-header { padding: 0 16px; }
  .tabekurabe-lead { text-align: left; }

  .tabekurabe-row {
    padding: 16px 14px;
  }

  .tabekurabe-row-name {
    font-size: 0.95rem;
  }

  .tabekurabe-row-price {
    font-size: 1.3rem;
  }

  .beef-compare-image img {
    height: 220px;
  }

  /* Kodawari */
  .kodawari-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kodawari-item {
    padding: 0;
  }

  .kodawari-body {
    padding: 24px 24px 32px;
  }

  .kodawari-image {
    height: 180px;
  }

  .kodawari-item:nth-child(2),
  .kodawari-item:nth-child(5) {
    margin-top: 0;
  }

  /* Menu */
  .menu-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .menu-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .menu-item:first-child img {
    height: 220px;
    min-height: auto;
  }

  .menu-item img {
    height: 180px;
  }

  /* News */
  .news-item {
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 18px 0;
  }

  /* Store */
  .store-banner {
    grid-template-columns: 1fr;
  }

  .store-banner-text {
    padding: 36px;
  }

  .store-banner-image img {
    height: 250px;
  }

  /* Shop */
  .shop-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .shop-gallery-main img {
    height: 220px;
  }

  .shop-gallery-sub img {
    height: 80px;
  }

  .shop-table th {
    display: block;
    padding-bottom: 4px;
    width: 100%;
  }

  .shop-table td {
    display: block;
    padding-top: 0;
  }

  /* Reserve */
  .reserve-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    max-width: 320px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 30px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-catchcopy {
    font-size: 1.2rem;
    line-height: 2.4;
  }

  .loading-text {
    font-size: 2.5rem;
  }

  .menu-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .menu-item img {
    height: 150px;
  }

  .menu-item-name {
    font-size: 0.75rem;
    padding: 10px 4px;
  }
}

/* ========== News Article (WordPress single post) ========== */
.sub-hero.sub-hero-news { min-height: 280px; }
.news-article {
  background: #fff;
  padding: 50px clamp(20px, 4vw, 60px);
  margin: 40px auto 60px;
  border: 1px solid rgba(196, 162, 101, 0.15);
}
.news-article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.news-article-meta .news-date {
  font-size: 0.85rem;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
}
.news-article-meta .news-tag {
  display: inline-block;
  padding: 3px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  background: var(--color-gold);
  color: #fff;
  border-radius: 2px;
}
.news-article-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(196, 162, 101, 0.2);
}
.news-article-thumb { margin: 0 0 28px; }
.news-article-thumb img { width: 100%; height: auto; display: block; }
.news-article-body {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text);
}
.news-article-body p { margin-bottom: 1.5em; }
.news-article-body h2,
.news-article-body h3,
.news-article-body h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 2em 0 0.8em;
  letter-spacing: 0.05em;
}
.news-article-body h2 { font-size: 1.4rem; border-left: 4px solid var(--color-gold); padding-left: 14px; }
.news-article-body h3 { font-size: 1.2rem; color: var(--color-accent); }
.news-article-body img { max-width: 100%; height: auto; margin: 1em 0; }
.news-article-body a { color: var(--color-accent); text-decoration: underline; }
.news-article-body ul,
.news-article-body ol { margin: 0 0 1.5em 1.5em; }
.news-article-body li { margin-bottom: 0.4em; }
.news-article-body blockquote {
  border-left: 3px solid var(--color-gold);
  padding: 8px 0 8px 18px;
  margin: 1.5em 0;
  color: var(--color-text-light);
  background: rgba(196, 162, 101, 0.06);
}

.news-article-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin: 40px 0;
  padding-top: 30px;
  border-top: 1px solid rgba(196, 162, 101, 0.15);
  font-size: 0.85rem;
}
.news-article-nav-prev { text-align: left; }
.news-article-nav-back { text-align: center; }
.news-article-nav-next { text-align: right; }
.news-article-nav a { color: var(--color-text); transition: opacity 0.3s; }
.news-article-nav a:hover { opacity: 0.6; }

/* Pagination (the_posts_pagination) */
.pagination,
.nav-links { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin: 30px 0; }
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(196, 162, 101, 0.3);
  color: var(--color-text);
  font-size: 0.85rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.page-numbers.current {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}
.page-numbers:hover:not(.current) {
  background: var(--color-bg-warm);
  border-color: var(--color-gold);
}

@media (max-width: 768px) {
  .news-article-nav { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .news-article-nav-prev,
  .news-article-nav-next,
  .news-article-nav-back { text-align: center; }
}
