/* =========================================================
   HITSUJI GROUP 下層ページ
   （お品書き / 店舗ページ / お問い合わせ）

   トークン・共通パーツ・ヘッダー・フッターは base.css を参照。
   トップと同じ和×無骨のトンマナを、情報量の多いページ向けに展開する。
   ========================================================= */

/* =========================================================
   ページヒーロー（暗地・中央寄せ）
   ========================================================= */
.hgt-page {
  position: relative;
  background: var(--ink-hero);
  color: var(--cream2);
  /* 固定ヘッダー分を上に確保する */
  padding: calc(var(--header-h) + clamp(64px, 8vw, 104px)) 40px clamp(64px, 8vw, 96px);
  overflow: hidden;
}
.hgt-page__bg { position: absolute; inset: 0; opacity: .3; }
.hgt-page__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 11, 11, .82) 0%, rgba(16, 11, 11, .6) 55%, rgba(16, 11, 11, .9) 100%);
  pointer-events: none;
}
.hgt-page__inner { position: relative; text-align: center; }
.hgt-page__en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .34em;
  color: var(--brick);
  margin-bottom: 16px;
}
.hgt-page__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: .18em;
  line-height: 1.4;
  text-wrap: balance;
}
/* リード文は広い画面では1行に収める（44em だと数文字あふれて「ます。」だけが
   2行目に落ちてしまう）。狭い画面では自然に折り返し、auto-phrase 対応ブラウザでは
   文節の切れ目で折り返す。 */
.hgt-page__lead {
  max-width: 50em;
  margin: 22px auto 0;
  font-size: 14px;
  line-height: var(--body-lh);
  letter-spacing: .06em;
  color: rgba(242, 236, 226, .78);
  text-wrap: pretty;
  word-break: auto-phrase;
}

/* ---- パンくず ---- */
.hgt-crumbs { background: var(--ink-2); padding: 0 40px; border-top: 1px solid rgba(192, 86, 74, .14); }
.hgt-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px 0;
  list-style: none;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .16em;
  color: rgba(242, 236, 226, .5);
}
.hgt-crumb li { display: flex; align-items: center; gap: 10px; }
.hgt-crumb li + li::before { content: "／"; color: rgba(242, 236, 226, .28); }
.hgt-crumb a { transition: color .3s; }
.hgt-crumb a:hover { color: var(--brick); }
.hgt-crumb [aria-current="page"] { color: rgba(242, 236, 226, .82); }

/* =========================================================
   共通：小タグ / 注記 / 定義リスト / 本文リッチテキスト
   ========================================================= */
.hgt-tag {
  display: inline-block;
  font-family: var(--font-ja);
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: .14em;
  padding: .5em .7em;
  border: 1px solid rgba(26, 18, 16, .3);
  color: var(--body-gray);
  vertical-align: middle;
  white-space: nowrap;
}
.hgt-tag--red { border-color: var(--red); color: var(--red); }

.hgt-note {
  margin-top: 3em;
  font-size: 12px;
  line-height: 2;
  letter-spacing: .06em;
  color: var(--body-gray);
}

