.menu-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

.menu-hero {
  text-align: center;
  margin-bottom: 48px;
}

.menu-title {
  font-size: 2rem;
  color: #c8a882;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

/* メニュー補足テキスト */
.menu-note {
  color: #777;              /* 変更 */
  font-size: 0.8rem;
  margin: 6px 0 0 2px;
  line-height: 1.6;
}

.menu-subtitle {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* タブ */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  border-bottom: 1px solid #333;
  padding-bottom: 16px;
}

.menu-tab {
  background: transparent;
  color: #aaa;
  border: 1px solid #444;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.menu-tab.active,
.menu-tab:hover {
  background: #c8a882;
  color: #111;
  border-color: #c8a882;
}

/* section見出し */
.section-heading {
  color: #5a3e28;           /* 変更 */
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;  /* 変更 */
}

.menu-category-label {
  font-size: 0.85rem;
  color: #5a3e28;           /* 変更 */
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 4px 12px;
  border-left: 3px solid #c8a882;
}

.menu-category-label small {
  color: #888;
  font-size: 0.78rem;
  margin-left: 8px;
}

/* カードグリッド（セットメニュー） */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

.menu-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.menu-card:hover {
  border-color: #c8a882;
}

.menu-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s;
  display: block;
}

.menu-img:hover {
  opacity: 0.85;
}

.menu-card-body {
  padding: 16px;
}

.menu-name {
  font-size: 1.05rem;
  color: #eee;
  font-weight: bold;
  margin-bottom: 6px;
}

.menu-desc {
  font-size: 0.82rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 10px;
}

.menu-price {
  font-size: 1.1rem;
  color: #c8a882;
  font-weight: bold;
}

.menu-price span {
  font-size: 0.8rem;
  color: #888;
  font-weight: normal;
}

/* リスト（単品） */
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

/* 既存の .menu-list-item を以下に丸ごと差し替え */
.menu-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.2s;
  min-height: 60px;
}

.menu-list-item:hover {
  border-color: #c8a882;
}

/* サムネイルあり */
.list-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.list-img:hover {
  opacity: 0.8;
}

/* 名前 */
.list-name {
  flex: 1;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* 値段 */
.list-price {
  color: #c8a882;
  font-size: 0.95rem;
  font-weight: bold;
  white-space: nowrap;
  margin-left: auto;
}

/* 写真なしカード（セット等で写真がない場合） */
.menu-card:not(.has-photo) {
  display: flex;
  align-items: center;
  min-height: 90px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 20px;
}

.menu-card:not(.has-photo) .menu-card-body {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-card:not(.has-photo) .menu-name {
  font-size: 1rem;
  margin-bottom: 0;
}

/* スマホ */
@media (max-width: 600px) {
  .menu-list {
    grid-template-columns: 1fr;
  }

  .menu-list-item {
    min-height: 52px;
  }

  .list-img {
    width: 44px;
    height: 44px;
  }
}

/* 写真＋メニューリストの2カラムレイアウト */
.menu-split {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}

.menu-split-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s;
  display: block;
}

.menu-split-img:hover {
  opacity: 0.85;
}

/* キャプション */
.menu-split-caption {
  color: #666;              /* 変更 */
  font-size: 0.82rem;
  text-align: center;
  margin-top: 8px;
  line-height: 1.6;
}

.menu-split-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 2カラム内のカテゴリラベル */
.menu-split-right .menu-category-label {
  margin-top: 24px;
  margin-bottom: 10px;
}

.menu-split-right .menu-category-label:first-child {
  margin-top: 0;
}

/* 2カラム内のリスト行（シンプル版） */
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dotted #333;
  gap: 16px;
}

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

.menu-row-name {
  color: #333;              /* 変更 */
  font-size: 0.95rem;
  flex: 1;
  line-height: 1.4;
}

.menu-row-sub {
  color: #777;              /* 変更 */
  font-size: 0.8rem;
  display: block;
  margin-top: 2px;
}

.menu-row-price {
  color: #8b5e3c;           /* 変更：茶色系で見やすく */
  font-size: 0.95rem;
  font-weight: bold;
  white-space: nowrap;
}

/* 写真下の2列グリッド */
.menu-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 32px;
}

.menu-2col-block {
  /* 各カテゴリブロック */
}

.menu-2col .menu-category-label {
  margin-top: 24px;
  margin-bottom: 8px;
}

.menu-2col .menu-category-label:first-child {
  margin-top: 0;
}

@media (max-width: 700px) {
  .menu-2col {
    grid-template-columns: 1fr;
  }
}

/* ===== カルーセル本体 ===== */
.menu-carousel {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 24px;
  overflow: hidden; /* ← 追加：はみ出し防止 */
  box-sizing: border-box; /* ← 追加 */
}

.menu-carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-sizing: border-box; /* ← 追加 */
}

.menu-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
  box-sizing: border-box; /* ← 追加 */
}

.menu-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden; /* ← 追加 */
}

.menu-carousel-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}

.menu-carousel-caption {
  background: #f8f4ef;
  border: 1px solid #e8ddd0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 12px 16px;
  text-align: center;
  box-sizing: border-box; /* ← 追加 */
  width: 100%;            /* ← 追加 */
  overflow: hidden;       /* ← 追加 */
}

/* 説明文の横はみ出し防止 */
.menu-carousel-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all; /* ← 追加 */
  white-space: normal;   /* ← 追加 */
}

.menu-carousel-price {
  font-size: 0.95rem;
  font-weight: bold;
  color: #8b5e3c;
}

/* ドット */
.menu-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.menu-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.menu-carousel-dot.active {
  background: #8b5e3c;
}

/* 矢印ボタン */
.menu-carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a3e28;
  transition: background 0.2s;
}

.menu-carousel-btn:hover { background: #fff; }
.menu-carousel-btn.prev { left: 8px; }
.menu-carousel-btn.next { right: 8px; }

@media (max-width: 480px) {

  /* 横並びのグリッド・flexを縦積みに */
  .menu-grid,
  .menu-layout,
  .menu-section-inner,
  .menu-row {
    display: flex !important;
    flex-direction: column !important;
  }

  .menu-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: baseline;
  }

  /* カルーセルを全幅に */
  .menu-carousel {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px;
  }

  /* メニューリストも全幅に */
  .menu-2col,
  .menu-list,
  .menu-right {
    width: 100% !important;
  }
  /* カルーセル＋メニューリストを縦積みに */
  .menu-split {
    flex-direction: column;
  }

  /* カルーセルを全幅に */
  .menu-split .menu-carousel {
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
  }

  /* 右側メニューリストも全幅に */
  .menu-split-right {
    width: 100%;
  }
  .menu-bottom-action {
    flex-direction: column;
    display: flex;
    align-items: stretch;
    gap: 12px;
  }

  .menu-bottom-action .reserve-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

/* ハンバーガーボタン：PC では非表示 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* × に変化 */
.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 480px) {

  .header-inner nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* ハンバーガーボタンを表示 */
  .hamburger {
    display: flex;
  }

  .hamburger span {
    background: #000;
}


  .nav-links.open {
        max-height: 400px;
        padding: 0.5rem 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #f0ebe4;
        font-size: 1rem;
    }

}

.menu-single-img {
  max-width: 460px;
  margin: 0 auto 24px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.menu-single-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}

@media (max-width: 480px) {
  .menu-single-img {
    max-width: 100%;
  }
  .menu-single-img img {
    height: 200px;
  }
}
