@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;
}

.about-container {
  padding: 0 20px;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 24px;
}

.about-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  white-space: normal;
}

.heading-icon {
  height: 48px;
  width: auto;
}

h1 {
  font-weight: 700;
  color: #b22222;
}

h2 {
  font-size: 1.8em;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: 0px;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%; /* または希望に応じて 80% 程度でも */
  background-color: #a0522d;
}

    /* #news {
      padding-top: 20px;
      max-width: 1200px;
      margin-top: 10px;
      margin-right: auto;
      margin-bottom: 0;
      margin-left: auto;
    }

    .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-link p {
  min-height: 100px;
} */
    
/* .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;
  padding: 0 20px;
  border: 2px solid #ccc;
  border-radius: 12px;
  background-color: #fff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
    
.store-container {
  position: relative; /* 相対位置基準 */
  display: block;
}

.about-text {
  width: 100%;
  position: relative;
  z-index: 1;
} 

#inside-heading {
  margin-top: 10px;
  margin-bottom: 10px;
}

#outside-heading {
  margin-top: 10px;
  margin-bottom: 10px;
}

#hachi-heading {
  margin-top: 10px;
  margin-bottom: 10px;
}

.detail-section {
  display: block;
  max-width: 100%;       /* 親の幅を超えない保険 */
  min-width: 0;
  box-sizing: border-box;
  margin-bottom: 16px;
  background: #f8f4ef;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(120,100,80,0.08);
  padding: 24px 24px 0 24px;
}

.toufu-flex {
  display: flex;
  flex-wrap: wrap; /* これだけでもだいぶ改善 */
  justify-content: center;
  align-items: flex-start;   /* ← center から変更 */
  gap: 16px;
  max-width: 100%;   /* 親の内側に収める */
  margin: 0 auto 10px auto;
  width: 100%;
  background: #fbd377;
  border-radius: 10px;
  padding-bottom: 20px;
}

.toufu-wrapper {
  flex: 1 1 280px;             /* 目安幅は維持しつつ縮め可 */
  min-width: 0;
  align-self: flex-start;
  padding: 12px 12px;
  border-radius: 10px;
  text-align: center;
  background-color: #ffffff;
}

.toufu-wrapper-um20 {
  flex: 1 1 280px;             /* 目安幅は維持しつつ縮め可 */
  min-width: 0;
  align-self: flex-start;
  padding: 12px 12px;
  border-radius: 10px;
  text-align: center;
  background-color: #ffffff;
}

.toufu-txt {
  margin: 10px auto 10px auto;
  padding:0 20px 0 40px;
  /* overflow-wrap: break-word; */
  text-align: left;
  font-size: 0.9em;
}

.motsu-caption {
  /* display: flex; */
  text-align: left;
  /* justify-content: flex-start;
  gap: 8px; */
  margin: 12px 0 0 5px;
  font-size: 1.1em;
  color: #ff0000;
}

.motsu-img-wrapper {
  display: flex;
  flex: 1 1 230px; /* 固定(0 0 250px)→縮め可(1 1 250px) */
  min-width: 0;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
}

.motsu-img {
  width: 230px;
  max-width: 100%;      /* 親が縮んだら画像も縮む */
  height: auto;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(80,60,30,0.14);
}

.toufu-txt a,
.about-text a {
  display: inline-block;     /* ← inline だと誤差が出やすい */
  max-width: 100%;
  vertical-align: baseline;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

    
/* #about-heading {
  margin-top: 10px;
  margin-bottom: 10px;
} */
    
#contact-heading {
  margin-top: 10px;
  margin-bottom: 10px;
}
    


    .map-section {
      position: static;
      width: 100%;
      /* max-width: 800px; */   /* 上限が必要なら */
      margin: 20px auto 0;
    }
      
    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;
    }
    
.map-section,
.map-container,
.map-container iframe {
  box-sizing: border-box;
  max-width: 100%;
}
    
    .contact-info-box {
      flex: 1;
      min-width: 280px;
      background-color: #fff;
      border: 2px solid #ccc;
      border-radius: 12px;
      margin-top: 20px;
      padding: 0 20px;
      box-sizing: border-box;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
    }
    
    .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;
      white-space: normal;
    }
    
    /* 1) その dd と注意書き内は、とにかく折り返し最優先に */