.hgt-deflist {
  display: grid;
  grid-template-columns: 6.5em 1fr;
  border-top: 1px solid var(--line-light);
  font-size: 13.5px;
  letter-spacing: .06em;
}
.hgt-deflist dt,
.hgt-deflist dd {
  margin: 0;
  padding: 1.05em .2em;
  border-bottom: 1px solid var(--line-light);
  line-height: 1.85;
}
.hgt-deflist dt { color: var(--red); }
.hgt-deflist dd { color: #4a3230; }
.hgt-deflist dd a { border-bottom: 1px solid var(--line-light); transition: color .3s; }
.hgt-deflist dd a:hover { color: var(--red); }

/* 固定ページ本文やフォームなど、任意のHTMLが入る領域の最低限の体裁 */
.hgt-richtext { font-size: 14.5px; line-height: var(--body-lh); letter-spacing: .05em; color: #4a3230; }
.hgt-richtext :where(h2, h3, h4) { font-family: var(--font-ja); font-weight: 700; color: var(--ink); letter-spacing: .1em; margin: 2em 0 .8em; }
.hgt-richtext :where(h2) { font-size: 24px; }
.hgt-richtext :where(h3) { font-size: 19px; }
.hgt-richtext :where(p) { margin-bottom: var(--para-gap); text-wrap: pretty; }
.hgt-richtext :where(a) { color: var(--red); border-bottom: 1px solid currentColor; }
.hgt-richtext :where(ul, ol) { margin: 0 0 var(--para-gap); padding-left: 1.4em; }
.hgt-richtext :where(li) { margin-bottom: .5em; }
.hgt-richtext :where(img) { max-width: 100%; height: auto; }

/* =========================================================
   お品書き（archive-menu.php）
   ========================================================= */
.hgt-menulist { padding: clamp(64px, 8vw, 96px) 40px var(--sec-pad); background: var(--paper); }

/* 店舗フィルタ */
.hgt-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-light);
}
.hgt-filter__label {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--body-gray);
  margin-right: 6px;
}
.hgt-filter a {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--ink);
  border: 1px solid rgba(26, 18, 16, .24);
  padding: 9px 20px;
  transition: background .3s, color .3s, border-color .3s;
}
.hgt-filter a:hover { border-color: var(--red); color: var(--red); }
.hgt-filter a.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream2); }

/* カテゴリ目次 */
.hgt-catnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 30px 0 clamp(48px, 6vw, 72px);
}
.hgt-catnav a {
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--body-gray);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
}
.hgt-catnav a:hover { color: var(--red); border-bottom-color: var(--red); }

/* カテゴリ章 */
.hgt-mcat { margin-bottom: clamp(52px, 7vw, 84px); }
.hgt-mcat__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 8px;
}
.hgt-mcat__en { font-family: var(--font-en); font-size: 12px; letter-spacing: .24em; color: var(--red); margin-bottom: 6px; }
.hgt-mcat__head h2 {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 27px);
  letter-spacing: .12em;
  color: var(--ink);
}
.hgt-mcat__count { font-family: var(--font-en); font-size: 12px; letter-spacing: .16em; color: var(--body-gray); white-space: nowrap; }

/* 品目リスト（2カラム・リーダー罫） */
.hgt-mitems { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(32px, 4vw, 56px); }
.hgt-mitem {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 1.05em 0;
  border-bottom: 1px solid var(--line-light);
}
.hgt-mitem__main { min-width: 0; }
.hgt-mitem__line { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.hgt-mitem__name {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--ink);
}
.hgt-mitem__desc {
  margin-top: .5em;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: var(--body-gray);
  text-wrap: pretty;
}
/* 品名と価格をつなぐ点線。伸縮はこの要素が受け持つ */
.hgt-mitem__lead {
  flex: 1 1 auto;
  min-width: 1.5em;
  align-self: baseline;
  border-bottom: 1px dotted rgba(26, 18, 16, .3);
  transform: translateY(-.32em);
}
.hgt-mitem__price {
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: .04em;
  color: var(--red);
  white-space: nowrap;
}
.hgt-mitem__price small { font-family: var(--font-ja); font-size: .68em; color: var(--body-gray); margin-left: .3em; letter-spacing: .08em; }

.hgt-menulist__empty { padding: 3em 0; text-align: center; font-size: 14px; letter-spacing: .08em; color: var(--body-gray); }
/* 店舗配下のお品書きページで、固定ページ本文に書いた補足 */
.hgt-menulist__text { margin-top: clamp(40px, 5vw, 60px); }
.hgt-menulist__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(40px, 5vw, 60px); }

/* 店舗ページに載せるお品書き。体裁はお品書きページと同じで、
   ヒーロー直下ではないぶん上下の余白と寄せ方だけ変える。 */
/* 店舗ページでは名物料理（明）の直後に来るため、明→明の連続にならないよう第2トーンにする。 */
.hgt-menulist--shop { padding-block: var(--sec-pad); border-top: 1px solid var(--line-light); background: var(--paper-2); }
.hgt-menulist--shop .hgt-sechead { margin-bottom: 8px; }
.hgt-menulist__lead {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 2;
  letter-spacing: .06em;
  color: var(--body-gray);
  text-wrap: pretty;
}
/* 目次は見出し直下なので中央寄せの見出しブロックに揃える。
   注記とボタンは品目リストに合わせて左寄せのまま＝お品書きページと同じ体裁。 */
