
@charset "UTF-8";

/* Base Styles - Mobile First */
html {
  font-size: 100%;
}
body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  line-height: 1.7;
  color: #432;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

a {
  text-decoration: none;
  color: #432;
}
a:hover {
  color: rgb(218, 165, 32);
}

img {
  max-width: 100%;
  height: auto;
}
/* スクリーンリーダー用ユーティリティ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}


/* 画像のベースライン隙間を防ぐ（カルーセルと一覧） */
.carousel-item img,
.home-grid .item img {
  display: block;
}

.wrapper {
  padding: 0 4%;
  max-width: 100%;
  margin: 0 auto;
}



/* ===== Breadcrumb (統合版) ===== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 1em 0;
  font-size: 0.9rem;
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;       /* 横並び */
  flex-wrap: wrap;     /* 狭い時は折り返し */
}
.breadcrumb li + li::before {
  content: "›";        /* 区切り矢印（統一） */
  margin: 0 0.5em;
  color: #999;
}
.breadcrumb a {
  text-decoration: none;
  color: #432;
}
.breadcrumb a:hover {
  text-decoration: underline;
  color: rgb(218,165,32);
}



/* Headings */
.page-title,

/* =========================================
   共通化ルール
   - post-title と本文 h2.heading に共通で適用
   - サイズ拡大は下のメディアクエリ側で管理
========================================= */
/* 共通：大見出しと本文見出しに適用 */
.post-title,
.shop-article .article-body h2.heading {
  font-family: 'Philosopher', serif;
  text-transform: uppercase;
}



.sub-title {
  font-size: 1.2rem;
  border-bottom: 2px solid rgb(218, 165, 32);
  padding-bottom: 8px;
}

.home-contents .post-title {
  color: #d6a90d;
}





/* Home Content */
.home-content p,
.home-content a {
  font-size: 1rem;
  text-align: left;
  color: rgb(67, 65, 62);
}

.home-main img {
  width: 100%;
  height: auto;
}

/* Grid Layout - モバイルファースト */
.home-grid {
  display: grid;
  grid-template-columns: 1fr; /* スマホ：1カラム */
  gap: 10px;
}

/* Items */
.item p {
  color: #432;
}
.item p:hover {
  color: rgb(218, 165, 32);
}

.home-contents:not(.shop-layout) {
  display: flex;
  flex-direction: column;
}


article, aside {
  width: 100%;
}

/* Sidebar */
aside {
  margin-top: 2em;
}
.sub-menu {
  list-style: none;
  padding: 0;
}


.sub-menu a {
  padding: 10px;
  display: block;
}

/* Footer */
footer {
  background: rgb(218, 165, 32);
  text-align: center;
  padding: 1em 0;
}
footer p {
  color: #432;
  font-size: 1.0rem;
}

/* タブレット（768px〜1279px） */
@media (min-width: 768px) and (max-width: 1279px) {
  .home-grid {
    grid-template-columns: repeat(2, 1fr); /* タブレット：2カラム */
  }
  .post-title {
    font-size: 2.5rem;
  }
}

/* PC（1280px〜） */
@media (min-width: 1280px) {
  .home-grid {
    grid-template-columns: repeat(4, 1fr); /* PC：4カラム */
  }
  .post-title {
    font-size: 3rem;
  }
}

/* 統合版：ベースは768px以上で横並び、PCは差分だけ */
@media (min-width: 768px) {
  .home-contents:not(.shop-layout) {
    flex-direction: row;
    justify-content: space-between;
  }
  .home-contents:not(.shop-layout) article { width: 65%; }
  .home-contents:not(.shop-layout) aside   { width: 30%; margin-top: 0; display: block; }
}

@media (min-width: 1280px) {
  .home-contents:not(.shop-layout) article { width: 74%; } /* 差分のみ */
  .home-contents:not(.shop-layout) aside   { width: 22%; } /* 差分のみ */
}




/* ========== NEW HEADER DESIGN ========== */

.site-header {
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.25), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15), transparent 70%),
    linear-gradient(135deg, #a86f02, #d6a90d, #f5f1d5);
  padding: 10px 0;
}


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

