/* ==========================================
   和招縁 - メインスタイルシート
   ========================================== */

/* リセットと基本設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* カラーパレット */
  --primary-color: #1a1a1a;
  --secondary-color: #8b7355;
  --accent-color: #c9302c;
  --text-dark: #5a5a5a;
  --text-light: #666666;
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;

  /* フォント */
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;

  /* スペーシング */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  /* トランジション */
  --transition: all 0.3s ease;

  /* 固定ヘッダーの高さ */
  --header-height: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* コンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* セクション共通 */
.section {
  padding: var(--spacing-xxl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  position: relative;
  display: inline-block;
}

.title-ja {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.title-en {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--secondary-color);
}

/* ==========================================
   ヘッダー
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background-color: transparent;
  box-shadow: none;
}

/* PC版: スクロール時にヘッダー全体を完全に非表示 */
@media (min-width: 768px) {
  .header.scrolled {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background-color 0.3s ease,
      box-shadow 0.3s ease;
  }
}

/* スマホ版: スクロール時にロゴとナビを非表示、ハンバーガーメニューのみ表示 */
@media (max-width: 767px) {
  .header.scrolled {
    background-color: transparent !important;
    backdrop-filter: none !important;
  }

  .header.scrolled .logo,
  .header.scrolled .nav-menu:not(.active) {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .header.scrolled .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
  }

  .header.scrolled .hamburger {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
}

/* ヘッダー非表示設定時 */
.header-hidden .logo,
.header-hidden .nav-menu {
  display: none;
}

.header-hidden .hamburger {
  display: block !important;
}

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

/* ロゴ */
.logo a {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: var(--spacing-xs);
}

/* ヘッダー波装飾 */
.header-wave-decoration {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  flex-shrink: 0;
}

/* PC版: ヘッダー左端に絶対配置 */
@media (min-width: 768px) {
  .header-wave-decoration {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 55px;
    opacity: 0.6;
  }
}

/* スマホ版: 通常配置（ロゴの横） */
@media (max-width: 767px) {
  .header-wave-decoration {
    height: 40px;
    opacity: 0.55;
    margin-right: var(--spacing-xs);
  }
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.1em;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ナビゲーション */
.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  transition: var(--transition);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--secondary-color);
}

.reservation-btn {
  background-color: var(--secondary-color);
  color: var(--bg-white) !important;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 25px;
}

.reservation-btn:hover {
  background-color: var(--accent-color);
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
}

.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(7px, -6px);
}

/* ==========================================
   ヒーロー
   ========================================== */
.hero {
  position: relative;
  height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
}

.hero-visual {
  position: relative;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) var(--spacing-md);
}

/* ヒーロー背景画像（Customizer対応） */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  animation-name: fadeInHeroBg;
  animation-duration: 5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  /* animation-delayはindex.phpでインラインスタイルとして設定 */
}

@keyframes fadeInHeroBg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* ヒーロー全体の可読性向上のための背景 */
  background-color: rgba(
    0,
    0,
    0,
    0.26
  ); /* 半透明の黒。透明度を0.4〜0.7で調整 */
  backdrop-filter: brightness(40%); /* 背景を暗く */
  -webkit-backdrop-filter: brightness(40%); /* Safari対策 */
}

.hero-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  z-index: 1;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-title {
  margin-bottom: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-main {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
  animation: fadeInUp 1s ease;
}

.hero-title-sub {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-text {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-message {
  margin-bottom: var(--spacing-xl);
}

.hero-message p {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: var(--spacing-sm);
  color: #ffffff;
}

/* テキスト行のフェードインアニメーション */
.hero-text-line {
  display: inline-block;
}

.fade-in-text {
  opacity: 0;
  animation: fadeInText 1.2s ease forwards;
}

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

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  /* animation-delayはindex.phpでインラインスタイルとして設定 */
}

.hero-btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--secondary-color);
  color: var(--bg-white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
}

.hero-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

/* スクロールインジケーター */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--bg-white);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--bg-white) 0%, transparent 100%);
  margin: 0 auto;
}

/* ==========================================
   画像プレースホルダー
   ========================================== */
.image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-light);
  min-height: 200px;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  opacity: 0.5;
}

.image-placeholder p {
  font-size: 0.875rem;
  opacity: 0.7;
}

.gallery-item .image-placeholder,
.store-detail-images .image-placeholder {
  aspect-ratio: auto;
  height: auto;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ==========================================
   コンセプト
   ========================================== */
.concept {
  background-color: var(--bg-white);
}

.concept-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.concept-text h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

.concept-text p {
  margin-bottom: var(--spacing-md);
  line-height: 2;
  color: #666666;
}

.concept-image {
  position: relative;
}

/* ==========================================
   メニュー
   ========================================== */
.menu {
  background-color: var(--bg-light);
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.menu-category {
  background-color: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--secondary-color);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.menu-item {
  padding: var(--spacing-xs) 0;
  border-bottom: 1px dotted var(--border-color);
}

.menu-item:last-child {
  border-bottom: none;
}

/* メニュー画像のスタイル */
.menu-item-image {
  width: 100%;
  height: 200px;
  margin-bottom: var(--spacing-sm);
  border-radius: 8px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.item-name {
  font-weight: 500;
  color: var(--text-dark);
}

.item-price {
  font-weight: 500;
  color: var(--secondary-color);
  white-space: nowrap;
}

/* ==========================================
   ギャラリースライダー
   ========================================== */
.gallery-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.gallery-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.gallery-slide {
  min-width: 100%;
  height: 70vh; /* デフォルト: ビューポートの70% */
  max-height: 800px; /* 最大高さを制限 */
  min-height: 400px; /* 最小高さを確保 */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  overflow: hidden; /* スケール時のはみ出しを防ぐ */
}

.gallery-slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 画像全体を表示（縦横比維持） */
  display: block;
  transform-origin: center center; /* スケールの基準点を中央に */
  transform: scale(var(--img-scale, 1)); /* 親要素のCSS変数でスケール適用 */
}

/* タブレット向け調整 (768px - 1023px) */
@media (max-width: 1023px) {
  .gallery-slider-wrapper {
    max-width: 100%;
    border-radius: 8px;
  }

  .gallery-slide {
    height: 60vh;
    max-height: 600px;
    min-height: 350px;
  }
}

/* モバイル向け調整 (767px以下) */
@media (max-width: 767px) {
  .gallery-slider-wrapper {
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .gallery-slide {
    height: 50vh;
    max-height: 500px;
    min-height: 300px;
  }

  .gallery-slide-img {
    object-fit: cover; /* モバイルでは画像をフィットさせる */
  }
}

.gallery-slide .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a1a2e 0%, #2a2a4e 100%);
  border: 1px solid rgba(139, 115, 85, 0.15);
  color: #d0d0e0;
}

.gallery-slide .image-placeholder i {
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.6;
}

.gallery-slide .image-placeholder p {
  font-size: 1rem;
  opacity: 0.8;
}

/* モバイル向けプレースホルダー調整 */
@media (max-width: 767px) {
  .gallery-slide .image-placeholder i {
    font-size: 3rem;
  }

  .gallery-slide .image-placeholder p {
    font-size: 0.9rem;
  }
}

.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-dot.active {
  background: rgba(139, 115, 85, 1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
}

/* タブレット向けナビゲーション調整 */
@media (max-width: 1023px) {
  .gallery-dots {
    bottom: 15px;
  }

  .gallery-dot {
    width: 10px;
    height: 10px;
  }
}

/* モバイル向けナビゲーション調整 */
@media (max-width: 767px) {
  .gallery-dots {
    bottom: 12px;
    padding: 6px 12px;
    gap: 8px;
  }

  .gallery-dot {
    width: 8px;
    height: 8px;
  }

  .gallery-dot.active {
    transform: scale(1.2);
  }
}

/* メニュープレビュー */
.menu-stores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  max-width: 800px;
  margin: 0 auto;
}

.menu-store-card {
  text-align: center;
  padding: var(--spacing-xl);
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.menu-store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.menu-store-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.menu-store-card p {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0.875rem; /* タップ領域拡大 */
  line-height: 1.25;
  min-height: 44px; /* アクセシビリティ */
  border-radius: 999px;
  white-space: nowrap; /* 折り返し防止 */
  border: 2px solid var(--secondary-color); /* ボタンの枠を追加 */
}

.menu-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* お品書きセクション専用：四角いボタンスタイル */
.menu-preview .menu-link {
  border-radius: 6px; /* 四角形（角を少し丸く） */
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-color: transparent;
  box-shadow: 0 2px 8px rgba(139, 115, 85, 0.15);
}

.menu-preview .menu-link:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.25);
}

.menu-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.35);
  border-radius: 999px;
}