.hgt-menulist--shop .hgt-catnav { justify-content: center; }

/* =========================================================
   お知らせ（home.php / archive.php / single.php）
   ========================================================= */
.hgt-newslist { padding: clamp(56px, 7vw, 88px) 40px var(--sec-pad); background: var(--paper); }
.hgt-newslist .hgt-filter { margin-bottom: 34px; }

/* ページ送り */
.hgt-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(40px, 5vw, 60px);
}
.hgt-pager .page-numbers {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--ink);
  border: 1px solid rgba(26, 18, 16, .24);
  transition: background .3s, color .3s, border-color .3s;
}
.hgt-pager a.page-numbers:hover { border-color: var(--red); color: var(--red); }
.hgt-pager .page-numbers.current { background: var(--ink); border-color: var(--ink); color: var(--cream2); }
.hgt-pager .page-numbers.dots { border-color: transparent; }

/* 記事 */
.hgt-page--article { padding-bottom: clamp(48px, 6vw, 72px); }
.hgt-article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.hgt-article__meta .date { font-family: var(--font-en); font-weight: 500; font-size: 14px; letter-spacing: .14em; color: var(--brick); }
.hgt-article__meta .tag {
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--rose);
  border: 1px solid rgba(231, 181, 172, .5);
  padding: 5px 12px;
}
/* 記事タイトルは長さが読めないので、
   - balance（均等割り）は使わない：短い2行に割られると意図的な改行のように見えてしまう
   - 入るところまで1行で流し、収まらないときだけ自然に折り返す
   - auto-phrase 対応ブラウザでは文節単位で折り返す（未対応環境は既定の折り返し）
   字送りと最大サイズは、よくある長さの見出しが1行に収まるところまで詰めている。 */
.hgt-article__title {
  font-size: clamp(23px, 3.2vw, 36px);
  letter-spacing: .06em;
  line-height: 1.6;
  text-wrap: pretty;
  word-break: auto-phrase;
}
.hgt-article__thumb { margin-bottom: clamp(32px, 4vw, 48px); }
.hgt-article__thumb img { width: 100%; height: auto; display: block; }

.hgt-article__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: clamp(56px, 7vw, 80px);
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
}
.hgt-article__nav-side a { display: block; transition: color .3s; }
.hgt-article__nav-side a:hover { color: var(--red); }
.hgt-article__nav-side--right { text-align: right; }
.hgt-article__nav .dir { display: block; font-size: 11px; letter-spacing: .14em; color: var(--red); margin-bottom: 6px; }
.hgt-article__nav .ttl { display: block; font-size: 13px; line-height: 1.7; letter-spacing: .05em; color: var(--ink); }
.hgt-article__nav-index {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--ink);
  border: 1px solid rgba(26, 18, 16, .24);
  padding: 12px 22px;
  white-space: nowrap;
  transition: background .3s, color .3s;
}
.hgt-article__nav-index:hover { background: var(--ink); color: var(--cream2); }

/* =========================================================
   採用（template-recruit.php）
   ========================================================= */
.hgt-recruit-msg { padding: var(--sec-pad) 40px; background: var(--paper); }
.hgt-recruit-msg__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: .12em;
  color: var(--ink);
  margin-bottom: 36px;
  text-wrap: balance;
}
.hgt-recruit-msg__body {
  font-size: 15px;
  line-height: var(--body-lh);
  letter-spacing: .05em;
  color: #4a3230;
  margin-bottom: var(--para-gap);
  text-wrap: pretty;
}
.hgt-recruit-msg__body:last-child { margin-bottom: 0; }