.logo img {
  height: 48px;
  width: auto;
}



/* キーボード操作でヘッダーのメニューにフォーカスした時の視認性UP */
.main-nav .menu a:focus-visible,
.main-nav .sns-icons a:focus-visible {
  background-color: rgba(218, 165, 32, 0.15); /* 薄い金色背景 */
  color: rgb(218, 165, 32);                   /* 文字も金色に */
  outline: none;                              /* 既定の青枠は消す */
  border-radius: 4px;                         /* 見栄えを少し整える（任意） */
  text-decoration: none;                      /* 下線を消して背景強調に統一（任意） */
}


.main-nav .sns-icons {
  display: flex;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.main-nav .sns-icons img {
  height: 20px;
  width: 20px;
}

/* ====== Nav (mobile-first) ====== */
.menu-toggle {
  width: 44px;
  height: 44px;
  background-color: #fff;
  border: 2px solid #432;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  font-size: 28px;
  color: #432;
  cursor: pointer;
  padding: 0;
  display: flex;              /* モバイルで表示 */
  align-items: center;
  justify-content: center;
  position: absolute;
  top: .5em;
  right: .9em;
}

.main-nav {
  display: none;              /* モバイルは閉じる */
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
  background-color: #fffdf5;
  gap: 1em;
}
.main-nav.active { display: flex; }

.main-nav .menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}
.main-nav .sns-icons { margin-top: 10px; }

/* ====== Tablet and up (≥768px) ====== */
@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .main-nav {
    display: flex !important;     /* 常時表示 */
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: auto;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,.10);
  }
  .main-nav .menu {
    flex-direction: row;
    gap: 20px;
  }
  .main-nav .sns-icons { margin-top: 0; }
}

/* ====== Desktop (≥1280px) ====== */
@media (min-width: 1280px) {
  .main-nav .menu { gap: 20px; }
}


.branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}


.site-title {
  font-size: 1.6rem;
  font-family: 'Philosopher', serif;
  color: #d6a90d;
  margin: 0.3em 0;
}

.tagline {
  font-size: 0.9rem;
  color: #555;
}

@media (min-width: 768px) {
  /* header-inner を「ロゴ」と「ナビ」で分離風に扱う */
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none; /* ← 白背景を消す */
    box-shadow: none;
    border: none;
    padding: 0;
  }

}

/* === Mobile only: Auto-Hide Header を確実に効かせる === */
@media (max-width: 767px) {
  .site-header {
    position: fixed;   /* sticky → fixed に */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform .24s ease, box-shadow .24s ease; /* 既存と同等 */
     /* ← ここに追加 */
    will-change: transform; /* モバイルでも付ける */
    transform: translateZ(0); /* 好みで */
  }

  /* ヘッダーがfixedになるぶん、本文が潜り込まないよう余白を確保（お好みで微調整） */
  body {
    padding-top: 70px; /* ロゴ48px + パディング ≒ 64px 目安 */
  }
}


@media (min-width: 768px) and (max-width: 1024px) {

  .main-nav .menu {
    flex-wrap: wrap;
    gap: 1em;
  }

  .main-nav .sns-icons {
    margin-top: 0.5em;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .logo img {
    max-height: 40px;
  }
}

/* Tablet/PC だけ sticky（スマホは fixed のまま） */
@media (min-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform .24s ease, box-shadow .24s ease;
    will-change: transform;
  }
}



.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-reveal { box-shadow: 0 6px 18px rgba(0,0,0,.08); }






/* Food専用2カラムレイアウト */
.food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 8px;
  box-sizing: border-box; /* ← ここを追加！ */
}
.food-grid .item {
  padding: 5px; /* ← 以前の10pxから少し控えめにしておくとレイアウト安定 */
}
.food-grid .item p {
  margin: 0;
}

/* Food サイドバー：hidden のときは非表示にする */
#sidebar-food[hidden] {
  display: none !important;
}



@media (min-width: 768px) and (max-width: 1279px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1280px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .menu-title {
    font-size: 2.2rem;
  }
}