/* ==========================================
   店舗関連
   ========================================== */
.stores.section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

/* ホーム各セクションを1画面にフィット */
.home .stores.section,
.home .gallery.section,
.home .menu-preview.section,
.home .access.section {
  min-height: calc(100vh - var(--header-height));
}

.stores.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(139, 115, 85, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(201, 48, 44, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(45deg, rgba(139, 115, 85, 0.02) 0%, transparent 30%);
  pointer-events: none;
}

.stores.section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 115, 85, 0.3),
    transparent
  );
}

.stores .section-header {
  position: relative;
  z-index: 1;
}

.stores .section-title .title-ja {
  color: #f8f8f8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stores .section-title .title-en {
  color: rgba(139, 115, 85, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

/* フェードインアニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.store-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(139, 115, 85, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.store-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 115, 85, 0.05) 0%,
    rgba(201, 48, 44, 0.03) 100%
  );
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(139, 115, 85, 0.2);
  border-color: rgba(139, 115, 85, 0.4);
}

.store-card:hover::before {
  opacity: 1;
}

.store-image {
  height: 400px;
  overflow: hidden;
}

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

.store-content {
  padding: var(--spacing-lg);
  background: rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 1;
}

.store-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  color: #f8f8f8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.store-description {
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.store-card .store-features ul {
  color: #c0c0c0;
}

.store-card .store-features li {
  color: #c0c0c0;
}

/* フロア情報の括弧位置を揃える */
.store-card .store-features .floor-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-card .store-features .floor-list .floor-name {
  min-width: 7em;
  display: inline-block;
}

.store-card .store-features .floor-list .floor-capacity {
  color: #a0a0a0;
}

.store-card .store-contact p {
  color: #c0c0c0;
}

/* 二店舗のご案内：メニューを見るボタンを中央揃え */
.store-card .store-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  padding: 1.5rem;
}

.store-card .store-contact .menu-link {
  margin: 0 auto;
}

/* ==========================================
   ギャラリーセクション - 深いネイビー基調
   ========================================== */
.gallery.section {
  background: #000000;
  position: relative;
  overflow: hidden;
  padding: var(--spacing-lg) 0;
}

.gallery.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(139, 115, 85, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(26, 26, 46, 0.4) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.gallery .section-title .title-ja {
  color: #f0f0f0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.gallery .section-title .title-en {
  color: rgba(139, 115, 85, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* ==========================================
   メニュープレビューセクション - ダークグリーン基調
   ========================================== */
.menu-preview.section {
  background: linear-gradient(135deg, #0f1419 0%, #1a2f1a 50%, #0d1f0d 100%);
  position: relative;
  overflow: hidden;
}

.menu-preview.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 60%,
      rgba(139, 115, 85, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(201, 48, 44, 0.03) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.menu-preview .section-title .title-ja {
  color: #f5f5f5;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.menu-preview .section-title .title-en {
  color: rgba(139, 115, 85, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   テイクアウト・出前セクション
   ========================================== */
.takeout.section {
  background: linear-gradient(135deg, #1a1714 0%, #252018 50%, #1f1b14 100%);
  position: relative;
  overflow: hidden;
}

.takeout.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(139, 115, 85, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.takeout .section-title .title-ja {
  color: #f5f5f5;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.takeout .section-title .title-en {
  color: rgba(139, 115, 85, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.takeout-content {
  max-width: 1000px;
  margin: 0 auto;
}

.takeout-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.takeout-notice {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 12px;
  padding: var(--spacing-lg);
}

.takeout-notice h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #d4c5b3;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.takeout-notice h3 i {
  color: rgba(139, 115, 85, 0.9);
}

.takeout-notice ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.takeout-notice li {
  color: #b0b0b0;
  padding: var(--spacing-xs) 0;
  padding-left: 1.5rem;
  position: relative;
}

.takeout-notice li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: rgba(139, 115, 85, 0.7);
}

.takeout-notice p {
  color: #b0b0b0;
  line-height: 1.8;
}

.takeout-menus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.takeout-menu-card {
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(37, 37, 37, 0.9) 100%);
  border: 1px solid rgba(139, 115, 85, 0.25);
  border-radius: 12px;
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
}

.takeout-menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(139, 115, 85, 0.4);
}

.takeout-menu-card h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #f5f5f5;
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.05em;
}

.takeout-menu-card .btn {
  margin-bottom: var(--spacing-md);
}

.takeout-menu-card .no-pdf {
  color: #888;
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.takeout-contact {
  font-size: 0.9rem;
  color: #a0a0a0;
}

/* ==========================================
   アクセスセクション - ダークブラウン基調
   ========================================== */
.access.section {
  background: linear-gradient(135deg, #1a1410 0%, #2d2218 50%, #1f1814 100%);
  position: relative;
  overflow: hidden;
}

.access.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 40% 70%,
      rgba(139, 115, 85, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(45deg, rgba(45, 34, 24, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.access .section-title .title-ja {
  color: #f8f5f0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.access .section-title .title-en {
  color: rgba(139, 115, 85, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* アクセス背景画像（Customizer対応） */
.access.section .section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.access.section .section-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 全セクションの共通z-index調整 */
.gallery .section-header,
.menu-preview .section-header,
.access .section-header {
  position: relative;
  z-index: 1;
}

/* ==========================================
   ギャラリーアイテムのスタイル調整
   ========================================== */
.gallery-item .image-placeholder {
  background: linear-gradient(145deg, #1a1a2e 0%, #2a2a4e 100%);
  border: 1px solid rgba(139, 115, 85, 0.15);
  color: #d0d0e0;
}

.gallery-store-title {
  color: #f0f0f0 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   メニューストアカードのスタイル調整
   ========================================== */
.menu-store-card {
  background: linear-gradient(145deg, #1a2f1a 0%, #2a3f2a 100%) !important;
  border: 1px solid rgba(139, 115, 85, 0.2) !important;
  color: #e0e0e0 !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4) !important;
}

.menu-store-card h3 {
  color: #f5f5f5 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.menu-store-card p {
  color: #d0d0d0 !important;
}

.menu-preview .menu-link {
  color: rgba(139, 115, 85, 0.9) !important;
  border-color: rgba(139, 115, 85, 0.7) !important;
}

.menu-preview .menu-link:hover {
  color: #f5f5f5 !important;
  background-color: rgba(139, 115, 85, 0.9) !important;
  border-color: rgba(139, 115, 85, 0.9) !important;
}

/* ==========================================
   アクセスカードのスタイル調整
   ========================================== */
.access-card {
  background: linear-gradient(145deg, #2d2218 0%, #3d3228 100%) !important;
  border: 1px solid rgba(139, 115, 85, 0.25) !important;
  color: #f0f0f0 !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5) !important;
}

.access-card h3 {
  font-family: var(--font-serif) !important;
  font-size: 1.75rem !important;
  font-weight: 500 !important;
  color: #f8f5f0 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
  margin-bottom: 0 !important;
  padding: var(--spacing-sm) 0 var(--spacing-sm) 0 !important;
  position: relative !important;
  letter-spacing: 0.08em !important;
  line-height: 1.4 !important;
  text-align: center !important;
  background: linear-gradient(
    135deg,
    rgba(139, 115, 85, 0.1) 0%,
    rgba(139, 115, 85, 0.05) 100%
  ) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(139, 115, 85, 0.2) !important;
}

.access-card h3::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 115, 85, 1),
    transparent
  );
  border-radius: 1px;
}

.access-card h3::after {
  content: "";
  position: absolute;
  left: var(--spacing-sm);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: rgba(139, 115, 85, 0.7);
  font-family: var(--font-sans);
}

.access-card .address,
.access-card .phone {
  color: #e0e0e0 !important;
}

.access-detail-link {
  position: relative;
  z-index: 1;
  margin-top: var(--spacing-lg);
}

/* アクセス内 「Google Mapで見る」ボタンの中央配置 */
.access .access-info > a.btn,
.access .access-info > a.btn-elegant,
.access .access-info > a.btn-minimal {
  display: block !important;
  width: max-content;
  margin: var(--spacing-md) auto 0 !important;
}

/* 店舗地図のスタイル */
.store-map {
  margin: var(--spacing-md) 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(139, 115, 85, 0.2);
  position: relative;
}

.store-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(139, 115, 85, 0.3);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}

.store-map iframe {
  filter: contrast(1.1) brightness(0.9) sepia(0.1);
  transition: filter 0.3s ease;
}

.store-map:hover iframe {
  filter: contrast(1.2) brightness(1) sepia(0.05);
}

/* ==========================================
   フッター
   ========================================== */
.footer {
  background-color: #f8f8f8;
  color: #666666;
  padding: var(--spacing-xl) 0;
}

.footer-upper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-stores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.footer-store h4 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
}

.footer-store .store-hours-inline {
  margin-top: var(--spacing-sm);
  color: #999;
  font-size: 0.9rem;
}

.footer-store .store-hours-inline i {
  margin-right: 0.5em;
  color: var(--secondary-color);
}

.footer-notice {
  text-align: center;
  margin-top: var(--spacing-lg);
  font-size: 0.85rem;
  color: #888;
}

.footer-menu-wrapper {
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--spacing-lg);
}

.footer-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.footer-menu a {
  color: #666666;
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-menu a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.6;
  color: #666666;
}

/* フッター内の本文テキスト色統一 */
.footer .store-tel,
.footer .store-address,
.footer .store-hours p,
.footer .holiday {
  color: #666666;
}

/* ==========================================
   ボタン（共通デザイン基盤）
   ========================================== */
/* 一貫した基礎スタイル（a.btn/hero-btn/実ボタン要素） */
.btn,
.hero-btn,
button,
input[type="submit"],
input[type="button"] {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 999px; /* 丸みを統一 */
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25;
  border: 1px solid transparent; /* ホバー時のレイアウトズレ防止 */
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
  position: relative;
  vertical-align: middle;
}

/* プライマリ（ヒーロー用も揃える） */
.btn-primary,
.hero-btn,
input[type="submit"].btn-primary,
button.btn-primary {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  border-color: var(--secondary-color);
}

.btn-primary:hover,
.hero-btn:hover,
input[type="submit"].btn-primary:hover,
button.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/* セカンダリ（アウトライン） */
.btn-secondary,
input[type="button"].btn-secondary,
button.btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover,
input[type="button"].btn-secondary:hover,
button.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

/* フォーカス可視（アクセシビリティ強化） */
.btn:focus-visible,
.hero-btn:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible,
input[type="button"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.35); /* secondaryカラー由来 */
}

/* 押下時の軽いアクティブ表現 */
.btn:active,
.hero-btn:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

/* 無効状態の一貫表現 */
.btn[aria-disabled="true"],
.btn.is-disabled,
.btn:disabled,
.hero-btn[aria-disabled="true"],
.hero-btn.is-disabled,
.hero-btn:disabled,
button:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

/* フル幅バリアント（必要に応じて使用） */
.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* 追加ボタンスタイル - お品書きスタイルに統一 */
.btn.btn-elegant,
a.btn-elegant {
  display: inline-flex !important;
  align-items: center !important;
  gap: var(--spacing-xs) !important;
  background-color: transparent !important;
  color: var(--secondary-color) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 6px !important;
  font-family: var(--font-serif) !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  border: 2px solid var(--secondary-color) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  min-height: 44px !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  box-shadow: 0 2px 8px rgba(139, 115, 85, 0.15) !important;
  position: relative !important;
}

.btn.btn-elegant:hover,
a.btn-elegant:hover {
  background-color: var(--secondary-color) !important;
  color: var(--bg-white) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.25) !important;
}

.btn.btn-elegant i,
a.btn-elegant i {
  transition: color 0.3s ease !important;
}

/* スマホ版 */
@media (max-width: 767px) {
  .btn.btn-elegant,
  a.btn-elegant {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.95rem !important;
  }
}

.btn.btn-outline-elegant,
a.btn-outline-elegant {
  background-color: transparent !important;
  color: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color) !important;
  padding: 0.8rem 2rem !important;
  border-radius: 35px !important;
  font-family: var(--font-serif) !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  position: relative !important;
  overflow: hidden !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

.btn.btn-outline-elegant::before,
a.btn-outline-elegant::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--secondary-color);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn.btn-outline-elegant:hover::before,
a.btn-outline-elegant:hover::before {
  width: 100%;
}

.btn.btn-outline-elegant:hover,
a.btn-outline-elegant:hover {
  color: var(--bg-white) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-2px) !important;
}

.btn.btn-minimal,
a.btn-minimal {
  background-color: transparent !important;
  color: var(--secondary-color) !important;
  padding: 0.6rem 1.5rem !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

.btn.btn-minimal:hover,
a.btn-minimal:hover {
  background-color: var(--bg-light) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

.btn.btn-japanese,
a.btn-japanese {
  display: inline-flex !important;
  align-items: center !important;
  gap: var(--spacing-xs) !important;
  background: rgba(139, 115, 85, 0.4) !important;
  color: #ffffff !important;
  /* padding: 0.5rem 1rem !important; */
  border-radius: 6px !important;
  font-family: var(--font-serif) !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  border: none !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  min-height: 44px !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  box-shadow: 0 2px 8px rgba(139, 115, 85, 0.25) !important;
}

.btn.btn-japanese:hover,
a.btn-japanese:hover {
  background: rgba(139, 115, 85, 0.6) !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 4px 16px rgba(139, 115, 85, 0.4) !important;
}

/* スマホ版: 控えめなデザイン */
@media (max-width: 767px) {
  .btn.btn-japanese,
  a.btn-japanese {
    background: rgba(139, 115, 85, 0.2) !important;
    color: #ffffff !important;
    border: 1px solid rgba(139, 115, 85, 0.4) !important;
    box-shadow: none !important;
    font-weight: 500 !important;
  }

  .btn.btn-japanese:hover,
  a.btn-japanese:hover {
    background: rgba(139, 115, 85, 0.35) !important;
    color: #ffffff !important;
    border-color: rgba(139, 115, 85, 0.6) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 6px rgba(139, 115, 85, 0.15) !important;
  }
}

/* ==========================================
   アニメーション
   ========================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ==========================================
   ページヘッダー（統一デザイン）
   ========================================== */
.page-header {
  background: linear-gradient(135deg, #f0ebe5 0%, #e8e3db 100%);
  padding: var(--spacing-xxl) 0 var(--spacing-xl);
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(139, 115, 85, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.page-header::before {
  width: 100%;
  height: 120px; /* ←高さは必ず確保 */
  background: url("http://localhost/my_blog/wp-content/uploads/2025/08/f81fd2e4c52864042852c112ce927ae2.svg")
    no-repeat;
  background-size: 100% 100%;
}

.page-header-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease;
}

/* ページヘッダー装飾画像 */
.page-header-decoration {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  max-height: 80%;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
}

.page-header-decoration-left {
  left: 0;
  bottom: 0;
  max-width: 180px;
}

@media (max-width: 767px) {
  .page-header-decoration-left {
    max-width: 100px;
    opacity: 0.4;
  }
}

/* ==========================================
   ページヒーロー（統一デザイン）
   ========================================== */
.page-hero {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: var(--spacing-xxl) 0 var(--spacing-xl);
  margin-top: 80px;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
}

.page-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: #3a2f26;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.12em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5),
               0 2px 4px rgba(58, 47, 38, 0.1);
}

.page-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: rgba(139, 115, 85, 0.75);
  text-transform: uppercase;
  font-weight: 400;
}

/* メニューページ用ヒーロー */
.fukunaka-hero,
.shiomachi-hero {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.fukunaka-hero .page-title,
.shiomachi-hero .page-title {
  color: var(--primary-color);
}

.fukunaka-hero .page-subtitle,
.shiomachi-hero .page-subtitle {
  color: var(--secondary-color);
}

.main-content {
  min-height: 80vh;
  background: linear-gradient(180deg, #f0ebe5 0%, #ede8e2 100%);
}

/* メニューグリッド */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.menu-item-content {
  padding: var(--spacing-sm);
}

.menu-item-name {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.menu-item-description {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.menu-item-price {
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: var(--spacing-xs);
}

/* ラグジュアリーカードスタイル（メニュー専用） */
.menu-grid .menu-item {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.menu-grid .menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(212, 197, 179, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-grid .menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.2);
  border-color: rgba(139, 115, 85, 0.4);
}

.menu-grid .menu-item:hover::before {
  opacity: 1;
}

.menu-item-image {
  height: 220px;
  margin: 0;
  border-radius: 14px 14px 0 0;
}

.menu-item-image img {
  transform: scale(1);
}

.menu-item-content {
  padding: var(--spacing-lg);
  background: transparent;
}

.menu-item-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 197, 179, 0.1);
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #2a2622;
  font-weight: 500;
}

.menu-leader {
  display: none;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #8b7355;
  font-weight: 600;
  align-self: flex-end;
}

.menu-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.menu-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border-radius: 999px;
  border: 1px solid rgba(139, 115, 85, 0.3);
  color: #8b7355;
  background: rgba(139, 115, 85, 0.08);
  font-weight: 500;
}

.menu-badge.seasonal {
  border-color: rgba(201, 48, 44, 0.4);
  color: #c9302c;
  background: rgba(201, 48, 44, 0.08);
}

.menu-badge.summer {
  border-color: rgba(230, 126, 34, 0.4);
  color: #e67e22;
  background: rgba(230, 126, 34, 0.08);
}

.menu-badge.winter {
  border-color: rgba(52, 152, 219, 0.5);
  color: #3498db;
  background: linear-gradient(135deg, rgba(174, 214, 241, 0.15) 0%, rgba(52, 152, 219, 0.08) 100%);
}

.menu-badge.origin {
  /* origin badge uses default styling */
}

/* カスタムフィールド */
.seasonal-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--accent-color);
  color: var(--bg-white);
  font-size: 0.75rem;
  border-radius: 15px;
  margin-top: var(--spacing-xs);
}

.origin-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--secondary-color);
  color: var(--bg-white);
  font-size: 0.75rem;
  border-radius: 15px;
  margin-top: var(--spacing-xs);
}

/* ==========================================
   ご挨拶ページ
   ========================================== */

/* ヒーローセクション */
.greeting-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.greeting-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.greeting-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: brightness(40%); /* 背景を暗く */
  -webkit-backdrop-filter: brightness(40%); /* Safari対策 */
  z-index: 2;
}

.greeting-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--bg-white);
  max-width: 900px;
  padding: var(--spacing-xl);
  /* background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); */
  border-radius: 12px;
}

.greeting-hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  letter-spacing: 0.1em;
  color: #ffffff;
}

.greeting-hero-text {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.05em;
  opacity: 0.95;
  color: #ffffff;
}

.greeting-hero-tagline {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.15em;
  font-style: italic;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* ギャラリースライダー */
.greeting-gallery {
  background: var(--bg-light);
}

.greeting-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.greeting-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.greeting-slide {
  min-width: 100%;
  height: 70vh;
  max-height: 800px;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}

.greeting-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.greeting-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-lg);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 70%,
    transparent 100%
  );
  color: #ffffff !important;
  z-index: 5;
}

.caption-store-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
  color: #ffffff !important;
}