/* 募集要項 */
.hgt-jobs { padding: var(--sec-pad) 40px; background: var(--ink); color: var(--cream2); }
.hgt-jobs__list { display: grid; gap: 24px; }
.hgt-job {
  border: 1px solid rgba(192, 86, 74, .22);
  background: var(--card-dark);
  padding: clamp(28px, 4vw, 40px);
}
.hgt-job__head { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hgt-job__head h3 {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: clamp(19px, 2.4vw, 24px);
  letter-spacing: .1em;
}
.hgt-tag--rose { border-color: rgba(231, 181, 172, .45); color: var(--rose); }
.hgt-job__desc {
  font-size: 13.5px;
  line-height: var(--body-lh);
  letter-spacing: .06em;
  color: rgba(242, 236, 226, .78);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.hgt-job__spec {
  display: grid;
  grid-template-columns: 6em 1fr;
  border-top: 1px solid rgba(192, 86, 74, .18);
  font-size: 13px;
  letter-spacing: .06em;
}
.hgt-job__spec dt,
.hgt-job__spec dd {
  margin: 0;
  padding: .95em .2em;
  border-bottom: 1px solid rgba(192, 86, 74, .18);
  line-height: 1.8;
}
.hgt-job__spec dt { color: var(--brick); }
.hgt-job__spec dd { color: rgba(242, 236, 226, .88); }
.hgt-job__btn { margin-top: 26px; }
.hgt-jobs__empty {
  padding: 3em 2em;
  text-align: center;
  font-size: 14px;
  line-height: var(--body-lh);
  letter-spacing: .08em;
  color: rgba(242, 236, 226, .7);
  border: 1px solid rgba(192, 86, 74, .22);
}

/* 応募の流れ */
.hgt-steps { padding: var(--sec-pad) 40px; background: var(--paper); }
.hgt-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hgt-step { border-top: 2px solid var(--ink); padding-top: 22px; }
.hgt-step__no { font-family: var(--font-en); font-weight: 500; font-size: 13px; letter-spacing: .24em; color: var(--red); margin-bottom: 12px; }
.hgt-step h3 { font-family: var(--font-ja); font-weight: 700; font-size: 20px; letter-spacing: .1em; color: var(--ink); }
.hgt-step__en { font-family: var(--font-en); font-size: 12px; letter-spacing: .18em; color: var(--body-gray); margin: 4px 0 14px; }
.hgt-step p { font-size: 13px; line-height: 2; letter-spacing: .04em; color: var(--body-gray); text-wrap: pretty; }

/* =========================================================
   店舗ページ（template-parts/shop-detail.php）
   セクション順は トップに準拠：
   ヒーロー → コンセプト → おすすめ → お知らせ/ブログ → お客様の声
   → Instagram → 店舗情報 → 予約CTA
   ========================================================= */

/* ---- 店舗コンセプト（ヒーロー直下） ---- */
.hgt-sconcept { padding: var(--sec-pad) 40px; background: var(--paper); }
.hgt-sconcept__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(48px, 6vw, 76px);
  align-items: center;
}
.hgt-sconcept__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.5;
  letter-spacing: .08em;
  color: var(--ink);
  margin-bottom: 40px;
  text-wrap: balance;
}
.hgt-sconcept__body {
  font-size: 15px;
  line-height: var(--body-lh);
  letter-spacing: .05em;
  color: #4a3230;
  margin-bottom: var(--para-gap);
  text-wrap: pretty;
}
.hgt-sconcept__body:last-of-type { margin-bottom: 0; }
.hgt-sconcept__links { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 36px; }

/* 縦（4:5）と正方形を段違いに。トップのCONCEPT（2:3を2枚）とは組み方を変えて、
   同じ見た目の繰り返しにならないようにしている。 */
.hgt-sconcept__imgs { position: relative; padding-bottom: 52px; }
.hgt-sconcept__main {
  width: 78%;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 50px rgba(61, 20, 32, .22);
}
.hgt-sconcept__sub {
  position: absolute;
  left: 0; bottom: 0;
  width: 42%;
  aspect-ratio: 1 / 1;
  box-shadow: 0 18px 40px rgba(61, 20, 32, .28);
}

/* この店のおすすめ */
.hgt-picks { padding: var(--sec-pad) 40px; background: var(--ink); color: var(--cream2); }
/* 件数が3の倍数とは限らないため、罫線はグリッドの隙間ではなくカード側の輪郭で描く
   （隙間を色地で見せる方式だと、末尾の空セルが色の板として残ってしまう） */
