/* ===================================================================
   早田社寺 塔婆販売アプリ v0.1.0
   親プラグイン(tousba-hanbai)の和風カラーを踏襲した独立スタイル
   =================================================================== */

:root {
  --tbh-main: #af8c0f;          /* 金茶色 */
  --tbh-main-dark: #8e7008;
  --tbh-accent: #b03d10;        /* 赤茶色 */
  --tbh-text: #333;
  --tbh-muted: #777;
  --tbh-bg: #fbf7ec;            /* 全体背景 ほのかな金茶 */
  --tbh-card-bg: #ffffff;       /* 商品カードは純白で視認性UP */
  --tbh-border: #e8d9a8;
  --tbh-radius: 8px;
  --tbh-shadow: 0 2px 12px rgba(0,0,0,.06);
}

*,*::before,*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body.tbh {
  margin: 0;
  /* 親サイト hayata-shaji.jp と同系統の明朝体（Noto Serif JP / Shippori Mincho） */
  font-family: "Shippori Mincho", "Noto Serif JP", "游明朝", "Yu Mincho", "YuMincho",
               "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "MS P明朝", serif;
  font-feature-settings: "palt";
  color: var(--tbh-text);
  line-height: 1.85;
  background: var(--tbh-bg);
}

/* 数字・英字は等幅プロポーショナルで読みやすく */
.tbh-card__price,
.tbh-detail__price,
.tbh-summary__price,
.tbh-thanks__no {
  font-family: "Noto Serif JP", "Shippori Mincho", "游明朝", "Yu Mincho", serif;
}

a { color: var(--tbh-main); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { opacity: .85; }

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

/* ===================================================================
   トップページ上部バナー（ヘッダーより上）
   =================================================================== */
.tbh-topbanner {
  background:
    radial-gradient(ellipse at top, rgba(247,226,163,.5) 0%, transparent 70%),
    linear-gradient(180deg, #fdfaee 0%, #f5e9c2 100%);
  border-bottom: 1px solid var(--tbh-border);
  padding: 28px 24px 24px;
  text-align: center;
  position: relative;
}
.tbh-topbanner::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%; bottom: -1px;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--tbh-main), transparent);
}
.tbh-topbanner__inner {
  max-width: 900px;
  margin: 0 auto;
}
.tbh-topbanner__title {
  margin: 0 0 12px;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 1.9em;
  font-weight: 700;
  color: var(--tbh-main);
  letter-spacing: .18em;
  position: relative;
  display: inline-block;
  padding: 0 32px;
}
.tbh-topbanner__title::before,
.tbh-topbanner__title::after {
  content: "";
  width: 22px; height: 1px;
  background: var(--tbh-main);
  position: absolute; top: 50%;
}
.tbh-topbanner__title::before { left: 0; }
.tbh-topbanner__title::after  { right: 0; }
.tbh-topbanner__intro {
  margin: 0;
  font-size: .94em;
  line-height: 1.9;
  color: #5a4710;
  letter-spacing: .04em;
}
@media (max-width: 700px) {
  .tbh-topbanner { padding: 22px 16px 18px; }
  .tbh-topbanner__title { font-size: 1.4em; letter-spacing: .12em; padding: 0 22px; }
  .tbh-topbanner__intro { font-size: .85em; line-height: 1.8; }
  .tbh-topbanner__intro br { display: none; }
}

/* ===================================================================
   ご注文方法ガイド v3（和風ミニマル・縦3セクション）
   =================================================================== */

/* タブ（和風ミニマル） */
.tbh-og3-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 0;
  border-bottom: 1px solid var(--tbh-border);
  background: #fff;
}
@media (max-width: 700px) { .tbh-og3-tabs { grid-template-columns: 1fr; } }

.tbh-og3-tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 22px 18px 20px;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--tbh-border);
  border-bottom: 3px solid transparent;
  transition: background .25s, border-bottom-color .25s;
  position: relative;
  margin-bottom: -1px;
}
.tbh-og3-tab:last-child { border-right: 0; }
@media (max-width: 700px) {
  .tbh-og3-tab { border-right: 0; border-bottom: 1px solid var(--tbh-border); padding: 16px 18px; }
  .tbh-og3-tab.is-active { border-bottom-color: var(--tbh-main); }
}
.tbh-og3-tab:hover { background: #fdfaee; }
.tbh-og3-tab.is-active {
  background: #fdfaee;
  border-bottom-color: var(--tbh-main);
}
.tbh-og3-tab.is-active .tbh-og3-tab__no { color: var(--tbh-main); opacity: 1; }
.tbh-og3-tab.is-active .tbh-og3-tab__title { color: var(--tbh-text); }

.tbh-og3-tab__no {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3em;
  font-weight: 300;
  color: var(--tbh-muted);
  letter-spacing: .08em;
  line-height: 1;
  opacity: .7;
  transition: color .2s, opacity .2s;
}
.tbh-og3-tab__title {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 1.15em;
  font-weight: 700;
  color: #5a4710;
  letter-spacing: .06em;
  transition: color .2s;
}
.tbh-og3-tab__sub {
  font-size: .82em;
  color: var(--tbh-muted);
  letter-spacing: .04em;
}

/* 各セクション（タブパネル） */
.tbh-og3 {
  background: #fff;
  margin: 0;
  border: 1px solid var(--tbh-border);
  border-top: 0;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  display: none;
}
.tbh-og3.is-active { display: block; animation: tbhOgFade .25s ease; }
@keyframes tbhOgFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* セクションヘッダ */
.tbh-og3__head {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--tbh-border);
  background:
    linear-gradient(180deg, #fdfaee 0%, #fff 100%);
  position: relative;
}
.tbh-og3__head::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--tbh-main) 0%, transparent 100%);
}
.tbh-og3__no {
  font-family: "Noto Serif JP", serif;
  font-size: 3.4em;
  font-weight: 300;
  color: var(--tbh-main);
  letter-spacing: .04em;
  line-height: 1;
  opacity: .85;
  flex-shrink: 0;
}
.tbh-og3__title {
  margin: 0 0 6px;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 1.7em;
  font-weight: 700;
  color: var(--tbh-text);
  letter-spacing: .12em;
}
.tbh-og3__sub {
  margin: 0;
  font-size: .98em;
  color: #5a4710;
  line-height: 1.7;
}

/* セクション本体 */
.tbh-og3__body {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 40px;
  padding: 36px 40px 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .tbh-og3__head { padding: 26px 24px 22px; gap: 18px; }
  .tbh-og3__no { font-size: 2.6em; }
  .tbh-og3__title { font-size: 1.35em; letter-spacing: .06em; }
  .tbh-og3__body { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px 30px; }
}

/* 連絡先ボックス */
.tbh-og3-contact {
  text-align: center;
  padding: 32px 24px;
  background: #fdfaee;
  border: 1px solid var(--tbh-border);
  border-radius: 4px;
}
.tbh-og3-contact__label {
  margin: 0 0 12px;
  font-family: "Shippori Mincho", serif;
  font-size: .9em;
  letter-spacing: .35em;
  color: var(--tbh-main);
  text-indent: .35em;
}
.tbh-og3-contact__value {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--tbh-text);
  text-decoration: none;
  padding: 8px 0;
  margin: 0 0 12px;
  border-top: 1px solid var(--tbh-border);
  border-bottom: 1px solid var(--tbh-border);
  transition: color .2s;
}
a.tbh-og3-contact__value:hover { color: var(--tbh-accent); opacity: 1; }
.tbh-og3-contact__value--static { cursor: default; }
.tbh-og3-contact__value--mail { font-size: 1.3em; word-break: break-all; }
.tbh-og3-contact__note {
  margin: 0;
  font-size: .88em;
  color: var(--tbh-muted);
  letter-spacing: .04em;
}

/* 詳細サイド */
.tbh-og3-detail__heading {
  margin: 0 0 16px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--tbh-text);
  padding: 0 0 10px 14px;
  border-left: 3px solid var(--tbh-main);
  border-bottom: 1px solid var(--tbh-border);
  letter-spacing: .06em;
}
.tbh-og3-detail__lead {
  margin: 0 0 16px;
  font-size: .98em;
  color: #5a4710;
  line-height: 1.85;
}

/* お伝え項目（電話） */
.tbh-og3-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  counter-reset: og-list;
}
.tbh-og3-list li {
  counter-increment: og-list;
  position: relative;
  padding: 14px 16px 14px 52px;
  border-bottom: 1px dotted var(--tbh-border);
  font-size: 1.02em;
  line-height: 1.7;
}
.tbh-og3-list li:last-child { border-bottom: 0; }
.tbh-og3-list li::before {
  content: counter(og-list, decimal-leading-zero);
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  font-family: "Noto Serif JP", serif;
  font-size: 1.05em;
  font-weight: 600;
  color: var(--tbh-main);
  letter-spacing: .04em;
}

/* FAX注文票 */
.tbh-og3-fax {
  background: #fff;
  border: 1px solid #8e7008;
  padding: 24px 22px 18px;
  margin: 0 0 22px;
  position: relative;
  background-image:
    linear-gradient(to bottom, transparent 0, transparent calc(2.5em - 1px), rgba(175,140,15,.08) 2.5em);
  background-size: 100% 2.5em;
  background-position: 0 70px;
}
.tbh-og3-fax::before,
.tbh-og3-fax::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--tbh-main);
  opacity: .5;
}
.tbh-og3-fax::before { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.tbh-og3-fax::after  { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }
.tbh-og3-fax__title {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.25em;
  font-weight: 700;
  color: var(--tbh-text);
  margin: 0 0 14px;
  padding: 4px 0 12px;
  border-bottom: 2px solid var(--tbh-text);
  background: #fff;
  letter-spacing: .15em;
}
.tbh-og3-fax__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .98em;
}
.tbh-og3-fax__table th,
.tbh-og3-fax__table td {
  border-bottom: 1px solid var(--tbh-border);
  padding: 14px 12px;
  text-align: left;
  vertical-align: middle;
  background: rgba(255,255,255,.7);
  height: 36px;
}
.tbh-og3-fax__table th {
  width: 36%;
  background: rgba(253,250,238,.85);
  color: #5a4710;
  font-weight: 500;
  font-size: .94em;
  letter-spacing: .04em;
}
.tbh-og3-fax__foot {
  margin: 14px 0 0;
  text-align: right;
  font-size: .82em;
  color: var(--tbh-muted);
  letter-spacing: .04em;
  background: #fff;
}