/* === カルーセル=== */
.carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 2em;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 1em;
  text-align: center;
}

.carousel img {
  width: 90%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}

/* タブレットでは少し小さく */
@media (min-width: 768px) {
  .carousel img {
    width: 60%;
  }
}

/* PCではさらにコンパクトに */
@media (min-width: 1280px) {
  .carousel img {
    width: clamp(320px, 50%, 1100px);
  }
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(67, 50, 34, 0.6);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0 0.5em;
  cursor: pointer;
  z-index: 10;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.carousel-button:hover {
  background: rgb(218, 165, 32);
}

/* === Carousel Indicators === */
.carousel-indicators {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 11;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(67,50,34,.35); /* デフォは薄め */
  cursor: pointer;
  padding: 0;
}

.carousel-indicators button.is-active {
  background: rgb(218,165,32); /* アクティブ=金色 */
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators button { transition: none; }
}


/* ====== Hamburger open時はヘッダーを固定表示 ====== */
.site-header.is-forced {
  transform: translateY(0) !important;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

/* メニュー展開中は画面のスクロールを止める（ジャンプ防止はJS側で復元） */
.body-lock {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* iOSのURLバー揺れ対策：合成レイヤー化でチラつきを抑制 */
html.ios .site-header {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* iOSでURLバーが伸縮している瞬間はトランジションを切ってチラつき回避 */
.header-no-transition {
  transition: none !important;
}


/* 他のスタイルがここまで */

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none; /* アニメーション無効化 */
  }
}





/* aside ナビゲーション */
.sidebar-nav,
.sidebar-nav ul {
  list-style: none;     /* 点を消す */
  padding: 0;
  margin: 0;
}

/* aside：トップレベルの a にも金色の下線を付ける */
.sidebar-nav > li > a {
  display: block;
  padding: 6px 0;
  border-bottom: 2px solid rgb(218, 165, 32);
  color: #432;
  text-decoration: none;
}
/* aside：開閉見出しボタン（summary置換用） */
.sidebar-toggle {
  display: block;
  width: 100%;
  text-align: left;
  padding: 6px 0 6px 1.2em; /* 左に矢印ぶんの余白 */
  border: 0;
  background: transparent;
  color: #432;
  cursor: pointer;
  border-bottom: 2px solid rgb(218, 165, 32);
  position: relative;
  font: inherit;
}

.sidebar-toggle:hover,
.sidebar-toggle:focus-visible {
  background-color: rgba(218, 165, 32, 0.15);
  color: rgb(218, 165, 32);
  outline: none;
}

.sidebar-toggle::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(218, 165, 32);
  transition: transform .3s;
}

.sidebar-toggle[aria-expanded="true"]::before {
  transform: translateY(-50%) rotate(90deg);
}

/* タップ時の軽い暗転で“押した感”を付与 */
.sidebar-nav > li > a:active,
.sidebar-toggle:active {
  background-color: rgba(0,0,0,.04);
}




/* キーボード操作でリンクにフォーカスしたときの視認性UP */
.sidebar-nav a:focus-visible {
  background-color: rgba(218, 165, 32, 0.15); /* 薄い金色背景 */
  color: rgb(218, 165, 32);                   /* 文字も金色に */
  outline: none;                              /* 既定の青枠は消す */
}


/* aside ナビ トップレベル a の hover 時スタイル */
.sidebar-nav > li > a:hover {
  background-color: rgba(218, 165, 32, 0.15);
  color: rgb(218, 165, 32);
}

/* サブメニューの hover は下線を残して可読性UP */
.sub-menu a:hover {
  text-decoration: underline;              /* ← 追加 */
  background-color: rgba(218,165,32,0.1);
  color: rgb(218,165,32);
}



/* ===== Header Central Adjust ===== */

/* タブレット以上（768px～）で少し内側に寄せる */
@media (min-width: 768px) {
  .header-inner {
    padding: 0 8%;     /* 左右に余白を増やす（デフォルト4% → 8%） */
  }
  .main-nav {
    margin: 0 20px;    /* ナビ自体にも左右余白をプラス */
  }
}

/* PC以上（1280px～）でさらに中央感を強める */
@media (min-width: 1280px) {
  .header-inner {
    padding: 0 12%;    /* さらに広げると自然に中央へまとまる */
  }
}

/* ===== Article typographic tweaks (shop) ===== */
.shop-article .article-body {
  max-width: 72ch;         /* 長文の横幅を抑えて読みやすく */
}

.shop-article .article-body p {
  margin: 0 0 1em;
  line-height: 1.9;
}

.shop-article .article-body ul {
  margin: .4em 0 1.2em 1.2em;
  padding: 0;
}

.shop-article .article-body li {
  margin: 0 0 .5em;
}

.shop-article .heading {
  margin: 1.4em 0 .6em;
  line-height: 1.3;
}

.shop-article .article-body h2 {
  color: #a86f02;
}



/* タブレットサイズ（768px〜1279px） */
@media (min-width: 768px) and (max-width: 1279px) {
  .shop-article .article-body h2.heading {
    font-size: 2rem;  /* 40px */
  }
}

/* PCサイズ（1280px〜） */
@media (min-width: 1280px) {
  .shop-article .article-body h2.heading {
    font-size: 2.5rem;    /* 48px */
  }
}


.shop-article .more a {
  text-decoration: underline;
}

/* 横幅が広い時は記事カラムを気持ち狭めに（既存のarticle幅指定と両立） */
@media (min-width: 1280px) {
  .shop-article { max-width: 880px; }
}

/* === h3 === */
.shop-article .article-body h3 {
  font-family: 'Philosopher', serif;  /* フォントを変更 */
  font-size: 1.3rem;   /* スマホ ≒ 21px */
  color: #5c3a21;     /* ダークコーヒー */
  margin: 1.2em 0 0.5em;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .shop-article .article-body h3 {
    font-size: 1.8rem; /* タブレット ≒ 25.6px */
  }
}

@media (min-width: 1280px) {
  .shop-article .article-body h3 {
    font-size: 2.0rem; /* PC ≒ 28.8px */
  }
}

/* === h4 === */
.shop-article .article-body h4 {
  font-family: 'Philosopher', serif;  /* フォントを変更 */
  font-size: 1.1rem;   /* スマホ ≒ 17.6px */
  color: #8c5a34;      /* 少し明るい赤茶*/
  margin: 0.8em 0 0.4em;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .shop-article .article-body h4 {
    font-size: 1.3rem; /* タブレット ≒ 20.8px */
  }
}

@media (min-width: 1280px) {
  .shop-article .article-body h4 {
    font-size: 1.4rem; /* PC ≒ 22.4px */
  }
}

/* === Headings global unify === */
:root{
  --font-display: 'Philosopher', serif;
  --h3-color: #5c3a21;   /* ダークコーヒー */
  --h4-color: #8c5a34;   /* 少し明るい赤茶 */
}

/* 記事・サイド共通で h3/h4 を統一（ナビ内のボタン等には影響なし） */
.article-body h3,
.aside0 h3, .aside1 h3,
.article-body .heading { /* 既存 .heading も吸収 */
  font-family: var(--font-display);
  color: var(--h3-color);
  font-size: clamp(1.3rem, 1rem + 1.2vw, 2.0rem);
  line-height: 1.25;
  margin: 1.2em 0 .5em;
  letter-spacing: .01em;
}

.article-body h4,
.aside0 h4, .aside1 h4 {
  font-family: var(--font-display);
  color: var(--h4-color);
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.4rem);
  line-height: 1.35;
  margin: .8em 0 .4em;
}