.hgt-picks__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.hgt-pick {
  background: var(--ink);
  box-shadow: 0 0 0 1px rgba(192, 86, 74, .2);
  transition: background .4s;
}
.hgt-pick:hover { background: var(--hover-dark); }
.hgt-pick__img { aspect-ratio: 4 / 3; }
.hgt-pick__img .hgt-cover { transition: transform .6s ease; }
.hgt-pick:hover .hgt-pick__img .hgt-cover { transform: scale(1.04); }
.hgt-pick__body { padding: 26px 28px 30px; }
.hgt-pick__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.hgt-pick__row h3 { font-family: var(--font-ja); font-weight: 700; font-size: 17px; letter-spacing: .06em; }
.hgt-pick__price { font-family: var(--font-en); font-weight: 500; font-size: 16px; color: var(--brick); white-space: nowrap; }
.hgt-pick__price small { font-size: .68em; margin-left: .25em; opacity: .8; }
.hgt-pick .hgt-tag { margin-top: 12px; border-color: rgba(231, 181, 172, .45); color: var(--rose); }
.hgt-pick__desc { margin-top: 14px; font-size: 12.5px; line-height: 2; letter-spacing: .04em; color: rgba(242, 236, 226, .72); text-wrap: pretty; }
.hgt-picks__more { margin-top: 40px; text-align: center; }
.hgt-picks .hgt-textlink { color: var(--brick); border-color: var(--brick); }
.hgt-picks .hgt-textlink:hover { color: var(--brick); }

/* ---- 店舗のお知らせ・ブログ ---- */
/* 直前のお品書きも明地なので、第2トーンにして切り替わりを出す
   （明→明が続くと1枚の長い面に見えてしまうため） */
/* お品書き（paper-2）の次に来るので、こちらは基準トーンに戻して明暗のリズムを保つ。 */
.hgt-topics { padding: var(--sec-pad) 40px; background: var(--paper); }
.hgt-topics .hgt-sechead h2 { font-size: clamp(24px, 3vw, 38px); }
.hgt-topics__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
.hgt-topics__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.hgt-topics__head h3 { display: flex; align-items: baseline; gap: 12px; }
.hgt-topics__head .en { font-family: var(--font-en); font-weight: 500; font-size: 17px; letter-spacing: .2em; color: var(--ink); }
.hgt-topics__head .ja { font-size: 12px; letter-spacing: .14em; color: var(--red); }
.hgt-topics__empty { padding: 32px 4px; font-size: 13px; letter-spacing: .06em; color: var(--body-gray); }

/* ブログは写真付きの横並びカード。お知らせ（.hgt-news__row）と情報量で差をつける */
.hgt-bpost {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line-light);
  transition: background .3s;
}
.hgt-bpost:hover { background: rgba(158, 43, 40, .05); color: inherit; }
.hgt-bpost__img { aspect-ratio: 4 / 3; }
.hgt-bpost__img .hgt-cover { transition: transform .6s ease; }
.hgt-bpost:hover .hgt-bpost__img .hgt-cover { transform: scale(1.05); }
.hgt-bpost__date { font-family: var(--font-en); font-weight: 500; font-size: 13px; letter-spacing: .1em; color: var(--body-gray); }
.hgt-bpost__title {
  margin: 6px 0 0;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .06em;
  color: var(--ink);
  text-wrap: pretty;
}
.hgt-bpost__excerpt { margin-top: 8px; font-size: 12.5px; line-height: 1.9; letter-spacing: .04em; color: var(--body-gray); text-wrap: pretty; }

/* ---- お客様の声 ---- */
.hgt-voices {
  position: relative;
  padding: var(--sec-pad) 40px;
  background: var(--wine);
  color: var(--cream2);
  overflow: hidden;
}
.hgt-voices .hgt-sechead { position: relative; }
.hgt-voices .hgt-sechead h2 { font-size: clamp(28px, 3.6vw, 44px); }
.hgt-voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.hgt-voice {
  background: rgba(242, 236, 226, .06);
  border: 1px solid rgba(231, 181, 172, .3);
  padding: 38px 32px;
}
.hgt-voice__stars { color: var(--rose); font-size: 15px; letter-spacing: .2em; margin-bottom: 18px; }
.hgt-voice p { font-size: 14px; line-height: var(--body-lh); letter-spacing: .05em; color: var(--cream2); margin-bottom: 24px; text-wrap: pretty; }
.hgt-voice__sig { font-size: 12px; letter-spacing: .1em; color: rgba(242, 236, 226, .6); }
.hgt-voice__sig a { border-bottom: 1px solid rgba(242, 236, 226, .3); transition: color .3s; }
.hgt-voice__sig a:hover { color: var(--rose); }
.hgt-voice__when { margin-left: 10px; opacity: .7; }

