@charset "UTF-8";

body {
  margin: 0;
  padding: 0;
  background: #fffefb;
  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);
}

/* 念のため：hover拡大を使いたい場合でも横溢れは切る */
.global-nav { overflow-x: hidden; } /* or hidden（clip推奨） */

.global-nav,
.global-nav.open {
  max-height: 95vh;
  overflow-y: auto;
}

.global-nav {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}


    .top-container {
      display: flex;
      /* height: 100vh; */
      width: 100vw;
      align-items: stretch; 
      /* box-sizing: border-box; */
      max-width: 100vw;
      /* overflow-x: hidden; */
    }
        .hero-image {
      flex: 1 1 0%;
      min-width: 260px;
      max-width: 100%;
      background: url('http://izakaya-hachibei-nagoya.jp/hachibei/img/hachi_gaikan1.png') no-repeat center center;
      background-size: cover;
      position: relative; /* オーバーレイの基準にする */
      width: 100%; 
      min-height: 60vh; /* 追加するとバランス良く見えやすい */   
    }
    
    @supports (background-image: url("http://izakaya-hachibei-nagoya.jp/hachibei/img/hachi_gaikan1.webp")) {
  .hero-image {
    background: url("http://izakaya-hachibei-nagoya.jp/hachibei/img/hachi_gaikan1.webp") no-repeat center center;
    background-size: cover;
  }
}

    .hero-overlay {
      position: absolute;
      top: 25%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      background-color: rgba(0, 0, 0, 0.5); /* 透過をやや強めに */
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 2em;
      font-family: 'Yu Mincho', 'Hiragino Mincho Pro', serif;
      z-index: 10;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
      white-space: nowrap; /* モバイルで改行されないように */
    }
    .hero-overlay-text {
      font-family: 'Yu Mincho', 'Hiragino Mincho Pro', serif;
      font-weight:bold;
      font-size: 1.8em;
      display: inline-block;
      position: relative;
      padding-bottom: 2px;
      margin-bottom: 20px;
    }
    .hero-overlay-text::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 100%; /* または希望に応じて 80% 程度でも */
      background-color: #a0522d;
    }
    .sidebar {
      flex: 0 0 350px;
      min-width: 320px;
      max-width: 540px;
      max-height: none;
      height: auto;
      font-family: "Noto Sans Japanese", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Myriad Pro, Myriad, Arial, sans-serif;
      background: linear-gradient(135deg, #ffffff, #aed4dd);
      box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
      border-radius: 50px; /* ← 角を丸く追加 */
      border: 5px solid #6d675b;
      /* min-height: 100vh; */
      /* overflow-y: auto; */
      box-sizing: border-box;
      width: 100%;
    }
    
    img, iframe {
      max-width: 100%;
      height: auto;
    }
    
    /* PRエリア */
    .pr-area {
      background: linear-gradient(90deg, #ff0000 0%, #f4a261 30%, #f4a261 70%, #ff0000 100%);
      color: #080808;
      padding: 8px 5px;
      font-size: 1em;
      font-weight: 300;
      text-align: center;
      letter-spacing: 0.05em;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
      border-bottom: 2px solid rgba(255,255,255,0.3);
      user-select: none;
      line-height: 1.4;
      border-radius: 30px; /* ← 角丸を追加 */
      margin: 10px 10px;
    }
    
    h1 {
      font-size: 1em;
      font-weight: bold;
      margin-bottom: 10px;
      display: block;
    }
    
h1 .sub-title {
  display: block;        /* 強制改行 */
  font-size: 0.8em;      /* 少し小さく */
  font-weight: normal;   /* 補足なので軽め */
}
        
    .pr-small-title{
      margin-top: 20px;
      font-weight: bold;
}
    
    .pr-small-title a {
      text-decoration: none;
      color: inherit; /* 文字色は親要素に従う */
}
    
    .pr-small-title .emoji-beer {
      font-size: 1.4em;
      vertical-align: middle;
}

    /* .pr-area .pr-small {
      font-size: 0.85em;
      line-height: 1.6;
    } */

    .menu-highlight {
      display: flex;               /* 横並びに */
      flex-wrap: wrap;            /* 入りきらなければ折り返す */
      gap: 8px;                   /* 項目同士の間隔 */
      padding: 0;
      margin: 0;
      list-style: none;
      justify-content: center;    /* 中央寄せ（任意） */
    }

    .menu-highlight li {
      background: rgba(255, 255, 255, 0.85);
      border-left: 4px solid #a0522d;
      padding: 8px 12px;
      border-radius: 12px;
      font-weight: bold;
      color: #333;
      white-space: nowrap;        /* 長い文字を1行に保つ（任意） */
    }
    
      .menu-highlight a {
        color: inherit;
        text-decoration: none;      
    }
    
    .pr-small .staff-message {
      margin-top: 20px;
    }
    
    h2 {
      font-size: 1.8em;
      display: inline-block;
      position: relative;
      padding-bottom: 2px;
      margin-top: 0;
      margin-bottom: 20px;
    }
    h2::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 3px;
      width: 100%;
      background-color: #a0522d;
    }
    #news {
      padding-top: 20px;
      max-width: 1200px;
      margin-top: 10px;
      margin-right: auto;
      margin-bottom: 0;
      margin-left: auto;
    }
    