.caption-label {
  font-size: 1.125rem;
  font-weight: 400;
  opacity: 0.9;
}

.caption-description {
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
  opacity: 0.9;
  letter-spacing: 0.05em;
}

.caption-info {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.8;
}

.caption-info i {
  margin-right: var(--spacing-xs);
  color: rgba(139, 115, 85, 0.9);
}

.greeting-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.greeting-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.greeting-slider-dot.active {
  background: rgba(139, 115, 85, 1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
}

/* CTAセクション */
.greeting-cta {
  background: var(--bg-white);
  text-align: center;
}

.greeting-cta-content h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  color: var(--text-dark);
}

.greeting-cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* レスポンシブ対応 */
@media (max-width: 1023px) {
  .greeting-hero {
    height: 70vh;
    min-height: 500px;
  }

  .greeting-hero-title {
    font-size: 2.25rem;
  }

  .greeting-hero-text {
    font-size: 1rem;
  }

  .greeting-slide {
    height: 60vh;
    max-height: 600px;
    min-height: 400px;
  }

  .caption-store-name {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .greeting-hero {
    height: 60vh;
    min-height: 400px;
  }

  .greeting-hero-content {
    max-width: 95%;
    padding: var(--spacing-md) var(--spacing-sm);
    margin: 0 auto;
  }

  .greeting-hero-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
  }

  .greeting-hero-text {
    font-size: 1rem;
    line-height: 2.2;
    letter-spacing: 0.08em;
  }

  .greeting-hero-tagline {
    font-size: 0.95rem;
    margin-top: 1rem;
    display: block;
  }

  .greeting-slide {
    height: 50vh;
    max-height: 500px;
    min-height: 350px;
  }

  .greeting-slide-caption {
    padding: var(--spacing-md);
  }

  .caption-store-name {
    font-size: 1.25rem;
  }

  .caption-description {
    font-size: 0.9rem;
  }

  .caption-info {
    font-size: 0.8rem;
  }

  .greeting-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* 小さいスマホ向け最適化 */
@media (max-width: 480px) {
  .greeting-hero-content {
    max-width: 98%;
    padding: var(--spacing-sm);
    /* background: rgba(0, 0, 0, 0.4); */
  }

  .greeting-hero-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
  }

  .greeting-hero-text {
    font-size: 0.95rem;
    line-height: 2.4;
    letter-spacing: 0.1em;
  }

  .greeting-hero-tagline {
    font-size: 0.9rem;
    margin-top: 0.75rem;
  }

  .greeting-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* 旧スタイルの削除用（後方互換性） */
body.page-template-page-first-visit .welcome-message,
body.page-template-page-first-visit-php .welcome-message {
  position: relative;
  transition: min-height 0.3s ease;
}

body.page-template-page-first-visit .welcome-message.first-visit-hero-active,
body.page-template-page-first-visit-php
  .welcome-message.first-visit-hero-active {
  display: flex;
  align-items: center;
  padding: var(--spacing-lg) 0;
}

body.page-template-page-first-visit
  .welcome-message.first-visit-hero-active
  .container,
body.page-template-page-first-visit-php
  .welcome-message.first-visit-hero-active
  .container {
  width: 100%;
}

.welcome-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.welcome-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  color: #2a2622;
}