/* Googleクチコミの総合評価。ポリシー上、出典が分かる形で見せる */
.hgt-voices__score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
  position: relative;
}
.hgt-voices__num { font-family: var(--font-en); font-weight: 500; font-size: 34px; color: var(--cream2); line-height: 1; }
.hgt-voices__stars { color: var(--rose); font-size: 17px; letter-spacing: .12em; }
.hgt-voices__count { font-size: 12px; letter-spacing: .1em; color: rgba(242, 236, 226, .62); }
.hgt-voices__source { margin-top: 32px; text-align: center; position: relative; }
.hgt-voices__source .hgt-textlink { color: var(--rose); border-color: rgba(231, 181, 172, .5); }
.hgt-voices__source .hgt-textlink:hover { color: var(--rose); }

/* クチコミ連携プラグイン（Trustindex 等）のウィジェット差し込み口。
   プラグイン側のCSSに任せつつ、はみ出しだけ抑える。 */
.hgt-voices__embed { position: relative; }
.hgt-voices__embed :where(img, iframe) { max-width: 100%; }

/* ---- Instagram ---- */
.hgt-ig { padding: var(--sec-pad) 40px; background: var(--paper); }
.hgt-ig__handle {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--ink);
  margin-bottom: 6px;
}
.hgt-ig__ja { font-size: 13px; letter-spacing: .2em; color: var(--red); margin-bottom: 10px; }
.hgt-ig__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.hgt-ig__cell { aspect-ratio: 1 / 1; }

/* ---- よくある質問 ---- */
.hgt-faq { padding: var(--sec-pad) 40px; background: var(--paper-2); }
.hgt-faq__list { border-top: 1px solid var(--line-light); }
.hgt-faq__item { padding: 26px 4px; border-bottom: 1px solid var(--line-light); }
.hgt-faq__item dt {
  position: relative;
  padding-left: 1.8em;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .08em;
  color: var(--ink);
  text-wrap: pretty;
}
.hgt-faq__item dt::before {
  content: "Q";
  position: absolute;
  left: 0; top: -.05em;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 17px;
  color: var(--red);
}
.hgt-faq__item dd {
  margin: 12px 0 0;
  padding-left: 1.8em;
  position: relative;
  font-size: 13.5px;
  line-height: var(--body-lh);
  letter-spacing: .05em;
  color: #4a3230;
  text-wrap: pretty;
}
.hgt-faq__item dd::before {
  content: "A";
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 16px;
  color: var(--body-gray);
}

/* 固定ページ本文（任意の追記） */
.hgt-freetext { padding: var(--sec-pad) 40px; background: var(--paper); }

/* ---- 店舗情報 + 地図（ページ下部） ----
   トップの STORES と同じ暗地。明るいセクションが続いたあとを締めて、
   予約CTAへつなぐ。 */
.hgt-shop { padding: var(--sec-pad) 40px; background: var(--ink-2); color: var(--cream2); }
.hgt-shop__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.hgt-shop__h2 {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: .14em;
  color: var(--cream2);
  margin-bottom: 32px;
}
/* 定義リストは明地向けの配色なので、この暗地セクションでだけ反転させる */
.hgt-shop .hgt-deflist { border-top-color: rgba(242, 236, 226, .18); }
.hgt-shop .hgt-deflist dt,
.hgt-shop .hgt-deflist dd { border-bottom-color: rgba(242, 236, 226, .14); }
.hgt-shop .hgt-deflist dt { color: var(--brick); }
.hgt-shop .hgt-deflist dd { color: rgba(242, 236, 226, .84); }
.hgt-shop .hgt-deflist dd a { border-bottom-color: rgba(242, 236, 226, .3); }
.hgt-shop .hgt-deflist dd a:hover { color: var(--brick); }
.hgt-shop__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hgt-shop__map iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  display: block;
  filter: grayscale(.25) contrast(1.05) brightness(.94);
}

