/* ============================================================
   いかやきやまげん京橋本店 — custom.css
   Bootstrap 5.3 + カスタムスタイル
   ============================================================ */

/* ---- CSS変数（ブランドカラー・タイポグラフィ） ---- */
:root {
  --color-primary: #e50012;
  --gold:          #c8962a;
  --gold2:         #e0aa3a;
  --amber:         #c8962a;
  --black:         #000000;
  --black2:        #0a0a0a;
  --black3:        #111111;
  --black4:        #1a1a1a;
  --black5:        #222222;
  --text:          #eeeeee;
  --text2:         #cccccc;
  --text3:         #999999;
  --paper:         #eeeeee;
  --bd:            rgba(229, 0, 18, .2);
  --bd2:           rgba(229, 0, 18, .4);

  --font-serif: 'Noto Serif JP', serif;
  --font-sans:  'Noto Sans JP', sans-serif;

  --section-padding: 88px 0;
  --border-radius:   0px;
}

/* ---- ベーススタイル ---- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text);
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---- 共通セクション ---- */
section {
  padding: var(--section-padding);
}

.eyebrow {
  font-size: 1.2rem;
  letter-spacing: .38em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 8px;
  font-weight: 300;
}

.sec-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--paper);
  line-height: 1.4;
}

.sec-rule {
  width: 28px;
  height: 1.5px;
  background: var(--color-primary);
  border: none;
  margin: 18px 0 44px;
}