.contact-info-box dd,
.small-note {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 2) 注意書き <span> をいっそブロック化して計算を安定させる */
.small-note {
  display: block;        /* inline→block に */
  line-height: 1.6;
}
    
    .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 {
  /* 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: 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;
}

/* .about-container {
  flex-direction: column;
  height: auto; 
}*/

.about-heading {
  display: flex;
  align-items: center;
  /* justify-content: center;*/
  gap: 3px;
  margin-top: 20px;
  /* margin-right: 50px; */
  font-size: 1.4em;
  white-space: normal;
}

.heading-icon {
  height: 35px;
  width: auto;
}

.detail-section {
  max-width: 100%;
  min-width: 0;
  margin: 0 0 16px 0;
  padding: 10px 0 0 0;
  box-sizing: border-box;
  background: #f8f4ef;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(120,100,80,0.08);
}

.toufu-flex {
  flex-wrap: wrap;             /* これだけでもだいぶ改善 */
  flex-direction: column !important;
  gap: 12px !important;
  max-width: 100%;   /* 親の内側に収める */
  width: 100%;
  padding-bottom: 0 !important;       /* ← ここが余白感の元1 */
  align-items: center;
  background: #fbd377 !important;
}

.toufu-wrapper {
  display: block;
  flex: none;  
  min-width: 0;
  margin: 0;             /* 変な下マージンを持たせない */
  padding: 12px;         /* padding: 12px 12px; から変更*/ /* 内側余白は最小限 */
  border-radius: 10px;
  align-self: auto;
  text-align: center;
  background-color: #ffffff;
}

.toufu-wrapper-um20 {
  flex: none;
  min-width: 0;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 10px;
  align-self: auto;
  text-align: center;
  background-color: #ffffff;
}

.toufu-txt {
  margin: 10px auto 10px auto;
  padding:0 10px 0 20px;
  /* overflow-wrap: break-word; */
  text-align: left;
  font-size: 0.9em;
}

.toufu-txt a { word-break: break-word; overflow-wrap: anywhere; }

.motsu-img-wrapper {
  align-self: auto;
}

.motsu-img {
  display: block;
  width: 100%;
  max-width: 300px;         /* 端末に合わせて縮む */
  height: auto;
  margin: 0;
  text-align: center;
}

#contact-heading {
  margin-top: 0px;
  margin-bottom: 10px;
}

      /* .store-info-box, .contact-info-box {
        flex: 1 1 100%; 
        white-space: normal;
      } */
      
.about-text {
  /* flex: none; */
  width: 100%;
  margin-left: 0;
  margin-top: 20px;
}
      
.map-section {
  position: static; /* 絶対配置を解除 */
  width: 100%;       /* モバイルでは全幅にする */
  margin-left: 0;    /* PC用 left ずらしを無効化 */
  margin-top: 20px;
}
      
.map-container {
  /* max-width: 425px; */ /* 任意の拡大サイズ。600px～800px がおすすめ */
  margin: 0 auto; /* 中央揃え */    
}
    
.map-container iframe {
  width: 100%;       /* 親要素に合わせる */
  aspect-ratio: 16 / 9;
  height: 300px;
}

.map-link {
  text-align: center;
}
      
/* #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;
  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;
}

#page-Top .top-arrow {
  font-size: 1em;
  display: block;
  line-height: 1; 
  font-family: inherit;
}

#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);
  color: #a0522d;
  transform: translateY(-2px) scale(1.05);
  outline: none;
} */

.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);
}
}

/* 3) 端末が狭いときの保険（必要なら） */
@media (max-width: 640px) {
  .detail-section { min-width: 0; }  /* 300pxの下限を解除 */
  .breadcrumbs ol { white-space: normal; }
}
  
@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;
}
   
/* .about-container {
  flex-direction: column;
  height: auto;
} */