/* 予約CTA帯 */
/* 予約CTA。ワイン色のベタ塗りに店内・炭火の写真を薄く敷いて面をつくる。
   写真の上に文字が乗るので、スクリムで必ず沈めてから文字を置く。 */
.hgt-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 100px) 40px;
  background: var(--wine);
  color: var(--cream2);
}
.hgt-cta__bg { position: absolute; inset: 0; z-index: -2; opacity: .55; }
.hgt-cta__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* ワインの色味を保ったまま、中央（文字が乗る帯）を濃くする。
     写真を活かすため上下は薄く。採用セクション（front.css）と同じ配分。 */
  background: linear-gradient(180deg, rgba(110, 35, 39, .34) 0%, rgba(72, 20, 24, .58) 50%, rgba(110, 35, 39, .34) 100%);
  pointer-events: none;
}
.hgt-cta__inner { position: relative; text-align: center; }
.hgt-cta h2 {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 38px);
  letter-spacing: .14em;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hgt-cta p { font-size: 13px; line-height: 2; letter-spacing: .08em; color: rgba(242, 236, 226, .75); }
.hgt-cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }

/* =========================================================
   お問い合わせ（template-contact.php）
   ========================================================= */

/* ---- 「予約はここでは受け付けない」の告知ブロック ----
   問い合わせと予約が混ざると取りこぼしが出るため、フォームより先に・強めに出す。 */
.hgt-reserve-note { padding: clamp(56px, 7vw, 84px) 40px 0; background: var(--paper); }
.hgt-notice {
  border: 1px solid rgba(158, 43, 40, .35);
  border-left: 4px solid var(--red);
  background: rgba(158, 43, 40, .045);
  padding: clamp(28px, 4vw, 40px);
}
.hgt-notice__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.hgt-notice__mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
}
.hgt-notice__head h2 {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 23px);
  letter-spacing: .1em;
  color: var(--ink);
  text-wrap: balance;
}
.hgt-notice__body {
  font-size: 13.5px;
  line-height: var(--body-lh);
  letter-spacing: .06em;
  color: #4a3230;
  text-wrap: pretty;
}
.hgt-notice__body strong { color: var(--red); font-weight: 700; }
.hgt-notice__shops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(158, 43, 40, .2);
}
.hgt-notice__name {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  color: var(--ink);
  margin-bottom: 14px;
}
.hgt-notice__name span { font-size: 11px; letter-spacing: .18em; color: var(--body-gray); margin-left: 10px; font-weight: 400; }
.hgt-notice__btns { display: flex; flex-wrap: wrap; gap: 10px; }
.hgt-notice__btns a { flex: 1 1 auto; }

.hgt-contact { padding: clamp(56px, 7vw, 84px) 40px var(--sec-pad); background: var(--paper); }
.hgt-contact .hgt-sechead { text-align: left; margin-bottom: 34px; }
.hgt-contact .hgt-sechead h2 { font-size: clamp(24px, 3vw, 34px); }
.hgt-contact__note {
  padding: 2em;
  border: 1px solid var(--line-light);
  font-size: 13.5px;
  line-height: var(--body-lh);
  letter-spacing: .06em;
  color: var(--body-gray);
  text-wrap: pretty;
}
.hgt-contact__stores { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: clamp(40px, 5vw, 64px); }
.hgt-contact__store { border: 1px solid var(--line-light); padding: 34px 32px 36px; background: rgba(255, 255, 255, .4); }
.hgt-contact__en { font-family: var(--font-en); font-weight: 500; font-size: 12px; letter-spacing: .24em; color: var(--red); margin-bottom: 6px; }
.hgt-contact__store h3 { font-family: var(--font-ja); font-weight: 700; font-size: 22px; letter-spacing: .12em; color: var(--ink); }
.hgt-contact__addr { margin: 12px 0 18px; font-size: 12.5px; line-height: 1.9; letter-spacing: .05em; color: var(--body-gray); }