/* ---- ボタン ---- */
.btn-gold {
  display: inline-block;
  background: var(--color-primary);
  color: var(--black);
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .14em;
  padding: 14px 38px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.btn-gold:hover {
  background: var(--gold2);
  color: var(--black);
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(200, 150, 42, .45);
  color: var(--text);
  font-size: .83rem;
  letter-spacing: .1em;
  padding: 13px 32px;
  transition: border-color .2s, color .2s;
}

.btn-ghost:hover {
  background-color: rgba(200, 150, 42, .45);
  color: var(--text);
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: #080706;
  border-bottom: 1px solid var(--bd);
  color: var(--text3);
  font-size: .72rem;
  padding: 6px 0;
  letter-spacing: .05em;
}

.topbar a {
  color: var(--color-primary);
}

/* ============================================================
   ナビゲーション
   ============================================================ */
.site-nav {
  background: rgba(13, 11, 8, .97);
  border-bottom: 1px solid var(--bd);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* カスタムロゴ（SVG対応） */
a.custom-logo-link {
  display: flex;
  align-items: center;
  padding: 10px 28px 10px 0;
  border-right: 1px solid var(--bd);
  margin-right: 4px;
}

a.custom-logo-link img.custom-logo {
  width: auto;
  height: 44px;
  max-width: 220px;
  display: block;
}

@media (max-width: 767.98px) {
  a.custom-logo-link img.custom-logo {
    height: 36px;
    max-width: 160px;
  }
}

/* ブランドロゴ（テキストフォールバック） */
.nav-brand {
  padding: 14px 28px 14px 0;
  border-right: 1px solid var(--bd);
  margin-right: 4px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-jp {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: .07em;
  line-height: 1.3;
}

.brand-en {
  display: block;
  font-size: 1.04rem;
  color: var(--text3);
  letter-spacing: .18em;
  font-weight: 300;
  margin-top: 3px;
}

/* ナビリンク */
.nav-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}

.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: .76rem;
  color: var(--text2);
  letter-spacing: .07em;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links .current-menu-item > a {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* CTAボタン（ナビ右端） */
.nav-cta a {
  background: var(--color-primary);
  color: var(--black) !important;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 0 24px;
  border-bottom: none !important;
  border-left: 1px solid var(--bd);
  transition: background .2s;
}

.nav-cta a:hover {
  background: var(--gold2);
}

/* ハンバーガーメニュー（SP） */
.nav-toggler {
  display: none;
  background: none;
  border: 1px solid var(--bd2);
  padding: 8px 12px;
  margin-left: auto;
  cursor: pointer;
}

.nav-toggler span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  margin: 4px 0;
  transition: transform .3s, opacity .3s;
}

/* SP用ドロワー */
.nav-drawer {
  display: none;
  background: var(--black2);
  border-top: 1px solid var(--bd);
}

.nav-drawer .nav-links {
  flex-direction: column;
  margin: 0;
  padding: 8px 0;
}

.nav-drawer .nav-links a {
  padding: 14px 24px;
  border-bottom: none;
  border-top: 1px solid var(--bd);
}

@media (max-width: 767.98px) {
  .nav-links {
    display: none;
  }
  .nav-toggler {
    display: block;
  }
  .nav-drawer.is-open {
    display: block;
  }
}

/* ============================================================
   ヒーローセクション
   ============================================================ */


.hero-img {
  position: absolute;
  inset: 0;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 7, 5, .94) 0%,
    rgba(8, 7, 5, .72) 48%,
    rgba(8, 7, 5, .25) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 1.2rem;
  letter-spacing: .42em;
  color: var(--color-primary);
  font-weight: 300;
  margin-bottom: 22px;
  display: block;
}

.hero-copy {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 24px;
}

.hero-copy .accent {
  color: var(--color-primary);
}

.hero-sub {
  font-size: .88rem;
  color: var(--text2);
  line-height: 2.05;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.htag {
  border: 1px solid var(--bd2);
  color: var(--color-primary);
  font-size: .65rem;
  padding: 5px 14px;
  letter-spacing: .1em;
}

/* SmartSlider仮プレースホルダー */
.hero-placeholder {
  position: relative;
  min-height: 600px;
  padding: 0;
}

.hero-dummy {
  min-height: 600px;
  background: linear-gradient(135deg, var(--black) 0%, var(--black3) 50%, var(--black4) 100%);
  border-bottom: 1px solid var(--bd);
}

.hero-dummy-inner {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
  max-width: 720px;
}

/* ============================================================
   ティッカー
   ============================================================ */
.ticker {
  background: var(--black4);
  border-bottom: 1px solid var(--bd);
  padding: 9px 0;
  font-size: .78rem;
}

.t-badge {
  background: var(--color-primary);
  color: var(--black);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 3px 12px;
  margin-right: 14px;
  white-space: nowrap;
}

.ticker-text {
  color: var(--text2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   ABOUTセクション
   ============================================================ */
/* パララックス背景 */
.about-parallax {
  position: relative;
  background-image: url('/wp-content/uploads/2026/04/about-.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* iOSはfixedが効かないためscrollにフォールバック */
@media (max-width: 768px) {
  .about-parallax {
    background-attachment: scroll;
  }
}

/* 暗さオーバーレイ */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.about-content {
  padding-top: 88px;
  padding-bottom: 88px;
}

/* eyebrowのサブクラス（about専用） */
.section-eyebrow {
  font-size: 1.2rem;
  letter-spacing: .38em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 8px;
  font-weight: 300;
}

.about-lead {
  font-family: var(--font-serif);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2.1;
    font-weight: 300;
}

/* ============================================================
   こだわりセクション
   ============================================================ */
.craft-sec {
  background: var(--black3);
  padding: 0;
}

.craft-sec-header {
  padding: 88px 0 0;
}

/* 写真＋テキスト交互レイアウト（①〜④） */
.craft-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--bd);
  min-height: 400px;
}

.craft-item:nth-child(even) .craft-photo {
  order: 2;
}

.craft-item:nth-child(even) .craft-text {
  order: 1;
}

.craft-photo {
  position: relative;
  overflow: hidden;
}

.craft-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.88) contrast(1.06);
}

.craft-photo:hover img {
  transform: scale(1.03);
}

.craft-num-overlay {
     position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    letter-spacing: .1em;
    color: #ecb100;
    background: rgba(13, 11, 8, .7);
    padding: 4px 9px;
    border-radius: 50%;
}

.craft-text {
  background: var(--black4);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.craft-num-label {
  font-family: 'Courier New', monospace;
  font-size: 1.16rem;
  letter-spacing: .35em;
  color: var(--color-primary);
  margin-bottom: 14px;
  display: block;
}

.craft-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 18px;
  line-height: 1.4;
}

.craft-body {
  font-size: .95rem;
    color: var(--text2);
    line-height: 2;
    font-weight: 300;
}

.craft-body strong {
  color: var(--paper);
  font-weight: 700;
}

/* 写真なし（⑤⑥）— 2カラムカード */
.craft-no-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bd);
  border-top: 1px solid var(--bd);
}

.craft-card {
  background: var(--black4);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.craft-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity .3s;
}

.craft-card:hover::before {
  opacity: 1;
}