.cta {
      margin-top: -10px;
      padding-bottom: 20px;
    }

    .notice-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      align-items: stretch;
    }

.notice-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255,255,255,0.92);
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 18px;
  box-sizing: border-box;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

.notice-link:hover {
  box-shadow: 0 0 8px #ffa;
  transform: scale(1.1);
}

.notice-link img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.notice-title {
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 1.2em;
  color: #FF0000;
}

.notice-link p {
  min-height: 100px;
}


    /* .notice-box {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background-color: rgba(255,255,255,0.92);
      border: 2px solid #ccc;
      border-radius: 12px;
      padding: 18px;
      box-sizing: border-box;
      height: 100%;
    }

    .notice-box img {
      width: 100%;
      height: auto;
      margin-bottom: 10px;
    }

    .notice-box p {
      min-height: 100px;
    } */
    
    .about-columns,
    #about {
      overflow: visible;
    }

    #about {
      max-width: 1200px;
      margin: 40px auto;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      padding: 0 20px 40px;
    }
    
    .about-columns {
      display: flex;
      flex-wrap: wrap; /* ← nowrap ではなく wrap に戻す */
      gap: 20px;
      padding: 20px;
    }
    
    .recommend-menu-box, .store-info-box, .contact-info-box {
      background: #fff;
      border: 2px solid #ccc;
      border-radius: 12px;
      padding: 20px;
      box-sizing: border-box;
      min-width: 280px;
    }
    
    .recommend-menu-box { flex: 0 0 28%; }
    .store-info-box { flex: 0 0 43%; }
    .contact-info-box { flex: 0 0 27%; }
    
    .recommend-menu-box ul {
      padding-left: 1em; /* デフォルトより少なめ */
      margin-left: 0;    /* 余計な外側マージンをリセット */
    }

    .recommend-menu-box li {
      padding-left: 0.5em; /* テキストを少しだけ内側に */
      font-size: 1em; /* 見出し部分の基本サイズ */
      margin-bottom: 10px;
    }

    .recommend-menu-box li br + * {
      font-size: 0.85em; /* 改行後の説明文を小さく */
      display: inline;
      white-space: nowrap; /* 改行を防ぐ */
    }
 
    .recommend-menu-box .description {
      font-size: 0.85em;
      display: inline-block;
      white-space: normal;
      margin-left: 0.2em;
    }  
    .recommend-menu h2 {
      margin-top: 0;
    }

    .recommend-menu ul {
      list-style: disc;
      padding-left: 1.2em;
    }
    
    .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;
}
    
    .store-info-box {
      flex: 1;
      min-width: 280px;
      background-color: #fff;
      border: 2px solid #ccc;
      border-radius: 12px;
      padding: 20px;
      box-sizing: border-box;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
    }
    
    .about-container {
      position: relative; /* 相対位置基準 */
      display: block;
    }
    
    .about-text {
      width: 100%;
      position: relative;
      z-index: 1;
    }  

    .map-section {
      position: absolute;
      top: 11em;      /* 任意の高さ調整 */
      right: 0;
      width: 45%;
      z-index: 2;
    }
      
    iframe {
      display: block;
      width: 100%;
      max-width: 100%;      /* 親要素からはみ出さない */
      aspect-ratio: 16 / 9;
      border: 2px solid #ccc;
      border-radius: 8px;
      /* min-height: 200px; */   /* 任意：スマホで小さくなりすぎる場合 */
      /* max-height: 480px; */    /* 任意：高さの上限 */
      }
      
    .map-link {
      display: flex;
      justify-content: flex-start; /* 左寄せ */
      flex-wrap: wrap; /* 画面が狭ければ折り返す */
    }

    .map-link a {
      display: inline-block;
      background-color: #a0522d;
      color: white;
      padding: 8px 10px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95em;    /* 少し文字を小さく */
      transition: background-color 0.3s;
      max-width: 100%;     /* 親要素内に収める */      
      white-space: normal; /* ← 改行を防止する */
      text-align: center;
      line-height: 1.4;
      box-sizing: border-box;
    }

    .map-link a:hover {
      background-color: #7f3f00;
    }
    
