.site-header {
  width: 100%;
  max-width: 750px;
  height: 10cqw;
  background: #2b2220;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

.site-header.is-scrolled {
  background-color: rgba(35, 24, 21, 0.9);
}

/* ヘッダーのインナー（要素を整列させる芯） */
.header-inner {
  max-width: 750px;
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ロゴテキスト（OTAKARAYA） */
.header-logo {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 4.5cqw;
  letter-spacing: 0.1em;
  line-height: 44px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  font-family: "Futura Demi", "Futura", "Trebuchet MS", sans-serif;
  font-weight: 600;
}

/* 右側のメニューボタン（Line 2 の枠線をベースに構築） */
.header-menu-toggle {
  position: absolute;
  right: 22px;
  width: 7cqw;
  height: 4cqw;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.header-menu-toggle .bar {
  width: 5cqw;
  height: 0.5cqw;
  background: #ffffff;
}

/* ==========================================================================
   ドロワーメニュー（ハンバーガー展開時）のスタイル
   ========================================================================== */

/* メニュー背景（オーバーレイ） */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  height: 100vh;
  z-index: 9999;
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  transition:
    background 0.4s ease,
    visibility 0.4s ease;
}

.nav-drawer.is-open {
  visibility: visible;
  background: rgba(0, 0, 0, 0.6);
}

/* 右側サイドパネル */
.nav-drawer-inner {
  position: absolute;
  right: 0;
  top: 0;
  width: 75%;
  max-width: 490px;
  height: 100%;
  background: #f6f4eb;
  box-sizing: border-box;
  padding: 6cqw 5cqw;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.nav-drawer.is-open .nav-drawer-inner {
  transform: translateX(0);
}

/* ドロワー内のヘッダー部分（ロゴと閉じるボタン） */
.nav-logo-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  padding-bottom: 4cqw;
  border-bottom: 1px solid #5a4e45;
  margin-bottom: 8cqw;
}

/* ドロワー内のロゴテキスト */
.nav-logo-area .nav-logo {
  font-size: 5cqw;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2b2220;
  font-family: "Futura Demi", "Futura", "Trebuchet MS", sans-serif;
  font-weight: 600;
}

/* 閉じるボタン（Figma: ×） */
.nav-close {
  font-weight: 300;
  font-size: 8cqw;
  line-height: 1;
  color: #2b2220;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* メニューリスト */
.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6cqw;
  /* 項目間の余白を広げて見やすく */
  padding: 0 2cqw;
  margin: 0 0 10cqw 0;
}

.menu-list li a {
  text-decoration: none;
  color: #2b2220;
  font-size: 4.5cqw;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-style: italic;
}

/* バナーボタンエリア */
.nav-drawer-banner-wrap {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 3cqw;
  padding: 0 2cqw 5cqw;
}

.nav-drawer-banner-link {
  position: relative;
  display: block;
  width: 100%;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.nav-drawer-banner-link:hover {
  opacity: 0.6;
}

.nav-drawer-banner-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   ドロワーメニュー内のボタンセット調整
   ========================================================================== */
.nav-drawer-banner-wrap .appraisal_btnset {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3cqw;
}

.nav-drawer-banner-wrap {
  margin-top: auto;
  padding: 0 2cqw 5cqw;
}

/* ==========================================================================
   ドロワーメニュー内の特定のボタン（3番目と4番目）を非表示
   ========================================================================== */
.nav-drawer-banner-wrap .appraisal_btnset li:nth-child(3),
.nav-drawer-banner-wrap .appraisal_btnset li:nth-child(4) {
  display: none !important;
}

/* ==========================================================================
   追従バナー（固定フッター）専用のスタイル上書き修正
   ========================================================================== */
.custom-sticky-banner .sticky-banner-inner .nav-drawer-banner-link {
  display: block !important;
  width: 48% !important;
  max-width: 350px;
  position: relative !important;
  margin: 0;
}

.custom-sticky-banner .sticky-banner-inner .nav-drawer-banner-link img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-sticky-banner .sticky-banner-inner .nav-drawer-banner-link .tel-num {
  position: absolute !important;
  top: 15% !important;
  left: 23% !important;
  width: auto !important;
  text-align: left !important;
  font-size: 4.5cqw !important;
  font-weight: 400 !important;
  letter-spacing: 0.1cqw !important;
  color: #333333 !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.custom-sticky-banner .sticky-banner-inner .nav-drawer-banner-link .shop-time {
  position: absolute !important;
  top: 55% !important;
  left: 53.8% !important;
  width: auto !important;
  text-align: left !important;
  font-size: 2cqw !important;
  color: #333333 !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* ==========================================================================
   ブランドLP専用：フッターのロゴフォント上書き設定
   ========================================================================== */
.custom-footer .footer-logo-text {
  font-family: "Futura Demi", "Futura", "Trebuchet MS", sans-serif !important;
  font-size: 40px !important;
  font-style: normal !important;
  font-weight: 600 !important;
}

.notes_area {
  margin: 5.33cqw auto 0 !important;
  font-size: calc(15 / var(--base-width) * 100cqw);
  line-height: 1.3;
  font-family: "ryo-gothic-plusn", sans-serif;
}