/* SP対応 */
@media (max-width: 767.98px) {
  .craft-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .craft-item:nth-child(even) .craft-photo,
  .craft-item:nth-child(even) .craft-text {
    order: unset;
  }
  .craft-photo {
    aspect-ratio: 4 / 3;
  }
  .craft-text {
    padding: 36px 24px;
  }
  .craft-no-photo {
    grid-template-columns: 1fr;
  }
  .craft-card {
    padding: 32px 24px;
  }
}

/* ============================================================
   メニューセクション
   ============================================================ */
.menu-sec {
  background: var(--black);
}

.menu-note {
  font-size: .78rem;
  color: var(--text3);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.9;
}

/* 名物バナー */
.meibutsu {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border: 1px solid var(--bd2);
  margin-bottom: 56px;
  overflow: hidden;
  min-height: 280px;
}

.meibutsu-photo {
  position: relative;
}

.meibutsu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meibutsu-badge {
  position: absolute;
    top: 5px;
    left: 5px;
    background: var(--amber);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .16em;
    padding: 5px 18px;
    z-index: 2;
    border-radius: 30px;
}

.meibutsu-body {
  background: var(--black4);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meibutsu-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 12px;
}

.meibutsu-desc {
  font-size: .85rem;
  color: var(--text2);
  line-height: 2;
  font-weight: 300;
}

/* メニューグリッド */
.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  margin-top: 8px;
}

.menu-cat-label {
  font-size: .8rem;
  letter-spacing: .3em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 5px;
}

.menu-cat-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--paper);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bd);
  margin-bottom: 4px;
}

.mi {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 150, 42, .06);
}

.mi:last-child {
  border-bottom: none;
}

.mi-name {
  font-size: .88rem;
  color: var(--text);
  flex: 1;
  line-height: 1.5;
}

.mi-note {
  font-size: .7rem;
  color: var(--text3);
  display: block;
  margin-top: 2px;
  font-weight: 300;
}

.mi-price {
  font-size: .92rem;
  color: var(--color-primary);
  font-weight: 700;
  font-family: 'Courier New', monospace;
  white-space: nowrap;
}

/* メニュー写真 */
.menu-photo-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.menu-photo-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  filter: brightness(.92) contrast(1.05);
}

.menu-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(8, 7, 5, .85));
  padding: 20px 20px 14px;
  font-size: .72rem;
  color: var(--text2);
  letter-spacing: .06em;
}

@media (max-width: 767.98px) {
  .meibutsu {
    grid-template-columns: 1fr;
  }
  .meibutsu-photo {
    aspect-ratio: 16 / 9;
  }
  .meibutsu-body {
    padding: 28px 24px;
  }
  .menu-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   催事スケジュールセクション
   ============================================================ */
.schedule-sec {
  background: #eeeeee;
}

.sched-card {
  background: #ffffff;
  border: 1px solid rgba(229, 0, 18, .3);
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.sched-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #e50012;
}

.sched-month {
  font-size: 1.44rem;
  color: #e50012;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.sched-venue {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #000000;
  margin-bottom: 6px;
}

.sched-date {
  font-size: .8rem;
  color: #333333;
  font-weight: 300;
}

.sched-address {
  font-size: .75rem;
  color: #333333;
  margin-top: 6px;
}

/* ============================================================
   店舗情報・アクセスセクション
   ============================================================ */
.access-sec {
  background: var(--black3);
}

.shop-info-table {
  width: 100%;
  border-collapse: collapse;
}

.shop-info-table th,
.shop-info-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--bd);
  font-size: .88rem;
  line-height: 1.8;
  vertical-align: top;
}

.shop-info-table th {
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: .05em;
  width: 120px;
  padding-right: 24px;
  white-space: nowrap;
}

.shop-info-table td {
  color: var(--text);
}

.map-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(1) contrast(.8);
}

/* ============================================================
   CTAセクション
   ============================================================ */
.cta-sec {
  background: var(--black);
  border-top: 1px solid var(--bd);
  text-align: center;
}

.cta-lead {
  font-size: .88rem;
  color: var(--text2);
  line-height: 2;
  margin-bottom: 32px;
}

/* ============================================================
   フッター
   ============================================================ */
.site-footer {
  background: #080706;
  border-top: 1px solid var(--bd);
  padding: 48px 0 24px;
}

.footer-brand-jp {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: .07em;
}

