/* ============================================================
     元サイトのレイアウトを完全踏襲。寸法・配置・余白そのまま。
     アニメーションのみ追加：fadehover, slide fade, smooth-scroll, hamburger
     ============================================================ */
  :root {
    --tz-mincho: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","Shippori Mincho","HG明朝E","ＭＳ 明朝",serif;
    /* 英字装飾用（"NEWS" "SHOPS" "MENU" 等のラベル） */
    --tz-en-serif: "Cormorant Garamond","Times New Roman",Times,serif;
    /* 本文の英数字（日付・電話番号等） */
    --tz-en-sans: Arial,Helvetica,sans-serif;
    /* 後方互換：site-original の .gothic クラス用 */
    --tz-gothic: var(--tz-en-sans);
  }
  *, *::before, *::after { box-sizing: border-box; }
  /* 元サイトと同じ：全要素に明朝指定 */
  * { font-family: var(--tz-mincho); }
  .gothic { font-family: var(--tz-gothic); }
  html { overflow-y: scroll; scroll-behavior: smooth; }
  body {
    color: #fdfbfb;
    font-size: 13px;
    margin: 0;
    padding: 0;
    background-color: #635442;
    font-family: var(--tz-mincho);
    -webkit-text-size-adjust: 100%;
  }
  a, a:link, a:visited { color: #fdfbfb; text-decoration: underline; outline: 0; }
  a:hover { text-decoration: none; color: #fdfbfb; }

  /* 中間幅対応：1000pxを上限にしつつビューポート内に収める */
  .midbox { width: 100%; max-width: 1080px; margin: 0 auto; padding-left: 20px; padding-right: 20px; box-sizing: border-box; }
  .midbox p { line-height: 180%; }
  .floatl { float: left; }
  .floatr { float: right; }
  .center { text-align: center; }
  .dummy { clear: both; font-size: 1px; line-height: 1px; }
  /* 元サイト準拠：images/btn_pagetop.png を使ったシンプルなボタン */
  .pagetop { clear: both; text-align: right; }
  .pagetop a { display: inline-block; transition: opacity 0.2s; }
  .pagetop a:hover { opacity: 0.7; }
  .pagetop img { display: inline-block; vertical-align: middle; border: 0; }
  .pt30 { padding-top: 30px; }
  .pt50 { padding-top: 50px; }
  img { border: 0; vertical-align: middle; }
  ul, dl { margin: 0; padding: 0; list-style: none; }
  li { list-style: none; }
  p { margin: 0; padding: 0; line-height: 140%; }
  h2, h3, h4 { margin: 0; padding: 0; font-weight: normal; }

  .font14 { font-size: 14px; }
  .font18 { font-size: 18px; }
  .ls170 { line-height: 1.7em !important; }
  .ls180 { line-height: 1.8em !important; }
  .text180 { line-height: 180%; }
  .mt10 { margin-top: 10px; }
  .mt20 { margin-top: 20px; }
  .mt60 { margin-top: 60px; }
  .mb20 { margin-bottom: 20px; }
  .mr20 { margin-right: 20px; }
  .pt50 { padding-top: 50px; }

  /* 追従ヘッダー(#fxmenubox h:78px)のかぶり防止 — アンカー遷移時のオフセット */
  html { scroll-padding-top: 80px; }

  /* ===== HEADER ===== */
  #headarea {
    background-image: url(/takizawa/img/bg.gif);
    background-repeat: repeat-y;
    background-position: center;
    height: 16px;
    text-indent: -9999px;
  }

  /* ===== Fix menu (PC) ===== */
  #wrap { position: relative; }
  #fxmenubox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 78px;
    color: #fff;
    background-color: #040000;
    z-index: 99;
    padding: 14px 0 11px;
  }
  #fxmenubox.shown { display: block; animation: fxFadeIn 0.4s ease forwards; }
  @keyframes fxFadeIn { from { opacity: 0; } to { opacity: 1; } }
  /* 常時表示（非トップページ）はフェードインさせない（初回描画のぬるっと回避） */
  #fxmenubox.is-static.shown { animation: none; }
  /* 非トップページは固定ヘッダー(78px)を常時表示するため上部に余白を確保。
     モバイル(<=480px)はバーではなくフローティングのハンバーガーなので余白不要。 */
  @media (min-width: 481px) {
    #wrap:not(.toppage) { padding-top: 78px; }
  }
  #fxmenu { width: 100%; max-width: 946px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
  #fxmenu h1 {
    width: 146px; height: 43px;
    margin: 0;
    flex: 0 0 auto;
  }
  #fxmenu h1 a {
    display: block;
    width: 146px; height: 43px;
  }
  #fxmenu h1 a.fover {
    text-indent: -9999px;
  }
  #fxmenu h1 a img {
    display: block;
    width: 100%; height: 100%;
    object-fit: contain;
  }
  #fxmenu ul {
    padding: 0; margin: 0;
    list-style: none;
    display: flex; align-items: center; gap: clamp(28px, 4vw, 60px);
    flex: 1 1 auto; justify-content: flex-end;
  }
  #fxmenu li { margin: 0; }
  #fxmenu .menu li a {
    display: block;
    height: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    transition: opacity 0.2s;
    font-family: var(--tz-mincho);
  }
  #fxmenu .menu li a:hover { opacity: 0.7; }
  .fover a:hover, a.fover:hover, img.fover:hover { opacity: 0.7; }

  /* hamburger (mobile) */
  .btn-fxmenu { display: none; }

  /* ===== SLIDER ===== */
  #slidebox {
    width: 100%;
    position: relative;
    clear: both;
    text-align: center;
    background-color: #696969;
  }
  #slider {
    width: 100%;
    height: auto;
    max-height: 800px;
    background-color: #696969;
    overflow: hidden;
    position: relative;
  }
  #slider img {
    width: 100%;
    height: auto;
    display: block;
  }
  #onitem {
    position: absolute;
    inset: 0;
    width: 100%;
    box-shadow: inset 0 7px 7px -7px rgba(0,0,0,.5);
    z-index: 9;
    /* hero(slider) 全体に被せて flex-column。nav=上段 / logo=残り高さに広げる。
       これでロゴ高さが hero 高さに連動し、幅を縮めても hero と一緒に縮むため
       NEWS バナー (.tz-hero-news, margin-top:-54px) と被らない（位置の微調整に依存しない） */
    display: flex;
    flex-direction: column;
    pointer-events: none; /* 透明オーバーレイがスライダー操作を奪わないように */
  }
  #onitem ul {
    margin: 0 auto;
    padding: clamp(14px, 2.5vw, 32px) clamp(10px, 1.5vw, 20px) clamp(28px, 4vw, 56px);
    list-style: none;
    display: flex; align-items: center; justify-content: center; gap: clamp(10px, 2.5vw, 48px);
    flex-wrap: nowrap;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;        /* flex-column 内で nav は上段に固定 */
    pointer-events: auto;  /* リンクはクリック可能に戻す */
  }
  #onitem li { margin: 0; min-width: 0; }
  #onitem .menu li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: clamp(10px, 1.1vw, 13px);
    letter-spacing: 0.06em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    font-family: var(--tz-mincho);
    transition: opacity 0.2s;
    padding: 4px 2px;
    white-space: nowrap;
  }
  #onitem .menu li a:hover { opacity: 0.75; }
  #onitem #logo {
    flex: 1 1 auto;        /* hero の残り高さ（nav を除いた分）に広がる */
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* NEWS バナー（hero 下端に -54px で食い込む）の高さ分を下に確保し被りを防ぐ */
    padding-bottom: 72px;
    pointer-events: none;
  }
  #onitem #logo img {
    width: auto;
    height: auto;
    /* #logo（= hero 高さ − nav − バナー確保分）に連動。巨大画面用に上限のみ固定 */
    max-height: min(100%, 520px);
    max-width: 70vw;
  }

  /* ===== ヒーロー下のお知らせバナー（最新1件） ===== */
  /* NEWS バーはヒーロー画像内に absolute 固定（#slidebox が relative 基準）。
     位置を動かしても下のコンセプト等のフローに影響しない（修正依頼3 B-1）。 */
  .tz-hero-news {
    position: absolute; z-index: 9;
    bottom: 10px; left: 0; right: 0;
    max-width: 720px; margin: 0 auto;
    padding: 0 16px;
    pointer-events: none;
  }
  .tz-hero-news a {
    pointer-events: auto;
    display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
    padding: 14px 24px;
    background: rgba(15, 13, 11, 0.78);
    border: 1px solid rgba(201, 168, 106, 0.4);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    color: #fdfbfb !important; text-decoration: none !important;
    font-family: var(--tz-mincho);
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  .tz-hero-news a:hover {
    background: rgba(15, 13, 11, 0.92);
    border-color: rgba(201, 168, 106, 0.7);
  }
  .tz-hero-news__label {
    font-family: var(--tz-gothic);
    font-size: 10px; letter-spacing: 0.3em; color: #c9a86a;
    padding-right: 14px; border-right: 1px solid rgba(255,255,255,0.25);
    white-space: nowrap;
  }
  .tz-hero-news__date {
    font-family: var(--tz-gothic);
    font-size: 11px; letter-spacing: 0.1em; color: #c6c6c5;
    white-space: nowrap;
  }
  .tz-hero-news__title {
    font-size: 13px; letter-spacing: 0.05em;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    max-width: 320px;
  }
  .tz-hero-news__arrow { font-size: 12px; opacity: 0.7; }
  @media (max-width: 600px) {
    .tz-hero-news {
      position: absolute;
      bottom: 24px; left: 12px; right: 12px;
      margin: 0;
      max-width: none;
      padding: 0;
      z-index: 12;
    }
    .tz-hero-news a {
      padding: 10px 12px;
      gap: 8px;
      flex-wrap: nowrap;
      width: 100%;
      box-sizing: border-box;
    }
    .tz-hero-news__title {
      max-width: none;
      flex: 1 1 auto;
      min-width: 0;
      font-size: 11px;
    }
    .tz-hero-news__label { padding-right: 6px; font-size: 9px; letter-spacing: 0.2em; }
    .tz-hero-news__date { font-size: 10px; }
    .tz-hero-news__arrow { font-size: 11px; flex: 0 0 auto; }
  }
  .disp_pc { display: block; }
  .disp_mobile { display: none; }

  /* ===== CONCEPT ===== */
  .midbox.concept-mid { margin-top: 88px; }
  #concept {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 40px;             /* ブロック間の余白 */
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  .concept-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 48px;
    align-items: stretch;
  }
  .concept-row__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .concept-row__image {
    min-width: 0;
    display: flex;
    align-items: stretch;
  }
  .concept-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .concept-row__body {
    margin-top: 28px;      /* タイトル(h2.hl02)と本文の間隔 */
    font-size: 16px;       /* 元 14px (font14 クラス) を override */
    line-height: 1.95;
  }
  .hl02 {
    font-size: 25px;
    font-weight: normal;
    border-left: 9px solid #7d7c7c;
    padding-left: 14px;
    line-height: 1.4;
    margin: 0;
  }
  .bimg { display: block; max-width: 100%; height: auto; }
  .concept2 { margin-top: 0; }

  /* ===== SHOPLIST (cms-poc tz-shopslist) ===== */
  .tz-shopslist { max-width: 1080px; margin: 0 auto; padding: 80px 20px; }
  .tz-shopslist__title { text-align: center; margin-bottom: 48px; }
  .tz-shopslist__title h2 { font-size: 26px; letter-spacing: 0.15em; margin: 0; font-family: var(--tz-mincho); font-weight: normal; }
  .tz-shopslist__title .en { display: block; color: #c6c6c5; font-size: 12px; letter-spacing: 0.3em; font-family: var(--tz-en-serif); margin-top: 6px; }
  .tz-shopslist__cards { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
  .tz-shopslist__cards:has(.tz-shopslist__card:only-child) { grid-template-columns: minmax(0, 360px); justify-content: center; }
  .tz-shopslist__card a, .tz-shopslist__inactive-inner { display: block; color: inherit !important; text-decoration: none !important; }
  /* 川上庵風: hover で画像のみ少し暗くなる。transform / scale は使わない */
  .tz-shopslist__thumb { position: relative; aspect-ratio: 3/2; overflow: hidden; background: #2a241b; }
  .tz-shopslist__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: filter 0.15s ease, opacity 0.15s ease; }
  .tz-shopslist__card a:hover .tz-shopslist__thumb img { filter: brightness(0.7); }
  .tz-shopslist__body { padding: 24px 4px 0; text-align: center; }
  /* 「長野」「その他」のエリア表示は店舗名より少し小さい程度に拡大 */
  .tz-shopslist__area { display: block; font-size: 20px; letter-spacing: 0.15em; color: #c9a86a; font-family: var(--tz-mincho); margin-bottom: 12px; }
  .tz-shopslist__name { font-size: 24px; margin: 0; letter-spacing: 0.05em; font-family: var(--tz-mincho); font-weight: normal; }
  .tz-shopslist__card--inactive .tz-shopslist__inactive-inner { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
  .tz-shopslist__badge {
    position: absolute; top: 14px; left: 14px;
    background: rgba(15,13,11,0.78); color: #c9a86a;
    font-family: var(--tz-en-serif); font-size: 10px; letter-spacing: 0.3em;
    padding: 6px 12px; border: 1px solid rgba(201,168,106,0.5);
  }

  /* ===== NEWS TOPICS (cms-poc tz-newstopics) ===== */
  .tz-newstopics { max-width: 1080px; margin: 0 auto; padding: 80px 20px; }
  .tz-newstopics__title { text-align: center; margin-bottom: 36px; }
  .tz-newstopics__title h2 { font-size: 26px; letter-spacing: 0.15em; margin: 0; font-family: var(--tz-mincho); font-weight: normal; }
  .tz-newstopics__title .en { display: block; color: #c6c6c5; font-size: 12px; letter-spacing: 0.3em; font-family: var(--tz-en-serif); margin-top: 6px; }
  .tz-newstopics__list { margin: 0; padding: 0; }
  .tz-newstopics__row { display: block; padding: 22px 8px; border-top: 1px solid #6d6d6d; color: inherit !important; text-decoration: none !important; transition: background 0.3s ease; }
  .tz-newstopics__row:last-of-type { border-bottom: 1px solid #6d6d6d; }
  .tz-newstopics__row:hover { background: rgba(255,255,255,0.04); }
  .tz-newstopics__row dt { display: flex; flex-wrap: wrap; gap: 18px; align-items: baseline; margin: 0; }
  .tz-newstopics__row dt time { font-family: var(--tz-gothic); font-size: 13px; letter-spacing: 0.1em; color: #c6c6c5; flex: 0 0 auto; }
  .tz-newstopics__heading { font-size: 16px; letter-spacing: 0.05em; }
  .tz-newstopics__row dd { margin: 8px 0 0; font-size: 13px; line-height: 1.7; color: #ebe7e1; padding-left: 0; }
  .tz-newstopics__more { text-align: right; margin-top: 24px; }
  .tz-newstopics__more a { color: #fdfbfb !important; letter-spacing: 0.1em; font-size: 13px; text-decoration: none !important; transition: opacity 0.3s ease; }
  .tz-newstopics__more a:hover { opacity: 0.7; }

  /* ===== SHOP DETAIL (cms-poc tz-shop-wrap) ===== */
  .tz-shop-wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px 80px; }
  /* カルーセルは全幅。基準ブラウザ幅 1920px で 3:1 の画像がちょうど収まる高さ(1920÷3=640px)を
     max-height に設定する。→ 1920 より広げると高さ固定で画像が上下切れて拡大(cover)、
     狭めると aspect-ratio で縦も一緒に縮む。画像は 3:1 でアップする運用前提（cover なので比率が合えば切れない）。 */
  .tz-shop__hero {
    position: relative;
    width: 100%;
    margin: 0;
    aspect-ratio: 3 / 1;
    max-height: 640px;
    background-color: #696969;
  }
  @media (max-width: 600px) {
    .tz-shop__hero { aspect-ratio: 3 / 2; max-height: none; }
  }
  /* breadcrumb は店舗詳細・メニュー画面では非表示 (パワポ Slide 5/6 準拠)。
     カルーセル直下のスペースは title-block で確保する */
  .tz-shop-wrap > .title-block { padding: 88px 0 32px; }
  .tz-shop__intro {
    max-width: 820px;
    margin: 0 auto 40px;
    font-family: var(--tz-mincho);
  }
  .tz-shop__intro p {
    margin: 0 0 1.2em;
    font-size: 15px;
    line-height: 1.95;
    color: #fdfbfb;
  }
  .tz-shop__intro p:last-child { margin-bottom: 0; }
  /* 情報ブロック + マップを 1:1 + メニューカード（PC は中央下、SP は MAP の上）。
     PC: "info | map" / "menu menu"。情報は左寄せ・上寄せ、マップは中央寄せ・下寄せ
     SP: info → menu → map（flex order） */
  .tz-shop__info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "info map"
      "menu menu";
    column-gap: 48px;
    row-gap: 36px;
    max-width: 1080px;
    margin: 0 auto 36px;
  }
  .tz-shop__info { grid-area: info; align-self: start; }
  .tz-shop__info-grid .tz-shop__menu-link {
    grid-area: menu;
    max-width: 320px;
    width: 100%;
    margin: 12px 0 0;
  }
  .tz-shop__map {
    grid-area: map;
    width: 100%;
    max-width: 483px;
    aspect-ratio: 1 / 1;
    background: #1a1a1a;
    margin: 0 auto;        /* 左右中央寄せ (grid セルが半分幅なので、左右に余白が生まれる) */
    align-self: end;       /* 下寄せ */
    box-sizing: border-box;
  }
  .tz-shop__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  @media (max-width: 700px) {
    .tz-shop__info-grid {
      display: flex;
      flex-direction: column;
      gap: 28px;
      align-items: stretch;
    }
    .tz-shop__info { order: 1; }
    /* SP は親 .tz-shop-wrap の 16px padding に揃え、メニューカードに追加の左右余白を入れない */
    .tz-shop__info-grid .tz-shop__menu-link { order: 2; margin: 0; max-width: none; width: 100%; }
    .tz-shop__map {
      order: 3;
      max-width: none;
      margin: 0;
      align-self: stretch;
    }
  }
  .tz-shop__info { margin: 0; }
  .tz-shop__info h4 { margin: 18px 0 6px; font-size: 16px; font-weight: normal; letter-spacing: 0.05em; color: #c9a86a; font-family: var(--tz-mincho); }
  .tz-shop__info h4:first-child { margin-top: 0; }
  .tz-shop__info p { margin: 0 0 8px; font-size: 14px; line-height: 1.85; }
  .tz-shop__info p.tel { font-size: 22px; font-weight: bold; letter-spacing: 1px; }
  .tz-shop__info p.tel a {
    color: #fdfbfb !important;
    text-decoration: underline !important;
    display: inline-block;
  }
  .tz-shop__info a { color: #fdfbfb !important; text-decoration: underline; }
  .tz-shop__menu-btn { text-align: center; margin: 36px 0 10px; }
  .tz-shop__menu-btn img { max-width: 100%; height: auto; }
  .tz-shop__note { font-size: 13px; line-height: 1.85; color: #c6c6c5; text-align: center; max-width: 600px; margin: 8px auto 0; }
  .tz-shop__back { text-align: center; margin-top: 56px; padding-top: 32px; }
  .tz-shop__back a {
    display: inline-block; padding: 12px 36px;
    border: 1px solid #c6c6c5; color: #fdfbfb !important;
    text-decoration: none !important; letter-spacing: 0.1em; font-size: 13px;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .tz-shop__back a:hover { background: #3a3226; transform: translateY(-1px); }

  /* ===== Generic title (shop detail / news article) ===== */
  .title-block {
    text-align: center;
    padding: 72px 0 40px;
  }
  .title-block .label {
    font-family: var(--tz-en-serif);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: #c6c6c5;
    display: block;
    margin-bottom: 8px;
  }
  .title-block h1 {
    font-size: 25px;
    font-weight: normal;
    margin: 0;
    letter-spacing: 0.1em;
  }

  /* ===== FOOTER ===== */
  #footbox {
    background-image: url(/takizawa/img/bg2.gif);
    background-repeat: repeat-y;
    background-position: center;
    box-shadow: 0 8px 12px -8px #222 inset;
    color: #fff;
    position: relative;
    padding: 0 0 90px;
    margin-top: 0;
  }
  #footbox .midbox { margin-top: 88px; }
  #foot { position: relative; display: flex; flex-wrap: wrap; gap: 24px; }
  #f_left { float: none; flex: 1 1 380px; min-width: 0; width: auto; padding-left: 10px; box-sizing: border-box; }
  #f_right {
    float: none;
    flex: 1 1 360px; min-width: 0; width: auto;
    box-sizing: border-box;
    text-align: right;
    position: absolute;
    right: 0; bottom: 0;
    padding: 0;
  }
  #smenu02 { float: none; flex: 1 1 auto; width: auto; max-width: 460px; margin-top: 60px; padding: 0; }
  #smenu02 li { line-height: 100%; margin-bottom: 28px !important; }
  #smenu02 a {
    font-size: 14px;
    color: #fdfdfd;
    font-family: var(--tz-mincho);
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
  }
  #smenu02 a:hover { color: #adadad; text-decoration: underline; }
  .footmenu1 {
    border-left: 4px solid #c6c6c5;
    vertical-align: middle;
    padding-left: 14px;
  }
  .copy {
    font-size: 14px;
    line-height: 100%;
    padding-top: 30px;
  }

  /* ===== Mobile (≤480px) — 元サイトのsp.css踏襲 ===== */
  @media screen and (max-width: 480px) {
    /* SP では追従ヘッダーがドロワー型で常時の被りなし */
    html { scroll-padding-top: 0; }
    .disp_pc { display: none; }
    .disp_mobile { display: block; }
    body { font-size: 15px; max-width: 100%; overflow-x: hidden; }
    .floatl, .floatr { float: none; }
    .midbox { width: auto; }

    /* hamburger */
    #fxmenubox {
      display: block !important;
      position: static;
      top: auto; left: auto;
      width: auto; height: auto;
      background: transparent;
      padding: 0;
    }
    #fxmenubox.shown { animation: none; }
    #fxmenu {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100vh;
      background: rgba(20, 16, 11, 0.96);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      flex-direction: column;
      gap: 0;
      padding: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
      z-index: 100;
      overflow-y: auto;
      box-sizing: border-box;
    }
    #fxmenu__legacy_drop {
      display: none;
      z-index: 10;
      width: 100%;
      height: 100vh;
      opacity: 0;
      background-color: #2f2405;
      transition: all 0.3s ease-in-out;
      visibility: hidden;
    }
    #fxmenu.active { opacity: 1; visibility: visible; }
    #fxmenu h1 { display: none; }
    #fxmenu ul {
      float: none; width: 100%;
      max-width: 320px;
      margin: 24px auto 32px;
      padding: 0 24px;
      display: flex;
      flex-direction: column;
      /* PC 用 ul の `justify-content: flex-end` を打ち消す (column 方向で下寄せ→上寄せに) */
      justify-content: flex-start;
      gap: 0;
      list-style: none;
      box-sizing: border-box;
    }
    #fxmenu li {
      float: none; height: auto; margin-right: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    #fxmenu li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.12); }
    #fxmenu .menu li a {
      display: block;
      height: auto;
      padding: 22px 8px;
      font-size: 16px;
      font-family: var(--tz-mincho);
      letter-spacing: 0.12em;
      color: #fff !important;
      text-shadow: none;
      position: relative;
      transition: opacity 0.2s, padding 0.2s;
    }
    #fxmenu .menu li a::after {
      content: "›";
      position: absolute;
      right: 8px; top: 50%;
      transform: translateY(-50%);
      color: #c9a86a;
      font-size: 18px;
      opacity: 0.6;
    }
    #fxmenu .menu li a:active { opacity: 0.6; padding-left: 14px; }
    .btn-fxmenu {
      display: inline-block;
      position: fixed;
      top: 22px; right: 18px;
      width: 44px; height: 44px;
      z-index: 110;
      cursor: pointer;
      background: rgba(20, 16, 11, 0.55);
      border: 0;
      border-radius: 50%;
      padding: 11px 9px;
      box-sizing: border-box;
      transition: background .3s;
    }
    .btn-fxmenu.active { background: transparent; }
    .btn-fxmenu span {
      display: inline-block;
      position: absolute;
      left: 9px;
      width: 26px;
      height: 2px;
      background-color: #fff;
      transition: all .4s;
      box-sizing: border-box;
      border-radius: 1px;
    }
    .btn-fxmenu span:nth-of-type(1) { top: 14px; }
    .btn-fxmenu span:nth-of-type(2) { top: 21px; }
    .btn-fxmenu span:nth-of-type(3) { top: 28px; }
    .btn-fxmenu.active span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
    .btn-fxmenu.active span:nth-of-type(2) { opacity: 0; }
    .btn-fxmenu.active span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }

    /* slider */
    #onitem ul { display: none; }
    #onitem {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      background-color: #4f4435;
      height: 0;
    }
    #onitem #logo { margin-top: 0; }
    #logo-mobile {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 9;
      width: auto;
      pointer-events: none;
    }
    #logo-mobile img {
      width: auto;
      height: 70vh;
      max-height: 560px;
      max-width: 70vw;
    }
    #slider, #slider img {
      width: 100% !important;
      height: 100vh;
      min-height: 100vh;
      object-fit: cover;
    }

    /* concept */
    /* margin-top にすると Hero 画像 (tz-hero-news バナーで上に被さるレイアウト) の
       下に潜り込んで見えるため、margin 0 + padding-top で内側余白として確保する */
    #concept {
      margin-top: 0;
      /* PC と同じ 16px に揃え、SP 左右余白を 16px 統一の標準値に収める */
      padding: 24px 16px 0;
      gap: 24px;            /* SP ではブロック間隔をさらに圧縮 */
    }
    .concept-row {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .concept-row__text { padding: 0; }
    .concept-row__image img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* shoplist */
    #shoplist { padding-top: 35px; }
    #shoplist .title { margin-bottom: 0; }
    #slistbox {
      width: 358px;
      margin: 0 auto;
      text-align: center;
    }
    #slistbox p { margin: 0 auto; text-align: center; }
    .slistl {
      width: 100%;
      margin-top: 30px;
      margin-bottom: 30px;
      float: none;
    }
    .slistr {
      float: none;
      width: 100%;
    }
    .slistr img { width: 100%; height: auto; }
    .tz-shop__info p.tel a:active {
      color: #c9a86a !important;
    }

    /* news */
    #news { padding-top: 35px; }
    #topics {
      width: auto;
      margin: 0 5%;
    }
    #topics dl { width: auto; padding-right: 0; }

    /* footer */
    #footbox {
      background-image: none;
      background-color: #514e4d;
      padding-bottom: 35px;
    }
    #footbox .midbox { margin-top: 50px; }
    #f_right, #f_left {
      float: none;
      width: auto;
      padding: 0 5%;
    }
    #f_right { position: static; }
    #f_left {
      padding-top: 43px;
      padding-bottom: 37px;
      background-color: #2f2405;
    }
    #smenu02 { float: none; width: auto; margin-top: 0; }
    .copy { font-size: 12px; }
  }

  /* ===== Page switcher chrome (preview-only) ===== */
  .preview-nav {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(4,0,0,0.92);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px;
    border-radius: 999px;
    display: flex;
    gap: 4px;
    backdrop-filter: blur(8px);
    font-family: var(--tz-gothic);
  }
  .preview-nav button {
    background: transparent;
    border: 0;
    color: #c6c6c5;
    font-size: 12px;
    letter-spacing: 0.15em;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .preview-nav button:hover { color: #fdfbfb; }
  .preview-nav button.active { background: #fdfbfb; color: #2a241b; }

  /* ===== BREADCRUMB (shared) ===== */
  .tz-breadcrumb { font-size: 13px; letter-spacing: 0.05em; margin-bottom: 32px; color: #c6c6c5; }
  .tz-breadcrumb a { color: #fdfbfb !important; text-decoration: none; transition: opacity 0.3s ease; }
  .tz-breadcrumb a:hover { opacity: 0.7; }
  .tz-breadcrumb .sep { margin: 0 10px; color: #7d7c7c; }

  /* ===== NEWS LIST PAGE (cms-poc tz-news-*) ===== */
  .tz-news-wrap { max-width: 1080px; margin: 0 auto; padding: 40px 20px 80px; }
  .tz-news-toggle { display: flex; gap: 0; justify-content: flex-end; margin-bottom: 24px; }
  .tz-news-toggle__btn {
    padding: 10px 22px; font-size: 12px; letter-spacing: 0.18em;
    color: #c6c6c5 !important; background: transparent;
    border: 1px solid #7d7c7c; text-decoration: none !important;
    transition: all 0.2s ease;
  }
  .tz-news-toggle__btn + .tz-news-toggle__btn { border-left: none; }
  .tz-news-toggle__btn:hover { background: #3a3226; color: #fdfbfb !important; }
  .tz-news-toggle__btn.is-active { background: #fdfbfb; color: #2a241b !important; border-color: #fdfbfb; }

  .tz-news-titlebar {
    background: #3a3226; padding: 32px 30px;
    border-top: 1px solid #7d7c7c; border-bottom: 1px solid #7d7c7c;
    text-align: center; margin-bottom: 36px;
  }
  .tz-news-titlebar h2 { color: #fdfbfb !important; font-size: 26px; letter-spacing: 0.15em; margin: 0; font-family: var(--tz-mincho); font-weight: normal; }
  .tz-news-titlebar .en { display: block; color: #c6c6c5; font-size: 12px; letter-spacing: 0.3em; font-family: var(--tz-en-serif); margin-top: 6px; }

  .tz-news-list { list-style: none; padding: 0; margin: 0; }
  .tz-news-card { border-top: 1px solid #7d7c7c; }
  .tz-news-card:last-child { border-bottom: 1px solid #7d7c7c; }
  .tz-news-card__link { display: flex; gap: 28px; padding: 28px 10px; color: inherit !important; text-decoration: none !important; transition: opacity 0.3s ease, background 0.3s ease; }
  .tz-news-card__link:hover { opacity: 0.85; background: rgba(255,255,255,0.03); }
  .tz-news-card__thumb { flex: 0 0 240px; width: 240px; height: 160px; background: #2a241b; overflow: hidden; }
  .tz-news-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .tz-news-card__thumb--empty { width: 100%; height: 100%; background: #2a241b; }
  .tz-news-card__body { flex: 1; min-width: 0; }
  .tz-news-card__date { display: block; font-family: var(--tz-gothic); font-size: 13px; letter-spacing: 0.1em; color: #c6c6c5; margin-bottom: 6px; }
  .tz-news-card__title { font-size: 19px; line-height: 1.55; margin: 0 0 10px; padding-left: 10px; border-left: 4px solid #7d7c7c; font-weight: normal; }
  .tz-news-card__excerpt { font-size: 14px; line-height: 1.8; color: #ebe7e1; margin: 0; }
  @media (max-width: 700px) {
    .tz-news-card__link { flex-direction: column; padding: 20px 10px; gap: 14px; }
    .tz-news-card__thumb { flex: none; width: 100%; height: auto; aspect-ratio: 16/10; }
  }

  .tz-news-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; justify-content: center; }
  .tz-news-grid__card { max-width: 360px; width: 100%; }
  .tz-news-grid__link { display: block; color: inherit !important; text-decoration: none !important; }
  .tz-news-grid__thumb { aspect-ratio: 3/2; background: #2a241b; overflow: hidden; }
  /* 店舗一覧カード (.tz-shopslist) と同じ挙動に統一: hover は画像が少し暗くなるだけ。
     transform: scale / translateY によるヌルっと拡大は廃止する。 */
  .tz-news-grid__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: filter 0.15s ease, opacity 0.15s ease; }
  .tz-news-grid__link:hover .tz-news-grid__thumb img { filter: brightness(0.7); }
  .tz-news-grid__thumb--empty { width: 100%; height: 100%; background: #2a241b; }
  .tz-news-grid__body { padding: 16px 4px 0; }
  .tz-news-grid__date { display: block; font-family: var(--tz-gothic); font-size: 12px; letter-spacing: 0.1em; color: #c6c6c5; margin-bottom: 6px; }
  .tz-news-grid__title { font-size: 16px; line-height: 1.55; margin: 0 0 8px; padding-left: 8px; border-left: 3px solid #7d7c7c; font-weight: normal; }
  /* 抜粋本文は非表示（修正依頼3 H） */
  .tz-news-grid__excerpt { display: none; }
  .tz-news-empty { color: #c6c6c5; text-align: center; padding: 40px 0; }
  .tz-news-back { margin-top: 40px; }
  .tz-news-back a { color: #fdfbfb !important; text-decoration: none; }
  .tz-news-back a:hover { opacity: 0.7; }

  .tz-pager { display: flex; justify-content: center; align-items: center; gap: 24px; margin-top: 56px; flex-wrap: wrap; }
  .tz-pager__btn {
    padding: 12px 28px; border: 1px solid #c6c6c5; color: #fdfbfb !important;
    text-decoration: none !important; letter-spacing: 0.1em; font-size: 13px;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .tz-pager__btn:hover { background: #3a3226; transform: translateY(-1px); }
  .tz-pager__btn.is-disabled { opacity: 0.35; pointer-events: none; }
  .tz-pager__status { font-size: 14px; letter-spacing: 0.1em; color: #ebe7e1; font-family: var(--tz-gothic); }
  .tz-pager__total { font-size: 12px; color: #c6c6c5; margin-left: 8px; letter-spacing: 0.05em; }
  @media (max-width: 600px) {
    .tz-pager { gap: 10px; }
    .tz-pager__btn { padding: 10px 18px; font-size: 12px; flex: 1 1 auto; text-align: center; }
    .tz-pager__status { width: 100%; text-align: center; order: -1; }
  }

  /* ===== NEWS ARTICLE PAGE ===== */
  .tz-article-wrap { max-width: 1080px; margin: 0 auto; padding: 40px 20px 80px; }
  .tz-article { max-width: 960px; margin: 0; padding: 0; }
  .tz-article__meta { font-family: var(--tz-gothic); font-size: 13px; letter-spacing: 0.1em; color: #c6c6c5; margin: 0 0 12px; }
  .tz-article__title { font-size: 26px; line-height: 1.5; margin: 0 0 18px; letter-spacing: 0.05em; padding-left: 14px; border-left: 5px solid #c9a86a; font-weight: normal; }
  @media (max-width: 600px) { .tz-article__title { font-size: 20px; } }
  .tz-article__lead { font-size: 16px; line-height: 1.9; margin: 0 0 28px; color: #ebe7e1; }
  .tz-article__hero { margin: 0; text-align: center; }
  /* 画像領域は 3:2 固定・object-fit cover（split では親セル420px、単独カバーでは本文幅基準）。
     画面縮小時は max-width:100% で親に収める（修正依頼3 J）。 */
  .tz-article__hero img { width: 100%; max-width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; margin: 0 auto; }
  .tz-article__hero figcaption { font-size: 12px; color: #c6c6c5; margin-top: 10px; }
  /* カバー画像ありの記事は 左:本文 / 右:画像 の 2 カラム */
  .tz-article__split {
    display: grid;
    grid-template-columns: 1fr 420px;  /* 本文可変・画像領域は 420px(3:2) 固定 */
    gap: 36px;
    margin-top: 28px;
    align-items: start;
  }
  @media (max-width: 600px) {
    .tz-article__split {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }
  .tz-article__body { font-size: 15px; line-height: 2; }
  .tz-article__body p { margin: 0 0 1.4em; }
  .tz-article__inline-figure { margin: 32px 0; text-align: center; }
  .tz-article__inline-figure img { max-width: 110%; height: auto; display: block; margin: 0 auto; }
  .tz-article__inline-figure figcaption { font-size: 12px; color: #c6c6c5; margin-top: 10px; }
  .tz-article__nav { margin-top: 48px; padding-top: 6px; }
  .tz-article__nav a {
    display: inline-block; padding: 12px 36px;
    border: 1px solid #c6c6c5; color: #fdfbfb !important;
    text-decoration: none !important; letter-spacing: 0.1em; font-size: 13px;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .tz-article__nav a:hover { background: #3a3226; transform: translateY(-1px); }

  /* ===== SHOP DETAIL — menu cards ===== */
  .tz-shop__menu-section { max-width: 680px; margin: 64px auto 40px; padding: 0; }
  .tz-menu-titlebar {
    background: #3a3226; padding: 22px 24px;
    border-top: 1px solid #7d7c7c; border-bottom: 1px solid #7d7c7c;
    text-align: center; margin-bottom: 24px;
    display: flex; align-items: baseline; justify-content: center; gap: 14px;
  }
  .tz-menu-titlebar h2 { color: #fdfbfb; font-size: 22px; letter-spacing: 0.18em; margin: 0; font-family: var(--tz-mincho); font-weight: normal; }
  .tz-menu-titlebar .en { color: #c6c6c5; font-size: 12px; letter-spacing: 0.3em; font-family: var(--tz-en-serif); }
  .tz-menu-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 680px; margin: 0 auto 20px; }
  .tz-menu-cards--single { grid-template-columns: 1fr; max-width: 280px; }
  .tz-menu-cards--single .tz-menu-card { padding: 14px 20px; }
  .tz-menu-cards--single .tz-menu-card__label { font-size: 14px; letter-spacing: 0.08em; }
  .tz-menu-cards--single .tz-menu-card__sub { font-size: 10px; letter-spacing: 0.2em; margin-top: 2px; }
  .tz-menu-cards--single .tz-menu-card__hint { font-size: 12px; }
  .tz-shop__menu-link { margin: 28px auto 16px; }
  .tz-menu-card {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 26px; border: 1px solid #7d7c7c;
    color: #fdfbfb !important; text-decoration: none !important;
    background: rgba(58,50,38,0.25); transition: all 0.3s ease;
  }
  .tz-menu-card:hover { background: rgba(58,50,38,0.5); border-color: #c6c6c5; }
  .tz-menu-card__label { font-size: 17px; letter-spacing: 0.1em; font-family: var(--tz-mincho); }
  .tz-menu-card__sub { font-size: 11px; letter-spacing: 0.25em; color: #c6c6c5; margin-top: 4px; font-family: var(--tz-en-serif); }
  .tz-menu-card__hint { font-size: 13px; color: #c6c6c5; letter-spacing: 0.1em; }
  .tz-menu-note { font-size: 13px; color: #ebe7e1; letter-spacing: 0.05em; text-align: center; max-width: 680px; margin: 0 auto 36px; line-height: 1.9; }
  @media (max-width: 600px) {
    .tz-menu-cards { grid-template-columns: 1fr; }
    .tz-menu-titlebar h2 { font-size: 20px; }
    .tz-menu-card__label { font-size: 16px; }
  }

  /* ===== SHOP DETAIL — structured menu (CMS 入力) ===== */
  .tz-menu-tabs {
    display: flex; justify-content: center; flex-wrap: wrap;
    max-width: 680px; margin: 0 auto 28px;
    border-bottom: 1px solid #7d7c7c;
  }
  .tz-menu-tab {
    background: transparent; border: 0; cursor: pointer;
    font-family: var(--tz-mincho); color: #c6c6c5;
    font-size: 15px; letter-spacing: 0.12em;
    padding: 12px 26px; margin-bottom: -1px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .tz-menu-tab:hover { color: #fdfbfb; }
  .tz-menu-tab.is-active {
    color: #c9a86a;
    border-bottom-color: #c9a86a;
  }
  .tz-menu-main { max-width: 680px; margin: 0 auto 36px; }
  .tz-menu-main__lead,
  .tz-menu-main__footer {
    font-size: 13px; color: #ebe7e1; line-height: 1.9; letter-spacing: 0.05em;
    text-align: center; margin: 0 auto 18px; max-width: 600px;
    white-space: pre-wrap;
  }
  .tz-menu-main__footer { margin: 12px auto 0; }
  .tz-menu-sub { margin: 0 0 56px; }
  .tz-menu-sub__title {
    font-family: var(--tz-mincho); color: #c9a86a; font-size: 15px;
    letter-spacing: 0.12em; font-weight: normal;
    margin: 32px 0 14px; padding-left: 10px; border-left: 2px solid #c9a86a;
  }
  .tz-menu-sub__lead { font-size: 12px; color: #c6c6c5; margin: 6px 0 12px; line-height: 1.7; }
  .tz-menu-items { list-style: none; padding: 0; margin: 0; }
  .tz-menu-item {
    padding: 9px 0; border-bottom: 1px solid rgba(125, 124, 124, 0.4);
  }
  .tz-menu-item:last-child { border-bottom: none; }
  .tz-menu-item__head {
    display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: baseline;
  }
  .tz-menu-item__main { min-width: 0; }
  .tz-menu-item__name {
    display: block;
    font-family: var(--tz-mincho); color: #fdfbfb; font-size: 15px;
    letter-spacing: 0.05em; line-height: 1.6;
    overflow-wrap: anywhere;
  }
  .tz-menu-item__note {
    font-size: 12px; color: #c6c6c5; margin: 4px 0 0; line-height: 1.5;
    letter-spacing: 0.03em;
  }
  .tz-menu-item__prices {
    display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
    font-family: var(--tz-mincho); color: #fdfbfb;
  }
  .tz-menu-item__price { font-size: 14px; letter-spacing: 0.03em; white-space: nowrap; }
  .tz-menu-item__price-label {
    color: #c6c6c5; margin-right: 6px; font-size: 12px; letter-spacing: 0.05em;
  }
  .tz-menu-item__price-tax {
    color: #c6c6c5; font-size: 11px; margin-left: 4px; letter-spacing: 0.03em;
  }
  .tz-menu__footer-note {
    font-size: 12px; color: #c6c6c5; line-height: 1.9; letter-spacing: 0.05em;
    text-align: right; max-width: 680px; margin: 32px auto 16px;
    /* padding-right を 0 にして text-align: right の文字右端を border-top の右端と揃える */
    padding: 16px 0 0; border-top: 1px solid #7d7c7c;
    white-space: pre-wrap;
  }
  @media (max-width: 600px) {
    .tz-menu-tabs {
      gap: 0; margin-bottom: 22px;
      flex-wrap: nowrap; overflow-x: auto;
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
    }
    .tz-menu-tabs::-webkit-scrollbar { display: none; }
    .tz-menu-tab {
      font-size: 13px; padding: 10px 16px; letter-spacing: 0.08em;
      white-space: nowrap; flex-shrink: 0;
    }
    .tz-menu-main { padding: 0; }
    .tz-menu-main__lead,
    .tz-menu-main__footer { padding: 0; }
    .tz-menu-sub { margin-bottom: 40px; }
    .tz-menu-sub__title { font-size: 14px; margin: 18px 0 10px; }
    .tz-menu-items { padding: 0 4px; }
    .tz-menu-item { padding: 14px 0; }
    .tz-menu-item__head { gap: 10px; }
    .tz-menu-item__name { font-size: 14px; }
    .tz-menu-item__price { font-size: 12px; letter-spacing: 0; }
    .tz-menu-item__price-label { font-size: 11px; margin-right: 4px; }
    .tz-menu-item__price-tax { font-size: 10px; margin-left: 2px; }
    .tz-menu-item__note { font-size: 11px; }
    .tz-menu__footer-note { font-size: 11px; padding: 16px 0 0; }
  }

  .tz-shop__nav { margin-top: 40px; padding-top: 24px; }
  .tz-shop__nav a { color: #fdfbfb !important; text-decoration: none; }
  .tz-shop__nav a:hover { opacity: 0.7; }

  /* ==========================================================================
     MOBILE RESPONSIVE — new pages (NEWS list/article, SHOP list/detail)
     ========================================================================== */
  @media (max-width: 600px) {
    /* SHOPLIST (TOP内) */
    .tz-shopslist { padding: 48px 16px; }
    .tz-shopslist__title { margin-bottom: 28px; }
    .tz-shopslist__title h2 { font-size: 22px; }
    .tz-shopslist__cards { grid-template-columns: 1fr; gap: 24px; }
    .tz-shopslist__body { padding: 18px 4px 0; }
    .tz-shopslist__name { font-size: 22px; }

    /* NEWS TOPICS (TOP内) */
    .tz-newstopics { padding: 48px 16px; }
    .tz-newstopics__title { margin-bottom: 24px; }
    .tz-newstopics__title h2 { font-size: 22px; }
    .tz-newstopics__row { padding: 18px 4px; }
    .tz-newstopics__row dt { gap: 8px; flex-direction: column; align-items: flex-start; }
    .tz-newstopics__row dt time { font-size: 12px; }
    .tz-newstopics__heading { font-size: 15px; line-height: 1.55; }
    .tz-newstopics__row dd { font-size: 12px; margin-top: 6px; }

    /* SHOP DETAIL */
    .tz-shop-wrap { padding: 28px 16px 56px; }
    /* Hero 画像→「SHOP / MENU」ラベルまでの上下余白をトップページ (Hero→content 24px) と
       揃える。SP のみ Hero margin-bottom 0 + Hero 直後の wrap padding-top 24 + title-block
       padding-top 0 で合計 24px に詰める。PC は title-block padding-top 88px のまま余裕を残す。 */
    .tz-shop__hero { margin-bottom: 0; }
    .tz-shop__hero + .tz-shop-wrap { padding-top: 24px; }
    .tz-shop__hero + .tz-shop-wrap > .title-block { padding-top: 0; }
    .tz-shop__info { margin-bottom: 28px; }
    .tz-shop__info h4 { font-size: 15px; margin: 16px 0 4px; }
    .tz-shop__info p { font-size: 14px; }
    .tz-shop__info p.tel { font-size: 19px; }
    .tz-shop__menu-section { margin: 40px auto 28px; }
    .tz-shop__back { margin-top: 40px; padding-top: 24px; }
    .tz-shop__back a { padding: 10px 28px; font-size: 13px; }

    /* Generic title (shop / article) */
    .gen-title { font-size: 22px; }

    /* NEWS LIST PAGE */
    .tz-news-wrap { padding: 28px 16px 56px; }
    .tz-news-toggle { justify-content: stretch; margin-bottom: 18px; }
    .tz-news-toggle__btn { flex: 1; padding: 10px 0; text-align: center; font-size: 11px; }
    .tz-news-titlebar { padding: 22px 16px; margin-bottom: 24px; }
    .tz-news-titlebar h2 { font-size: 22px; }
    .tz-news-card__link { padding: 18px 4px; gap: 12px; }
    .tz-news-card__title { font-size: 16px; padding-left: 8px; border-left-width: 3px; }
    .tz-news-card__excerpt { font-size: 13px; line-height: 1.7; }
    .tz-news-card__date { font-size: 12px; }
    .tz-news-grid { grid-template-columns: 1fr; gap: 22px; }
    .tz-news-grid__title { font-size: 15px; }
    .tz-news-grid__excerpt { font-size: 12px; }

    /* ARTICLE PAGE */
    .tz-article-wrap { padding: 28px 16px 56px; }
    .tz-article { padding: 0; }
    .tz-article__lead { font-size: 15px; line-height: 1.85; margin-bottom: 22px; }
    .tz-article__hero { margin: 24px 0; }
    .tz-article__body { font-size: 14px; line-height: 1.95; }
    .tz-article__inline-figure { margin: 24px 0; }
    .tz-article__nav { margin-top: 36px; padding-top: 20px; }
    .tz-article__nav a { padding: 10px 28px; font-size: 13px; }

    /* BREADCRUMB */
    .tz-breadcrumb { font-size: 12px; margin-bottom: 20px; word-break: break-all; }

    /* PREVIEW NAV (開発用ページ切り替え) */
    .preview-nav { padding: 8px 12px !important; gap: 6px !important; flex-wrap: wrap; }
    .preview-nav button { font-size: 11px !important; padding: 6px 10px !important; }
  }

  /* ===== CAROUSEL (Hero / ShopDetail 共用 / クロスフェード + タッチスワイプ) ===== */
  .tz-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0a0907;
    touch-action: pan-y;
  }
  /* Hero 用：旧ベタ画像 slide01.jpg (1200x624) と同比率の固定枠。max-height 800px は旧 #slider 踏襲 */
  .tz-hero-slider {
    aspect-ratio: 1200 / 624;
    max-height: 800px;
    background-color: #696969;
  }
  @media (max-width: 600px) {
    .tz-hero-slider {
      aspect-ratio: auto;
      height: 100vh;
      max-height: none;
    }
  }
  .tz-carousel__track {
    position: absolute;
    inset: 0;
  }
  .tz-carousel__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    /* GPU 合成レイヤ化（ブラウザが各スライドを別レイヤで描画 → 透明度変化が滑らか） */
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    /* シンプルなクロスフェード。ease で中央通過を速めて半透明重なり時間を短縮 */
    transition: opacity 2.5s ease;
  }
  .tz-carousel__slide.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .tz-carousel__dots {
    position: absolute;
    /* Hero の下に被さる NEWS バナー (margin-top: -54px / height ~52px) を避けるため上に逃がす */
    bottom: 80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    /* 沢村 (b-sawamura.com/shop/28/) 実測: ドット 10px + gap 16px = 中心間隔 26px に揃える */
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 2;
  }
  .tz-carousel__dot {
    /* 沢村実測: 10x10px の円、白塗り + 薄グレー枠 */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgb(228, 227, 227);
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease;
    box-shadow: none;
  }
  .tz-carousel__dot:hover { background: rgb(228, 227, 227); }
  /* 沢村実測: アクティブは沢村ブランドカラー #052e25 で塗り潰し（scale なし、目立たないように） */
  .tz-carousel__dot.is-active { background: #052e25; }

  @media (prefers-reduced-motion: reduce) {
    .tz-carousel__slide { transition: none; }
  }
  @media (max-width: 600px) {
    .tz-carousel__dots { bottom: 70px; gap: 16px; }
    .tz-carousel__dot { width: 10px; height: 10px; border-width: 1px; }
  }
  /* ShopDetail のカルーセルは下に NEWS バーが無いので、ドット位置を画像内下部に戻す */
  .tz-shop__hero .tz-carousel__dots { bottom: 14px; }