.welcome-text p {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: var(--spacing-md);
  color: #666666;
}

.store-introduction {
  background: linear-gradient(180deg, #ede8e2 0%, #f0ebe5 100%);
  position: relative;
}

.store-introduction::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(157, 139, 112, 0.04) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.store-detail {
  margin-bottom: var(--spacing-xxl);
  padding: var(--spacing-xl);
  background: linear-gradient(145deg, #f5f2ed 0%, #ebe6df 100%);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(90, 74, 58, 0.12),
              0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(139, 115, 85, 0.2);
  position: relative;
}

.store-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(157, 139, 112, 0.03) 0%,
    transparent 60%
  );
  border-radius: 12px;
  pointer-events: none;
}

.store-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-xl) * 1.5);
  align-items: start;
}

/* 店舗外観写真（MAPの上に配置） */
.store-exterior {
  margin-bottom: var(--spacing-md);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  /* 和風の装飾的な枠線 */
  border: 3px solid transparent;
  background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
              linear-gradient(135deg,
                rgba(139, 115, 85, 0.6) 0%,
                rgba(201, 48, 44, 0.4) 50%,
                rgba(139, 115, 85, 0.6) 100%) border-box;
  /* 立体的な影 */
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(139, 115, 85, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-exterior::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.store-exterior::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.store-exterior:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.2),
    0 4px 16px rgba(139, 115, 85, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  border-width: 3px;
}

.store-exterior:hover::before {
  opacity: 0.7;
}

.store-exterior:hover::after {
  opacity: 1;
}

.store-exterior .exterior-image {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
}

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

.store-detail.reverse .store-detail-content {
  direction: rtl;
}

.store-detail.reverse .store-detail-text {
  direction: ltr;
}

.store-detail.reverse .store-detail-images {
  direction: ltr;
}

/* アクセスページ: 外観写真とマップを上から配置 */
body.page-template-page-access-php .store-detail-content .store-detail-images,
body.page-template-page-access .store-detail-content .store-detail-images {
  align-self: start;
}

/* アクセスページ: 店舗紹介内の和風ボタンを中央寄せ（強制上書き） */
body.page-template-page-access-php .store-detail-info a.btn.btn-japanese,
body.page-template-page-access .store-detail-info a.btn.btn-japanese {
  display: block !important;
  width: max-content;
  margin: var(--spacing-md) auto 0 !important;
}

.store-detail-text h3 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: var(--spacing-lg);
  color: #6b5b4a;
  letter-spacing: 0.12em;
  text-align: center;
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid rgba(107, 91, 74, 0.25);
  position: relative;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.store-detail-text h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(107, 91, 74, 0.7),
    transparent
  );
}