.footer-brand-en {
  font-size: .52rem;
  color: var(--text3);
  letter-spacing: .18em;
  font-weight: 300;
  display: block;
  margin-top: 4px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}

.footer-nav a {
  font-size: .75rem;
  color: var(--text3);
  padding: 4px 16px 4px 0;
  letter-spacing: .05em;
  transition: color .2s;
}

.footer-nav a:hover {
  color: var(--color-primary);
}

.footer-info {
  font-size: .78rem;
  color: var(--text3);
  line-height: 1.9;
}

.footer-divider {
  border-color: var(--bd);
  margin: 32px 0 20px;
}

.footer-copyright {
  font-size: .68rem;
  color: var(--text3);
  letter-spacing: .05em;
  text-align: center;
}

/* ============================================================
   固定ページ・アーカイブページ 共通
   ============================================================ */
.page-header-sec {
  background: var(--black2);
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--bd);
}

.page-header-sec .page-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: .05em;
}

/* メニューカード（アーカイブ） */
.menu-card {
  background: var(--black4);
  border: 1px solid var(--bd);
  overflow: hidden;
  transition: border-color .2s;
}

.menu-card:hover {
  border-color: var(--bd2);
}

.menu-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.9) contrast(1.05);
  transition: transform .5s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.04);
}

.menu-card-body {
  padding: 20px 22px;
}

.menu-card-cat {
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 6px;
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--paper);
  margin-bottom: 8px;
  line-height: 1.5;
}

.menu-card-price {
  font-size: .88rem;
  color: var(--color-primary);
  font-weight: 700;
  font-family: 'Courier New', monospace;
}

/* ============================================================
   ユーティリティ
   ============================================================ */
.text-gold  { color: var(--color-primary); }
.text-paper { color: var(--paper); }
.text-muted-custom { color: var(--text3); }
.bg-black   { background-color: var(--black); }
.bg-black2  { background-color: var(--black2); }
.bg-black4  { background-color: var(--black4); }

/* ---- スペーシングユーティリティ ---- */
.mt-section { margin-top: 88px; }
.mb-section { margin-bottom: 88px; }

/* ============================================================
   修正1: 「コンテンツへスキップ」・スクリーンリーダー非表示
   ============================================================ */
.skip-link,
.screen-reader-text {
  display: none !important;
}

/* ============================================================
   修正2: ナビゲーションの背景を透過
   ============================================================ */
.navbar {
  background-color: transparent !important;
  background: transparent !important;
}

/* スクロール時も透過を維持 */
.navbar.scrolled,
.navbar.sticky-top,
.fixed-top {
  background-color: transparent !important;
}

/* ============================================================
   修正4: ロゴを大きく表示
   ============================================================ */
.navbar-brand img,
.site-logo img,
header .logo img {
  height: 120px !important;
  width: auto !important;
}

/* custom-logo（WordPressカスタムロゴ）にも適用 */
.navbar-brand img.custom-logo {
  height: 120px !important;
  max-width: none !important;
  width: auto !important;
}

/* ============================================================
   修正5: ロゴ横の縦仕切り線を非表示
   ============================================================ */
.navbar-brand::after,
.navbar-brand::before,
.nav-divider,
.navbar .divider,
a.custom-logo-link {
  border-right: none !important;
  border-left: none !important;
  border: none !important;
}

.navbar .brand-wrap {
  border-right: none !important;
  border-left: none !important;
}

/* ============================================================
   修正: 固定ヘッダー（トップバー + ナビ一体でfixed）
   ============================================================ */
#fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

/* ナビバー自体のpositionをresetして#fixed-headerに任せる */
#wrapper-navbar {
  position: relative;
}

/* ページ本文がナビに隠れないようpadding確保
   topbar(~38px) + navbar(~140px) = 約178px */
body {
  padding-top: 178px;
}

@media (max-width: 767.98px) {
  /* スマホはtopbar非表示のためnavbar分のみ */
  body {
    padding-top: 130px;
  }
}

/* ============================================================
   修正: ハンバーガーボタン重複対策（念のため残す）
   ============================================================ */
.navbar-toggler + .navbar-toggler {
  display: none !important;
}

/* custom.jsのscrolled classでナビ背景を暗くする場合の対応 */
#wrapper-navbar .navbar.scrolled {
  background-color: rgba(8, 7, 6, 0.97) !important;
}

/* ============================================================
   修正2: ロゴを絶対配置で左上に固定・ナビ高さ維持
   ============================================================ */