/* SNSアイコン共通：お問い合わせ / フッター */
.sns-icons,
.footer-sns-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.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;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sns-icons a img,
.footer-sns-icons a img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

/* ホバー・フォーカス時の効果（枠＋拡大） */
.sns-icons a:hover img,
.footer-sns-icons a:hover img,
.sns-icons a:focus-visible img,
.footer-sns-icons a:focus-visible img {
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.6);
  transform: scale(1.05);
}
    
.contact-info-box dl {
  margin: 0;
  padding: 0;
}

.contact-info-box dt {
  font-weight: bold;
  margin-top: 1em;
}

.contact-info-box dd {
  margin: 0 0 0.5em 0.5em;
}

.contact-info-box dd img {
  width: 24px;
  height: 24px;
  vertical-align: bottom;
}

.small-note {
  font-size: 0.85em;
  color: #333;
}

    
    /*.contact-info-box dl {
      margin: 0;
      padding: 0;
    }

    .contact-info-box dt {
  font-weight: bold;
  margin-top: 1em;
    }

    .contact-info-box dd {
  margin: 0 0 0.5em 0.5em;
    }
    
    .contact-info-box dd img {
      width: 24px;
      height: 24px;
      vertical-align: bottom;
    }

    .small-note {
      font-size: 0.85em;
      color: #333;
    }
    
    .sns-icons {
      display: flex;
      gap: 12px;
      margin-top: 5px;
    }

    .sns-icons a img {
      width: 32px;
      height: 32px;
      border-radius: 8px;
    } */
    
    address {
      font-style: normal;
    }
    
.breadcrumbs {
  margin-top: 10px;
}

.breadcrumbs ol{
  display:flex;
  list-style: none;
  padding: 10px 20px 10px 20px;
  white-space: normal;
  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: ">";
  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 {
  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: wrap;  /* モバイル対応 */
  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 {
  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;
}
   
    /* button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      padding: 10px 14px;
      background-color: #a0522d;
      color: white;
      border: none;
      border-radius: 30px;
      font-weight: bold;
      cursor: pointer;
    } */

    #news-heading {
      margin-top: 0;
    }
    
#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: 0.8em;
  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;
}


.top-container {
  flex-direction: column;
  height: auto;
}
      
.hero-overlay {
  font-size: 1.5em;
  padding: 8px 16px;
  top: 30%; /* 少し上へ調整 */
  white-space: nowrap;
}
.hero-image {
  background-size: cover;
  min-height: 60vh;
  background-position: center;
}

a:focus {
  outline: 2px solid #ff9900;
  outline-offset: 4px;
}
      
      .sidebar {
      flex: none;
      width: 100%;
      flex-direction: column;
      min-height: auto !important;
      height: auto !important;
      padding-bottom: 20px; /* ← 空白を少なく調整 */
      margin-bottom: 0 !important; /* ← 念のため明示 */
      }

      .pr-area {
        font-size: 0.9em;
        font-weight: normal;
        padding: 16px 10px;
      }
  
      .pr-area .pr-small {
        font-size: 0.9em;
        line-height: 1.4;
        text-align: center;
        word-break: break-word;
      }

      .menu-highlight {
        display: block;
        background-color: rgba(255, 255, 255, 0.25);
        padding: 10px;
        margin-top: 8px;
        border-radius: 8px;
        border-left: 4px solid #fff;
        font-size: 0.95em;
        line-height: 1.6;
        border-color:#000;
      }

    .menu-highlight li {
        display: block;       /* 必要なら強制指定 */
        margin-bottom: 10px;  /* 適度な余白 */
      }
      
      /* nav {
        flex-direction: row;
        justify-content: space-around;
      }

      nav a {
        flex: 1;
        padding: 12px 5px;
        font-size: 1em;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.2);
      }

      nav a:last-child {
        border-right: none;
      } */
      
      #news {
        padding: 20px;
        margin: 10px auto;
        max-width: 100%;
        box-sizing: border-box; 
      }

      .notice-container {
        flex-direction: column;
      }

      .notice-box {
        width: 100%;
      }

      #about {
        flex-direction: column;
        padding: 20px;
      }
      
      .about-container {
        flex-direction: column; 
      }
      
      .recommend-menu-box, .store-info-box, .contact-info-box {
        flex: 1 1 100%;
        white-space: normal;
      }
      
      .recommend-menu,
      .about-text,
      .map-section {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
      }
      .map-section {
        flex: none;        /* 幅の制約を解除 */
        width: 100%;       /* モバイルでは全幅にする */
        margin-left: 0;    /* PC用 left ずらしを無効化 */
        margin-top: 20px;
      }
      
      .map-container iframe {
        height: 300px;
      }

      .map-link {
        text-align: center;
      }
      