/* ボタン化 */
.shop-article .more a {
  display: inline-block;       /* ボタン化 */
  padding: 0.25em 1em;          /* 内側の余白 */
  background-color: #a86f02;   /* ゴールドブラウン基調 */
  color: #fff;                 /* 文字色は白 */
  border-radius: 4px;          /* 角丸 */
  text-decoration: none;       /* 下線は消す */
  font-size: 0.95rem;          /* 少し小さめで上品に */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.shop-article .more a:hover {
  background-color: #d6a90d;   /* ホバー時は明るい金色 */
  transform: translateY(-2px); /* 少し浮き上がる演出 */
}

.shop-article .more a:active {
  background-color: #8b5e0a;   /* 押したときは濃い色で */
  transform: translateY(0);    /* 元に戻る */
}

/* ==== Synced from style-shop000.css (article/aside layout) ==== */
.home-contents.shop-layout {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
  background: #f2f2f2;
}
.shop-article { background: #fff; padding: 1em; }
.aside0 { background: #fff; color: #432; padding: 1em; }
.aside1 { background: #fff; color: #432; padding: 1em; }

/* タブレット: 左=article、右に aside0→aside1 を縦積み */
@media (min-width: 768px) and (max-width: 1365px) {
  .home-contents.shop-layout {
    display: grid;
    grid-template-columns: 1fr 30%; /* 行は定義しない */
    column-gap: 24px;
    /* row-gap/gap は不要（0のままでOK） */
  }

  /* 左は記事、右はラッパーを丸ごと2列目へ */
  .shop-article { grid-column: 1; }
  .right-col    { grid-column: 2; display: flex; flex-direction: column; gap: 0; }

  
}

/* PC: 左=aside0 / 中央=article / 右=aside1 */
@media (min-width: 1366px) {
  .right-col { display: contents; } /* ← ラッパーを透明化 */

  .home-contents.shop-layout {
    display: grid;
    grid-template-columns: 20% 1fr 20%;
    gap: 16px;             /* 既存 1em 相当。お好みで */
    align-items: start;
  }

  .aside0       { grid-column: 1; grid-row: 1; align-self: start; }
  .shop-article { grid-column: 2; grid-row: 1; align-self: start; }
  .aside1       { grid-column: 3; grid-row: 1; align-self: start; }

  /* 見出しのmarginでズレないよう調整 */
  .aside0 h2, .aside1 h2, .shop-article h2 { margin-top: 0; }
}


/* ====== Google Map Responsive ====== */
.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* モバイル基準は横長 */
  overflow: hidden;
  border-radius: 8px;
  margin: 1.5em 0;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* タブレット */
@media (min-width: 768px) {
  .map-container {
    aspect-ratio: 4 / 3;
  }
}

/* PC */
@media (min-width: 1280px) {
  .map-container {
    aspect-ratio: 21 / 9;
  }
}

/* ====== Override: Map iframe responsive tweak ====== */
.map-container iframe {
  position: static;   /* absolute指定を打ち消し */
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
}


/* ====== Shop Access Info ====== */
.shop-access {
  margin-bottom: 1.2em;
  padding: 1em;
  background: #fffdf5;
  border: 1px solid #e0d4a6;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.shop-access p {
  margin: 0.4em 0;
}

.shop-access strong {
  color: #a86f02; /* ゴールドブラウンでアクセント */
}

/* === Aside polishing（統一の余白・枠・影）=== */
.aside0, .aside1 {
  border: 1px solid #e7e3d9;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

/* タブレット：右カラムの縦積み間隔を適度に */
@media (min-width: 768px) and (max-width: 1365px) {
  .right-col { gap: 16px; }     /* いま 0 のため、軽く間隔を付与 */
}

/* PC：グリッド間隔をやや広げて呼吸感UP */
@media (min-width: 1366px) {
  .home-contents.shop-layout { gap: 16px; }
}

/* Aside 内のメニュー上下の詰まりを解消 */
.aside0 .sidebar-nav, .aside1 .sidebar-nav { padding: 4px 0; }
.sub-menu { margin-top: 6px; }
.sub-menu li { border-bottom: 1px solid #eee; }
.sub-menu li:last-child { border-bottom: 0; }

/* ====== Shop hours Info ====== */
.shop-hours {
  margin-bottom: 1.2em;
  padding: 1em;
  background: #fffdf5;
  border: 1px solid #e0d4a6;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.shop-hours p {
  margin: 0.4em 0;
}

.shop-hours strong {
  color: #a86f02; /* ゴールドブラウンでアクセント */
}
.shop-hours p { margin: 0.25rem 0; }
.shop-hours p em { font-size: 0.95em; }






