.store-detail-text p {
  line-height: 2;
  margin-bottom: var(--spacing-md);
  color: #3a2f26;
  font-size: 1.05rem;
}

.store-detail-info {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: linear-gradient(
    135deg,
    rgba(107, 91, 74, 0.08) 0%,
    rgba(107, 91, 74, 0.04) 100%
  );
  border-radius: 8px;
  border: 1px solid rgba(107, 91, 74, 0.2);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.store-detail-info p {
  margin-bottom: var(--spacing-sm);
  color: #3a2f26;
  font-size: 1.05rem;
}

.store-detail-info p i {
  color: rgba(107, 91, 74, 0.75);
  margin-right: var(--spacing-xs);
}

.store-detail-btn {
  display: inline-block;
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--secondary-color);
  color: var(--bg-white);
  text-decoration: none;
  border-radius: 25px;
  transition: var(--transition);
}

.store-detail-btn:hover {
  background-color: var(--accent-color);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #ebe6df 0%, #e8e3db 100%);
  color: #3a2f26;
  text-align: center;
  border-top: 1px solid rgba(107, 91, 74, 0.25);
  border-bottom: 1px solid rgba(107, 91, 74, 0.25);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(107, 91, 74, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  color: #6b5b4a;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.cta-content p {
  margin-bottom: var(--spacing-lg);
  color: #3a2f26;
  opacity: 1;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--bg-white);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: var(--transition);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* アクセスページ */
.access-content {
  padding: var(--spacing-xl) 0;
}

.store-access {
  margin-bottom: var(--spacing-xxl);
}

.store-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.store-label {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-color);
}

.store-subtitle {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  margin-top: var(--spacing-xs);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

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

.access.section .access-info {
  background: linear-gradient(
    135deg,
    rgba(26, 20, 16, 0.8) 0%,
    rgba(45, 34, 24, 0.6) 100%
  );
  border: 1px solid rgba(139, 115, 85, 0.3);
  border-radius: 12px;
  padding: var(--spacing-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 2px rgba(139, 115, 85, 0.1);
  backdrop-filter: blur(5px);
}

.info-item {
  margin-bottom: var(--spacing-md);
}

.info-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.info-item h3 i {
  color: var(--secondary-color);
  margin-right: var(--spacing-xs);
}

.access-list {
  list-style: none;
  padding-left: var(--spacing-md);
}

.access-list li {
  position: relative;
  margin-bottom: var(--spacing-xs);
  color: var(--text-light);
}

.access-list li::before {
  content: "▸";
  position: absolute;
  left: -1rem;
  color: var(--secondary-color);
}

/* 情報アイテムの区切り */
.access-info .info-item + .info-item {
  padding-top: var(--spacing-sm);
  border-top: 1px dotted var(--border-color);
}

/* 地図コンテナ - クリーンなデザイン */
.map-container {
  overflow: hidden;
  border-radius: 8px;
}

/* 汎用Google Map埋め込み（レスポンシブ比率保持） */
.map-embed {
  position: relative;
  padding-top: 56.25%;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Map下のアクションボタン配置 */
.map-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-md);
}

/* アクションボタン（地図/電話） */
.access-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-top: var(--spacing-md);
}

.access-actions .btn {
  min-width: 180px;
}

/* ==========================================
   page-access専用スタイル（他ページに影響なし）
   ========================================== */
/* 「店舗のご紹介」セクションタイトルの色 */
body.page-template-page-access-php .store-introduction .section-title .title-ja,
body.page-template-page-access .store-introduction .section-title .title-ja {
  color: #3a2f26 !important;
}

/* 店舗名の色：ダークブラウンで見やすく */
body.page-template-page-access-php .store-detail-text h3,
body.page-template-page-access .store-detail-text h3 {
  color: #5a4a3a !important;
}

/* 店舗情報ボックス：より濃い背景でコントラスト強化 */
body.page-template-page-access-php .store-detail-info,
body.page-template-page-access .store-detail-info {
  background: linear-gradient(
    135deg,
    rgba(90, 74, 58, 0.15) 0%,
    rgba(90, 74, 58, 0.08) 100%
  ) !important;
  border: 1px solid rgba(90, 74, 58, 0.3) !important;
}

/* Google Mapボタン：濃い茶色背景に白文字で見やすく */
body.page-template-page-access-php .map-actions .btn-elegant,
body.page-template-page-access .map-actions .btn-elegant {
  background-color: #5a4a3a !important;
  color: #ffffff !important;
  border: 1px solid #5a4a3a !important;
}

