body {
  margin: 0;
  padding: 0;
  background-color: #fff3ee;
  color: #333;  
  font-family: 'M PLUS Rounded 1c', 'HG創英丸ﾎﾟｯﾌﾟ体', 'Comic Sans MS', cursive, sans-serif;
}

/* ハンバーガーメニューの初期非表示・PC非表示 */
.hamburger {
  display: none;
}

.global-nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /* background: #fff; */
  /* border-bottom: 3px solid #e25c21; */
  width: auto;
  max-width: 98vw;   /* 画面端ピッタリを防ぐ */
  margin: 8px auto 4px auto;/* ← 上18px・左右自動・下0px で少し下げて中央寄せ */
  padding-left: 18px;   /* ← 左右余白（調整可） */
  padding-right: 18px;
  border-radius: 18px 18px 30px 30px; /* 丸みを少し大きくしても◎ */
  box-sizing: border-box;
  z-index: 99;
}

.global-nav a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Yu Mincho', 'Hiragino Mincho Pro', serif;
  font-weight: bold;
  font-size: 1.25em;
  color: #000;
  background: #e98d76;
  border-right: 3px solid #d34523;
  border-bottom: 3px solid #d34523;
  border-radius: 12px 12px 12px 12px;
  margin: 0 6px 0 0;
  padding: 18px 0 13px 0;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.14s;
}

.global-nav a:last-child {
  margin-right: 0;
}

.global-nav a:hover, .global-nav a:focus {
  background: linear-gradient(90deg, #ffd7c6 60%, #ffeddc 100%);
  color: #a0522d;
  box-shadow: 0 2px 16px 0 rgba(233, 145, 86, 0.14);
  transform: translateY(-2px) scale(1.06);
}

.global-nav,
.global-nav.open {
  max-height: 95vh;
  overflow-y: auto;
}

.global-nav {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* メニュー全体コンテナ */
.menu-container {
  padding: 0 20px;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 24px;
}

/* 見出し */
.menu-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  white-space: nowrap;
}
.heading-icon {
  height: 48px;
  width: auto;
}

h1 {
  font-weight: 700;
  color: #b22222;
}

h2 {
  font-size: 1.8em;
  position: relative;
  /* margin-top: 20px; */
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 4px;
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #a0522d;
}
h3 {
  font-size: 1.1em;
  margin: 18px 0 5px 0;
  color: #4e4029; /* #8c734aから変更 */
}

/* ul, p {
  line-height: 1.6; 
}*/

/* 3カラムレイアウト */
.drink-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px; /* 32から変更 */
  /* max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 24px; */
}
.drink-column {
  flex: 1 1 30%;
  min-width: 280px;
  box-sizing: border-box;
  /* min-width: 0;
  max-width: 32%;
  box-sizing: border-box;
  background: #fffef9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(120,100,80,0.04);
  padding: 16px 14px 14px 14px;
  margin-bottom: 0;
  flex-direction: column; */
}

/* リストとアイテム */
.drink-column ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.drink-column li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 6px 0;
  font-size: 17px;
  border-bottom: 1px solid #eee;
  column-gap: 4px;
  word-break: break-word;
}

.menu-brackets {
  font-size: 0.88em;
  vertical-align: middle;
  white-space: nowrap;
  font-family: inherit;
}

.price {
  white-space: nowrap;
  color: #b22222;
  font-weight: bold;
  margin-left: 0;
  font-size: 1em;
}

/* 日本酒セット強調 */
.nihonshu-set .highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #b22222;
  font-weight: bold;
  font-size: 1.08em;
  letter-spacing: 0.03em;
  position: relative;
}
.nihonshu-set p {
  font-size: 0.97em;
  margin: 6px 0 8px 0;
}

.highlight-price {
  color: #b22222;
  font-weight: bold;
  margin-left: 20px;
  white-space: nowrap;
  font-size: 1em;
}

.menu-button {
  text-align: center; /* 中央寄せ */
  margin-top: 20px;
}