.footer-logo {
    height: 36px;
  }

  .footer-copy {
    font-size: 0.8em;
  }

  .sns-icons,
  .footer-sns-icons {
    gap: 8px;
    margin-top: 4px;
  }

  .sns-icons a img,
  .footer-sns-icons a img {
    width: 28px;
    height: 28px;
  }
      
/* .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: normal;
}

.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);
}*/
}

@media (min-width: 428px) and (max-width: 768px){
   
.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;
}
   
      .top-container {
        flex-direction: column;
        height: auto;
      }
      
      .hero-overlay {
        font-size: 1.5em;
        padding: 8px 16px;
        top: 30%; /* 少し上へ調整 */
        white-space: nowrap;
      }
      .hero-image {
        background-size: cover;
        min-height: 60vh;
        background-position: center;
      }

      a:focus {
        outline: 2px solid #ff9900;
        outline-offset: 4px;
      }
      
      .sidebar {
      flex: none;
      width: 428px;
      flex-direction: column;
      min-height: auto !important;
      height: auto !important;
      padding-bottom: 20px; /* ← 空白を少なく調整 */
      margin-bottom: 0 !important; /* ← 念のため明示 */
      margin: 10px auto;
      }

      .pr-area {
        font-size: 0.9em;
        font-weight: normal;
        padding: 16px 10px;
      }
  
      .pr-area .pr-small {
        font-size: 0.9em;
        line-height: 1.4;
        text-align: center;
        word-break: break-word;
      }

      .menu-highlight {
        display: block;
        background-color: rgba(255, 255, 255, 0.25);
        padding: 10px;
        margin-top: 8px;
        border-radius: 8px;
        border-left: 4px solid #fff;
        font-size: 0.95em;
        line-height: 1.6;
        border-color:#000;
      }

    .menu-highlight li {
        display: block;       /* 必要なら強制指定 */
        margin-bottom: 10px;  /* 適度な余白 */
      }
      
      /* nav {
        flex-direction: row;
        justify-content: space-around;
      }

      nav a {
        flex: 1;
        padding: 12px 5px;
        font-size: 1em;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.2);
      }

      nav a:last-child {
        border-right: none;
      }*/
      
.footer-content { flex-wrap: wrap; }        /* 折り返し許可 */
.footer-copy { white-space: normal; }       /* 改行許可 */
}

@media (min-width: 769px) and (max-width: 1024px){
   
.global-nav {
  font-size: 1em;
}
.global-nav a {
  font-size: 1em;
  padding: 12px 0;
}
   
    .map-container {
      max-width: 800px; /* 任意の拡大サイズ。600px～800px がおすすめ */
      margin: 0 auto;/* 中央揃え */    
    }

    .map-container iframe {
      width: 100%;       /* 親要素に合わせる */
      aspect-ratio: 16 / 9;
    }
}

@media (max-width: 1025px) {
  /* .global-nav {
    font-size: 1em;
  }
  .global-nav a {
    font-size: 1em;
    padding: 12px 0;
  } */
      .recommend-menu-box,
      .store-info-box {
     /* flex: 1 1 100%; /* 縦並びにして100%幅にする */
        max-width: 100%;
      }
  
      .map-section {
        position: static; /* 絶対配置を解除 */
        width: 100%;
        margin-top: 20px;
      }
} 
 /* 横スクを許可して確認用 */
/* body {
  overflow-x: auto !important;
}

*:not(html):not(body) {
  outline: none;
} */