body.page-template-page-access-php .map-actions .btn-elegant:hover,
body.page-template-page-access .map-actions .btn-elegant:hover {
  background-color: #6b5b4a !important;
  border-color: #6b5b4a !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(90, 74, 58, 0.3) !important;
}

/* CTAセクションのボタンも同様に調整 */
body.page-template-page-access-php .cta-buttons .btn-elegant,
body.page-template-page-access .cta-buttons .btn-elegant {
  background-color: #5a4a3a !important;
  color: #ffffff !important;
  border: 1px solid #5a4a3a !important;
}

body.page-template-page-access-php .cta-buttons .btn-elegant:hover,
body.page-template-page-access .cta-buttons .btn-elegant:hover {
  background-color: #6b5b4a !important;
  border-color: #6b5b4a !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(90, 74, 58, 0.3) !important;
}

/* お品書きボタン（btn-japanese）：スマホ版で黄色背景を付ける */
@media (max-width: 767px) {
  body.page-template-page-access-php .store-detail-info .btn-japanese,
  body.page-template-page-access .store-detail-info .btn-japanese {
    background-color: var(--secondary-color) !important;
    color: var(--bg-white) !important;
    border-color: var(--secondary-color) !important;
  }

  body.page-template-page-access-php .store-detail-info .btn-japanese:hover,
  body.page-template-page-access .store-detail-info .btn-japanese:hover {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    transform: translateY(-2px) !important;
  }
}

/* 交通案内セクション */
.transport-guide {
  background-color: var(--bg-light);
  padding: var(--spacing-xxl) 0;
}

.transport-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.transport-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: var(--spacing-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.transport-item h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.transport-item h3 i {
  color: var(--secondary-color);
  margin-right: var(--spacing-xs);
}

.transport-item h4 {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
}

.transport-item ul {
  padding-left: var(--spacing-md);
  color: var(--text-light);
}

/* ご予約案内（軽く整える） */
.reservation-guide {
  padding: var(--spacing-xxl) 0;
}

.reservation-content .lead-text {
  text-align: center;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

/* ==========================================
   メニューカード（統一デザイン）
   ========================================== */

/* メニューカード基本スタイル */
.menu-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(139, 115, 85, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.2);
  border-color: rgba(139, 115, 85, 0.4);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 300px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  position: relative;
  background-color: #f5f5f5;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(1.08) contrast(1.12) saturate(1.25);
  display: block;
}

.menu-card:hover .menu-card-image img {
  transform: none;
  filter: brightness(1.08) contrast(1.12) saturate(1.25);
}

.menu-card-content {
  padding: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #2a2622;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* menu-item-header内のmenu-card-titleスタイル調整 */
.menu-item-header .menu-card-title {
  margin-bottom: 0;
  width: 100%;
}

.menu-card-description {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.menu-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* グループメニューカード */
.menu-card-group {
  grid-column: span 2;
}

.menu-card-group .menu-card-image {
  height: 280px;
}

.menu-group-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-group-item {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--border-color);
}

.menu-group-item:first-child {
  padding-top: 0;
}

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

.menu-group-item .menu-item-header {
  margin-bottom: 0.25rem;
}

.menu-group-item .menu-card-title {
  font-size: 1rem;
}

.menu-group-item .menu-card-meta {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.menu-group-item .menu-card-description {
  font-size: 0.85rem;
  margin-bottom: 0;
  margin-top: 0.25rem;
}

/* グループカードのレスポンシブ */
@media (max-width: 768px) {
  .menu-card-group {
    grid-column: span 1;
  }

  .menu-card-group .menu-card-image {
    height: 200px;
  }

  .menu-group-item .menu-card-title {
    font-size: 0.95rem;
  }
}

/* ==========================================
   メニューページ専用スタイル
   ========================================== */

/* 店舗別ヒーローセクション */
.fukunaka-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2a26 50%, #3a3531 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -2px 20px rgba(0, 0, 0, 0.4);
}

.fukunaka-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.05"><rect width="100" height="100" fill="white"/><path d="M0 50h100M50 0v100" stroke="white" stroke-width="0.5"/></svg>')
    repeat;
  opacity: 0.1;
}

.shiomachi-hero {
  background: linear-gradient(135deg, #1f1a1a 0%, #2a2226 50%, #352d31 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -2px 20px rgba(0, 0, 0, 0.4);
}

.shiomachi-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.05"><rect width="100" height="100" fill="white"/><path d="M0 50h100M50 0v100" stroke="white" stroke-width="0.5"/></svg>')
    repeat;
  opacity: 0.08;
}

.fukunaka-hero .container,
.shiomachi-hero .container {
  position: relative;
  z-index: 2;
}

.fukunaka-hero .page-title,
.shiomachi-hero .page-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  background: linear-gradient(90deg, #fff 0%, #e8d7c3 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fukunaka-hero .page-subtitle,
.shiomachi-hero .page-subtitle {
  font-size: 1.125rem;
  letter-spacing: 0.4em;
  color: #d4c5b3;
  margin-top: 0.5rem;
  font-weight: 300;
}

/* テンプレート限定：高級感のある背景設定 */
.page-template-page-fukunaka-menu-php .menu-category,
.page-template-page-shiomachi-menu-php .menu-category {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  box-shadow: none;
  border-radius: 0;
  padding: var(--spacing-xxl) 0;
  border: 0;
  position: relative;
}

.page-template-page-fukunaka-menu-php .menu-category:nth-child(even),
.page-template-page-shiomachi-menu-php .menu-category:nth-child(even) {
  background: linear-gradient(180deg, #f5f5f5 0%, #fafafa 100%);
}

/* デフォルトで非表示にするカテゴリー */
.menu-category-hidden {
  display: none;
}

/* メニュー紹介セクション（統一デザイン） */
.menu-introduction {
  background-color: var(--bg-white);
  padding: var(--spacing-xl) 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  letter-spacing: 0.08em;
}

.intro-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4c5b3, transparent);
  border-radius: 2px;
}

.lead-text {
  font-size: 1.125rem;
  line-height: 2.2;
  color: var(--text-light);
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* カテゴリーヘッダー強化 */
.category-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg) 0;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(139, 115, 85, 0.2);
  position: relative;
  overflow: hidden;
}

.category-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 197, 179, 0.3),
    transparent
  );
  z-index: 0;
}

.category-icon {
  display: none;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: var(--spacing-sm);
  color: #2a2622;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.category-description {
  font-size: 0.95rem;
  color: #6b5a41;
  letter-spacing: 0.08em;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* コースメニュー専用スタイル */
.course-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.course-item {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  padding: var(--spacing-xl);
  border-radius: 8px;
  border: 2px solid rgba(139, 115, 85, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.course-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
}

.course-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
}

.course-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: #2a2622;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.05em;
}

.course-description {
  font-weight: 500;
  color: #5a5a5a;
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.course-detail {
  font-size: 0.95rem;
  color: #666666;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* 鮨哲学セクション */
.sushi-philosophy {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  padding: var(--spacing-xxl) 0;
  border-top: 1px solid rgba(139, 115, 85, 0.1);
}

.sushi-philosophy h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: #2a2622;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.sushi-philosophy h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  border-radius: 2px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.philosophy-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(139, 115, 85, 0.15);
  transition: all 0.3s ease;
}

.philosophy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.12);
  border-color: var(--secondary-color);
}