/* メールテンプレ */
.tbh-og3-mail {
  position: relative;
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: 4px;
  margin: 0 0 22px;
  overflow: hidden;
}
.tbh-og3-mail__head {
  padding: 14px 18px;
  background: #fdfaee;
  border-bottom: 1px solid var(--tbh-border);
  font-size: .92em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tbh-og3-mail__head > div span {
  display: inline-block;
  width: 3.2em;
  font-family: "Shippori Mincho", serif;
  color: var(--tbh-main);
  letter-spacing: .1em;
}
.tbh-og3-mail__body {
  margin: 0;
  padding: 22px 24px 70px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 1em;
  line-height: 2;
  color: var(--tbh-text);
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 400px;
  overflow-y: auto;
  background:
    linear-gradient(to bottom, transparent 0, transparent calc(2em - 1px), rgba(175,140,15,.05) 2em);
  background-size: 100% 2em;
}
.tbh-og3-copy {
  position: absolute;
  bottom: 16px;
  right: 18px;
  appearance: none;
  background: var(--tbh-text);
  color: #fff;
  border: 0;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: .92em;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: .08em;
  transition: background .2s, transform .15s;
}
.tbh-og3-copy:hover { background: var(--tbh-main); transform: translateY(-1px); }
.tbh-og3-copy.is-done { background: #5b8265; }

/* 大型CTA */
.tbh-og3-cta {
  display: block;
  width: 100%;
  padding: 18px;
  text-align: center;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: .15em;
  color: #fff !important;
  background: var(--tbh-text);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s, transform .15s, letter-spacing .25s;
  position: relative;
}
.tbh-og3-cta::after {
  content: "→";
  margin-left: 12px;
  display: inline-block;
  transition: transform .25s;
}
.tbh-og3-cta:hover {
  background: var(--tbh-main);
  letter-spacing: .2em;
  opacity: 1;
  transform: translateY(-1px);
}
.tbh-og3-cta:hover::after { transform: translateX(4px); }

.tbh-og3-note {
  margin: 14px 0 0;
  font-size: .82em;
  color: var(--tbh-muted);
  text-align: center;
  line-height: 1.7;
}

/* レスポンシブ追加 */
@media (max-width: 600px) {
  .tbh-og3-contact { padding: 24px 18px; }
  .tbh-og3-contact__value { font-size: 1.7em; }
  .tbh-og3-contact__value--mail { font-size: 1.05em; }
  .tbh-og3-list li { padding: 12px 14px 12px 44px; font-size: .94em; }
  .tbh-og3-fax { padding: 18px 14px 14px; }
  .tbh-og3-fax__title { font-size: 1.05em; }
  .tbh-og3-fax__table th, .tbh-og3-fax__table td { padding: 10px 8px; font-size: .9em; }
  .tbh-og3-mail__body { padding: 16px 16px 64px; font-size: .92em; }
  .tbh-og3-cta { font-size: .98em; padding: 16px 12px; letter-spacing: .08em; }
}

/* 印刷時：FAX注文票だけ */
@media print {
  body.page-order-guide .tbh-header,
  body.page-order-guide .tbh-footer,
  body.page-order-guide .tbh-pagehead,
  body.page-order-guide .tbh-og3-tabs,
  body.page-order-guide [data-og-panel="tel"],
  body.page-order-guide [data-og-panel="mail"],
  body.page-order-guide .tbh-btn,
  body.page-order-guide .tbh-og3-cta,
  body.page-order-guide .tbh-og3-note,
  body.page-order-guide .tbh-og3-contact,
  body.page-order-guide [data-og-panel="fax"] .tbh-og3__head,
  body.page-order-guide [data-og-panel="fax"] .tbh-og3-detail__heading,
  body.page-order-guide [data-og-panel="fax"] .tbh-og3-detail__lead { display: none !important; }
  body.page-order-guide [data-og-panel="fax"] { display: block !important; border: 0; }
  body.page-order-guide [data-og-panel="fax"] .tbh-og3__body { padding: 0; grid-template-columns: 1fr; }
  body.page-order-guide .tbh-og3-fax { border-color: #000; background-image: none; }
}

/* ===================================================================
   ご注文方法ガイド v2（タブ式・旧版・未使用）
   =================================================================== */
.tbh-og2 {
  margin: 0 0 36px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 26px rgba(0,0,0,.08);
}
.sp-only { display: none; }
@media (max-width: 600px) { .sp-only { display: inline; } }

/* タブヘッダー */
.tbh-og2-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #2b2418;
}
.tbh-og2-tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 22px 14px;
  color: rgba(255,255,255,.65);
  font-family: inherit;
  font-size: 1.15em;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .25s, color .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-bottom: 4px solid transparent;
  position: relative;
}
.tbh-og2-tab:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.tbh-og2-tab.is-active {
  color: #fff;
}
.tbh-og2-tab.is-active::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--tab-a), var(--tab-b));
  z-index: -1;
}
.tbh-og2-tab--tel.is-active  { --tab-a:#b03d10; --tab-b:#7a2407; border-bottom-color: #d8581d; }
.tbh-og2-tab--fax.is-active  { --tab-a:#4a6f8a; --tab-b:#26425a; border-bottom-color: #6a90ad; }
.tbh-og2-tab--mail.is-active { --tab-a:#a67c1f; --tab-b:#7a5a14; border-bottom-color: #d8b25e; }
.tbh-og2-tab.is-active {
  background: linear-gradient(180deg, var(--tab-a), var(--tab-b));
}
.tbh-og2-tab__icon {
  font-size: 1.8em;
  line-height: 1;
}
.tbh-og2-tab__label {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

/* パネル */
.tbh-og2-panel { display: none; }
.tbh-og2-panel.is-active { display: block; animation: tbhOgFade .3s ease; }
@keyframes tbhOgFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ヒーロー（番号大表示） */
.tbh-og2-hero {
  text-align: center;
  padding: 36px 24px 28px;
  position: relative;
  color: #fff;
}
.tbh-og2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,255,255,.15), transparent 70%);
  pointer-events: none;
}
.tbh-og2-hero--tel  { background: linear-gradient(180deg, #b03d10 0%, #7a2407 100%); }
.tbh-og2-hero--fax  { background: linear-gradient(180deg, #4a6f8a 0%, #26425a 100%); }
.tbh-og2-hero--mail { background: linear-gradient(180deg, #a67c1f 0%, #7a5a14 100%); }

.tbh-og2-hero__icon {
  font-size: 3.4em;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.3));
}
.tbh-og2-hero__label {
  margin: 0 0 10px;
  font-size: 1em;
  letter-spacing: .25em;
  opacity: .88;
  font-family: "Shippori Mincho", serif;
}
.tbh-og2-hero__num {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 2.8em;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff !important;
  text-decoration: none;
  margin: 0 0 12px;
  padding: 6px 22px;
  text-shadow: 0 3px 8px rgba(0,0,0,.35);
  transition: transform .15s, text-shadow .2s;
}
a.tbh-og2-hero__num:hover {
  opacity: 1;
  transform: translateY(-2px);
  text-shadow: 0 4px 12px rgba(0,0,0,.5), 0 0 18px rgba(255,255,255,.4);
}
.tbh-og2-hero__num--mail {
  font-size: 1.8em;
  word-break: break-all;
}
.tbh-og2-hero__num--static { cursor: default; }
.tbh-og2-hero__hours {
  margin: 0;
  font-size: .92em;
  opacity: .8;
  letter-spacing: .06em;
}

/* 本体（白背景・大文字） */
.tbh-og2-body {
  padding: 32px 36px 36px;
  font-size: 1.05em;
  line-height: 1.85;
}
.tbh-og2-h2 {
  margin: 0 0 12px;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 1.6em;
  font-weight: 700;
  color: var(--tbh-main);
  text-align: center;
  letter-spacing: .08em;
  line-height: 1.5;
  padding-bottom: 14px;
  position: relative;
}
.tbh-og2-h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--tbh-main), transparent);
  margin: 14px auto 0;
}
.tbh-og2-lead {
  text-align: center;
  margin: 0 0 22px;
  color: #5a4710;
  font-size: 1em;
}

/* 電話：5ステップ */
.tbh-og2-steps {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tbh-og2-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
  background: #fdfaee;
  border-left: 4px solid var(--tbh-main);
  border-radius: 8px;
  padding: 18px 22px;
}
.tbh-og2-steps__no {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8b25e, #a67c1f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.4em;
  box-shadow: 0 3px 8px rgba(175,140,15,.35);
}
.tbh-og2-steps h3 {
  margin: 0 0 6px;
  font-size: 1.15em;
  color: var(--tbh-text);
  font-weight: 700;
  letter-spacing: .03em;
}
.tbh-og2-steps p {
  margin: 0;
  color: #5a4710;
  font-size: .98em;
}
.tbh-og2-steps small { color: var(--tbh-muted); font-size: .85em; }

/* FAX注文票 */
.tbh-og2-fax-sheet {
  background: #fff;
  border: 2px dashed var(--tbh-main);
  border-radius: 10px;
  padding: 22px 24px;
  margin: 0 0 22px;
  background-image: linear-gradient(to bottom, transparent 0, transparent calc(2.2em - 1px), #f0e7c8 2.2em);
  background-size: 100% 2.2em;
  background-position: 0 56px;
}
.tbh-og2-fax-sheet__title {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4em;
  font-weight: 700;
  color: var(--tbh-main);
  padding: 6px 0 14px;
  margin-bottom: 16px;
  border-bottom: 3px double var(--tbh-main);
  background: #fff;
}
.tbh-og2-fax-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
  background: #fff;
}
.tbh-og2-fax-table th,
.tbh-og2-fax-table td {
  border: 1.5px solid var(--tbh-border);
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
  background: #fff;
}
.tbh-og2-fax-table th {
  width: 36%;
  background: #fdfaee;
  color: var(--tbh-main);
  font-weight: 600;
  font-size: 1em;
  letter-spacing: .03em;
}
.tbh-og2-fax-sheet__foot {
  margin: 16px 0 0;
  text-align: right;
  font-size: .88em;
  color: var(--tbh-muted);
  background: #fff;
}

/* メールテンプレート */
.tbh-og2-mail-box {
  position: relative;
  background: #1e1b14;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.tbh-og2-mail-box__head {
  padding: 14px 18px;
  background: #2c2618;
  border-bottom: 1px solid rgba(247,226,163,.18);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tbh-og2-mail-box__to,
.tbh-og2-mail-box__subject {
  color: #f7e2a3;
  font-size: .95em;
  font-family: "Noto Serif JP", serif;
}
.tbh-og2-mail-box__body {
  margin: 0;
  padding: 20px 22px 60px;
  font-family: "Consolas", "Courier New", "Meiryo", monospace;
  font-size: 1em;
  line-height: 1.95;
  color: #f7e2a3;
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 380px;
  overflow-y: auto;
}
.tbh-og2-copy {
  position: absolute;
  bottom: 14px;
  right: 14px;
  appearance: none;
  background: linear-gradient(135deg, #d8b25e, #a67c1f);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .04em;
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
  transition: transform .15s, filter .2s;
}
.tbh-og2-copy:hover { transform: translateY(-1px); filter: brightness(1.1); }
.tbh-og2-copy.is-done {
  background: linear-gradient(135deg, #6f9a3e, #4a7058);
}
.tbh-og2-copy__icon { font-size: 1.1em; }

/* CTAボタン */
.tbh-og2-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px 24px;
  margin: 8px 0 14px;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  text-decoration: none;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.2);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.tbh-og2-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.3);
  opacity: 1;
  filter: brightness(1.06);
}
.tbh-og2-cta--tel  { background: linear-gradient(135deg, #b03d10, #7a2407); }
.tbh-og2-cta--fax  { background: linear-gradient(135deg, #4a6f8a, #26425a); }
.tbh-og2-cta--mail { background: linear-gradient(135deg, #a67c1f, #7a5a14); }
.tbh-og2-cta__icon { font-size: 1.3em; }
.tbh-og2-note {
  margin: 4px 0 0;
  font-size: .9em;
  color: var(--tbh-muted);
  text-align: center;
  line-height: 1.65;
}

/* レスポンシブ */
@media (max-width: 700px) {
  .tbh-og2-tab { padding: 14px 6px; font-size: .92em; gap: 4px; letter-spacing: .04em; }
  .tbh-og2-tab__icon { font-size: 1.5em; }
  .tbh-og2-tab__label { font-size: .9em; }
  .tbh-og2-hero { padding: 28px 16px 22px; }
  .tbh-og2-hero__icon { font-size: 2.6em; }
  .tbh-og2-hero__num { font-size: 1.9em; padding: 4px 8px; }
  .tbh-og2-hero__num--mail { font-size: 1.05em; }
  .tbh-og2-body { padding: 22px 16px 26px; }
  .tbh-og2-h2 { font-size: 1.25em; letter-spacing: .04em; }
  .tbh-og2-steps li { grid-template-columns: 44px 1fr; gap: 12px; padding: 14px 16px; }
  .tbh-og2-steps__no { width: 38px; height: 38px; font-size: 1.15em; }
  .tbh-og2-steps h3 { font-size: 1em; }
  .tbh-og2-steps p  { font-size: .9em; }
  .tbh-og2-fax-sheet { padding: 16px; }
  .tbh-og2-fax-sheet__title { font-size: 1.15em; }
  .tbh-og2-fax-table th, .tbh-og2-fax-table td { padding: 10px 10px; font-size: .92em; }
  .tbh-og2-fax-table th { width: 42%; }
  .tbh-og2-mail-box__body { font-size: .88em; padding: 14px 14px 60px; }
  .tbh-og2-cta { padding: 16px 14px; font-size: 1em; }
}

/* 印刷時：FAX注文票だけクリーンに出す */
@media print {
  body.page-order-guide .tbh-header,
  body.page-order-guide .tbh-footer,
  body.page-order-guide .tbh-pagehead,
  body.page-order-guide .tbh-og2-tabs,
  body.page-order-guide .tbh-og2-hero,
  body.page-order-guide .tbh-og2-h2,
  body.page-order-guide .tbh-og2-lead,
  body.page-order-guide .tbh-og2-cta,
  body.page-order-guide .tbh-og2-note,
  body.page-order-guide .tbh-btn,
  body.page-order-guide .tbh-og2-panel--tel,
  body.page-order-guide .tbh-og2-panel--mail { display: none !important; }
  body.page-order-guide .tbh-og2-panel--fax { display: block !important; }
  body.page-order-guide .tbh-og2 { box-shadow: none; }
  body.page-order-guide .tbh-og2-body { padding: 0; }
  body.page-order-guide .tbh-og2-fax-sheet { border-color: #000; background-image: none; }
  body.page-order-guide .tbh-og2-fax-table th,
  body.page-order-guide .tbh-og2-fax-table td { border-color: #555; }
}

/* ===================================================================
   ご注文方法ガイド（3カード）旧版・未使用
   =================================================================== */
.tbh-orderguide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 36px;
}
@media (max-width: 980px) {
  .tbh-orderguide { grid-template-columns: 1fr; }
}

.tbh-og-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
  border: 1px solid var(--tbh-border);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.tbh-og-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(175,140,15,.18), 0 2px 6px rgba(0,0,0,.06);
}
.tbh-og-card__head {
  padding: 28px 22px 22px;
  text-align: center;
  color: #fff;
  position: relative;
  background: linear-gradient(135deg, var(--head-a), var(--head-b));
}
.tbh-og-card--tel  { --head-a:#b03d10; --head-b:#7a2407; }
.tbh-og-card--fax  { --head-a:#4a6f8a; --head-b:#26425a; }
.tbh-og-card--mail { --head-a:#7e6a3a; --head-b:#5a4710; }
.tbh-og-card__head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,255,255,.22) 0%, transparent 70%);
  pointer-events: none;
}
.tbh-og-card__icon {
  font-size: 2.6em;
  line-height: 1;
  display: inline-block;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
.tbh-og-card__title {
  margin: 0 0 6px;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: .12em;
}
.tbh-og-card__sub {
  margin: 0;
  font-size: .82em;
  opacity: .85;
  letter-spacing: .05em;
}
.tbh-og-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 大きな番号 */
.tbh-og-bignum {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: var(--tbh-text);
  padding: 14px;
  background: #fdfaee;
  border: 2px solid var(--tbh-main);
  border-radius: 10px;
  margin: 0 0 8px;
  transition: background .2s, transform .15s;
}
.tbh-og-bignum:hover {
  background: var(--tbh-main);
  color: #fff;
  opacity: 1;
  transform: translateY(-1px);
}
.tbh-og-bignum--static {
  cursor: default;
  background: #fdfaee;
}
.tbh-og-bignum--static:hover { background: #fdfaee; color: var(--tbh-text); transform:none; }
.tbh-og-bignum__icon { font-size: 1.3em; }
.tbh-og-bignum__num { font-size: 1.5em; letter-spacing: .03em; }
.tbh-og-bignum__num--mail { font-size: 1.05em; word-break: break-all; }

.tbh-og-card__hours {
  margin: 0 0 16px;
  text-align: center;
  font-size: .85em;
  color: var(--tbh-muted);
}

.tbh-og-section { margin: 14px 0 18px; }
.tbh-og-section__heading {
  margin: 0 0 10px;
  padding: 0 0 6px 10px;
  font-size: 1em;
  color: var(--tbh-main);
  font-weight: 600;
  border-left: 3px solid var(--tbh-main);
  border-bottom: 1px solid var(--tbh-border);
  letter-spacing: .04em;
}
.tbh-og-list {
  margin: 0;
  padding: 0 0 0 22px;
  font-size: .92em;
  line-height: 1.9;
}
.tbh-og-list li { margin: 0 0 4px; }
.tbh-og-list small { color: var(--tbh-muted); font-size: .85em; }

/* FAX注文票プレビュー */
.tbh-og-fax-preview {
  background: #fff;
  border: 1.5px dashed var(--tbh-main);
  border-radius: 8px;
  padding: 4px;
  margin: 12px 0 14px;
}
.tbh-og-fax-preview__inner {
  background: linear-gradient(to bottom, transparent 0, transparent calc(1.7em - 1px), #f0e7c8 1.7em);
  background-size: 100% 1.7em;
  padding: 12px 14px;
  border-radius: 4px;
}
.tbh-og-fax-preview__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  text-align: center;
  font-size: 1em;
  color: var(--tbh-main);
  padding: 4px 0 8px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--tbh-main);
  background: #fff;
}
.tbh-og-fax-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85em;
  background: rgba(255,255,255,.5);
}
.tbh-og-fax-table th,
.tbh-og-fax-table td {
  border: 1px solid var(--tbh-border);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
  background: #fff;
}
.tbh-og-fax-table th {
  width: 38%;
  background: #fdfaee;
  color: var(--tbh-main);
  font-weight: 600;
  font-size: .9em;
}
.tbh-og-fax-preview__foot {
  margin: 10px 0 0;
  text-align: right;
  font-size: .78em;
  color: var(--tbh-muted);
  background: #fff;
  padding: 4px 0 0;
}

/* メールテンプレート */
.tbh-og-mail-template {
  position: relative;
  background: #1e1b14;
  border-radius: 8px;
  padding: 14px 16px 50px;
  margin: 12px 0 14px;
}
.tbh-og-mail-template pre {
  margin: 0;
  font-family: "Consolas", "Courier New", "Meiryo", monospace;
  font-size: .85em;
  line-height: 1.8;
  color: #f7e2a3;
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 280px;
  overflow-y: auto;
}
.tbh-og-copy {
  position: absolute;
  bottom: 10px;
  right: 10px;
  appearance: none;
  background: #af8c0f;
  color: #fff;
  border: 0;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: .82em;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, transform .15s;
}
.tbh-og-copy:hover { background: var(--tbh-accent); transform: translateY(-1px); }
.tbh-og-copy.is-done { background: #5b8265; }

/* CTAボタン */
.tbh-og-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 18px;
  margin-top: auto;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  text-decoration: none;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.2);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.tbh-og-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.3);
  opacity: 1;
  filter: brightness(1.05);
}
.tbh-og-cta--tel  { background: linear-gradient(135deg, #b03d10, #7a2407); }
.tbh-og-cta--fax  { background: linear-gradient(135deg, #4a6f8a, #26425a); }
.tbh-og-cta--mail { background: linear-gradient(135deg, #7e6a3a, #5a4710); }

.tbh-og-note {
  margin: 10px 0 0;
  font-size: .78em;
  color: var(--tbh-muted);
  text-align: center;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .tbh-og-card__head { padding: 22px 18px 18px; }
  .tbh-og-card__icon { font-size: 2.2em; }
  .tbh-og-card__title { font-size: 1.15em; }
  .tbh-og-card__body { padding: 18px; }
  .tbh-og-bignum__num { font-size: 1.25em; }
  .tbh-og-bignum__num--mail { font-size: .92em; }
}

/* 印刷時のレイアウト（FAX注文票印刷用） */
@media print {
  body.page-order-guide .tbh-header,
  body.page-order-guide .tbh-footer,
  body.page-order-guide .tbh-pagehead,
  body.page-order-guide .tbh-og-card--tel,
  body.page-order-guide .tbh-og-card--mail,
  body.page-order-guide .tbh-og-card__head,
  body.page-order-guide .tbh-og-bignum,
  body.page-order-guide .tbh-og-card__hours,
  body.page-order-guide .tbh-og-cta,
  body.page-order-guide .tbh-og-note,
  body.page-order-guide .tbh-btn { display: none !important; }
  body.page-order-guide .tbh-og-card--fax {
    box-shadow: none; border: 0;
  }
  body.page-order-guide .tbh-og-fax-preview { border-color: #000; }
}

/* ===================================================================
   ヘッダー
   =================================================================== */
.tbh-header {
  background: #fff;
  border-bottom: 1px solid var(--tbh-border);
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}
.tbh-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tbh-header__title {
  font-size: 1.35em;
  font-weight: 700;
  color: var(--tbh-main);
  letter-spacing: .08em;
  display: inline-block;
}
.tbh-header__subtitle {
  margin: 4px 0 0;
  font-size: .8em;
  color: var(--tbh-muted);
  letter-spacing: .08em;
}

/* サイトロゴ（SVG） */
.tbh-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform .25s, filter .25s;
}
.tbh-header__logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.05));
}
.tbh-header__logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.tbh-header__logo:hover img {
  filter: drop-shadow(0 2px 6px rgba(175,140,15,.25));
}
@media (max-width: 640px) {
  .tbh-header__logo img { height: 42px; }
}
@media (max-width: 400px) {
  .tbh-header__logo img { height: 36px; }
}
.tbh-header__nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.tbh-header__navlink {
  display: inline-block;
  padding: 8px 14px;
  font-size: .92em;
  color: var(--tbh-text);
  border-radius: 4px;
  transition: background .2s;
}
.tbh-header__navlink:hover { background: rgba(175,140,15,.10); opacity: 1; }
.tbh-header__navlink--tel {
  color: var(--tbh-accent);
  font-weight: 700;
  letter-spacing: .03em;
}
.tbh-header__navlink--cta {
  background: linear-gradient(135deg, #d8b25e 0%, #a67c1f 100%);
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  font-weight: 600 !important;
  letter-spacing: .06em;
  box-shadow: 0 3px 10px rgba(175,140,15,.35), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .2s, box-shadow .2s, background .2s;
  margin-left: 6px;
}
.tbh-header__navlink--cta:hover {
  background: linear-gradient(135deg, var(--tbh-accent) 0%, #8e2b08 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(176,61,16,.4), inset 0 1px 0 rgba(255,255,255,.3);
  color: #fff !important;
  opacity: 1;
}
@media (max-width: 560px) {
  .tbh-header__navlink--cta { padding: 7px 14px !important; font-size: .9em; }
}

/* ===================================================================
   メイン・コンテナ
   =================================================================== */
.tbh-main { min-height: 60vh; }
.tbh-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ===================================================================
   ページ見出し
   =================================================================== */
.tbh-pagehead {
  text-align: center;
  margin: 0 0 36px;
  padding: 0 20px 28px;
  border-bottom: 1px solid var(--tbh-border);
}
.tbh-pagehead__title {
  margin: 0 0 6px;
  font-size: 1.9em;
  color: var(--tbh-main);
  font-weight: 600;
  letter-spacing: .08em;
  display: inline-block;
  position: relative;
  padding: 0 28px;
}
.tbh-pagehead__title::before,
.tbh-pagehead__title::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--tbh-main);
  position: absolute; top: 50%;
}
.tbh-pagehead__title::before { left: 0; }
.tbh-pagehead__title::after { right: 0; }
.tbh-pagehead__subtitle {
  margin: 0 0 14px;
  font-size: .92em;
  color: var(--tbh-muted);
  letter-spacing: .15em;
}
.tbh-pagehead__intro {
  max-width: 720px;
  margin: 0 auto;
  font-size: .98em;
  color: #555;
  line-height: 1.9;
}

/* ===================================================================
   価格表（リッチ版）
   =================================================================== */
.tbh-pricetable {
  --pt-a: #c79a3c;
  --pt-b: #b87a30;
  --pt-c: #94673a;
  --pt-d: #5b8265;
  --pt-e: #4a6f8a;

  margin: 0 0 44px;
  padding: 36px 28px 28px;
  background:
    radial-gradient(ellipse at top right, rgba(247,226,163,.35) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(176,61,16,.06) 0%, transparent 55%),
    linear-gradient(180deg, #fdfaee 0%, #fffefc 100%);
  border: 1px solid var(--tbh-border);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(175,140,15,.10), 0 1px 2px rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
}
.tbh-pricetable::before,
.tbh-pricetable::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border: 2px solid var(--tbh-main);
  opacity: .25;
  pointer-events: none;
}
.tbh-pricetable::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.tbh-pricetable::after  { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.tbh-pricetable__title {
  text-align: center;
  margin: 0 0 24px;
}
.tbh-pricetable__heading {
  display: inline-block;
  font-size: 1.7em;
  color: var(--tbh-main);
  margin: 0;
  letter-spacing: .25em;
  font-weight: 600;
  padding: 0 28px;
  position: relative;
}
.tbh-pricetable__heading::before,
.tbh-pricetable__heading::after {
  content: "";
  width: 18px; height: 1px;
  background: var(--tbh-main);
  position: absolute; top: 50%;
}
.tbh-pricetable__heading::before { left: 0; }
.tbh-pricetable__heading::after  { right: 0; }
.tbh-pricetable__lead {
  margin: 8px 0 0;
  font-size: .85em;
  color: var(--tbh-muted);
  letter-spacing: .12em;
}

/* ----------- 写真ギャラリー（横スライド・フレーム付き） ----------- */
.tbh-gallery {
  margin: 0 0 36px;
  padding: 28px 0 18px;
  background:
    linear-gradient(90deg, var(--tbh-bg) 0%, transparent 6%, transparent 94%, var(--tbh-bg) 100%),
    linear-gradient(180deg, rgba(175,140,15,.04) 0%, rgba(175,140,15,.01) 100%);
  overflow: hidden;
  position: relative;
}
.tbh-gallery::before,
.tbh-gallery::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.tbh-gallery::before {
  left: 0;
  background: linear-gradient(90deg, var(--tbh-bg) 0%, transparent 100%);
}
.tbh-gallery::after {
  right: 0;
  background: linear-gradient(-90deg, var(--tbh-bg) 0%, transparent 100%);
}

.tbh-gallery__track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: tbhGalleryScroll 35s linear infinite;
  padding: 0 14px;
}
.tbh-gallery:hover .tbh-gallery__track { animation-play-state: paused; }

@keyframes tbhGalleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 写真フレーム */
.tbh-gallery__frame {
  flex-shrink: 0;
  width: 200px;
  height: 260px;
  background: #fff;
  padding: 14px;
  border: 4px solid var(--tbh-main);
  border-radius: 4px;
  box-shadow:
    0 8px 18px rgba(0,0,0,.18),
    0 2px 4px rgba(0,0,0,.08),
    inset 0 0 0 1px rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.tbh-gallery__frame:nth-child(odd)  { transform: rotate(-1.5deg); }
.tbh-gallery__frame:nth-child(even) { transform: rotate(1.5deg); }
.tbh-gallery__frame:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow:
    0 14px 30px rgba(175,140,15,.35),
    0 4px 10px rgba(0,0,0,.12);
  z-index: 5;
}
.tbh-gallery__frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

@media (max-width: 700px) {
  .tbh-gallery { padding: 20px 0 14px; margin: 0 0 24px; }
  .tbh-gallery::before, .tbh-gallery::after { width: 40px; }
  .tbh-gallery__track { gap: 18px; animation-duration: 28s; }
  .tbh-gallery__frame {
    width: 140px;
    height: 190px;
    padding: 10px;
    border-width: 3px;
  }
}

/* ----------- 価格表セクション（開閉なし・常時表示） ----------- */
.tbh-pt-section {
  margin: 0 0 24px;
  background: #fff;
  border: 2px solid var(--tbh-main);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(175,140,15,.15);
}
.tbh-pt-section__heading {
  margin: 0;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 1.2em;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  background: linear-gradient(180deg, var(--tbh-main) 0%, var(--tbh-main-dark) 100%);
  border-bottom: 2px solid var(--tbh-main);
  position: relative;
}
.tbh-pt-section__heading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}
.tbh-pt-section__icon {
  font-size: 1.6em;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.18);
  border-radius: 8px;
  flex-shrink: 0;
}
.tbh-pt-section__label {
  flex: 1;
  text-shadow: 0 1px 1px rgba(0,0,0,.15);
}
.tbh-pt-section__body {
  padding: 22px;
  background: #fffefa;
}
@media (max-width: 560px) {
  .tbh-pt-section { border-width: 1.5px; }
  .tbh-pt-section__heading { padding: 14px 16px; font-size: 1em; gap: 10px; letter-spacing: .04em; }
  .tbh-pt-section__body { padding: 14px 12px; }
  .tbh-pt-section__icon { width: 30px; height: 30px; font-size: 1.3em; }
}

/* ----------- アコーディオン式パネル（大型ボタン風） ----------- */
.tbh-pt-acc {
  margin: 0 0 16px;
  background: #fff;
  border: 2px solid var(--tbh-main);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(175,140,15,.15);
  transition: box-shadow .25s, transform .15s, border-color .25s;
}
.tbh-pt-acc:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(175,140,15,.25); }
.tbh-pt-acc[open] {
  box-shadow: 0 6px 24px rgba(175,140,15,.22);
  transform: none;
}
.tbh-pt-acc__summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: 1.2em;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  background: linear-gradient(180deg, var(--tbh-main) 0%, var(--tbh-main-dark) 100%);
  transition: background .2s, padding .2s;
  user-select: none;
  position: relative;
}
.tbh-pt-acc__summary::-webkit-details-marker { display: none; }
.tbh-pt-acc__summary::marker { content: ""; }
.tbh-pt-acc__summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}
.tbh-pt-acc__summary:hover {
  background: linear-gradient(180deg, var(--tbh-accent) 0%, #8e2b08 100%);
}
.tbh-pt-acc[open] .tbh-pt-acc__summary {
  border-bottom: 2px solid var(--tbh-main);
}
.tbh-pt-acc[open] .tbh-pt-acc__arrow { transform: rotate(180deg); }

.tbh-pt-acc__icon {
  font-size: 1.6em;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.18);
  border-radius: 8px;
  flex-shrink: 0;
}
.tbh-pt-acc__label {
  flex: 1;
  text-shadow: 0 1px 1px rgba(0,0,0,.15);
}
.tbh-pt-acc__arrow {
  font-size: 1.5em;
  transition: transform .3s ease;
  margin-left: auto;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.22);
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}
.tbh-pt-acc__body {
  padding: 22px;
  animation: tbhFade .3s ease;
  background: #fffefa;
}
@keyframes tbhFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 560px) {
  .tbh-pt-acc { border-width: 1.5px; }
  .tbh-pt-acc__summary { padding: 16px 18px; font-size: 1em; gap: 10px; letter-spacing: .04em; }
  .tbh-pt-acc__body { padding: 14px 12px; }
  .tbh-pt-acc__icon { width: 30px; height: 30px; font-size: 1.3em; }
  .tbh-pt-acc__arrow { width: 28px; height: 28px; font-size: 1.2em; }
}

/* ----------- 絞り込みチップ ----------- */
.tbh-chipfilter {
  margin: 18px 0 22px;
  padding: 16px 18px;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--tbh-border);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.tbh-chipfilter__group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tbh-chipfilter__label {
  font-size: .82em;
  letter-spacing: .15em;
  color: var(--tbh-main);
  font-weight: 600;
  padding-right: 4px;
  border-right: 1px solid var(--tbh-border);
  margin-right: 4px;
  padding: 2px 10px 2px 0;
}
.tbh-chipfilter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tbh-chip {
  appearance: none;
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: inherit;
  font-size: .88em;
  color: var(--tbh-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
}
.tbh-chip:hover {
  background: #fdfaee;
  border-color: var(--tbh-main);
  transform: translateY(-1px);
}
.tbh-chip.is-active {
  background: var(--tbh-main);
  color: #fff;
  border-color: var(--tbh-main);
  box-shadow: 0 2px 6px rgba(175,140,15,.25);
}
.tbh-chip.is-active .tbh-pt__badge {
  background: rgba(255,255,255,.25) !important;
  box-shadow: none;
}
.tbh-chip .tbh-pt__badge {
  width: 20px; height: 20px; font-size: .75em;
}
.tbh-chip__label { font-size: .92em; }
.tbh-chipfilter__reset {
  appearance: none;
  background: transparent;
  border: 1px dashed var(--tbh-muted);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: inherit;
  font-size: .82em;
  color: var(--tbh-muted);
  cursor: pointer;
  margin-left: auto;
  transition: all .2s;
}
.tbh-chipfilter__reset:hover {
  background: var(--tbh-accent);
  color: #fff;
  border-color: var(--tbh-accent);
  border-style: solid;
}
@media (max-width: 700px) {
  .tbh-chipfilter { padding: 12px 14px; gap: 12px; }
  .tbh-chipfilter__reset { margin-left: 0; width: 100%; text-align: center; }
}

/* ----------- table ----------- */
.tbh-pricetable__wrap {
  overflow-x: auto;
  margin: 0 0 24px;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.tbh-pt {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 680px;
  font-size: .96em;
  background: #fff;
  table-layout: fixed;
}
.tbh-pt--matrix .tbh-pt__col-genre { width: 220px; }
.tbh-pt--matrix .tbh-pt__col-size  { width: auto; }
@media (max-width: 700px) {
  .tbh-pt--matrix .tbh-pt__col-genre { width: 140px; }
}
.tbh-pt th, .tbh-pt td {
  padding: 0;
  vertical-align: middle;
  border-bottom: 1px solid #eee5c4;
}
.tbh-pt thead th {
  background: linear-gradient(180deg, #4a3a18 0%, #2b2418 100%);
  color: #f7e2a3;
  font-weight: 500;
  letter-spacing: .12em;
  font-size: .92em;
  padding: 14px 8px;
  text-align: center;
  border-bottom: 2px solid var(--tbh-main);
}
.tbh-pt thead th:first-child { border-top-left-radius: 10px; }
.tbh-pt thead th:last-child  { border-top-right-radius: 10px; }
.tbh-pt__corner {
  text-align: center;
  font-size: .82em !important;
  padding: 12px 16px !important;
  letter-spacing: .05em !important;
}
.tbh-pt__corner span { display: inline-block; }
.tbh-pt__slash { margin: 0 4px; opacity: .55; }
.tbh-pt__size {
  font-family: "Noto Serif JP", serif;
  font-size: 1em !important;
  text-align: center;
}

.tbh-pt__genre {
  background: #fdfaee;
  text-align: left;
  padding: 12px 14px;
  white-space: nowrap;
  border-right: 2px solid var(--tbh-border);
  font-weight: 500;
}
.tbh-pt__label {
  display: inline-block;
  margin-left: 10px;
  color: var(--tbh-text);
  font-size: .96em;
  letter-spacing: .02em;
}
.tbh-pt__row:last-child .tbh-pt__genre { border-bottom-left-radius: 10px; }

/* グレード章バッジ */
.tbh-pt__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1em;
  color: #fff;
  letter-spacing: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.25);
  flex-shrink: 0;
}
.tbh-pt__badge--a { background: linear-gradient(135deg, #d8b25e 0%, #a67c1f 100%); }
.tbh-pt__badge--b { background: linear-gradient(135deg, #c89a52 0%, #8e6624 100%); }
.tbh-pt__badge--c { background: linear-gradient(135deg, #a98556 0%, #6e5230 100%); }
.tbh-pt__badge--d { background: linear-gradient(135deg, #7ba185 0%, #4a7058 100%); }
.tbh-pt__badge--e { background: linear-gradient(135deg, #6f93af 0%, #3d5c79 100%); }

/* 価格セル */
.tbh-pt__cell {
  text-align: center;
  padding: 0;
  border-right: 1px solid #f0e7c8;
  background: #fff;
  transition: background .2s;
}
.tbh-pt__cell:last-child { border-right: 0; }
.tbh-pt__row:last-child .tbh-pt__cell:last-child { border-bottom-right-radius: 10px; }

.tbh-pt__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  padding: 16px 8px;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  color: var(--tbh-text);
  border-radius: 0;
  transition: background .25s, color .25s, transform .15s;
  text-decoration: none;
  position: relative;
}
.tbh-pt__yen {
  font-size: .85em;
  color: var(--tbh-muted);
  margin-right: 1px;
}
.tbh-pt__num {
  font-size: 1.18em;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--tbh-text);
}
.tbh-pt__price:hover {
  background: linear-gradient(180deg, #fff8e0 0%, #fdf3c0 100%);
  opacity: 1;
}
.tbh-pt__price:hover .tbh-pt__num { color: var(--tbh-accent); }

/* 行ホバーで種類セルもうっすら強調 */
.tbh-pt__row:hover .tbh-pt__genre {
  background: #faf2d6;
}

/* 行ごとの薄い帯（A→E） */
.tbh-pt__row--a .tbh-pt__num { color: #8e6614; }
.tbh-pt__row--b .tbh-pt__num { color: #74521b; }
.tbh-pt__row--c .tbh-pt__num { color: #614728; }
.tbh-pt__row--d .tbh-pt__num { color: #3b5a47; }
.tbh-pt__row--e .tbh-pt__num { color: #2f4a63; }

.tbh-pt__cell--empty {
  color: #ccc;
  padding: 18px 8px;
}

/* ----------- フィルタ動作（is-dimmed / is-focus / hover cross） ----------- */
.tbh-pt__cell { transition: background .25s, opacity .25s, transform .15s; }
.tbh-pt__cell.is-dimmed { opacity: .22; }
.tbh-pt__cell.is-focus {
  background: linear-gradient(180deg, #fff8d6 0%, #fceea0 100%);
  box-shadow: inset 0 0 0 2px var(--tbh-main);
}
.tbh-pt__cell.is-focus .tbh-pt__num { color: var(--tbh-accent); }
.tbh-pt__row.is-dim-row .tbh-pt__genre { opacity: .35; }
.tbh-pt__size.is-dim-col,
.tbh-pt__col-size.is-dim-col { opacity: .55; }

/* 十字ハイライト（hover時） */
.tbh-pt__cell.is-hover-col:not(.is-dimmed),
.tbh-pt__row.is-hover-row .tbh-pt__cell:not(.is-dimmed) {
  background: linear-gradient(180deg, #fffae8 0%, #fff 100%);
}
.tbh-pt__row.is-hover-row .tbh-pt__genre {
  background: #f5e9ba;
  box-shadow: inset 4px 0 0 var(--tbh-main);
}
.tbh-pt__size.is-hover-col {
  background: linear-gradient(180deg, #5c4720 0%, #2b2418 100%);
  position: relative;
}
.tbh-pt__size.is-hover-col::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--tbh-main);
}

/* 枚数別パネル：is-row-dimで薄表示 */
.tbh-pt__brow { transition: opacity .25s; }
.tbh-pt__brow.is-row-dim { opacity: .18; }
.tbh-pt__brow.is-row-dim:hover { opacity: .5; }

/* ----------- 枚数別価格表 ----------- */
.tbh-pt--bulk {
  min-width: 760px;
}
.tbh-pt--bulk thead th {
  font-size: .82em;
  letter-spacing: .04em;
  line-height: 1.4;
}
.tbh-pt__taxnote {
  font-size: .8em;
  opacity: .7;
  font-weight: 400;
  display: block;
}
.tbh-pt__bulk-size {
  background: linear-gradient(180deg, #4a3a18 0%, #2b2418 100%);
  color: #f7e2a3;
  text-align: center !important;
  vertical-align: middle !important;
  white-space: nowrap;
  padding: 14px 16px !important;
  font-family: "Noto Serif JP", serif;
  font-size: 1em !important;
  border-right: 2px solid var(--tbh-main);
  border-bottom: 1px solid #5a4820;
}
.tbh-pt__bulk-size small {
  display: block;
  font-size: .72em;
  margin-top: 4px;
  opacity: .8;
  font-weight: 400;
}
.tbh-pt__bulk-sizelabel {
  font-size: 1.15em;
  font-weight: 600;
}
.tbh-pt__bulk-grade {
  text-align: center !important;
  vertical-align: middle !important;
  background: #fdfaee;
  border-right: 2px solid var(--tbh-border);
  padding: 8px 10px !important;
  white-space: nowrap;
}
.tbh-pt--bulk thead th.tbh-pt__bulk-grade {
  background: linear-gradient(180deg, #4a3a18 0%, #2b2418 100%);
}
.tbh-pt--bulk thead th.tbh-pt__bulk-size {
  background: linear-gradient(180deg, #4a3a18 0%, #2b2418 100%);
}
.tbh-pt__brow--first .tbh-pt__bulk-grade,
.tbh-pt__brow--first .tbh-pt__cell {
  border-top: 2px solid var(--tbh-main);
}
.tbh-pt__brow:hover .tbh-pt__bulk-grade { background: #faf2d6; }
.tbh-pt__brow:hover .tbh-pt__cell { background: #fff8e0; }

.tbh-pt__cell--sub {
  font-family: "Noto Serif JP", serif;
  font-size: 1em;
  color: var(--tbh-text);
  padding: 14px 10px;
  background: #fff;
  text-align: center;
}
.tbh-pt__cell--sub .tbh-pt__yen {
  font-size: .8em;
  color: var(--tbh-muted);
  margin-right: 1px;
}

/* グレード別 行強調（枚数別） */
.tbh-pt__brow--a .tbh-pt__cell:not(.tbh-pt__cell--empty) { background: linear-gradient(180deg, #fffbf0 0%, #fff 100%); }
.tbh-pt__brow--d .tbh-pt__cell:not(.tbh-pt__cell--empty) { background: linear-gradient(180deg, #f6f9f6 0%, #fff 100%); }
.tbh-pt__brow--e .tbh-pt__cell:not(.tbh-pt__cell--empty) { background: linear-gradient(180deg, #f6f8fb 0%, #fff 100%); }

/* ----------- legend (説明カード) ----------- */
.tbh-pt-legend {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0 0 16px;
}
@media (max-width: 900px) { .tbh-pt-legend { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tbh-pt-legend { grid-template-columns: 1fr; } }

.tbh-pt-legend__card {
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: 8px;
  padding: 12px 14px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.tbh-pt-legend__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.tbh-pt-legend__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
}
.tbh-pt-legend__card--a::before { background: linear-gradient(180deg, #d8b25e, #a67c1f); }
.tbh-pt-legend__card--b::before { background: linear-gradient(180deg, #c89a52, #8e6624); }
.tbh-pt-legend__card--c::before { background: linear-gradient(180deg, #a98556, #6e5230); }
.tbh-pt-legend__card--d::before { background: linear-gradient(180deg, #7ba185, #4a7058); }
.tbh-pt-legend__card--e::before { background: linear-gradient(180deg, #6f93af, #3d5c79); }

.tbh-pt-legend__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95em;
  color: var(--tbh-text);
  margin: 0 0 6px;
  padding-left: 8px;
}
.tbh-pt-legend__head .tbh-pt__badge { width: 24px; height: 24px; font-size: .88em; }
.tbh-pt-legend__desc {
  margin: 0;
  font-size: .82em;
  line-height: 1.65;
  color: #5a5042;
  padding-left: 8px;
}

.tbh-pricetable__sub {
  font-size: .85em;
  color: var(--tbh-muted);
  text-align: center;
  margin: 0;
  letter-spacing: .04em;
}

/* 折りたたみ式 凡例 */
.tbh-pt-legendbox {
  margin: 0 0 20px;
  border: 1px solid var(--tbh-border);
  border-radius: 8px;
  background: rgba(255,255,255,.65);
  overflow: hidden;
}
.tbh-pt-legendbox[open] .tbh-pt-legendbox__arrow { transform: rotate(180deg); }
.tbh-pt-legendbox__summary {
  cursor: pointer;
  list-style: none;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9em;
  color: var(--tbh-main);
  font-weight: 500;
  letter-spacing: .06em;
  transition: background .2s;
}
.tbh-pt-legendbox__summary::-webkit-details-marker { display: none; }
.tbh-pt-legendbox__summary:hover { background: #faf6e8; }
.tbh-pt-legendbox__icon { font-size: 1.1em; opacity: .8; }
.tbh-pt-legendbox__arrow {
  margin-left: auto;
  transition: transform .25s;
  color: var(--tbh-main);
}
.tbh-pt-legendbox__list {
  list-style: none;
  margin: 0;
  padding: 12px 18px 16px;
  border-top: 1px dashed var(--tbh-border);
  background: #fffefa;
  font-size: .88em;
  line-height: 2;
  color: #5a5042;
}
.tbh-pt-legendbox__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tbh-pt-legendbox__list .tbh-pt__badge {
  width: 22px; height: 22px; font-size: .8em;
}
.tbh-pt-legendbox__list strong {
  color: var(--tbh-text);
  font-weight: 600;
}

@media (max-width: 700px) {
  .tbh-pricetable { padding: 22px 14px 18px; }
  .tbh-pricetable__heading { font-size: 1.4em; letter-spacing: .18em; }
  .tbh-pt__price { padding: 12px 6px; }
  .tbh-pt__num { font-size: 1.05em; }
  .tbh-pt__label { font-size: .88em; margin-left: 6px; }
  .tbh-pt__genre { padding: 10px 10px; }
}

/* ===================================================================
   モバイル用 価格表カード
   =================================================================== */
/* PC（>700px）ではモバイル用要素を確実に隠す */
.tbh-ptcards,
.tbh-ptbulk-mobile { display: none !important; }

@media (max-width: 700px) {
  /* PC用テーブルを隠す */
  .tbh-pricetable__wrap { display: none !important; }
  /* モバイル用を表示 */
  .tbh-ptcards { display: flex !important; flex-direction: column; gap: 14px; margin: 0 0 20px; }
  .tbh-ptbulk-mobile { display: block !important; margin: 0 0 16px; }
}

/* --- 種類別カード --- */
.tbh-ptcard {
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: opacity .25s, transform .15s;
}
.tbh-ptcard.is-hidden { display: none; }
.tbh-ptcard__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #fdf6dc 0%, #faedba 100%);
  border-bottom: 1px solid var(--tbh-border);
  position: relative;
}
.tbh-ptcard__head::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}
.tbh-ptcard--a .tbh-ptcard__head::before { background: linear-gradient(180deg, #d8b25e, #a67c1f); }
.tbh-ptcard--b .tbh-ptcard__head::before { background: linear-gradient(180deg, #c89a52, #8e6624); }
.tbh-ptcard--c .tbh-ptcard__head::before { background: linear-gradient(180deg, #a98556, #6e5230); }
.tbh-ptcard--d .tbh-ptcard__head::before { background: linear-gradient(180deg, #7ba185, #4a7058); }
.tbh-ptcard--e .tbh-ptcard__head::before { background: linear-gradient(180deg, #6f93af, #3d5c79); }

.tbh-ptcard__name {
  font-family: "Shippori Mincho", serif;
  font-size: 1.05em;
  font-weight: 600;
  color: var(--tbh-text);
  letter-spacing: .04em;
}
.tbh-ptcard__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #f0e7c8;
}
.tbh-ptcard__item {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--tbh-text);
  transition: background .2s, opacity .2s;
  min-height: 44px;
}
.tbh-ptcard__item:hover {
  background: linear-gradient(180deg, #fff8e0 0%, #fdf3c0 100%);
  opacity: 1;
}
.tbh-ptcard__item.is-dimmed { opacity: .25; }
.tbh-ptcard__item--empty { color: #aaa; pointer-events: none; background: #fafaf5; }

.tbh-ptcard__size {
  font-family: "Noto Serif JP", serif;
  font-size: .95em;
  color: var(--tbh-muted);
  letter-spacing: .04em;
}
.tbh-ptcard__price {
  font-family: "Noto Serif JP", serif;
  font-size: 1.15em;
  font-weight: 700;
  color: var(--tbh-accent);
  letter-spacing: .02em;
}
.tbh-ptcard__price .tbh-pt__yen { font-size: .75em; color: var(--tbh-muted); margin-right: 1px; }

/* --- 枚数別 モバイル（アコーディオン） --- */
.tbh-ptbulk-mobile__block {
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: 10px;
  margin: 0 0 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.tbh-ptbulk-mobile__block.is-hidden { display: none; }
.tbh-ptbulk-mobile__block[open] .tbh-ptbulk-mobile__arrow { transform: rotate(180deg); }
.tbh-ptbulk-mobile__summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: linear-gradient(180deg, #4a3a18 0%, #2b2418 100%);
  color: #f7e2a3;
  transition: background .2s;
}
.tbh-ptbulk-mobile__summary::-webkit-details-marker { display: none; }
.tbh-ptbulk-mobile__summary:hover { background: linear-gradient(180deg, #5a4720 0%, #3a3020 100%); }
.tbh-ptbulk-mobile__size {
  font-family: "Shippori Mincho", serif;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: .06em;
}
.tbh-ptbulk-mobile__width {
  font-size: .8em;
  opacity: .75;
  flex: 1;
}
.tbh-ptbulk-mobile__arrow {
  font-size: 1em;
  transition: transform .25s;
  color: #f7e2a3;
}
.tbh-ptbulk-mobile__body { padding: 0; }
.tbh-ptbulk-mobile__row {
  padding: 12px 16px;
  border-top: 1px solid #f0e7c8;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
}
.tbh-ptbulk-mobile__row.is-hidden { display: none; }
.tbh-ptbulk-mobile__row:first-child { border-top: 0; }
.tbh-ptbulk-mobile__rowhead {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tbh-ptbulk-mobile__genrename {
  font-family: "Shippori Mincho", serif;
  font-size: .92em;
  color: var(--tbh-text);
}
.tbh-ptbulk-mobile__main {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3em;
  font-weight: 700;
  color: var(--tbh-accent);
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(175,140,15,.06);
  transition: background .2s;
  white-space: nowrap;
}
.tbh-ptbulk-mobile__main:hover {
  background: var(--tbh-main);
  color: #fff;
  opacity: 1;
}
.tbh-ptbulk-mobile__main:hover .tbh-pt__yen { color: rgba(255,255,255,.7); }
.tbh-ptbulk-mobile__main small { font-size: .55em; opacity: .7; margin-left: 3px; font-weight: 400; }
.tbh-ptbulk-mobile__main--empty { background: transparent; color: #aaa; }
.tbh-ptbulk-mobile__list {
  grid-column: 1 / -1;
  list-style: none;
  margin: 4px 0 0;
  padding: 8px 12px;
  background: #fdfaee;
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 10px;
  font-size: .85em;
}
.tbh-ptbulk-mobile__list li {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
.tbh-ptbulk-mobile__list li span:first-child {
  color: var(--tbh-muted);
  font-size: .9em;
}
.tbh-ptbulk-mobile__list .tbh-pt__yen {
  font-size: .8em;
  color: var(--tbh-muted);
}

/* ===================================================================
   絞り込みフィルター
   =================================================================== */
.tbh-filter {
  background: #faf6e8;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
  padding: 18px 22px;
  margin: 0 0 32px;
}
.tbh-filter__row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.tbh-filter label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95em;
}
.tbh-filter select {
  padding: 8px 12px;
  border: 1px solid var(--tbh-border);
  border-radius: 6px;
  background: #fff;
  font-size: .95em;
  min-width: 160px;
  color: var(--tbh-text);
}

/* ===================================================================
   ボタン
   =================================================================== */
.tbh-btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--tbh-main);
  color: #fff !important;
  border: 1px solid var(--tbh-main);
  border-radius: 6px;
  cursor: pointer;
  font-size: .95em;
  font-weight: 600;
  transition: background .2s, color .2s, transform .15s;
  letter-spacing: .05em;
  text-decoration: none;
  text-align: center;
}
.tbh-btn:hover { background: var(--tbh-accent); border-color: var(--tbh-accent); transform: translateY(-1px); opacity: 1; }
.tbh-btn--ghost {
  background: transparent;
  color: var(--tbh-main) !important;
  border: 1px solid var(--tbh-main);
}
.tbh-btn--ghost:hover { background: var(--tbh-main); color: #fff !important; }
.tbh-btn--big { padding: 14px 36px; font-size: 1.05em; }
.tbh-btn--block { display: block; width: 100%; }

/* ===================================================================
   商品グリッド
   =================================================================== */
.tbh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 0 40px;
}
@media (max-width: 900px) { .tbh-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 560px) { .tbh-grid { grid-template-columns: 1fr; } }

.tbh-card {
  background: var(--tbh-card-bg);
  border: 1px solid #e8dfc1;
  border-radius: var(--tbh-radius);
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  display: flex;
  flex-direction: column;
}
.tbh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(175,140,15,.22), 0 2px 6px rgba(0,0,0,.06);
  border-color: var(--tbh-main);
}
.tbh-card__link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.tbh-card__thumb {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: #f5efe1;
  overflow: hidden;
}
.tbh-card__thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.tbh-card:hover .tbh-card__thumb img { transform: scale(1.04); }
.tbh-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--tbh-main);
  color: #fff;
  padding: 4px 12px;
  font-size: .78em;
  border-radius: 4px;
  letter-spacing: .08em;
  z-index: 2;
}
.tbh-card__body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tbh-card__sku { font-size: .75em; color: #999; letter-spacing: .1em; margin-bottom: 4px; }
.tbh-card__name { font-size: 1.05em; margin: 0 0 10px; font-weight: 600; line-height: 1.4; }
.tbh-card__spec { list-style: none; margin: 0 0 12px; padding: 0; font-size: .85em; color: #666; }
.tbh-card__spec li { margin: 0 0 3px; }
.tbh-card__spec strong { color: var(--tbh-main); font-weight: 500; }
.tbh-card__price {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--tbh-accent);
  margin: 8px 0 12px;
  letter-spacing: .03em;
}
.tbh-card__unit { font-size: .65em; color: #888; font-weight: 400; margin-left: 4px; }
.tbh-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 0 0 14px;
}
.tbh-tag {
  font-size: .75em;
  background: rgba(175,140,15,.10);
  color: var(--tbh-main);
  padding: 3px 9px;
  border-radius: 12px;
}
.tbh-card__more {
  margin-top: auto;
  color: var(--tbh-main);
  font-size: .9em;
  font-weight: 500;
  padding-top: 10px;
  border-top: 1px dashed var(--tbh-border);
  text-align: right;
}

/* ===================================================================
   ページネーション
   =================================================================== */
.tbh-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.tbh-pagination a, .tbh-pagination span {
  display: inline-block;
  min-width: 38px;
  padding: 8px 12px;
  text-align: center;
  border: 1px solid var(--tbh-border);
  border-radius: 4px;
  background: #fff;
  color: var(--tbh-text);
  text-decoration: none;
  font-size: .9em;
  transition: all .2s;
}
.tbh-pagination a:hover, .tbh-pagination .is-current {
  background: var(--tbh-main);
  color: #fff !important;
  border-color: var(--tbh-main);
}

/* ===================================================================
   空表示
   =================================================================== */
.tbh-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--tbh-muted);
  background: #fff;
  border: 1px dashed var(--tbh-border);
  border-radius: var(--tbh-radius);
}

/* ===================================================================
   詳細ページ
   =================================================================== */
.tbh-breadcrumb {
  font-size: .85em;
  color: #888;
  margin: 0 0 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.tbh-breadcrumb a { color: var(--tbh-main); }

.tbh-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 0 40px;
  align-items: start;
}
@media (max-width: 800px) { .tbh-detail-grid { grid-template-columns: 1fr; gap: 24px; } }

.tbh-detail__thumb {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
  overflow: hidden;
}
.tbh-detail__thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
}
.tbh-detail__genre { margin: 0 0 12px; }
.tbh-detail__title {
  font-size: 1.8em;
  margin: 0 0 12px;
  color: var(--tbh-text);
  line-height: 1.4;
  border-bottom: 2px solid var(--tbh-main);
  padding-bottom: 12px;
}
.tbh-detail__sku { color: #888; font-size: .9em; margin: 0 0 12px; letter-spacing: .05em; }
.tbh-detail__price {
  font-size: 1.7em;
  font-weight: 700;
  color: var(--tbh-accent);
  margin: 8px 0 22px;
  letter-spacing: .03em;
}
.tbh-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 22px;
  font-size: .95em;
}
.tbh-spec-table tr { border-bottom: 1px solid var(--tbh-border); }
.tbh-spec-table th, .tbh-spec-table td {
  text-align: left; padding: 12px 10px; vertical-align: top;
}
.tbh-spec-table th {
  width: 32%;
  background: #fdfaee;
  color: var(--tbh-main);
  font-weight: 500;
  font-size: .9em;
  letter-spacing: .05em;
}

.tbh-section-heading {
  font-size: 1.2em;
  color: var(--tbh-main);
  margin: 30px 0 16px;
  padding: 0 0 8px 14px;
  border-left: 4px solid var(--tbh-main);
  border-bottom: 1px solid var(--tbh-border);
  line-height: 1.3;
}
.tbh-desc-body { font-size: 1em; line-height: 1.9; }
.tbh-desc-body p { margin: 0 0 1em; }
.tbh-features { list-style: none; padding: 0; margin: 0; }
.tbh-features li {
  padding: 8px 0 8px 28px;
  border-bottom: 1px dotted var(--tbh-border);
  position: relative;
  line-height: 1.7;
}
.tbh-features li::before {
  content: "🪷";
  position: absolute;
  left: 4px; top: 8px;
  font-size: .9em;
}

.tbh-cta-row {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

/* ===================================================================
   注文案内（電話/FAX/メール）
   =================================================================== */
.tbh-orderinfo {
  margin: 50px 0 30px;
  padding: 36px 28px;
  background: linear-gradient(180deg, #faf4dd 0%, #fdfcf7 100%);
  border: 2px solid var(--tbh-main);
  border-radius: var(--tbh-radius);
}
.tbh-orderinfo__heading {
  text-align: center;
  color: var(--tbh-main);
  font-size: 1.3em;
  margin: 0 0 14px;
  letter-spacing: .04em;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .tbh-orderinfo { padding: 24px 16px; }
  .tbh-orderinfo__heading { font-size: 1.1em; letter-spacing: 0; }
}
.tbh-orderinfo__note {
  text-align: center;
  background: #fff8df;
  border-left: 4px solid var(--tbh-accent);
  padding: 14px 18px;
  margin: 0 0 24px;
  font-size: .95em;
  color: #5a4710;
  border-radius: 4px;
}
.tbh-orderinfo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 24px;
}
@media (max-width: 700px) { .tbh-orderinfo__grid { grid-template-columns: 1fr; } }
.tbh-orderinfo__card {
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
  padding: 22px 16px 18px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.tbh-orderinfo__card:hover { transform: translateY(-3px); box-shadow: 0 4px 16px rgba(175,140,15,.15); }
.tbh-orderinfo__icon { font-size: 2.2em; margin-bottom: 4px; line-height: 1; }
.tbh-orderinfo__label { font-size: .8em; color: var(--tbh-main); letter-spacing: .15em; font-weight: 600; }
.tbh-orderinfo__value { font-size: 1.4em; font-weight: 700; margin: 4px 0; word-break: break-all; }
a.tbh-orderinfo__value { color: var(--tbh-accent); }
.tbh-orderinfo__sub { font-size: .78em; color: #888; line-height: 1.4; }

/* ===================================================================
   フォーム
   =================================================================== */
.tbh-form {
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
  padding: 28px 24px;
  margin: 0 0 40px;
}
.tbh-form__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px dotted var(--tbh-border);
}
@media (max-width: 700px) {
  .tbh-form__row { grid-template-columns: 1fr; gap: 6px; }
}
.tbh-form__label {
  font-weight: 600;
  color: var(--tbh-text);
  padding-top: 8px;
}
.tbh-form__label .req {
  display: inline-block;
  background: var(--tbh-accent);
  color: #fff;
  font-size: .7em;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 8px;
  letter-spacing: .05em;
  vertical-align: middle;
}
.tbh-form__input,
.tbh-form__textarea,
.tbh-form__select {
  width: 100%;
  padding: 10px 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
  color: var(--tbh-text);
  transition: border-color .2s, box-shadow .2s;
}
.tbh-form__input:focus,
.tbh-form__textarea:focus,
.tbh-form__select:focus {
  outline: none;
  border-color: var(--tbh-main);
  box-shadow: 0 0 0 3px rgba(175,140,15,.15);
}
.tbh-form__hint { font-size: .85em; color: #888; margin: 4px 0 0; }
.tbh-form__error {
  font-size: .9em;
  color: var(--tbh-accent);
  margin: 6px 0 0;
}
.tbh-form__buttons {
  margin: 24px 0 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.tbh-summary {
  background: #faf6e8;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
  padding: 20px 24px;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: center;
}
@media (max-width: 560px) { .tbh-summary { grid-template-columns: 80px 1fr; gap: 12px; } }
.tbh-summary__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--tbh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tbh-summary__thumb img { width: 80%; height: 80%; object-fit: contain; }
.tbh-summary__name { font-weight: 700; margin: 0 0 4px; }
.tbh-summary__sku { font-size: .85em; color: #888; margin: 0 0 4px; }
.tbh-summary__price { color: var(--tbh-accent); font-weight: 700; }

/* ===================================================================
   メッセージ
   =================================================================== */
.tbh-alert {
  padding: 14px 18px;
  border-radius: 6px;
  margin: 0 0 20px;
  font-size: .95em;
  border-left: 4px solid;
}
.tbh-alert--error { background: #fff0ef; border-color: var(--tbh-accent); color: #802513; }
.tbh-alert--success { background: #f0f7e8; border-color: #6f9a3e; color: #3d5d1d; }

/* ===================================================================
   サンクスページ
   =================================================================== */
.tbh-thanks {
  text-align: center;
  padding: 60px 20px;
}
.tbh-thanks__icon { font-size: 3.6em; margin-bottom: 16px; }
.tbh-thanks__title {
  font-size: 1.6em;
  color: var(--tbh-main);
  margin: 0 0 18px;
}
.tbh-thanks__no {
  display: inline-block;
  background: #fff;
  border: 1px dashed var(--tbh-main);
  border-radius: 6px;
  padding: 10px 18px;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 1.1em;
  margin: 0 0 20px;
  color: var(--tbh-accent);
  font-weight: 700;
}
.tbh-thanks__lead { max-width: 640px; margin: 0 auto 26px; color: #555; line-height: 1.9; }

/* ===================================================================
   フッター
   =================================================================== */
.tbh-footer {
  background: #2b2a26;
  color: #f5efe1;
  margin-top: 40px;
}
.tbh-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 36px 24px 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}
@media (max-width: 700px) { .tbh-footer__inner { grid-template-columns: 1fr; } }

/* スリム版フッター（会社情報ブロックを省いた表示） */
.tbh-footer--slim .tbh-footer__inner {
  grid-template-columns: 1fr;
  padding: 22px 24px 18px;
  gap: 10px;
}
.tbh-footer--slim .tbh-footer__nav {
  grid-column: auto;
  border-top: none;
  padding-top: 0;
  justify-content: center;
}
.tbh-footer--slim .tbh-footer__meta {
  border-top: 1px solid #4a4842;
  padding-top: 12px;
  justify-content: center;
}
.tbh-footer__brand { line-height: 1.7; }
.tbh-footer__company { margin: 0 0 6px; font-size: 1.1em; font-weight: 700; color: #f7e2a3; letter-spacing: .04em; }
.tbh-footer__address { margin: 0; font-size: .9em; color: #ccc; }
.tbh-footer__contact { font-size: .92em; line-height: 1.9; }
.tbh-footer__contact a { color: #f7e2a3; }
.tbh-footer__hours { color: #aaa; }
.tbh-footer__nav {
  grid-column: 1 / -1;
  border-top: 1px solid #4a4842;
  padding-top: 14px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: .9em;
}
.tbh-footer__nav a {
  color: #f7e2a3;
  display: inline-block;
  padding: 2px 0;
  transition: opacity .2s;
  border-bottom: 1px solid transparent;
}
.tbh-footer__nav a:hover { opacity: 1; border-bottom-color: #c9b676; }
.tbh-footer__meta {
  grid-column: 1 / -1;
  padding-top: 6px;
  font-size: .8em;
  color: #888;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.tbh-footer__version a { color: #c9b676; }

/* ===================================================================
   管理画面
   =================================================================== */
.tbh-admin body, body.tbh-admin { background: #f5f5f3; }
.tbh-adminhead {
  background: #2b2a26;
  color: #fff;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.tbh-adminhead__title { font-size: 1.1em; color: #f7e2a3; }
.tbh-adminhead__nav a {
  display: inline-block;
  padding: 6px 14px;
  color: #fff;
  border-radius: 4px;
  font-size: .9em;
  margin-left: 4px;
}
.tbh-adminhead__nav a.is-current,
.tbh-adminhead__nav a:hover { background: rgba(247,226,163,.18); opacity: 1; }

.tbh-admin-main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 30px 24px 60px;
}
.tbh-admin-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 24px;
  margin: 0 0 24px;
}
.tbh-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: .92em;
}
.tbh-table th, .tbh-table td {
  border-bottom: 1px solid #ececec;
  padding: 10px 8px;
  vertical-align: top;
  text-align: left;
}
.tbh-table th { background: #faf6e8; color: var(--tbh-main); font-weight: 600; }
.tbh-table tr:hover td { background: #fdfaee; }
.tbh-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: .8em;
  background: #ddd;
  color: #333;
}
.tbh-status--new { background: #ffe6b3; color: #6c4e00; }
.tbh-status--contacted { background: #ffd5b3; color: #7a3a00; }
.tbh-status--shipped { background: #c9e2a8; color: #345400; }
.tbh-status--done { background: #b9d4d9; color: #284e57; }
.tbh-status--cancel { background: #e2c0c0; color: #6b1e1e; }
.tbh-status--test { background: #d8d4f1; color: #3a3170; }

.tbh-login {
  max-width: 420px;
  margin: 80px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  padding: 36px 28px;
}
.tbh-login h1 {
  text-align: center;
  font-size: 1.3em;
  color: var(--tbh-main);
  margin: 0 0 24px;
  letter-spacing: .08em;
}
/* ===================================================================
   トップページ（LP風） home.php
   画像主体・購入意欲を高めるランディングデザイン
   =================================================================== */

/* メインコンテナを破って全幅表示する共通設定 */
body.page-home .tbh-container {
  max-width: none;
  padding: 0;
}
body.page-home .tbh-main {
  background: var(--tbh-bg);
}

/* ---- 共通ボタン（LP用・大きめ） ---- */
.tbh-lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.02em;
  letter-spacing: .12em;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform .2s ease, background .2s, color .2s, box-shadow .25s, border-color .2s;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.tbh-lp-btn--sm { padding: 12px 24px; font-size: .95em; }
.tbh-lp-btn__arrow { transition: transform .2s; font-weight: 400; }
.tbh-lp-btn:hover { transform: translateY(-2px); opacity: 1; }
.tbh-lp-btn:hover .tbh-lp-btn__arrow { transform: translateX(4px); }

.tbh-lp-btn--primary {
  background: linear-gradient(135deg, var(--tbh-main) 0%, var(--tbh-main-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(175,140,15,.35);
}
.tbh-lp-btn--primary:hover {
  box-shadow: 0 10px 28px rgba(175,140,15,.45);
}
.tbh-lp-btn--ghost {
  background: transparent;
  color: var(--tbh-main);
  border-color: var(--tbh-main);
}
.tbh-lp-btn--ghost:hover {
  background: var(--tbh-main);
  color: #fff;
}
.tbh-lp-btn--white {
  background: #fff;
  color: var(--tbh-main-dark);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.tbh-lp-btn--white:hover {
  background: var(--tbh-main);
  color: #fff;
}
.tbh-lp-btn--white-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.85);
}
.tbh-lp-btn--white-ghost:hover {
  background: rgba(255,255,255,.15);
}

/* レスポンシブ補助 */
.tbh-lp-br-sp { display: none; }
@media (max-width: 640px) {
  .tbh-lp-br-sp { display: inline; }
}

/* ===================================================================
   1. ヒーロー
   =================================================================== */
.tbh-lp-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.tbh-lp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  z-index: 1;
  transform: scale(1.05);
  animation: tbhHeroZoom 18s ease-out forwards;
}
@keyframes tbhHeroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}
.tbh-lp-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,12,0,.32) 0%, rgba(20,12,0,.58) 65%, rgba(20,12,0,.78) 100%);
  z-index: 2;
}
.tbh-lp-hero__inner {
  position: relative;
  z-index: 3;
  max-width: 920px;
  padding: 80px 24px 100px;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.tbh-lp-hero__company {
  margin: 0 0 18px;
  font-size: .92em;
  letter-spacing: .4em;
  color: rgba(255,255,255,.95);
  padding-bottom: 14px;
  position: relative;
  display: inline-block;
}
.tbh-lp-hero__company::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,.7);
}
.tbh-lp-hero__title {
  margin: 0 0 24px;
  line-height: 1.25;
  font-weight: 600;
}
.tbh-lp-hero__title-sub {
  display: block;
  font-size: 1.05em;
  letter-spacing: .35em;
  color: #f5e9c2;
  margin-bottom: 8px;
}
.tbh-lp-hero__title-main {
  display: block;
  font-size: 4em;
  letter-spacing: .35em;
  color: #fff;
}
.tbh-lp-hero__lead {
  margin: 0 0 36px;
  font-size: 1.12em;
  line-height: 1.95;
  color: rgba(255,255,255,.95);
}
.tbh-lp-hero__ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tbh-lp-hero__ctas .tbh-lp-btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.85);
}
.tbh-lp-hero__ctas .tbh-lp-btn--ghost:hover {
  background: #fff;
  color: var(--tbh-main-dark);
  border-color: #fff;
}
.tbh-lp-hero__meta {
  font-size: .92em;
  letter-spacing: .1em;
  color: rgba(255,255,255,.88);
}
.tbh-lp-hero__meta-sep {
  margin: 0 12px;
  opacity: .55;
}
.tbh-lp-hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 14px;
  z-index: 3;
}
.tbh-lp-hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  margin: 8px auto 0;
  animation: tbhScroll 1.7s ease-in-out infinite;
}
@keyframes tbhScroll {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 760px) {
  .tbh-lp-hero { min-height: 70vh; }
  .tbh-lp-hero__inner { padding: 60px 18px 86px; }
  .tbh-lp-hero__title-main { font-size: 2.6em; letter-spacing: .28em; }
  .tbh-lp-hero__lead { font-size: 1em; }
  .tbh-lp-hero__lead br { display: none; }
  .tbh-lp-hero__meta { font-size: .82em; }
  .tbh-lp-hero__meta-sep { margin: 0 8px; }
}
@media (max-width: 420px) {
  .tbh-lp-hero__title-main { font-size: 2.1em; }
  .tbh-lp-hero__meta br { display: none; }
}

/* ===================================================================
   セクション共通（見出し）
   =================================================================== */
.tbh-lp-why,
.tbh-lp-featured,
.tbh-lp-order {
  max-width: 1140px;
  margin: 0 auto;
  padding: 90px 24px;
}
.tbh-lp-why__eyebrow,
.tbh-lp-about__eyebrow,
.tbh-lp-grades__eyebrow,
.tbh-lp-featured__eyebrow,
.tbh-lp-order__eyebrow {
  margin: 0 0 10px;
  font-size: .82em;
  letter-spacing: .4em;
  color: var(--tbh-main);
  font-weight: 600;
}
.tbh-lp-why__title,
.tbh-lp-about__title,
.tbh-lp-grades__title,
.tbh-lp-featured__title,
.tbh-lp-order__title {
  margin: 0 0 36px;
  font-size: 2.1em;
  letter-spacing: .15em;
  color: var(--tbh-text);
  font-weight: 600;
  line-height: 1.4;
}

/* ===================================================================
   2. 強み（3カード）
   =================================================================== */
.tbh-lp-why__head { text-align: center; margin-bottom: 48px; }
.tbh-lp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tbh-lp-why__card {
  position: relative;
  padding: 44px 28px 32px;
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
  box-shadow: var(--tbh-shadow);
  transition: transform .25s, box-shadow .25s;
}
.tbh-lp-why__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}
.tbh-lp-why__num {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--tbh-main) 0%, var(--tbh-accent) 100%);
  border-radius: 50%;
  letter-spacing: .05em;
  box-shadow: 0 4px 14px rgba(176,61,16,.3);
}
.tbh-lp-why__h {
  margin: 0 0 14px;
  font-size: 1.18em;
  color: var(--tbh-main-dark);
  letter-spacing: .1em;
  line-height: 1.6;
}
.tbh-lp-why__p {
  margin: 0;
  font-size: .95em;
  line-height: 1.9;
  color: #555;
}

@media (max-width: 880px) {
  .tbh-lp-why__grid { grid-template-columns: 1fr; gap: 36px; }
  .tbh-lp-why { padding: 70px 18px; }
}

/* ===================================================================
   3. About（職人 × 木材）
   =================================================================== */
.tbh-lp-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(180deg, #fdfaee 0%, #fbf3d8 100%);
  position: relative;
  overflow: hidden;
}
.tbh-lp-about__media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.tbh-lp-about__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tbh-lp-about__body {
  padding: 90px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tbh-lp-about__title {
  margin: 0 0 22px;
  font-size: 2em;
  color: var(--tbh-main-dark);
  line-height: 1.55;
}
.tbh-lp-about__lead {
  margin: 0 0 24px;
  font-size: 1em;
  line-height: 2;
  color: #4a3a16;
}
.tbh-lp-about__points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.tbh-lp-about__points li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: .98em;
  color: #4a3a16;
}
.tbh-lp-about__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tbh-main);
  color: #fff;
  border-radius: 50%;
  font-size: .8em;
  font-weight: 700;
}
.tbh-lp-about__points li + li {
  border-top: 1px dashed #e0d6b0;
}

@media (max-width: 880px) {
  .tbh-lp-about { grid-template-columns: 1fr; }
  .tbh-lp-about__media { min-height: 280px; }
  .tbh-lp-about__body { padding: 50px 24px; }
  .tbh-lp-about__title { font-size: 1.6em; }
}

/* ===================================================================
   4. グレード（5種類）
   =================================================================== */
.tbh-lp-grades {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 24px;
  isolation: isolate;
  overflow: hidden;
}
.tbh-lp-grades__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,253,245,.92) 0%, rgba(251,243,216,.92) 100%);
  z-index: 1;
}
.tbh-lp-grades__inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.tbh-lp-grades__title { margin-bottom: 44px; }
.tbh-lp-grades__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.tbh-lp-grade {
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
  padding: 28px 16px 24px;
  text-align: center;
  box-shadow: var(--tbh-shadow);
  transition: transform .25s, box-shadow .25s;
}
.tbh-lp-grade:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}
.tbh-lp-grade__rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--tbh-main) 0%, var(--tbh-main-dark) 100%);
  color: #fff;
  font-size: 1.55em;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(175,140,15,.3);
}
.tbh-lp-grade__name {
  margin: 0 0 6px;
  font-size: 1em;
  font-weight: 600;
  color: var(--tbh-text);
  line-height: 1.5;
}
.tbh-lp-grade__sub {
  margin: 0;
  font-size: .85em;
  color: var(--tbh-muted);
}

@media (max-width: 880px) {
  .tbh-lp-grades { background-attachment: scroll; padding: 70px 18px; }
  .tbh-lp-grades__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 460px) {
  .tbh-lp-grades__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   5. 注目商品
   =================================================================== */
.tbh-lp-featured { background: #fff; }
.tbh-lp-featured__head { text-align: center; margin-bottom: 44px; }
.tbh-lp-featured__sub {
  margin: 14px 0 0;
  font-size: .98em;
  color: var(--tbh-muted);
  line-height: 1.85;
}
.tbh-lp-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tbh-lp-pcard {
  display: block;
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
  overflow: hidden;
  box-shadow: var(--tbh-shadow);
  transition: transform .25s, box-shadow .25s;
  color: inherit;
  text-decoration: none;
}
.tbh-lp-pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.tbh-lp-pcard__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f5efd9;
  overflow: hidden;
}
.tbh-lp-pcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.tbh-lp-pcard:hover .tbh-lp-pcard__thumb img {
  transform: scale(1.05);
}
.tbh-lp-pcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: rgba(175,140,15,.92);
  color: #fff;
  font-size: .75em;
  letter-spacing: .08em;
  border-radius: 999px;
}
.tbh-lp-pcard__body { padding: 18px 20px 22px; }
.tbh-lp-pcard__name {
  margin: 0 0 10px;
  font-size: 1.05em;
  color: var(--tbh-text);
  font-weight: 600;
  line-height: 1.5;
}
.tbh-lp-pcard__meta {
  display: flex;
  gap: 10px;
  font-size: .8em;
  color: var(--tbh-muted);
  margin-bottom: 10px;
}
.tbh-lp-pcard__sku {
  padding: 2px 10px;
  background: #f5efd9;
  border-radius: 4px;
  color: var(--tbh-main-dark);
}
.tbh-lp-pcard__price {
  font-size: 1.35em;
  font-weight: 700;
  color: var(--tbh-accent);
}
.tbh-lp-pcard__unit {
  font-size: .6em;
  color: var(--tbh-muted);
  font-weight: 400;
  margin-left: 4px;
}

@media (max-width: 880px) {
  .tbh-lp-featured__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .tbh-lp-featured { padding: 70px 18px; }
}
@media (max-width: 520px) {
  .tbh-lp-featured__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   6. ご注文方法（3つ）
   =================================================================== */
.tbh-lp-order {
  background: linear-gradient(180deg, #fbf7ec 0%, #f5e9c2 100%);
  max-width: none;
  padding: 90px 24px;
}
.tbh-lp-order__head { text-align: center; margin-bottom: 44px; }
.tbh-lp-order__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tbh-lp-omethod {
  display: block;
  padding: 36px 24px 32px;
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
  box-shadow: var(--tbh-shadow);
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tbh-lp-omethod:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  border-color: var(--tbh-main);
}
.tbh-lp-omethod__icon {
  font-size: 2.6em;
  margin-bottom: 12px;
  line-height: 1;
}
.tbh-lp-omethod__title {
  margin: 0 0 14px;
  font-size: 1.18em;
  color: var(--tbh-main-dark);
  letter-spacing: .12em;
}
.tbh-lp-omethod__value {
  margin: 0 0 4px;
  font-size: 1.65em;
  font-weight: 700;
  color: var(--tbh-text);
  letter-spacing: .03em;
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
}
a.tbh-lp-omethod .tbh-lp-omethod__value { color: var(--tbh-main); }
.tbh-lp-omethod__value--mail {
  font-size: 1.08em;
  word-break: break-all;
}
.tbh-lp-omethod__sub {
  margin: 0 0 16px;
  font-size: .85em;
  color: var(--tbh-muted);
}
.tbh-lp-omethod__desc {
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed #e0d6b0;
  font-size: .9em;
  line-height: 1.8;
  color: #555;
  text-align: left;
}

@media (max-width: 880px) {
  .tbh-lp-order__grid { grid-template-columns: 1fr; }
  .tbh-lp-order { padding: 70px 18px; }
}

/* ===================================================================
   7. 最終CTA
   =================================================================== */
.tbh-lp-cta {
  position: relative;
  padding: 100px 24px;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.tbh-lp-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(140,55,12,.78) 0%, rgba(60,40,10,.88) 100%);
  z-index: 1;
}
.tbh-lp-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.tbh-lp-cta__title {
  margin: 0 0 18px;
  font-size: 2.1em;
  letter-spacing: .15em;
  font-weight: 600;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.tbh-lp-cta__lead {
  margin: 0 0 36px;
  font-size: 1.05em;
  line-height: 1.95;
  color: rgba(255,255,255,.95);
}
.tbh-lp-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .tbh-lp-cta { padding: 70px 18px; }
  .tbh-lp-cta__title { font-size: 1.5em; letter-spacing: .1em; }
  .tbh-lp-cta__lead { font-size: .95em; }
}

/* ===================================================================
   ★ 商品紹介ページ（5カード一覧） product.php
   =================================================================== */
.tbh-prod-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0 0 40px;
}
.tbh-prod-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
  box-shadow: var(--tbh-shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.tbh-prod-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.tbh-prod-card__thumb {
  position: relative;
  display: block;
  background: #f5efd9;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tbh-prod-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.tbh-prod-card__thumb:hover img { transform: scale(1.05); }
.tbh-prod-card__rank {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tbh-main) 0%, var(--tbh-main-dark) 100%);
  color: #fff;
  font-size: 1.3em;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(175,140,15,.4);
}
.tbh-prod-card__body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
}
.tbh-prod-card__head { margin-bottom: 14px; }
.tbh-prod-card__title {
  margin: 0 0 4px;
  font-size: 1.5em;
  color: var(--tbh-main-dark);
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tbh-prod-card__code {
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: var(--tbh-main);
  color: #fff;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  font-size: .8em;
  font-weight: 700;
  letter-spacing: 0;
}
.tbh-prod-card__subtitle {
  margin: 0;
  color: var(--tbh-accent);
  font-size: .95em;
  letter-spacing: .05em;
}
.tbh-prod-card__material {
  margin: 0 0 12px;
  font-size: .92em;
  color: #555;
}
.tbh-prod-card__label {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 10px;
  background: #f5efd9;
  color: var(--tbh-main-dark);
  border-radius: 4px;
  font-size: .82em;
}
.tbh-prod-card__desc {
  margin: 0 0 12px;
  font-size: .95em;
  line-height: 1.85;
  color: #444;
}
.tbh-prod-card__feats {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tbh-prod-card__feats li {
  padding: 4px 12px;
  background: #fdf8e8;
  border: 1px solid var(--tbh-border);
  border-radius: 999px;
  font-size: .82em;
  color: var(--tbh-main-dark);
}
.tbh-prod-card__sizebar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 10px 12px;
  background: #fbf7ec;
  border-radius: 6px;
}
.tbh-prod-card__sizebar-label {
  font-size: .82em;
  color: var(--tbh-main-dark);
  font-weight: 600;
}
.tbh-prod-card__sizechip {
  padding: 3px 10px;
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: 4px;
  font-size: .85em;
  color: var(--tbh-text);
}
.tbh-prod-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed #e0d6b0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tbh-prod-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.tbh-prod-card__price-label {
  font-size: .85em;
  color: var(--tbh-muted);
}
.tbh-prod-card__price-value {
  font-size: 1.45em;
  font-weight: 700;
  color: var(--tbh-accent);
}
.tbh-prod-card__price-unit {
  font-size: .82em;
  color: var(--tbh-muted);
}

.tbh-prod-help {
  margin: 40px 0;
  padding: 28px 24px;
  background: #fbf7ec;
  border-radius: var(--tbh-radius);
  text-align: center;
}
.tbh-prod-help__buttons {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .tbh-prod-card { grid-template-columns: 1fr; }
  .tbh-prod-card__thumb { aspect-ratio: 16/10; }
  .tbh-prod-card__body { padding: 20px 18px; }
  .tbh-prod-card__title { font-size: 1.3em; }
  .tbh-prod-card__footer { flex-direction: column; align-items: stretch; }
  .tbh-prod-card__footer .tbh-btn { width: 100%; text-align: center; }
}

/* ===================================================================
   ★ 商品詳細ページ（寸法選択付き） detail.php
   =================================================================== */
.tbh-detail2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  margin: 0 0 40px;
}
.tbh-detail2__media { display: flex; min-width: 0; }
.tbh-detail2__thumb {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #f5efd9;
  border-radius: var(--tbh-radius);
  overflow: hidden;
  aspect-ratio: 1/1;
}
.tbh-detail2__thumb img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.tbh-detail2__rank {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tbh-main) 0%, var(--tbh-main-dark) 100%);
  color: #fff;
  font-size: 1.6em;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(175,140,15,.4);
}
.tbh-detail2__info { display: flex; flex-direction: column; }
.tbh-detail2__eyebrow {
  margin: 0 0 4px;
  font-size: .85em;
  color: var(--tbh-main);
  letter-spacing: .25em;
  font-weight: 600;
}
.tbh-detail2__title {
  margin: 0 0 6px;
  font-size: 1.9em;
  color: var(--tbh-main-dark);
  letter-spacing: .1em;
}
.tbh-detail2__subtitle {
  margin: 0 0 18px;
  color: var(--tbh-accent);
  font-size: 1em;
}
.tbh-detail2__material {
  margin: 0 0 14px;
  font-size: .95em;
}
.tbh-detail2__material span {
  display: inline-block;
  margin-right: 8px;
  padding: 3px 12px;
  background: #f5efd9;
  color: var(--tbh-main-dark);
  border-radius: 4px;
  font-size: .82em;
}
.tbh-detail2__desc {
  margin: 0 0 14px;
  font-size: .98em;
  line-height: 1.95;
  color: #444;
}
.tbh-detail2__feats {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tbh-detail2__feats li {
  padding: 5px 14px;
  background: #fdf8e8;
  border: 1px solid var(--tbh-border);
  border-radius: 999px;
  font-size: .88em;
  color: var(--tbh-main-dark);
}
.tbh-detail2__cta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tbh-detail2__cta .tbh-btn { width: 100%; text-align: center; }
.tbh-detail2__back { text-align: center; margin: 24px 0 0; }

/* ---- 寸法セレクタ ---- */
.tbh-sizesel {
  margin: 18px 0 0;
  padding: 20px 18px;
  background: #fbf7ec;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
}
.tbh-sizesel__label {
  margin: 0 0 12px;
  font-size: .95em;
  font-weight: 600;
  color: var(--tbh-main-dark);
}
.tbh-sizesel__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.tbh-sizesel__item { position: relative; cursor: pointer; }
.tbh-sizesel__item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tbh-sizesel__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px;
  background: #fff;
  border: 2px solid var(--tbh-border);
  border-radius: 6px;
  transition: all .2s;
}
.tbh-sizesel__item:hover .tbh-sizesel__chip {
  border-color: var(--tbh-main);
}
.tbh-sizesel__item.is-active .tbh-sizesel__chip {
  background: linear-gradient(180deg, var(--tbh-main) 0%, var(--tbh-main-dark) 100%);
  border-color: var(--tbh-main-dark);
  color: #fff;
}
.tbh-sizesel__item.is-active .tbh-sizesel__price { color: #fff; }
.tbh-sizesel__size {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 2px;
}
.tbh-sizesel__price {
  font-size: .82em;
  color: var(--tbh-accent);
  font-weight: 600;
}
.tbh-sizesel__selected {
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: 6px;
  padding: 14px 16px;
}
.tbh-sizesel__sel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: .92em;
}
.tbh-sizesel__sel-row + .tbh-sizesel__sel-row {
  border-top: 1px dashed #ececec;
}
.tbh-sizesel__sel-label { color: var(--tbh-muted); }
.tbh-sizesel__sel-value { color: var(--tbh-text); font-weight: 500; }
.tbh-sizesel__sel-row--price {
  padding-top: 10px;
  margin-top: 4px;
  border-top: 2px solid var(--tbh-border) !important;
}
.tbh-sizesel__sel-price {
  font-size: 1.6em;
  font-weight: 700;
  color: var(--tbh-accent);
}
.tbh-sizesel__sel-unit {
  font-size: .55em;
  color: var(--tbh-muted);
  font-weight: 400;
  margin-left: 4px;
}

/* 注文フォームの寸法切替バー */
.tbh-sizebar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 0 0 6px;
}
.tbh-sizebar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: 6px;
  text-decoration: none;
  color: var(--tbh-text);
  transition: all .2s;
}
.tbh-sizebar__item:hover { border-color: var(--tbh-main); opacity: 1; }
.tbh-sizebar__item.is-active {
  background: var(--tbh-main);
  border-color: var(--tbh-main-dark);
  color: #fff;
}
.tbh-sizebar__item.is-active .tbh-sizebar__price { color: #fff; }
.tbh-sizebar__size { font-weight: 700; font-size: .92em; }
.tbh-sizebar__price { font-size: .8em; color: var(--tbh-accent); }

@media (max-width: 880px) {
  .tbh-detail2 { grid-template-columns: 1fr; }
  .tbh-detail2__thumb { aspect-ratio: 4/3; }
}
@media (max-width: 540px) {
  .tbh-sizesel__grid { grid-template-columns: repeat(2, 1fr); }
  .tbh-sizebar { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================================================
   ★ 管理画面 拡張 — 商品リスト・価格グリッド
   =================================================================== */
.tbh-admin-h1 {
  margin: 0 0 24px;
  font-size: 1.5em;
  color: var(--tbh-main-dark);
  letter-spacing: .1em;
}
.tbh-admin-h2 {
  margin: 0 0 14px;
  font-size: 1.15em;
  color: var(--tbh-main-dark);
}
.tbh-admin-hint {
  font-size: .9em;
  color: #555;
  line-height: 1.85;
}

/* 商品一覧 */
.tbh-admin-prods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.tbh-admin-prod {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 14px;
  background: #fdfaee;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
  transition: box-shadow .2s;
}
.tbh-admin-prod:hover { box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.tbh-admin-prod__thumb {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  background: #f5efd9;
}
.tbh-admin-prod__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tbh-admin-prod__code {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tbh-main);
  color: #fff;
  font-size: .9em;
  font-weight: 700;
  border-radius: 50%;
}
.tbh-admin-prod__body { display: flex; flex-direction: column; }
.tbh-admin-prod__name {
  margin: 0 0 6px;
  font-size: 1.15em;
  color: var(--tbh-main-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tbh-admin-prod__rank {
  display: inline-flex;
  width: 26px;
  height: 26px;
  background: var(--tbh-main);
  color: #fff;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  font-size: .75em;
  font-weight: 700;
}
.tbh-admin-prod__sub {
  margin: 0 0 8px;
  color: var(--tbh-accent);
  font-size: .9em;
}
.tbh-admin-prod__meta {
  margin: 0 0 12px;
  font-size: .82em;
  color: #666;
  line-height: 1.8;
}
.tbh-admin-prod__actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* 画像プレビュー */
.tbh-imgpreview {
  margin: 0 0 10px;
  padding: 10px;
  background: #f5efd9;
  border-radius: 6px;
  max-width: 280px;
}
.tbh-imgpreview img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* 価格グリッド */
.tbh-pricegrid-wrap {
  overflow-x: auto;
  margin: 14px 0;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
}
.tbh-pricegrid {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.tbh-pricegrid th,
.tbh-pricegrid td {
  padding: 10px 8px;
  border: 1px solid #ececec;
  text-align: center;
  vertical-align: top;
}
.tbh-pricegrid__corner {
  background: var(--tbh-main-dark);
  color: #fff;
  position: sticky;
  left: 0;
  z-index: 2;
  white-space: nowrap;
}
.tbh-pricegrid__sizehead {
  background: #f5efd9;
  color: var(--tbh-main-dark);
  font-weight: 600;
  font-size: .9em;
}
.tbh-pricegrid__producthead {
  background: #fbf7ec;
  text-align: left;
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 180px;
}
.tbh-pricegrid__rank {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 6px;
  background: var(--tbh-main);
  color: #fff;
  border-radius: 4px;
  text-align: center;
  line-height: 26px;
  font-weight: 700;
  font-size: .8em;
}
.tbh-pricegrid__pname { font-size: .85em; color: var(--tbh-text); }
.tbh-pricegrid__cell { min-width: 110px; }
.tbh-pricegrid__inputwrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}
.tbh-pricegrid__yen { color: var(--tbh-muted); font-size: .9em; }
.tbh-pricegrid__input {
  width: 70px;
  padding: 6px 6px;
  border: 1px solid var(--tbh-border);
  border-radius: 4px;
  text-align: right;
  font-size: .95em;
  font-family: inherit;
}
.tbh-pricegrid__input:focus {
  outline: 2px solid var(--tbh-main);
  outline-offset: -1px;
}
.tbh-pricegrid__check {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: .78em;
  color: var(--tbh-muted);
  cursor: pointer;
}
.tbh-pricegrid__sku {
  margin: 4px 0 0;
  font-size: .72em;
  color: var(--tbh-muted);
  font-family: monospace;
}
.tbh-pricegrid__none { color: var(--tbh-muted); }

/* ===================================================================
   ★ レスポンシブ全面強化（スマホ < 760px）
   =================================================================== */
@media (max-width: 760px) {
  .tbh-container { padding: 24px 14px 60px; }

  /* ヘッダー */
  .tbh-header__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 14px;
  }
  .tbh-header__brand { justify-content: center; }
  .tbh-header__logo img { height: 40px; width: auto; }
  .tbh-header__nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .tbh-header__navlink { font-size: .9em; padding: 6px 10px; }

  /* ページ見出し */
  .tbh-pagehead__title { font-size: 1.7em; letter-spacing: .12em; }
  .tbh-pagehead__intro { font-size: .92em; line-height: 1.85; }
  .tbh-pagehead__intro br { display: none; }

  /* パンくず */
  .tbh-breadcrumb { font-size: .82em; padding: 8px 0; }

  /* 注文情報カードグリッド */
  .tbh-orderinfo__grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .tbh-orderinfo__card { padding: 14px; }

  /* フッター */
  .tbh-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left !important;
  }

  /* 注文サマリー */
  .tbh-summary {
    flex-direction: column !important;
    gap: 12px;
  }
  .tbh-summary__thumb {
    width: 100% !important;
    max-width: 200px;
    margin: 0 auto;
  }

  /* フォーム */
  .tbh-form__row {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }
  .tbh-form__label { font-size: .92em; }
  .tbh-form__input,
  .tbh-form__select,
  .tbh-form__textarea {
    font-size: 16px; /* iOS でズーム防止 */
  }
  .tbh-form__buttons {
    flex-direction: column;
    gap: 10px;
  }
  .tbh-form__buttons .tbh-btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .tbh-btn { padding: 10px 16px; font-size: .92em; }
  .tbh-btn--big { padding: 14px 20px; font-size: 1em; }
  .tbh-pagehead { margin: 0 0 20px; padding: 0 4px 18px; }
}

/* ===================================================================
   ★ 管理画面 スマホ対応
   =================================================================== */
@media (max-width: 760px) {
  .tbh-adminhead {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 14px;
  }
  .tbh-adminhead__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .tbh-adminhead__nav a {
    padding: 6px 10px;
    font-size: .85em;
  }
  .tbh-admin-prod {
    grid-template-columns: 100px 1fr;
    gap: 12px;
    padding: 10px;
  }
  .tbh-admin-prod__name { font-size: 1em; }
  .tbh-admin-card { padding: 16px 14px; }
  .tbh-admin-h1 { font-size: 1.3em; }
}

/* ===================================================================
   ★ Round 2 Fix — スマホでタップ領域を44px以上に
   =================================================================== */
@media (max-width: 760px) {
  /* ヘッダーナビ：高さ44px確保 */
  .tbh-header__navlink {
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    padding: 10px 12px !important;
  }
  /* フッターリンク：高さ44px確保 */
  .tbh-footer a,
  .tbh-footer__inner a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 4px;
  }
  /* 寸法セレクタの label を確実に44px以上に */
  .tbh-sizesel__item .tbh-sizesel__chip { min-height: 50px; }
  .tbh-sizebar__item { min-height: 50px; }
  /* CTAボタン全体的に大きめに */
  .tbh-btn { min-height: 44px; }
  .tbh-btn--big { min-height: 50px; }
}

/* ===================================================================
   ★ Round 1 Fix — スマホで小さすぎる文字を読みやすく
   =================================================================== */
@media (max-width: 760px) {
  /* 必須バッジを読みやすく */
  .req {
    font-size: 11px !important;
    padding: 3px 8px !important;
    letter-spacing: .05em;
  }
  /* 価格表のバッジ・¥マーク・単位を大きく */
  .tbh-pt__badge { font-size: 12px !important; min-width: 24px; }
  .tbh-pt__yen   { font-size: 13px !important; }
  .tbh-ptcard__price small,
  .tbh-pt__num + small,
  .tbh-ptcard__item .tbh-ptcard__size + .tbh-ptcard__price small,
  .tbh-pt-tail,
  small { font-size: 12px !important; }
  /* 注文方法タブのサブテキスト */
  .tbh-og3-tab__sub { font-size: 12px !important; }
  /* 価格表セル内の文字も少し大きく */
  .tbh-ptcard__size { font-size: 13px !important; }
  .tbh-ptcard__price { font-size: 16px !important; }
  /* バルク一覧のサイズ・幅小文字 */
  .tbh-ptbulk-mobile__width { font-size: 12px !important; }
  /* SKU等小さい文字も最低12pxに */
  .tbh-prod-card__price-unit,
  .tbh-prod-card__price-label,
  .tbh-prod-card__sizebar-label,
  .tbh-lp-pcard__unit,
  .tbh-summary__sku,
  .tbh-form__hint { font-size: 12px !important; }
}

/* ===================================================================
   ★ FAX注文書ダウンロードカード（order.php FAXタブ内）
   =================================================================== */
.tbh-og3-faxdl {
  background: #fff;
  border: 1px solid var(--tbh-border);
  border-radius: var(--tbh-radius);
  padding: 20px;
  margin: 14px 0;
}
.tbh-og3-faxdl__preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: #fbf7ec;
  border-radius: 6px;
  margin-bottom: 16px;
}
.tbh-og3-faxdl__icon {
  font-size: 2.4em;
  line-height: 1;
}
.tbh-og3-faxdl__name {
  margin: 0 0 4px;
  font-size: 1.05em;
  font-weight: 600;
  color: var(--tbh-main-dark);
}
.tbh-og3-faxdl__sub {
  margin: 0;
  font-size: .88em;
  color: var(--tbh-muted);
}
.tbh-og3-faxdl__buttons {
  margin-bottom: 10px;
}
.tbh-og3-faxdl .tbh-og3-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--tbh-main) 0%, var(--tbh-main-dark) 100%);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .08em;
  box-shadow: 0 4px 14px rgba(175,140,15,.3);
  transition: all .2s;
}
.tbh-og3-faxdl .tbh-og3-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(175,140,15,.4);
  opacity: 1;
}
@media (max-width: 540px) {
  .tbh-og3-faxdl { padding: 14px; }
  .tbh-og3-faxdl__preview { padding: 10px; gap: 10px; }
  .tbh-og3-faxdl__icon { font-size: 2em; }
  .tbh-og3-faxdl .tbh-og3-cta {
    display: block;
    text-align: center;
    width: 100%;
  }
}