.about-heading {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 15px;
  margin-top: 10px;
  /* margin-right: 50px; */
  font-size: 1.8em;
  white-space: normal;
}    
.detail-section {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 16px 0 !important;
  padding: 10px 0 0 0 !important;
  box-sizing: border-box !important;
  background: #f8f4ef;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(120,100,80,0.08) !important;
}     

 .toufu-flex {
  /* flex-wrap: wrap; */ /* これだけでもだいぶ改善 */
  flex-direction: column !important;
  gap: 12px !important;
  max-width: 100%;   /* 親の内側に収める */
  width: 100%;
  padding-bottom: 0 !important;       /* ← ここが余白感の元1 */
  align-items: center;
  background: #fbd377 !important;
}

.toufu-wrapper {
  display: block;
  flex: none;             /* 目安幅は維持しつつ縮め可 */
  min-width: 0;                /* 280px をやめて親に合わせて縮められるように */
/* min-width: 250px; */
  margin: 0;             /* 変な下マージンを持たせない */
  padding: 12px;         /* padding: 12px 12px; から変更*/ /* 内側余白は最小限 */
  border-radius: 10px;
  align-self: auto;
  text-align: center;
  background-color: #ffffff;
}

.toufu-wrapper-um20 {
  flex: none;
  min-width: 0;
  margin-bottom: 10px;             /* 変な下マージンを持たせない */
  padding: 12px;         /* padding: 12px 12px; から変更*/ /* 内側余白は最小限 */
  border-radius: 10px;
  background-color: #ffffff;
  align-self: auto;
  text-align: center;
}

.toufu-txt {
  margin: 10px auto 10px auto;
  padding:0 10px 0 10px;
  text-align: left;
  font-size: 0.9em;
}

.motsu-img-wrapper {
  align-self: auto;
}

.motsu-img {
    display: block;
    width: 100%;
    max-width: 300px;         /* 端末に合わせて縮む */
    height: auto;
    margin: 0;                /* ← ここが余白感の元2（既定20px）をゼロに */
    text-align: center;
}

.map-section {
  position: static; /* 絶対配置を解除 */
  width: 100%;
  margin-top: 20px;
}
   
.map-container {
  max-width: 600px; /* 任意の拡大サイズ。600px～800px がおすすめ */
  margin: 0 auto; /* 中央揃え */    
}

.map-container iframe {
  width: 100%;       /* 親要素に合わせる */
  aspect-ratio: 16 / 9;
}

.footer-content { flex-wrap: wrap; }        /* 折り返し許可 */
.footer-copy { white-space: normal; }       /* 改行許可 */

/* #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;
}

#page-Top .top-arrow {
  font-size: 1em;
  display: block;
  line-height: 1; 
  margin-top: 4px;
  font-family: inherit;
  letter-spacing: 0;
}

#page-Top .top-text {
  font-size: 0.7em;
  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);
  color: #a0522d;
  transform: translateY(-2px) scale(1.05);
  outline: none;
} */

/* .link-button {
  display: block;
  background: linear-gradient(135deg, #ffffff, #aed4dd);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  width: 50%;
  margin: 10px auto;
  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;
} */    
}

@media (min-width: 769px) and (max-width: 1024px){
   
.global-nav {
  font-size: 1em;
}
.global-nav a {
  font-size: 1em;
  padding: 12px 0;
}

.toufu-wrapper-um20 {
  flex: 1 1 280px;
  min-width: 0;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: #ffffff;
  text-align: center;
}
.map-section {
  position: static; /* 絶対配置を解除 */
  width: 100%;
  margin-top: 20px;
}
   
.map-container {
  max-width: 800px; /* 任意の拡大サイズ。600px～800px がおすすめ */
  margin: 0 auto; /* 中央揃え */    
}

.map-container iframe {
  width: 100%;       /* 親要素に合わせる */
  aspect-ratio: 16 / 9;
}
}

/* @media (min-width: 900px) and (max-width: 1025px){
.global-nav {
  font-size: 1em;
}
.global-nav a {
   font-size: 1em;
   padding: 12px 0;
}
  
.map-section {
  position: static; 
  width: 100%;
  margin-top: 20px;
}
} */   
 /* 横スクを許可して確認用 */
/* body {
  overflow-x: auto !important;
}

*:not(html):not(body) {
  outline: none;
} */