/* ---- Contact Form 7 等のフォーム要素 ---- */
.hgt-form { margin-bottom: 8px; }
.hgt-form :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="date"], input[type="number"], select, textarea) {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: #fbf8f3;
  border: 1px solid rgba(26, 18, 16, .24);
  border-radius: 0;
  padding: .85em 1em;
  transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none;
  appearance: none;
}
.hgt-form :where(input, select, textarea):focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(158, 43, 40, .12);
}
.hgt-form :where(label) { display: block; font-size: 13px; letter-spacing: .1em; color: var(--ink); margin-bottom: .5em; }
.hgt-form :where(textarea) { min-height: 11em; resize: vertical; }
.hgt-form :where(p) { margin-bottom: 1.6em; }
.hgt-form :where(input[type="submit"], button[type="submit"]) {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .18em;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 0;
  padding: 16px 48px;
  cursor: pointer;
  transition: transform .3s;
  -webkit-appearance: none;
  appearance: none;
}
.hgt-form :where(input[type="submit"]:hover, button[type="submit"]:hover) { transform: translateY(-2px); }
.hgt-form .wpcf7-not-valid-tip { font-size: 12px; color: var(--red); letter-spacing: .05em; margin-top: .4em; }
.hgt-form .wpcf7-response-output {
  margin: 1.6em 0 0;
  padding: 1em 1.2em;
  font-size: 13px;
  letter-spacing: .05em;
  border: 1px solid var(--line-light);
}

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 960px) {
  .hgt-page,
  .hgt-crumbs,
  .hgt-menulist,
  .hgt-newslist,
  .hgt-recruit-msg,
  .hgt-jobs,
  .hgt-steps,
  .hgt-sconcept,
  .hgt-shop,
  .hgt-picks,
  .hgt-topics,
  .hgt-faq,
  .hgt-voices,
  .hgt-ig,
  .hgt-freetext,
  .hgt-cta,
  .hgt-reserve-note,
  .hgt-contact { padding-inline: 24px; }

  .hgt-steps__grid { grid-template-columns: 1fr; gap: 24px; }

  .hgt-mitems { grid-template-columns: 1fr; }
  .hgt-shop__grid { grid-template-columns: 1fr; }
  .hgt-sconcept__grid { grid-template-columns: 1fr; gap: 56px; }
  /* width: 100% は必須（auto マージンのグリッドアイテムは stretch されず幅0に潰れる） */
  .hgt-sconcept__imgs { width: 100%; max-width: 520px; margin-inline: auto; }
  .hgt-topics__grid { grid-template-columns: 1fr; gap: clamp(44px, 6vw, 60px); }
  .hgt-picks__grid { grid-template-columns: 1fr 1fr; }
  .hgt-voices__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .hgt-ig__grid { grid-template-columns: repeat(3, 1fr); }
  .hgt-contact__stores { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hgt-page { padding-block: calc(var(--header-h) + 56px) 56px; }
  .hgt-deflist { grid-template-columns: 1fr; }
  .hgt-deflist dt { padding-bottom: 0; border-bottom: 0; }
  .hgt-deflist dd { padding-top: .35em; }
  .hgt-picks__grid { grid-template-columns: 1fr; }
  .hgt-bpost { grid-template-columns: 88px 1fr; gap: 14px; }
  .hgt-notice__shops { grid-template-columns: 1fr; gap: 24px; }
  .hgt-job__spec { grid-template-columns: 1fr; }
  .hgt-job__spec dt { padding-bottom: 0; border-bottom: 0; }
  .hgt-job__spec dd { padding-top: .35em; }
  /* 前後記事は上下に積み、一覧ボタンを最後に置く */
  .hgt-article__nav { grid-template-columns: 1fr; text-align: left; }
  .hgt-article__nav-side--right { text-align: left; }
  .hgt-article__nav-index { order: 3; justify-self: start; }
  .hgt-shop__cta a,
  .hgt-menulist__cta a,
  .hgt-notice__btns a,
  .hgt-cta__btns a { flex: 1 1 100%; }
  .hgt-mitem { flex-wrap: wrap; }
  .hgt-mitem__lead { display: none; }
  .hgt-mitem__price { margin-left: auto; }
}