.link-button {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff, #aed4dd);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 20px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-size: 1em;
  transition: background 0.3s;
}
.link-button:hover {
  background: linear-gradient(135deg, #fff, #e0f0f2);
  box-shadow: none;
}

/* 割り材用ボックス（串揚げセット風アレンジ） */
.card-box.mix-box {
  background: #ffd6c4;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(120,100,80,0.10);
  padding: 16px 18px 12px 18px;
  margin: 24px 0 10px 0;
  font-size: 1em;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-box.mix-box ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.card-box.mix-box li {
  border-bottom: 1px solid #fff6ee;
  font-size: 1em;
  padding: 3px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-box.mix-box li:last-child {
  border-bottom: none;
}

/* 注釈/案内 */
.menu-notes {
  font-size: 0.93em;
  color: #765f2b;
  line-height: 1.5;
  margin: 16px 0 0 0;
  text-align: left;
}
.menu-notes.top-notes {
  margin-top: 18px;
  margin-bottom: 0;
}

.breadcrumbs {
  margin-top: 10px;
}

.breadcrumbs ol{
  display:flex;
  list-style: none;
  padding: 10px 20px 10px 20px;
  white-space: normal; /* nowrapから変更 */
  flex-wrap: wrap; 
  background: #fbd377;
  }

.breadcrumbs ol li{
  align-items: center;
  justify-content: center;
  padding-right: 30px;
  border: none;
}

.breadcrumbs ol li:not(:last-child) {
 position: relative;
 padding-right: 50px;
}

.breadcrumbs ol li { position: relative; } /* 配置の基準 */
.breadcrumbs ol li:not(:last-child)::after{
  content: ">";
  /* display: block; */
  position: absolute;
  width: 10px;
  height: 15px;
  top: 0;
  right: 20px;
}

.breadcrumbs ol li a{
  text-decoration: none;
  font-family: inherit;
  cursor:pointer;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.breadcrumbs ol li a:hover{
  opacity:.7;
} 
footer {
  /* font-family: 'M PLUS Rounded 1c', 'HG創英丸ﾎﾟｯﾌﾟ体', 'Comic Sans MS', cursive, sans-serif !important; */
  padding: 15px 0;
  border-top: 2px solid #ccc; /* ← 上部に薄めのグレーライン */      
  background: linear-gradient(to bottom, #ffffff, #aed4dd); /* 上→下のブルーグラデーション */
  color: #000; /* ナビと統一：黒文字 */
  text-align: center;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;  
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  text-align: center;
}

.footer-logo {
  height: 48px;
  flex-shrink: 0;
}

.footer-copy { 
  margin: 0;  
  font-size: 0.95em;
  white-space: normal;
}

.footer-sns-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.footer-sns-icons img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.sns-links {
  display: flex;
  gap: 10px;
}

.sns-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* パンくず＆フッターの a を“自分内はみ出し”から守る */
.breadcrumbs a,
.footer-copy a {
  display: inline-block;  /* 必要に応じて block にしてもOK */
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#page-Top, .top-btn {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 60px;
  z-index: 999;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(255, 255, 245, 0.96); /* ほんのりアイボリー */
  color: #c84a1c;
  font-weight: bold;
  font-family: 'Yu Mincho', 'Hiragino Mincho Pro', serif;
  /* font-size: 1em; */
  border: 2px solid #e25c21;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(128, 128, 128, 0.16);
  cursor: pointer;
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; */
  font-family: 'Yu Mincho', 'Hiragino Mincho Pro', serif;
  transition: box-shadow 0.2s, background 0.2s, transform 0.12s;
}

.top-btn { box-sizing: border-box; width: 40px; height: 40px; }

#page-Top .top-arrow {
  font-size: 1em;
  display: block;
  line-height: 1; 
  margin-top: 3px;
  font-family: inherit;
  /* letter-spacing: 0; */
}

#page-Top .top-text {
  font-size: 0.8em;
  letter-spacing: 0.08em;
  margin-top: 5px;
  line-height: 1;
}

#page-Top:hover,
#page-Top:focus {
  background: #ffeedd;
  box-shadow: 0 8px 20px rgba(255, 209, 150, 0.6);  /* ← rgba推奨 */
  color: #a0522d;
  transform: translateY(-2px) scale(1.05);
  outline: none;
}

/* 1) キーボード操作時だけ、はっきり見えるフォーカスリングを表示 */
a:focus-visible,
button:focus-visible {
  outline: 3px solid #ff9900;   /* WCAG 2.2の推奨に沿いコントラストの高い色 */
  outline-offset: 3px;
  border-radius: 4px;
}

/* 2) マウス利用者向け：ホバー時は軽い視覚変化（下線など） */
a:hover {
  text-decoration: underline;   /* お好みで box-shadow にしてもOK */
}

/* 3) タップ（スマホ）でのフィードバック */
a:active,
button:active {
  transform: scale(0.98);       /* 軽い押下感、不要なら削除OK */
}

/* 4) iOS/Androidのタップ時ハイライトを見やすく */
:root {
  -webkit-tap-highlight-color: rgba(255,153,0,0.25);
}

/* 5) 小さなアイコンリンクも 44×44px 以上のタップ領域を確保 */
.sns-icons a,
.footer-sns-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
}
.sns-icons a:focus-visible img,
.footer-sns-icons a:focus-visible img {
  transform: scale(1.12);
  transition: transform 0.2s;
}

/* 6) 箇条書き内リンクなど、親要素ごとフォーカスを強調したい場合（任意） */
.menu-highlight li:focus-within {
  outline: 2px dashed #ff9900;
  outline-offset: 4px;
  border-radius: 6px;
}

/* 7) 動きに弱い方の配慮（任意） */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

a:focus {
  outline: 2px solid #d2691e; /* フォールバック */
  outline-offset: 3px;
}

a:focus:not(:focus-visible) {
  outline: none; /* マウスクリックでは消す */
}

/* --- レスポンシブ --- */
@media (max-width: 427px) {  

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  width: 50px;
  height: 50px;
  top: 18px;
  right: 18px;
  z-index: 110;
  border: 2px solid #e25c21;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.16);
  transition: background 0.2s, box-shadow 0.2s;
   /* ↓追加: overflowをvisibleにしておくことで、はみ出し防止 */
  overflow: visible;
  cursor: pointer;
  }
  
.hamburger span {
  /* display: block; */
  position: absolute;
  width: 28px;
  height: 3.5px;
  left: 11px;
  right: 11px;
  margin: 0 auto;
  border-radius: 2px;
  background: #c84a1c;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 10px; } 
.hamburger span:nth-child(2) { top: 18px; } /* 23から変更 */
.hamburger span:nth-child(3) { top: 26px; } /* 32から変更 */

/* open時 */
.hamburger.open span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

.hamburger .menu-label {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 32px; /* 三本線との間隔調整、必要に応じて調整 */
  color: #d34523;
  font-weight:bold;
  font-size: 0.6em;
  font-family: 'Yu Mincho', serif;
  text-align: center;
  /* user-select: none;
  pointer-events: none; */
  transition: opacity 0.2s;
  opacity: 1;
}

/* メニュー展開(open)時は非表示 */
.hamburger.open .menu-label {
  opacity: 0;
  pointer-events: none;
}

/* close-labelを下に（絶対位置→相対位置＆マージン）*/
.hamburger .close-label {
  display: none;      /* blockから修正 */
  position: absolute; /* relativeから修正　追加：spanの下に通常配置 */
  width: 100%;
  left: 0;
  right: 0;
  margin-top: 32px;   /* ×より下に下げる（必要に応じて調整） */
  /* margin: 0 auto; */
  border: none;
  background: none;
  color: #a0522d;  
  font-size: 0.7em; /* 0.92から修正 */
  font-family: 'Yu Mincho', serif;
  /* letter-spacing: 0.1em; */
  text-align: center;
  box-shadow: none;
  /* pointer-events: none; */ /* クリック無効（お好みで） */
  /* user-select: none; */
  /* line-height: 1.2; お好みで */
}

/* メニューを開いたときのみ表示 */
.hamburger.open .close-label {
  display: block;
}

.hamburger:hover,
.hamburger:focus {
  background: #fffbe6;        /* ホバー時ほんのり色変更 */
  box-shadow: 0 4px 18px #ffae3b77;
}

/* おまけ：タップエリアが分かりやすいように */
.hamburger:active {
  background: #ffeedd;
}
    
.global-nav {
  display: none;
  position: fixed;
  z-index: 108;
  flex-direction: column;
  align-items: stretch;
  width: 95vw;
  top: 0;
  left: 2.5vw;
  right: 2.5vw;
  margin: 0 auto;
  border-radius: 0 0 28px 28px;
  background: #fffdfa;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: transform 0.32s cubic-bezier(.6,0,.4,1);
  transform: translateY(-120%);
  }
.global-nav.open {
  display: flex;
  flex-direction: column; 
  transform: translateY(0);   /* 表示時は上から降りてくる */
  width: 92vw;        /* ← お好みで調整、90～95vwが一般的 */
  left: 4vw;
  right: 4vw;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
}
.global-nav a {
  margin: 0;
  padding: 22px 0 18px 0;
  border-right: none;
  border-bottom: 1.5px solid #f5b292;
  border-radius: 0;
  background: transparent;
  color: #d34523;
  font-size: 1.14em;
  text-align: center;
}

.menu-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  margin-top: 20px;
  /* margin-right: 50px; */
  font-size: 1.4em;
  white-space: normal;
}

.heading-icon {
  height: 35px;
  width: auto;
}

.drink-container {
  flex-direction: column;
  gap: 20px;
}

.drink-column {
  width: 100%;
  min-width: auto;
}

.menu-brackets {
  font-size: 0.80em;   /* さらに小さく。お好みで */
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: nowrap;  
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5px;
  text-align: center;
}

.footer-logo {
  height: 36px;
  flex-shrink: 0;
}
.footer-copy { 
  margin: 0;  
  font-size: 0.8em;
  white-space: nowrap;
}

.footer-sns-icons {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 0px;
}

.footer-sns-icons img {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}

.footer-content { flex-wrap: wrap; }        /* 折り返し許可 */
.footer-copy { white-space: normal; }       /* 改行許可 */

.sns-links {
  display: flex;
  gap: 10px;
}

.sns-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
}