/* ロゴを絶対配置で左上に固定 */
.navbar-brand,
.custom-logo-link {
  position: absolute !important;
  top: 0 !important;
  left: 24px !important;
  z-index: 10;
}

/* ナビバー自体の高さを固定 */
.navbar,
#wrapper-navbar .navbar {
  min-height: 60px !important;
  align-items: center !important;
}

/* ナビメニューを右寄せで垂直中央に */
.navbar-nav,
#navbarNavDropdown {
  align-items: center !important;
}

/* ナビバー内のcontainerをflexで右寄せ */
.navbar .container-fluid {
  justify-content: flex-end !important;
}

/* body上部の余白をナビ高さに合わせて調整 */
body {
  padding-top: 0 !important; /* topbar約40px + navbar約60px */
}

/* ============================================================
   修正3: モバイルのハンバーガーボタンを上部に調整
   ============================================================ */
@media (max-width: 991px) {
  /* モバイル時のナビバー高さ */
  .navbar {
    min-height: 60px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* ハンバーガーボタンを右上に固定 */
  .navbar-toggler {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 20;
  }

  /* モバイル時のロゴサイズを調整 */
  .navbar-brand img,
  .custom-logo-link img {
    height: 80px !important;
  }

  /* body余白をモバイル用に調整 */
  body {
    padding-top: 0 !important;
  }
}

/* ============================================================
   催事スケジュール sched-grid レスポンシブ
   ============================================================ */
@media (max-width: 768px) {
  .section-saiji .sched-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .section-saiji .sched-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   修正1: 催事出店スケジュールセクション ダークテーマ
   ============================================================ */
.section-saiji,
#schedule {
  background-color: #1a1a1a !important;
}

.section-saiji .eyebrow,
#schedule .eyebrow {
  color: var(--color-primary) !important;
}

.section-saiji .sec-title,
#schedule .sec-title {
  color: #ffffff !important;
}

.section-saiji p,
#schedule p {
  color: #cccccc !important;
}

.section-saiji .sched-card,
#schedule .sched-card {
  background: #2a2a2a !important;
  border-color: rgba(229,0,18,.3) !important;
}

.section-saiji .sched-card::before,
#schedule .sched-card::before {
  background: var(--color-primary) !important;
}

.section-saiji .sched-month,
#schedule .sched-month {
  color: var(--color-primary) !important;
}

.section-saiji .sched-venue,
#schedule .sched-venue {
  color: #ffffff !important;
}

.section-saiji .sched-date,
#schedule .sched-date {
  color: #cccccc !important;
}

.section-saiji a,
#schedule a {
  color: var(--text);
}

/* ============================================================
   修正2: アクセント要素を gold (#c8962a) に統一
   eyebrow / craft-num-label / menu-cat-label は赤 (#e50012) 維持
   ============================================================ */

/* 赤を維持するラベル系 */
.eyebrow,
.craft-num-label,
.menu-cat-label,
.section-eyebrow {
  color: var(--color-primary) !important;
}

/* gold に戻すアクセント要素 */
.sec-rule {
  background: #c8962a !important;
}

.btn-gold {
  background-color: #c8962a !important;
  color: #000000 !important;
}

.btn-gold:hover {
  background-color: #e0aa3a !important;
  color: #000000 !important;
}

.mi-price {
  color: #c8962a !important;
}

.meibutsu-badge {
  color: #ffffff !important;
font-family: 'Noto Serif JP';
}

.sched-month {
  color: #c8962a !important;
}

.access-h,
.a-table td:first-child {
  color: #c8962a !important;
}

.ft-brand,
footer h6 {
  color: #c8962a !important;
}

.htag {
  border-color: rgba(200,150,42,.4) !important;
  color: #c8962a !important;
}

.hero-copy .accent,
.t-badge,
.mob-shop {
  color: #c8962a !important;
}

.topbar a {
  color: #c8962a !important;
}

.nav-cta a {
  color: #c8962a !important;
}

.brand-en {
  color: #c8962a !important;
}

/* ============================================================
   修正4: 3種盛カード モバイル対応
   ============================================================ */
@media (max-width: 600px) {
  .sanshu-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
}

/* ============================================================
   修正5: CTAセクション iOSパララックスフォールバック
   ============================================================ */
@media (max-width: 768px) {
  .cta-sec {
    background-attachment: scroll !important;
  }
}