.philosophy-item h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.philosophy-item p {
  color: #666666;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* メニューお知らせセクション */
.menu-notice {
  background: linear-gradient(180deg, #f8f8f8 0%, #f0f0f0 100%);
  padding: var(--spacing-xl) 0;
  border-top: 1px solid rgba(139, 115, 85, 0.1);
}

.notice-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  padding: var(--spacing-lg);
  border-radius: 8px;
  border: 1px solid rgba(139, 115, 85, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.notice-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #2a2622;
  margin-bottom: var(--spacing-md);
  text-align: center;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.notice-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 1px;
}

.notice-content ul {
  list-style: none;
  padding: 0;
}

.notice-content li {
  position: relative;
  padding: var(--spacing-sm) 0 var(--spacing-sm) var(--spacing-lg);
  color: #666666;
  line-height: 1.8;
  border-bottom: 1px dotted rgba(139, 115, 85, 0.2);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.notice-content li:last-child {
  border-bottom: none;
}

.notice-content li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: var(--spacing-sm);
  font-size: 0.8rem;
  color: var(--secondary-color);
}

/* 予約CTAセクション強化 */
.reservation-cta {
  position: relative;
  padding: var(--spacing-xl) 0 var(--spacing-xxl);
  background: linear-gradient(180deg, #f7f3ec 0%, #f0e7db 100%);
  color: #3e352e;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(139, 115, 85, 0.28);
}

.reservation-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top center,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(120deg, rgba(139, 115, 85, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.reservation-cta .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.reservation-cta .cta-content {
  padding: calc(var(--spacing-lg) * 0.9) var(--spacing-xl);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  border: 1px solid rgba(139, 115, 85, 0.18);
  box-shadow: 0 18px 32px rgba(30, 24, 20, 0.08);
  margin: 0 auto;
}

.reservation-cta h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: var(--spacing-sm);
  color: #2d2621;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.reservation-cta > p,
.reservation-cta .cta-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: var(--spacing-md);
  color: #5a5047;
}

.reservation-cta .cta-buttons {
  margin-top: var(--spacing-lg);
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

.reservation-cta .cta-buttons .btn {
  min-width: 210px;
}

.reservation-cta .cta-buttons .btn.btn-elegant {
  box-shadow: 0 12px 24px rgba(139, 115, 85, 0.22) !important;
}

.reservation-cta .cta-buttons .btn.btn-outline-elegant {
  border-color: rgba(139, 115, 85, 0.35);
  color: #433830;
}

.contact-info {
  background: transparent;
  padding: var(--spacing-lg) 0;
  border-radius: 0;
  margin: 0 auto;
  max-width: 520px;
  border-top: 1px solid rgba(139, 115, 85, 0.18);
  border-bottom: 1px solid rgba(139, 115, 85, 0.18);
}

.phone-number {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  color: #2d2621;
  letter-spacing: 0.06em;
}

.phone-number i {
  color: #8b7355;
}

.business-hours {
  font-size: 0.95rem;
  color: rgba(73, 64, 55, 0.75);
  letter-spacing: 0.03em;
}

.access-detail-link {
  display: flex;
  justify-content: center;
  padding: 0.5em 1em;
}

/* ==========================================
   ホームのみ：画像ホバー時のアニメーション無効化
   画像が浮き上がる（scale / transform）演出を抑止
   - blog トップ: body.home
   - 固定フロントページ: body.front-page
   ========================================== */
.home :hover img,
.front-page :hover img {
  transform: none !important;
  transition: none !important;
}

/* 画像や画像カード全体の浮き上がりを抑止（ホームのみ） */
.home .menu-item:hover .menu-item-image img,
.front-page .menu-item:hover .menu-item-image img,
.home .menu-card:hover .menu-card-image img,
.front-page .menu-card:hover .menu-card-image img {
  transform: none !important;
  transition: none !important;
}

.home .gallery-item:hover,
.front-page .gallery-item:hover,
.home .menu-store-card:hover,
.front-page .menu-store-card:hover,
.home .store-card:hover,
.front-page .store-card:hover,
.home .menu-grid .menu-item:hover,
.front-page .menu-grid .menu-item:hover,
.home .menu-card:hover,
.front-page .menu-card:hover,
.home .course-item:hover,
.front-page .course-item:hover,
.home .philosophy-item:hover,
.front-page .philosophy-item:hover {
  transform: none !important;
  box-shadow: none !important;
  transition: none !important;
}

/* 料理画像のレスポンシブ対応 */
@media (max-width: 1023px) {
  .menu-card-image {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .menu-card-image {
    height: 300px;
  }

  .menu-card-title {
    font-size: 1.2rem;
  }
}

/* ==========================================
   福中店お品書き - ヘッダー背景画像
   ========================================== */
.fukunaka-menu-header {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fukunaka-menu-header .page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.fukunaka-menu-header .page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.fukunaka-menu-header .page-title {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.fukunaka-menu-header .page-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

/* 背景画像がない場合のデフォルトスタイル */
.fukunaka-menu-header:not([style*="background-image"]) {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  min-height: 300px;
}

@media (max-width: 1023px) {
  .fukunaka-menu-header {
    min-height: 400px;
  }

  .fukunaka-menu-header .page-title {
    font-size: 2.5rem;
  }

  .fukunaka-menu-header .page-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .fukunaka-menu-header {
    min-height: 300px;
  }

  .fukunaka-menu-header .page-title {
    font-size: 2rem;
  }

  .fukunaka-menu-header .page-subtitle {
    font-size: 1rem;
  }
}

/* ==========================================
   塩町店お品書き - ヘッダー背景画像
   ========================================== */
.shiomachi-menu-header {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.shiomachi-menu-header .page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.shiomachi-menu-header .page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.shiomachi-menu-header .page-title {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.shiomachi-menu-header .page-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

/* 背景画像がない場合のデフォルトスタイル */
.shiomachi-menu-header:not([style*="background-image"]) {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  min-height: 300px;
}

@media (max-width: 1023px) {
  .shiomachi-menu-header {
    min-height: 400px;
  }

  .shiomachi-menu-header .page-title {
    font-size: 2.5rem;
  }

  .shiomachi-menu-header .page-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .shiomachi-menu-header {
    min-height: 300px;
  }

  .shiomachi-menu-header .page-title {
    font-size: 2rem;
  }

  .shiomachi-menu-header .page-subtitle {
    font-size: 1rem;
  }
}

/* ==========================================
   福中店・塩町店お品書き - 料理画像ギャラリースライダー
   ========================================== */
.menu-gallery-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #000;
  margin: 0;
}

.menu-gallery-slider .slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.menu-gallery-slider .slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.menu-gallery-slider .slider-slide.active {
  opacity: 1;
  z-index: 2;
}

.menu-gallery-slider .slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* スライダードットインジケーター */
.menu-gallery-slider .slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 30px;
}

.menu-gallery-slider .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.menu-gallery-slider .slider-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.menu-gallery-slider .slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* レスポンシブ対応 */
@media (max-width: 1023px) {
  .menu-gallery-slider {
    height: 450px;
  }

  .menu-gallery-slider .slider-dots {
    bottom: 20px;
    gap: 10px;
    padding: 10px 16px;
  }

  .menu-gallery-slider .slider-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 767px) {
  .menu-gallery-slider {
    height: 300px;
  }

  .menu-gallery-slider .slider-dots {
    bottom: 15px;
    gap: 8px;
    padding: 8px 12px;
  }

  .menu-gallery-slider .slider-dot {
    width: 8px;
    height: 8px;
  }
}

/* ==========================================
   予約セクション
   ========================================== */
.reservation.section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-top: 1px solid rgba(139, 115, 85, 0.15);
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
  position: relative;
  overflow: hidden;
}

.reservation.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at top center,
      rgba(139, 115, 85, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(45deg, rgba(139, 115, 85, 0.02) 0%, transparent 30%);
  pointer-events: none;
}

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

.reservation .section-description {
  text-align: center;
  font-size: 1.125rem;
  color: #b0b0b0;
  margin-top: var(--spacing-sm);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.reservation-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.reservation-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
  border: 1px solid rgba(139, 115, 85, 0.25);
  border-radius: 12px;
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(139, 115, 85, 0.1);
  position: relative;
  overflow: hidden;
}

.reservation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 115, 85, 0.05) 0%,
    rgba(201, 48, 44, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reservation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(139, 115, 85, 0.2);
  border-color: rgba(139, 115, 85, 0.4);
}

.reservation-card:hover::before {
  opacity: 1;
}

.reservation-store-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: #f5f5f5;
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.reservation-phone {
  margin: var(--spacing-lg) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.reservation-phone i {
  font-size: 1.3rem;
  color: rgba(139, 115, 85, 0.9);
}

.reservation-phone .phone-number {
  font-size: 1.75rem;
  font-weight: 600;
  color: #d4c5b3;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.reservation-phone .phone-number:hover {
  color: rgba(139, 115, 85, 1);
  transform: scale(1.03);
}

.reservation-note {
  font-size: 0.95rem;
  color: #a0a0a0;
  margin-top: var(--spacing-md);
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   フローティング予約ボタン
   ========================================== */
.floating-reservation {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.floating-reservation-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.65rem 1.5rem;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(37, 37, 37, 0.9) 100%);
  color: #d4c5b3;
  border: 1px solid rgba(139, 115, 85, 0.35);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(139, 115, 85, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  line-height: 1.25;
  white-space: nowrap;
}

.floating-reservation-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 115, 85, 0.1) 0%,
    rgba(212, 197, 179, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.floating-reservation-btn i {
  font-size: 1.1rem;
  color: rgba(139, 115, 85, 0.9);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.floating-reservation-btn span {
  position: relative;
  z-index: 1;
}

.floating-reservation-btn:hover {
  background: linear-gradient(145deg, rgba(37, 37, 37, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
  color: rgba(139, 115, 85, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), 0 3px 10px rgba(139, 115, 85, 0.25);
  border-color: rgba(139, 115, 85, 0.5);
}

.floating-reservation-btn:hover::before {
  opacity: 1;
}

.floating-reservation-btn:hover i {
  color: rgba(139, 115, 85, 1);
}

.floating-reservation-btn.active {
  background: linear-gradient(145deg, rgba(37, 37, 37, 0.98) 0%, rgba(45, 45, 45, 0.98) 100%);
  border-color: rgba(139, 115, 85, 0.5);
  color: rgba(139, 115, 85, 1);
}

.floating-reservation-btn.active::before {
  opacity: 1;
}

.floating-reservation-btn.active i {
  color: rgba(139, 115, 85, 1);
}

.floating-reservation-menu {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.98) 0%, rgba(37, 37, 37, 0.98) 100%);
  border: 1px solid rgba(139, 115, 85, 0.3);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 4px 16px rgba(139, 115, 85, 0.2);
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.floating-reservation-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-reservation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 1px solid rgba(139, 115, 85, 0.2);
}

.floating-reservation-header h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: #d4c5b3;
  margin: 0;
  letter-spacing: 0.08em;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #a0a0a0;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: rgba(139, 115, 85, 1);
}

.floating-reservation-options {
  padding: var(--spacing-md);
}

.reservation-option {
  display: block;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(139, 115, 85, 0.25);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reservation-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 115, 85, 0.05) 0%,
    rgba(201, 48, 44, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reservation-option:last-child {
  margin-bottom: 0;
}

.reservation-option:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(139, 115, 85, 0.45);
  transform: translateX(-3px);
  box-shadow: 0 3px 10px rgba(139, 115, 85, 0.2);
}

.reservation-option:hover::before {
  opacity: 1;
}

.reservation-option-store {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: #f5f5f5;
  margin-bottom: var(--spacing-xs);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.reservation-option-phone {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 1.125rem;
  font-weight: 600;
  color: #d4c5b3;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}

.reservation-option-phone i {
  color: rgba(139, 115, 85, 0.9);
  font-size: 1rem;
}

/* ==========================================
   店舗カード内の予約情報強調
   ========================================== */
.store-reservation-info {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 8px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.store-reservation-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 115, 85, 0.03) 0%,
    rgba(201, 48, 44, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.store-reservation-info:hover {
  border-color: rgba(139, 115, 85, 0.35);
  box-shadow: 0 2px 10px rgba(139, 115, 85, 0.12);
}

.store-reservation-info:hover::before {
  opacity: 1;
}

.reservation-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #b0b0b0;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.reservation-label i {
  color: rgba(139, 115, 85, 0.8);
  font-size: 0.9rem;
}

.store-phone-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #d4c5b3;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  font-family: var(--font-serif);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.store-phone-number:hover {
  color: rgba(139, 115, 85, 1);
  transform: scale(1.03);
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .reservation-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .reservation-card {
    padding: var(--spacing-lg);
  }

  .reservation-store-name {
    font-size: 1.5rem;
  }

  .reservation-phone .phone-number {
    font-size: 1.5rem;
  }

  .floating-reservation {
    bottom: 20px;
    right: 20px;
  }

  .floating-reservation-btn {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.85) 0%, rgba(37, 37, 37, 0.85) 100%);
    color: #c0b5a5;
    border: 1px solid rgba(139, 115, 85, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(139, 115, 85, 0.1);
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }

  .floating-reservation-btn:hover {
    background: linear-gradient(145deg, rgba(37, 37, 37, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
    color: rgba(139, 115, 85, 0.95);
    border-color: rgba(139, 115, 85, 0.45);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(139, 115, 85, 0.2);
  }

  .floating-reservation-btn span {
    display: none;
  }

  .floating-reservation-menu {
    min-width: 280px;
    bottom: 60px;
    right: 0;
  }

  .store-phone-number {
    font-size: 1.5rem;
  }

  /* テイクアウト・出前セクション */
  .takeout-info {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .takeout-menus {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .takeout-notice {
    padding: var(--spacing-md);
  }

  .takeout-notice h3 {
    font-size: 1.1rem;
  }

  .takeout-menu-card {
    padding: var(--spacing-lg);
  }

  .takeout-menu-card h4 {
    font-size: 1.2rem;
  }

  /* 店舗カードと menu-stores */
  .stores-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .menu-stores {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  /* 店舗外観画像（スマホ調整） */
  .store-exterior {
    margin-bottom: var(--spacing-lg);
    border-width: 2px;
  }

  .store-exterior .exterior-image {
    max-height: 220px;
  }
}

/* ==========================================
   ダークモード用ロゴ切り替え
   ========================================== */

/* デフォルト：ライトモードではlight用ロゴを表示、dark用を非表示 */
.logo .logo-light {
  display: block;
}

.logo .logo-dark {
  display: none;
}

/* ダークモード時：dark用ロゴを表示、light用を非表示 */
@media (prefers-color-scheme: dark) {
  .logo .logo-light {
    display: none;
  }

  .logo .logo-dark {
    display: block;
  }
}

/* 手動でダークモードを切り替える場合のクラス */
html[data-theme="dark"] .logo .logo-light {
  display: none;
}

html[data-theme="dark"] .logo .logo-dark {
  display: block;
}

html[data-theme="light"] .logo .logo-light {
  display: block;
}

html[data-theme="light"] .logo .logo-dark {
  display: none;
}

/* ロゴ画像の共通スタイル */
.logo .custom-logo {
  max-height: 60px;
  width: auto;
  transition: opacity 0.3s ease;
}