/* 3) 端末が狭いときの保険（必要なら） */
@media (max-width: 640px) {
  .detail-section { min-width: 0; }  /* 300pxの下限を解除 */
  .breadcrumbs ol { white-space: normal; }
}

@media (min-width: 428px) and (max-width: 768px){

/* body {
 max-width: 100%;
 padding: 10px;
} */

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  width: 50px;
  height: 50px;
  top: 18px;
  right: 18px;
  z-index: 110;
  border: 2px solid #e25c21;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.16);
  transition: background 0.2s, box-shadow 0.2s;
   /* ↓追加: overflowをvisibleにしておくことで、はみ出し防止 */
  overflow: visible;
  cursor: pointer;
  }
  
.hamburger span {
  /* display: block; */
  position: absolute;
  width: 28px;
  height: 3.5px;
  left: 11px;
  right: 11px;
  margin: 0 auto;
  border-radius: 2px;
  background: #c84a1c;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 10px; } 
.hamburger span:nth-child(2) { top: 18px; } /* 23から変更 */
.hamburger span:nth-child(3) { top: 26px; } /* 32から変更 */

/* open時 */
.hamburger.open span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

.hamburger .menu-label {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 32px; /* 三本線との間隔調整、必要に応じて調整 */
  color: #d34523;
  font-weight:bold;
  font-size: 0.6em;
  font-family: 'Yu Mincho', serif;
  text-align: center;
  /* user-select: none;
  pointer-events: none; */
  transition: opacity 0.2s;
  opacity: 1;
}

/* メニュー展開(open)時は非表示 */
.hamburger.open .menu-label {
  opacity: 0;
  pointer-events: none;
}

/* close-labelを下に（絶対位置→相対位置＆マージン）*/
.hamburger .close-label {
  display: none;      /* blockから修正 */
  position: absolute; /* relativeから修正　追加：spanの下に通常配置 */
  width: 100%;
  left: 0;
  right: 0;
  margin-top: 32px;   /* ×より下に下げる（必要に応じて調整） */
  /* margin: 0 auto; */
  border: none;
  background: none;
  color: #a0522d;  
  font-size: 0.7em; /* 0.92から修正 */
  font-family: 'Yu Mincho', serif;
  /* letter-spacing: 0.1em; */
  text-align: center;
  box-shadow: none;
  /* pointer-events: none; */ /* クリック無効（お好みで） */
  /* user-select: none; */
  /* line-height: 1.2; お好みで */
}

/* メニューを開いたときのみ表示 */
.hamburger.open .close-label {
  display: block;
}

.hamburger:hover,
.hamburger:focus {
  background: #fffbe6;        /* ホバー時ほんのり色変更 */
  box-shadow: 0 4px 18px #ffae3b77;
}

/* おまけ：タップエリアが分かりやすいように */
.hamburger:active {
  background: #ffeedd;
}
    
.global-nav {
  display: none;
  position: fixed;
  z-index: 108;
  flex-direction: column;
  align-items: stretch;
  width: 95vw;
  top: 0;
  left: 2.5vw;
  right: 2.5vw;
  margin: 0 auto;
  border-radius: 0 0 28px 28px;
  background: #fffdfa;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: transform 0.32s cubic-bezier(.6,0,.4,1);
  transform: translateY(-120%);
  }
.global-nav.open {
  display: flex;
  flex-direction: column; 
  transform: translateY(0);   /* 表示時は上から降りてくる */
  width: 92vw;        /* ← お好みで調整、90～95vwが一般的 */
  left: 4vw;
  right: 4vw;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
}
.global-nav a {
  margin: 0;
  padding: 22px 0 18px 0;
  border-right: none;
  border-bottom: 1.5px solid #f5b292;
  border-radius: 0;
  background: transparent;
  color: #d34523;
  font-size: 1.14em;
  text-align: center;
}

.menu-heading {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 3px;
  margin-top: 10px;
  margin-right: 50px;
  font-size: 1.8em;
  white-space: nowrap;
}

.heading-icon {
  height: 48px;
  width: auto;
}

.menu-brackets {
  font-size: 0.80em;   /* さらに小さく。お好みで */
}

.footer-content { flex-wrap: wrap; }        /* 折り返し許可 */
.footer-copy { white-space: normal; }       /* 改行許可 */
}

@media (min-width: 769px) and (max-width: 899px){

.global-nav {
  font-size: 1em;
}
.global-nav a {
  font-size: 1em;
  padding: 12px 0;
}

/* .drink-column {
  width: 100%;
  min-width: auto;
} */
}

@media (min-width: 900px) and (max-width: 1025px){

.global-nav {
  font-size: 1em;
}
.global-nav a {
   font-size: 1em;
   padding: 12px 0;
}
}
/* @media (max-width: 1000px) {
  .drink-container {
    flex-direction: column;
    gap: 24px;
    max-width: 98vw;
  }
  .drink-column {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    margin-bottom: 16px;
  }
  .menu-container {
    max-width: 99vw;
    padding: 0 4vw;
  }
} */
/* @media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    gap: 6px;
  }
  .menu-container {
    padding: 0 2vw;
  }
} */

/* 汎用 */
/* ul, p {
  line-height: 1.6;
} */

 /* 横スクを許可して確認用 */
/* body {
  overflow-x: auto !important;
}

*:not(html):not(body) {
  outline: none;
} */