/* ============================================================
   アクセスセクション 店舗写真 モバイル対応
   ============================================================ */
@media (max-width: 900px) {
  .access-sec .col-lg-6:last-child img {
    max-width: 100% !important;
  }
}

/* ============================================================
   アクセスセクション Google Map グレースケール
   ============================================================ */
.access-sec iframe {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.access-sec iframe:hover {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

/* ============================================================
   会社概要ページ
   ============================================================ */

/* 会社概要テーブル */
.company-table tr {
  border-bottom: 1px solid rgba(200,150,42,.1);
}

.company-table .c-label {
  font-size: 0.72rem;
  letter-spacing: .14em;
  color: #c8962a;
  width: 120px;
  padding: 18px 12px 18px 0;
  vertical-align: top;
  white-space: nowrap;
}

.company-table .c-value {
  font-size: 0.88rem;
  color: #cccccc;
  padding: 18px 0;
  line-height: 1.9;
  font-weight: 300;
}

/* 取引先グリッド */
.torihiki-pref {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.pref-name {
  font-size: 0.7rem;
  color: #c8962a;
  letter-spacing: .1em;
  margin-bottom: 4px;
}

.pref-shops {
  font-size: 0.8rem;
  color: #999999;
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 600px) {
  .company-table .c-label {
    width: 80px;
    font-size: 0.65rem;
  }
  .torihiki-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   プライバシーポリシーページ
   ============================================================ */
.privacy-content {
  color: #cccccc;
}

.privacy-block {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(200,150,42,.1);
}

.privacy-num {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  color: #c8962a;
  font-weight: 400;
  min-width: 32px;
  margin: 0;
  padding-top: 2px;
}

.privacy-body {
  flex: 1;
}

.privacy-body p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #cccccc;
  margin-bottom: 10px;
  font-weight: 300;
}

.privacy-body ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.privacy-body ul li {
  font-size: 0.85rem;
  color: #aaaaaa;
  line-height: 1.9;
  padding-left: 12px;
  font-weight: 300;
}

@media (max-width: 600px) {
  .privacy-block {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================================
   催事アーカイブ一覧
   ============================================================ */
.saiji-archive-list {
  width: 100%;
}

.saiji-archive-item {
  border-bottom: 1px solid #5c5c5c;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  list-style: none;
}

.saiji-archive-item .entry-title {
  font-size: 1.1rem !important;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 0;
}

.saiji-archive-item .entry-title a {
  color: #e8e0d0;
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .05em;
}

.saiji-archive-item .entry-title a:hover {
  color: #c8962a;
}

.saiji-archive-item .entry-footer {
  display: none;
}

/* ページネーション */
.saiji-archive-list + div .nav-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.saiji-archive-list + div .page-numbers {
  color: #c8962a;
  font-size: 0.85rem;
  padding: 8px 16px;
  border: 1px solid rgba(200,150,42,.3);
  transition: background .2s;
}

.saiji-archive-list + div .page-numbers:hover,
.saiji-archive-list + div .page-numbers.current {
  background: rgba(200,150,42,.15);
  color: #e0aa3a;
}

/* 編集リンク非表示 */
.entry-footer,
.edit-link,
.post-edit-link {
  display: none !important;
}

.footlogo {
    width: 350px;
    display: block;
    margin: 3rem auto 4rem;
}

/* ============================================================
   記事個別ページ（single.php）
   ============================================================ */
.single-content {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 2;
  font-weight: 300;
}

.single-content p {
  margin-bottom: 1.6em;
  color: #cccccc;
}

.single-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f2ede4;
  margin: 2em 0 1em;
  padding-left: 16px;
  border-left: 3px solid #c8962a;
}

.single-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f2ede4;
  margin: 1.8em 0 0.8em;
}

.single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
}

/* アイキャッチ画像を記事本文内で非表示 */
.single-content .wp-post-image,
.post-thumbnail,
.entry-thumbnail {
  display: none !important;
}

.single-content a {
  color: #c8962a;
  text-decoration: underline;
}

.single-content a:hover {
  color: #e0aa3a;
}

.single-content ul,
.single-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.6em;
}

.single-content li {
  margin-bottom: 0.5em;
  color: #cccccc;
}

@media (max-width: 600px) {
  .single-content {
    font-size: 0.9rem;
  }
}

/* ============================================================
   TOPICS セクション
   ============================================================ */
.topics-sec {
  background: var(--black3);
  padding: var(--section-padding);
}

.topics-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.topics-card {
  background: #1a1a1a;
  overflow: hidden;
  transition: transform .25s ease;
}

.topics-card:hover {
  transform: translateY(-4px);
}

.topics-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.topics-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  background: #2a2a2a;
  position: relative;
}

.topics-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  transition: transform 0.4s;
}

.topics-card:hover .topics-thumb img {
  transform: scale(1.05);
}

.topics-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topics-body {
  padding: 16px 20px 20px;
}

.topics-date {
  display: block;
  font-size: 0.7rem;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: 'Courier New', monospace;
}

.topics-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.topics-empty {
  color: var(--text3);
  text-align: center;
  margin-top: 48px;
}

.topics-more {
  text-align: center;
  margin-top: 48px;
}

.btn-outline-gold {
  display: inline-block;
  border: 1px solid rgba(200, 150, 42, .45);
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: .1em;
  padding: 12px 40px;
  transition: background 0.3s, color 0.3s;
}

.btn-outline-gold:hover {
  background: rgba(200, 150, 42, .12);
  color: var(--gold2);
}

/* TOPICS アーカイブページ */
.topics-archive-sec {
  background: var(--black3);
  padding: 64px 0;
}

.topics-archive-sec .topics-grid {
  margin-top: 0;
}

/* レスポンシブ */
@media (max-width: 991px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .topics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* トピックス モバイル2カラム */
@media (max-width: 768px) {
  .topics-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 5px !important;
  }
  .topics-title {
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .topics-body {
    padding: 5px 10px 10px !important;
  }
}

/* 極小モバイルも2カラム維持 */
@media (max-width: 360px) {
  .topics-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* 固定CTA（右下） モバイル対応 */
@media (max-width: 768px) {
  #fixed-cta {
    bottom: 16px;
    right: 16px;
  }
  #fixed-cta > div {
    font-size: 0.72rem !important;
    padding: 10px 16px !important;
  }
}

/* お問い合わせフォーム CF7 */
.contact-form-wrap .wpcf7 {
  color: var(--text);
}
.contact-form-wrap .wpcf7-form p {
  margin-bottom: 20px;
}
.contact-form-wrap label {
  display: block;
  font-size: 0.8rem;
  color: #c8962a;
  letter-spacing: .1em;
  margin-bottom: 8px;
  font-weight: 400;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap textarea,
.contact-form-wrap select {
  width: 100% !important;
  background: #1a1a1a !important;
  border: 1px solid rgba(200,150,42,.25) !important;
  color: #e8e0d0 !important;
  padding: 12px 16px !important;
  font-size: 0.88rem !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  border-radius: 0 !important;
  transition: border-color .2s !important;
  box-sizing: border-box !important;
}
.contact-form-wrap input[type="text"]:focus,
.contact-form-wrap input[type="email"]:focus,
.contact-form-wrap input[type="tel"]:focus,
.contact-form-wrap textarea:focus {
  outline: none !important;
  border-color: rgba(200,150,42,.6) !important;
  background: #222 !important;
}
.contact-form-wrap textarea {
  min-height: 160px !important;
  resize: vertical !important;
}
.contact-form-wrap input[type="submit"],
.contact-form-wrap .wpcf7-submit {
  background: #e50012 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 14px 48px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  transition: background .2s !important;
  width: 100% !important;
  font-family: 'Noto Sans JP', sans-serif !important;
}
.contact-form-wrap .wpcf7-submit:hover {
  background: #c8000f !important;
}
.contact-form-wrap .wpcf7-not-valid-tip {
  font-size: 0.75rem !important;
  color: #e50012 !important;
  margin-top: 4px !important;
  display: block !important;
}
.contact-form-wrap .wpcf7-response-output {
  border: 1px solid rgba(200,150,42,.4) !important;
  color: #c8962a !important;
  padding: 12px 16px !important;
  font-size: 0.82rem !important;
  margin-top: 20px !important;
  background: rgba(200,150,42,.06) !important;
}
::placeholder {
  color: #4a4a4a !important;
}

/* メニュー モバイル1列 */
@media (max-width: 768px) {
  .souzaku-grid { grid-template-columns: 1fr !important; }
  .gentei-grid  { grid-template-columns: 1fr !important; }
  .sanshu-grid  { grid-template-columns: 1fr !important; max-width: 100% !important; }
}