/* ==================================================================
   kitanote 2026 — リニューアル CSS
   正本: design-assets/mockups/relook-2026-06-19/new-G-zen-featC-carousel.html
   日本語＝Zen Kaku Gothic New / ラテン署名＝Cormorant Garamond
   ================================================================== */

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

:root {
	--bg:       #0E0C0A;
	--bg-soft:  #1A1612;
	--ink:      #FDFAF6;
	--ink-mid:  rgba(253,250,246,0.62);
	--ink-soft: rgba(253,250,246,0.4);
	--accent:   #C8A47A;     /* 黒地に映える温かい砂金色 */
	--accent-rd:#C0321E;     /* 朱赤アクセント（少量だけ） */
	--warm-dk:  #2A1C12;     /* portrait-text の深い茶 */
	--warm-mid: #9A6B3A;     /* cream 地で使う茶寄り砂金（cat-strip 用） */
	--cream:    #F4EFE6;     /* category strip の反転パネル */
	--rule:     rgba(253,250,246,0.18);

	/* ══════════════════════════════════════════════════════════════════
	   親しみスキン切替スイッチ   現在 = A案（端正・見出し Zen Kaku Gothic New）
	   ──────────────────────────────────────────────────────────────────
	   この 1 変数だけで「見出し・編集ボイス層」の書体を A ↔ B 切替（本文は
	   --sans のまま無傷）。B案（親しみ・丸ゴ）を再び試すときは右列の値へ。
	   ※2026-06-23 検証：B は認知の入口（見出し）には◎だが、記事本文の可読性・
	     情報の重みで劣ると判断し A に戻した。ロゴは星マーク入り SVG で skin 非依存。
	     変数        A案（現在・端正）                  B案（親しみ・丸ゴ）
	     --serif   'Zen Kaku Gothic New', sans-serif   'Zen Maru Gothic', sans-serif
	   ══════════════════════════════════════════════════════════════════ */
	/* 2026-07-20 商用書体へ刷新（丸明方向＝丸でつくった明朝）＝Adobe Fonts(kitId mna4bhz・JS埋込)。各 font-stack の2段目 = 解約時フォールバック(無料) */
	--serif:       "kinuta-maruminold-stdn", 'Shippori Mincho', serif;  /* 見出し・編集ボイス層＝砧 丸明オールド／解約時 Shippori Mincho */

	--sans:     "yu-gothic-pr6n", 'Zen Kaku Gothic New', sans-serif;  /* 本文＝游ゴシック体／解約時 Zen Kaku Gothic New */
	--cg:       'Cormorant Garamond', serif;  /* 欧文アクセント＝Cormorant Garamond（据え置き） */
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--sans);
	overflow-x: hidden;
}
img, video { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* SEO/A11y: 視覚的に隠す（サイト主題 H1 ＋ WP コアが吐く screen-reader-text。
   .screen-reader-text 未定義だと the_posts_pagination() の見出し「投稿のページ送り」等が裸で見える） */
.visually-hidden,
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* サムネ無しのフォールバック */
.kn-no-thumb { width: 100%; height: 100%; background: linear-gradient(135deg, var(--bg-soft), #241d16); }

/* ═══════════ HEADER ═══════════ */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	display: flex; align-items: center; justify-content: space-between;
	padding: 0 48px; height: 68px; background: transparent;
}
.site-header::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
	pointer-events: none;
}
.brand { display: flex; align-items: center; gap: 18px; position: relative; z-index: 1; }
/* ロゴ＝親の星マーク入り SVG（currentColor）。色は color で与える。 */
.site-logo { display: inline-flex; align-items: center; color: var(--ink); line-height: 1; }
.site-logo-img { height: 56px; width: auto; display: block; }
.header-tagline {
	font-family: var(--serif); font-weight: 400; font-size: 12px; letter-spacing: .08em;
	color: rgba(255,255,255,0.72); padding-left: 18px;
	border-left: 1px solid rgba(255,255,255,0.28); white-space: nowrap;
}
.site-nav { display: flex; gap: 30px; align-items: center; position: relative; z-index: 1; }
.site-nav a { display: flex; flex-direction: column; gap: 3px; transition: color 0.2s; }
.site-nav .nav-jp {
	font-family: var(--sans); font-size: 12px; font-weight: 500;
	letter-spacing: .08em; color: rgba(255,255,255,0.9); line-height: 1.2; transition: color 0.2s;
}
.site-nav .nav-en {
	font-family: var(--sans); font-size: 9px; font-weight: 500;
	letter-spacing: .2em; text-transform: uppercase; color: var(--accent); line-height: 1;
}
.site-nav a:hover .nav-jp { color: var(--accent); }
.site-nav a.nav-single .nav-jp { font-size: 11px; letter-spacing: .12em; }

/* ハンバーガー（モバイル） */
.hamburger { display: none; position: relative; z-index: 1; background: none; border: none; cursor: pointer;
	width: 30px; height: 22px; padding: 0; }
.hamburger span { display: block; width: 100%; height: 1.5px; background: var(--ink); margin: 5px 0; transition: .3s; }
.mobile-nav { display: none; }

/* ═══════════ HERO（カルーセル） ═══════════ */
.hero {
	position: relative; width: 100%; height: 72vh;
	min-height: 520px; max-height: 760px; overflow: hidden;
}
.hero-img { position: absolute; inset: 0; }
.hero-img img, .hero-img video {
	object-position: center 38%;
	transform: scale(1.04);
	filter: contrast(1.06) saturate(.88) brightness(.94);
}
.hero-gradient {
	position: absolute; inset: 0;
	background:
		linear-gradient(to top, rgba(14,12,10,0.92) 0%, rgba(14,12,10,0.55) 35%, rgba(14,12,10,0.18) 60%, transparent 88%),
		linear-gradient(to right, rgba(14,12,10,0.5) 0%, transparent 58%);
}
.hero-content {
	position: absolute; bottom: 48px; left: 56px; right: 56px; z-index: 2;
	display: grid; grid-template-columns: 1fr; gap: 48px; align-items: end;
	text-shadow: 0 1px 14px rgba(0,0,0,0.5), 0 0 2px rgba(0,0,0,0.4);
}
.hero-tag {
	font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.2em;
	color: #EAD3AE; margin-bottom: 16px; text-transform: uppercase; font-weight: 600;
	display: flex; align-items: center; gap: 12px;
	text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 0 2px rgba(0,0,0,0.65);
}
.hero-tag::before { content: ''; width: 32px; height: 1px; background: #EAD3AE; box-shadow: 0 0 3px rgba(0,0,0,0.6); }
.hero-title {
	font-family: var(--serif); font-weight: 500;
	font-size: clamp(40px, 5vw, 66px); line-height: 1.18;
	letter-spacing: .01em; color: var(--ink); max-width: 760px; margin-bottom: 22px;
}
.hero-title a { color: inherit; }
.hero-title em {
	font-style: normal; font-weight: 500; font-family: var(--serif); color: var(--accent);
}
.hero-meta { display: flex; align-items: center; gap: 26px; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.hero-byline {
	font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.hero-byline strong { color: var(--accent); font-weight: 500; }
.hero-read {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--cg); font-size: 14px; font-style: italic; color: var(--ink);
	border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 3px;
	transition: color 0.2s, border-color 0.2s;
}
.hero-read:hover { color: var(--accent); border-color: var(--accent); }

/* カルーセル機構 */
.hero.carousel { isolation: isolate; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s ease; z-index: 1; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide .hero-img img { transform: scale(1.04); transition: transform 7.5s ease-out; }
.hero-slide.is-active .hero-img img { transform: scale(1.12); }

.hero-ui { position: absolute; left: 0; right: 0; bottom: 24px; z-index: 6;
	display: flex; align-items: center; justify-content: center; gap: 16px; }
.hero-counter { font-family: var(--cg); font-size: 13px; letter-spacing: .16em; color: rgba(255,255,255,0.8); white-space: nowrap; }
.hero-counter .cur { color: var(--accent); }
.hero-dots { display: flex; align-items: center; gap: 12px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
	background: rgba(255,255,255,0.38); transition: background .3s, box-shadow .3s; }
.hero-dots button:hover { background: rgba(255,255,255,0.7); }
.hero-dots button.is-active { background: var(--accent); box-shadow: 0 0 0 4px rgba(200,164,122,0.18); }

.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
	width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.28); background: rgba(14,12,10,0.22);
	color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer; transition: opacity .25s, background .2s, border-color .2s;
	display: flex; align-items: center; justify-content: center; opacity: 0; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.hero.carousel:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: rgba(200,164,122,0.2); border-color: var(--accent); }
.hero-arrow.prev { left: 22px; }
.hero-arrow.next { right: 22px; }

/* BRUTUS 風：コントロール内に「次スライドまで」の進捗トラックを置く */
.hero-track { position: relative; width: 90px; height: 2px; background: rgba(255,255,255,0.28); overflow: hidden; flex-shrink: 0; }
.hero-progress { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--accent); }
@media (prefers-reduced-motion: reduce) {
	.hero-slide .hero-img img, .hero-slide.is-active .hero-img img { transition: none; transform: scale(1.04); }
	.hero-track { display: none; }
}

/* ═══════════ ISSUE TICKER ═══════════ */
.issue-bar {
	background: var(--ink); color: var(--bg);
	display: flex; align-items: center; padding: 0 48px; height: 46px; overflow: hidden;
}
.issue-label {
	font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.26em;
	text-transform: uppercase; color: var(--accent-rd); white-space: nowrap;
	margin-right: 28px; flex-shrink: 0; display: flex; align-items: center; gap: 10px;
}
.issue-label::before { content: '●'; font-size: 9px; }
.issue-ticker { overflow: hidden; flex: 1; }
/* gap ではなく各項目の margin-right で間隔を作る（末尾にもマージンが付き均一タイリング
   になる＝-50% ループが完全シームレスに。flex gap は項目「間」だけで末尾に付かず、
   2 コピー × gap だと継ぎ目で 28px ぶん足りずカクッと飛んでいた）。 */
/* width: max-content が必須。これが無いと要素幅＝親コンテナ（≒画面）幅になり、
   translateX(-50%) が「コピー 1 個分」ではなく「画面幅の半分」を指す＝毎ループ
   コピー境界とズレてカクッと飛ぶ。max-content で要素幅＝トラック全幅にすると
   -50% がコピー 1 個分に一致し、2 コピー同一 × 均一マージンで完全シームレスになる。 */
.issue-ticker-inner { display: flex; width: max-content; gap: 0; animation: ticker 63s linear infinite; white-space: nowrap; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.issue-ticker:hover .issue-ticker-inner { animation-play-state: paused; }
.issue-ticker-inner a {
	font-family: var(--serif); font-size: 13px; font-weight: 400; color: var(--bg);
	opacity: 0.72; flex-shrink: 0; letter-spacing: .04em; cursor: pointer; transition: color 0.2s, opacity 0.2s;
	margin-right: 56px;
}
.issue-ticker-inner a:hover { color: var(--accent-rd); opacity: 1; }
.issue-ticker-inner a::before {
	content: ''; display: inline-block; width: 20px; height: 2px;
	background: var(--accent-rd); opacity: 0.8; margin-right: 10px; vertical-align: middle; transform: translateY(-1px);
}

/* ═══════════ MAIN GRID 5-up ═══════════ */
.main-grid {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr;
	grid-template-rows: 520px 380px; gap: 3px; background: var(--ink);
}
/* 大カードは左列で 2 行ぶち抜き（残り4セルに medium/medium/text-only/small が埋まる） */
.main-grid .card--large { grid-row: 1 / 3; }
.photo-card { position: relative; overflow: hidden; cursor: pointer; background: var(--bg-soft); display: block; }
.photo-card img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
	filter: contrast(1.05) saturate(.92);
}
.photo-card:hover img { transform: scale(1.05); }
.card-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(14,12,10,0.92) 0%, rgba(14,12,10,0.55) 32%, rgba(14,12,10,0.16) 60%, transparent 85%);
}
.card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 30px 28px; z-index: 2; text-shadow: 0 1px 12px rgba(0,0,0,0.5), 0 0 2px rgba(0,0,0,0.4); }
.card-cat {
	/* 写真の上に金 9px だと沈んで読めないため、明るめの金＋太め＋やや大きく＋専用シャドウで起こす。
	   和名（土地と食 等）が間延びしないよう字間も詰める。 */
	font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
	color: #EAD3AE; margin-bottom: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px;
	text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 0 2px rgba(0,0,0,0.65);
}
.card-cat::before { content: ''; width: 22px; height: 1px; background: #EAD3AE; box-shadow: 0 0 3px rgba(0,0,0,0.6); }
.card-title {
	font-family: var(--serif); font-weight: 500; line-height: 1.45; color: var(--ink); margin-bottom: 12px;
	/* 地域バナー追加でタイトルが明るい写真域に押し上がったため、写真を暗くせず
	   タイトル側を強めのシャドウで起こして可読性を稼ぐ（card-body 共通シャドウに上乗せ）。 */
	text-shadow: 0 2px 10px rgba(0,0,0,0.78), 0 1px 3px rgba(0,0,0,0.6), 0 0 1px rgba(0,0,0,0.5);
}
.card-lead {
	font-family: var(--sans); font-size: 11px; line-height: 1.85; font-weight: 400;
	color: rgba(255,255,255,0.65); margin-bottom: 18px; max-width: 360px;
}
.card-meta {
	display: flex; justify-content: space-between; align-items: center;
	font-family: var(--sans); font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.55);
	border-top: 1px solid rgba(255,255,255,0.15); padding-top: 12px;
}
.card-meta em { font-family: var(--cg); font-style: italic; font-size: 12px; }
.card--large .card-title { font-size: 36px; line-height: 1.25; }
.card--medium .card-title { font-size: 22px; }
.card--small .card-title { font-size: 18px; }
.card--text-only {
	background: var(--bg); padding: 44px 38px 38px;
	display: flex; flex-direction: column; justify-content: space-between;
}
.card--text-only .pull {
	font-family: var(--cg); font-style: italic; color: var(--accent);
	font-size: 64px; line-height: 1; margin-bottom: 24px; opacity: .9;
}
.card--text-only h2 {
	font-family: var(--serif); font-weight: 500; font-size: 25px; line-height: 1.5;
	color: var(--ink); margin-bottom: 20px;
}
.card--text-only h2 em { color: var(--accent); font-style: normal; }
.card--text-only .author {
	font-family: var(--sans); font-size: 10px; letter-spacing: .22em; font-weight: 500;
	color: var(--ink-mid); text-transform: uppercase;
}

/* ═══════════ SECTION LABEL（案B：英伊体アイブロウ＋和見出し＋全幅ヘアライン・共通小見出し）
   サイト共通の「ここから別セクション」標識。front-page / category / single で再利用。
   下部「記事を、もっと」の .sec-head（大見出し）が唯一の強調点で、こちらは静かな小見出し。 */
.section-label { padding: 40px 56px 22px; background: var(--bg); display: flex; align-items: center; gap: 20px; }
.section-label .sl-head { display: flex; align-items: baseline; gap: 14px; flex-shrink: 0; white-space: nowrap; }
.section-label .sl-en { font-family: var(--cg); font-style: italic; font-size: 16px; letter-spacing: .04em; color: var(--accent); }
.section-label .sl-jp { font-family: var(--serif); font-weight: 500; font-size: 20px; letter-spacing: .02em; color: var(--ink); }
.section-label .sl-rule { flex: 1; height: 1px; background: var(--rule); }
.section-label .sl-meta { font-family: var(--sans); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; flex-shrink: 0; }
/* 保険：旧来の素の <span> 単独マークアップが残っていても潰れないように和見出し扱い */
.section-label > span:only-child { font-family: var(--serif); font-weight: 500; font-size: 20px; letter-spacing: .02em; color: var(--ink); flex-shrink: 0; }
.gap { height: 3px; background: var(--ink); }

/* ═══════════ STRIP CARD（今号の一軒） ═══════════ */
.strip-card { display: block; position: relative; height: 560px; overflow: hidden; cursor: pointer; }
.strip-card img { object-position: center 70%; transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94); }
.strip-card:hover img { transform: scale(1.04); }
.strip-card .card-overlay {
	background:
		linear-gradient(to right, rgba(14,12,10,0.9) 0%, rgba(14,12,10,0.55) 45%, rgba(14,12,10,0.12) 78%, transparent 92%),
		linear-gradient(to top, rgba(14,12,10,0.4) 0%, transparent 45%);
}
.strip-body { position: absolute; top: 50%; left: 56px; transform: translateY(-50%); z-index: 2; max-width: 480px; text-shadow: 0 1px 14px rgba(0,0,0,0.5), 0 0 2px rgba(0,0,0,0.4); }
.strip-eyebrow {
	font-family: var(--serif); font-weight: 500; font-size: 12px; color: var(--accent);
	letter-spacing: 0.18em; margin-bottom: 14px; display: block;
}
.strip-title {
	font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 3.2vw, 44px);
	line-height: 1.22; color: var(--ink); margin-bottom: 16px;
}
.strip-lead {
	font-family: var(--sans); font-size: 12px; line-height: 1.9; font-weight: 400;
	color: rgba(255,255,255,0.6); margin-bottom: 24px;
}
.strip-link {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--sans); font-size: 11px; letter-spacing: 0.15em; font-weight: 500;
	color: rgba(255,255,255,0.78); border: 1px solid rgba(255,255,255,0.3);
	padding: 11px 22px; transition: all 0.3s;
}
.strip-link:hover { background: rgba(200,164,122,0.12); color: var(--ink); border-color: var(--accent); }
.strip-link::after { content: '→'; }

/* ═══════════ PORTRAIT SPLIT（つくる人の話） ═══════════ */
.portrait-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--ink); }
.portrait-text {
	background: var(--warm-dk); padding: 80px 64px;
	display: flex; flex-direction: column; justify-content: center;
}
.portrait-label {
	font-family: var(--serif); font-weight: 500; font-size: 12px;
	color: var(--accent); letter-spacing: 0.16em; margin-bottom: 24px;
}
.portrait-heading {
	font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.5vw, 44px);
	line-height: 1.25; color: var(--ink); margin-bottom: 28px;
}
.portrait-body {
	font-family: var(--sans); font-size: 12px; line-height: 2; font-weight: 400;
	color: rgba(255,255,255,0.6); margin-bottom: 36px;
}
.portrait-cta {
	font-family: var(--serif); font-weight: 500; font-size: 14px; color: rgba(255,255,255,0.7);
	border-bottom: 1px solid rgba(255,255,255,0.25); display: inline-block;
	padding-bottom: 4px; width: fit-content; transition: color 0.2s, border-color 0.2s;
}
.portrait-cta:hover { color: var(--ink); border-color: var(--accent); }
.portrait-photo { height: 520px; position: relative; overflow: hidden; }
.portrait-photo img { object-position: center top; }
.portrait-photo-caption {
	position: absolute; bottom: 20px; right: 20px;
	font-family: var(--sans); font-size: 9px; letter-spacing: 0.15em; color: rgba(255,255,255,0.45);
}
/* つくる人の話 0 本の空状態 */
.portrait-photo--empty {
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(150deg, #241a12, var(--warm-dk));
}
.portrait-photo--empty .coming-mark {
	font-family: var(--cg); font-style: italic; font-size: 22px; letter-spacing: .12em;
	color: rgba(200,164,122,0.55);
}
/* 空状態は写真ブロックを置かず 1 カラム＝コピーのティーザーだけ（中央寄せ）。
   記事ができたら通常の 2 カラム portrait-split に戻る（このクラスを外すだけ）。 */
.portrait-split--solo { grid-template-columns: 1fr; }
.portrait-split--solo .portrait-text { align-items: center; text-align: center; }
.portrait-split--solo .portrait-cta { margin-left: auto; margin-right: auto; }

/* ═══════════ SMALL GRID 3-up ═══════════ */
.sec-band { padding: 96px 56px 56px; background: var(--bg); }
.sec-head {
	display: flex; align-items: flex-end; justify-content: space-between;
	margin-bottom: 48px; padding-bottom: 28px; border-bottom: 1px solid var(--rule);
}
.sec-head h2 {
	font-family: var(--serif); font-weight: 500; font-size: 48px;
	letter-spacing: 0; color: var(--ink); line-height: 1.1;
}
.sec-head h2 em { font-family: var(--cg); font-style: italic; font-weight: 400; color: var(--accent); }
.sec-head .sub {
	font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; font-weight: 500;
	color: var(--ink-soft); text-transform: uppercase; text-align: right; line-height: 1.8;
}
.sec-head .sec-more {
	display: inline-block; margin-top: 12px; text-transform: none;
	font-family: var(--cg); font-style: italic; font-size: 15px; letter-spacing: .02em;
	color: var(--accent); border-bottom: 1px solid rgba(200,164,122,0.4);
	padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.sec-head .sec-more:hover { color: var(--ink); border-color: var(--ink); }
.small-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--ink); }
.small-grid .photo-card { height: 340px; }
.small-grid .card-title { font-size: 19px; }

/* ═══════════ FULL-BLEED QUOTE ═══════════ */
/* 高さは中身（コピー＋余白）で決まる＝固定px をやめ、空き帯が出ないように。
   画像は絶対配置で背面に敷き、min-height で desktop の最低限の見栄えだけ確保。 */
.quote-bleed { position: relative; overflow: hidden; }
.quote-bleed img { position: absolute; inset: 0; object-position: center 55%; filter: brightness(0.34) saturate(0.6); }
.quote-bleed-content {
	position: relative; display: flex; flex-direction: column;
	align-items: center; justify-content: center; text-align: center;
	min-height: 380px; padding: 76px 40px;
}
.quote-mark { font-family: var(--cg); font-size: 80px; line-height: 0.5; color: var(--accent); margin-bottom: 32px; font-weight: 300; }
.quote-text {
	font-family: var(--serif); font-weight: 400; font-size: clamp(20px, 3vw, 30px);
	line-height: 1.65; color: var(--ink); max-width: 820px; letter-spacing: 0.02em;
}
.quote-source {
	margin-top: 24px; font-family: var(--sans); font-size: 10px; font-weight: 500;
	letter-spacing: 0.2em; color: rgba(255,255,255,0.4); text-transform: uppercase;
}
/* モバイル：min-height を解除して帯を中身に吸い付かせ、空き帯をなくす */
@media (max-width: 720px) {
	.quote-bleed-content { min-height: 0; padding: 48px 24px; }
	.quote-mark { font-size: 52px; margin-bottom: 16px; }
	.quote-source { margin-top: 18px; }
}

/* ═══════════ CATEGORY STRIP（cream 反転） ═══════════ */
.cat-strip {
	background: var(--cream); color: #1A1612;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.cat-item {
	padding: 44px 36px; border-right: 1px solid rgba(26,22,18,0.1);
	cursor: pointer; transition: background 0.2s; position: relative; overflow: hidden;
}
.cat-item:last-child { border-right: none; }
.cat-item:hover { background: rgba(26,22,18,0.04); }
.cat-num {
	font-family: var(--cg); font-size: 72px; font-weight: 300; font-style: italic;
	color: rgba(26,22,18,0.08); line-height: 1; position: absolute; top: 14px; right: 18px;
}
.cat-name { font-family: var(--serif); font-weight: 500; font-size: 16px; color: #1A1612; margin-bottom: 6px; position: relative; z-index: 1; }
.cat-name-en { font-family: var(--cg); font-style: italic; font-size: 11px; color: rgba(26,22,18,0.5); letter-spacing: 0.08em; display: block; margin-bottom: 14px; position: relative; z-index: 1; }
.cat-count { font-family: var(--sans); font-size: 10px; color: rgba(26,22,18,0.4); letter-spacing: 0.1em; font-weight: 400; position: relative; z-index: 1; }

/* ═══════════ FOOTER ═══════════ */
.site-footer { background: var(--bg); color: var(--ink-mid); padding: 100px 56px 56px; border-top: 1px solid var(--rule); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 72px; }
.footer-top h4 {
	font-family: var(--cg); font-style: italic; font-weight: 400; color: var(--accent);
	font-size: 14px; letter-spacing: 0.2em; margin-bottom: 22px; text-transform: uppercase;
}
/* フッタロゴ＝星マーク入り SVG（黒地なので currentColor=ink で表示） */
.footer-logo-link { display: block; color: var(--ink); line-height: 0; margin-bottom: 24px; width: fit-content; }
.footer-logo-img { height: 80px; width: auto; display: block; }
@media (max-width: 720px) { .site-logo-img { height: 38px; } .footer-logo-img { height: 60px; } }
.footer-top ul { list-style: none; }
.footer-top li { font-family: var(--sans); font-size: 12px; letter-spacing: .06em; line-height: 2.2; font-weight: 400; color: var(--ink-mid); }
.footer-top li a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
/* SNS ブランドアイコン（currentColor で文字色＝サイトの色味に追従） */
.sns-icon { width: 1.05em; height: 1.05em; flex-shrink: 0; }
.footer-top li a:hover { color: var(--accent); }
.footer-top .brand-statement {
	font-family: var(--serif); font-weight: 400; font-size: 21px; line-height: 1.9;
	color: var(--ink); max-width: 380px;
}
.footer-top .brand-statement em { font-style: normal; color: var(--accent); font-weight: 500; }
.footer-about-link {
	display: inline-block; margin-top: 20px;
	font-family: var(--cg); font-style: italic; font-size: 15px; letter-spacing: .02em;
	color: var(--accent); border-bottom: 1px solid rgba(200,164,122,0.4);
	padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.footer-about-link:hover { color: var(--ink); border-color: var(--ink); }
/* About エリア全体を装飾なしリンク化（キャッチ＝brand-statement もクリック可）。
   下線等は付けず、hover 時に CTA だけ反応させて「押せる」と伝える。 */
.footer-about-block { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.footer-about-block:hover .footer-about-link { color: var(--ink); border-color: var(--ink); }
.footer-bottom {
	display: flex; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--rule);
	font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em; font-weight: 500; color: var(--ink-soft); text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════════
   個別ページ（single / category / archive）— 2026-06-22 追加
   設計: hero とフッタ・一覧は黒地で TOP と地続き、記事本文だけクリーム紙
   （案A・mk 承認 2026-06-22）。親 CSS を dequeue するため、本文タイポ・
   情報ブロック・もくじ・表・店名バナーの装飾はここで自前に持つ。
   ────────────────────────────────────────────────────────────────── */

/* ── ヘッダ scroll-solid / hero 無しページの黒地ヘッダ ── */
.site-header.scrolled,
.site-header.is-solid {
	background: rgba(14,12,10,0.94);
	-webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--rule);
	transition: background .3s ease;
}
.site-header.scrolled::before,
.site-header.is-solid::before { display: none; }

/* ── モバイルナビ（ドロワー） ── */
.mobile-nav {
	display: flex; flex-direction: column; gap: 4px;
	position: fixed; inset: 0; z-index: 99;
	background: rgba(14,12,10,0.98); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
	padding: 96px 32px 40px; opacity: 0; visibility: hidden; transform: translateY(-8px);
	transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a {
	display: flex; flex-direction: column; gap: 4px;
	padding: 16px 0; border-bottom: 1px solid var(--rule);
}
.mobile-nav .nav-jp {
	font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink);
	letter-spacing: .04em; transition: color .2s;
}
.mobile-nav .nav-en {
	font-family: var(--sans); font-size: 10px; font-weight: 500;
	letter-spacing: .22em; text-transform: uppercase; color: var(--accent);
}
.mobile-nav a:hover .nav-jp { color: var(--accent); }
.hamburger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.hamburger { z-index: 101; }
body.kn-nav-open { overflow: hidden; }

/* ════════ SINGLE：POST HERO（黒地・フルブリード） ════════ */
.post-single { background: var(--bg); }
.post-hero { position: relative; width: 100%; height: 66vh; min-height: 460px; max-height: 700px; overflow: hidden; }
.post-hero > img { object-position: center 40%; transform: scale(1.04); filter: contrast(1.05) saturate(.9) brightness(.92); }
.post-hero-overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(to top, rgba(14,12,10,0.92) 0%, rgba(14,12,10,0.25) 48%, rgba(14,12,10,0.5) 100%),
		linear-gradient(to right, rgba(14,12,10,0.4) 0%, transparent 60%);
}
.post-hero--empty {
	height: 48vh; min-height: 340px;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, #1d160f, var(--bg));
}
.post-hero-mark { color: rgba(200,164,122,0.5); }
.post-hero-mark svg { display: block; width: 30px; height: 30px; }

/* 記事ヘッダ（hero 下部にオーバーレイ） */
.post-hero-head {
	position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
	padding: 0 56px 52px; max-width: 1040px;
}
.post-eyebrow {
	font-family: var(--sans); font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
	color: var(--accent-rd); font-weight: 700; margin-bottom: 14px;
}
.post-cat {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--sans); font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
	color: var(--accent); font-weight: 500; margin-bottom: 18px;
}
.post-cat::before { content: ''; width: 26px; height: 1px; background: var(--accent); }
.post-cat:hover { color: var(--ink); }
.post-title {
	font-family: var(--serif); font-weight: 500; color: var(--ink);
	font-size: clamp(30px, 4.4vw, 56px); line-height: 1.22; letter-spacing: .01em; max-width: 18em;
}
.post-title em { font-style: normal; color: var(--accent); }
.post-meta {
	display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 22px;
	font-family: var(--sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	color: rgba(253,250,246,0.62);
}
.post-meta span:first-child { color: var(--accent); font-weight: 500; }

/* 店名・地名バナー（hero 上＝content） */
.shop-banner--content { margin: 16px 0 2px; font-family: var(--sans); }
.shop-banner--content .shop-banner-name { font-size: 13px; font-weight: 500; letter-spacing: .08em; color: var(--ink); }
.shop-banner--content .shop-banner-loc  { font-size: 11px; color: var(--ink-mid); margin-top: 4px; letter-spacing: .04em; }

/* ════════ SINGLE：本文（クリーム紙のリード列） ════════ */
.post-paper { background: var(--cream); color: #23201B; }
.post-content { max-width: 720px; margin: 0 auto; padding: 76px 24px 56px; }
.post-content > *:first-child { margin-top: 0; }
.post-content p {
	font-family: var(--sans); font-size: 16px; line-height: 2.0; font-weight: 500;
	color: #2A2620; margin-bottom: 24px;
}
/* 見出しは砂金の左バー＋淡い下地でラベルとして落ち着かせる（案B 2026-06-23） */
.post-content h2 {
	font-family: var(--serif); font-weight: 500; font-size: 22px; line-height: 1.5;
	color: #23201B; background: #ECE4D6; border-left: 3px solid var(--warm-mid);
	padding: 13px 20px; margin: 48px 0 18px; letter-spacing: .02em;
}
/* h3 は h2（下地＋バン）に対し「左バーのみ・下地なし」で一段下に（V1・2026-06-23） */
.post-content h3 {
	font-family: var(--serif); font-weight: 500; font-size: 17px; line-height: 1.5;
	color: #23201B; border-left: 3px solid var(--warm-mid);
	padding: 2px 0 2px 14px; margin: 36px 0 12px;
}
.post-content a {
	color: var(--warm-mid); border-bottom: 1px solid rgba(154,107,58,0.45);
	transition: color .2s, border-color .2s;
}
.post-content a:hover, .post-content a:focus { color: var(--accent-rd); border-color: var(--accent-rd); }
.post-content ul, .post-content ol { margin: 0 0 24px 1.4em; }
.post-content li { font-family: var(--sans); font-size: 15px; line-height: 1.95; color: #2A2620; margin-bottom: 8px; }
.post-content strong { font-weight: 700; color: #1A1612; }
/* 引用は背面に巨大な砂金の引用符（ウォーターマーク）。見出しの左バーと別系統にする。
   ※ 暫定スタイル（案④・2026-06-23）。後で③ぶら下げ／⑤出典つき等へ変更の可能性あり。 */
.post-content blockquote {
	position: relative; margin: 36px 0; padding: 6px 0 6px 26px;
	border-left: none; overflow: hidden;
}
.post-content blockquote::before {
	content: '\201C'; position: absolute; left: -8px; top: -44px;
	font-family: var(--cg); font-weight: 600; font-size: 130px; line-height: 1;
	color: rgba(154,107,58,0.13); z-index: 0; pointer-events: none;
}
.post-content blockquote p {
	position: relative; z-index: 1;
	font-family: var(--serif); font-weight: 400; font-size: 18px; line-height: 1.8; color: #2A2620;
}
.post-content blockquote p:last-child { margin-bottom: 0; }

/* 本文画像（グローバルの object-fit:cover をリセット） */
.post-content img { width: 100%; height: auto; object-fit: initial; border-radius: 2px; }
.post-content figure { margin: 40px 0; width: auto; height: auto; }
.post-content figure img { display: block; }
.post-content figcaption {
	font-family: var(--sans); font-size: 12px; line-height: 1.7; color: rgba(35,32,27,0.55);
	margin-top: 10px; text-align: left;
}
.post-content .alignwide, .post-content .alignfull { margin-left: 0; margin-right: 0; }

/* もくじ */
.post-content .kitanote-toc { background: #ECE4D6; padding: 26px 30px; margin: 36px 0; }
.post-content .kitanote-toc-title {
	font-family: var(--sans); font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
	color: var(--warm-mid); font-weight: 700; margin-bottom: 14px;
}
.post-content .kitanote-toc ol, .post-content .kitanote-toc ul { list-style: none; margin: 0; }
.post-content .kitanote-toc li { border-top: 1px solid rgba(35,32,27,0.1); margin: 0; }
.post-content .kitanote-toc li:first-child { border-top: none; }
.post-content .kitanote-toc a {
	display: flex; gap: 12px; padding: 11px 0; font-family: var(--sans); font-size: 14px;
	color: #2A2620; border-bottom: none;
}
.post-content .kitanote-toc a:hover { color: var(--warm-mid); }
.post-content .kitanote-toc .toc-num { font-family: var(--cg); font-style: italic; color: var(--warm-mid); }

/* 情報ブロック（データ隔離） */
.post-content .kitanote-info-block {
	background: #ECE4D6; border-left: 2px solid var(--accent);
	padding: 28px 30px; margin: 36px 0;
}
.post-content .kitanote-info-block-label {
	font-family: var(--sans); font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
	color: var(--warm-mid); font-weight: 700; margin-bottom: 12px;
}
.post-content .kitanote-info-block-title {
	font-family: var(--cg); font-style: italic; font-size: 21px; color: #1A1612; margin-bottom: 16px;
}
.post-content .kitanote-info-block-body p,
.post-content .kitanote-info-block-body li,
.post-content .kitanote-info-block-body td,
.post-content .kitanote-info-block-body th,
.post-content .kitanote-info-block-body dt,
.post-content .kitanote-info-block-body dd {
	font-family: var(--sans); font-size: 14px; line-height: 1.85; color: #2A2620;
}
.post-content .kitanote-info-block-body > p:last-child { margin-bottom: 0; }
.post-content .kitanote-info-block table,
.post-content table { width: 100%; border-collapse: collapse; margin: 0; font-family: var(--sans); }
.post-content .kitanote-info-block th, .post-content .kitanote-info-block td,
.post-content table th, .post-content table td {
	padding: 10px 12px; border-bottom: 1px solid rgba(35,32,27,0.12);
	font-size: 14px; line-height: 1.7; color: #2A2620; text-align: left; vertical-align: top;
}
.post-content table th { font-weight: 700; color: #1A1612; }
.post-content figure.wp-block-table { margin: 36px 0; }
.post-content .wp-block-table table tr:nth-child(even) { background: rgba(35,32,27,0.03); }

/* ════════ SINGLE：記事フッタ（クリーム面・タグ＋前後ナビ） ════════ */
.post-footer { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
.post-tags { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 32px; border-top: 1px solid rgba(35,32,27,0.14); }
.post-tag {
	font-family: var(--sans); font-size: 12px; color: #6B5B4A; letter-spacing: .04em;
	border: 1px solid rgba(35,32,27,0.18); padding: 6px 14px; border-radius: 0; transition: all .2s;
}
.post-tag:hover { color: var(--warm-mid); border-color: var(--warm-mid); }
.post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 36px; }
.post-nav a {
	font-family: var(--sans); font-size: 12px; letter-spacing: .1em; color: #6B5B4A;
	border-bottom: 1px solid rgba(35,32,27,0.25); padding-bottom: 3px; transition: color .2s, border-color .2s;
}
.post-nav a:hover { color: var(--warm-mid); border-color: var(--warm-mid); }
.post-nav a.next { margin-left: auto; }

/* ════════ ABOUT：Follow（クリーム面・本文末） ════════ */
.about-follow { max-width: 720px; margin: 0 auto; padding: 0 24px 88px; }
.about-follow-label {
	font-family: var(--sans); font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
	color: var(--warm-mid); font-weight: 700; margin-bottom: 16px;
	padding-top: 36px; border-top: 1px solid rgba(35,32,27,0.14);
}
.about-follow-list { font-family: var(--cg); font-style: italic; font-size: 17px; color: #6B5B4A; letter-spacing: .04em; }
.about-follow-list a { display: inline-flex; align-items: center; gap: 7px; color: var(--warm-mid); transition: color .2s; }
.about-follow-list a span { border-bottom: 1px solid rgba(154,107,58,0.4); padding-bottom: 1px; transition: border-color .2s; }
.about-follow-list a:hover { color: var(--accent-rd); }
.about-follow-list a:hover span { border-color: var(--accent-rd); }

/* ════════ SINGLE：関連記事（黒地に戻る） ════════ */
.related { background: var(--bg); padding: 0 0 8px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--ink); }
.related-grid .photo-card { height: 320px; }
.related-grid .card-title { font-size: 18px; }

/* ════════ ARCHIVE / CATEGORY（黒地） ════════ */
.archive-hero {
	background: var(--bg); border-bottom: 1px solid var(--rule);
	padding: calc(68px + 80px) 56px 56px;
}
.archive-label {
	font-family: var(--cg); font-style: italic; font-size: 15px; letter-spacing: .14em;
	color: var(--accent); margin-bottom: 16px; text-transform: uppercase;
}
.archive-title { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 5vw, 58px); line-height: 1.12; color: var(--ink); }
.archive-desc { font-family: var(--sans); font-size: 14px; line-height: 1.9; color: var(--ink-mid); max-width: 640px; margin-top: 20px; }

.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--ink); }
.archive-grid .photo-card { height: 380px; }
.archive-grid .card-title { font-size: 19px; }

/* グリッド末尾の空きセルを埋める暗いフィラー（白い地色の露出を防ぐ・極薄マーク入り） */
.grid-filler { background: var(--bg); display: flex; align-items: center; justify-content: center; }
.grid-filler svg { width: 28px; height: 28px; color: rgba(200,164,122,0.14); }

/* 一覧カードの店名・地名バナー（黒地カードのオーバーレイ上） */
.shop-banner--card { margin: 8px 0 0; font-family: var(--sans); }
.shop-banner--card .shop-banner-name { font-size: 11px; font-weight: 500; letter-spacing: .06em; color: rgba(255,255,255,0.9); }
.shop-banner--card .shop-banner-loc  { font-size: 10px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ページネーション */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 56px 24px 8px; background: var(--bg); }
.pagination .page-numbers {
	font-family: var(--sans); font-size: 13px; letter-spacing: .06em; color: var(--ink-mid);
	min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--rule); transition: all .2s;
}
.pagination a.page-numbers:hover { color: var(--ink); border-color: var(--accent); }
.pagination .page-numbers.current { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* 0 件カテゴリの空状態 */
.archive-empty { background: var(--bg); padding: 80px 24px 96px; text-align: center; }
.archive-empty-inner { max-width: 520px; margin: 0 auto; }
.archive-empty-mark { color: rgba(200,164,122,0.5); display: inline-block; margin-bottom: 22px; }
.archive-empty-mark svg { display: block; width: 32px; height: 32px; margin: 0 auto; }
.archive-empty-eyebrow {
	font-family: var(--cg); font-style: italic; font-size: 15px; letter-spacing: .12em;
	color: var(--accent); margin-bottom: 16px;
}
.archive-empty-title { font-family: var(--serif); font-weight: 500; font-size: 26px; line-height: 1.4; color: var(--ink); margin-bottom: 18px; }
.archive-empty-lead { font-family: var(--sans); font-size: 14px; line-height: 1.95; color: var(--ink-mid); margin-bottom: 22px; }
.archive-empty-cta { font-family: var(--sans); font-size: 14px; color: var(--ink-mid); }
.archive-empty-cta a { color: var(--accent); border-bottom: 1px solid rgba(200,164,122,0.4); }
.archive-empty-cta a:hover { color: var(--ink); }

/* 他のカテゴリ（cream 反転を流用、見出し帯つき） */
.other-cats { background: var(--bg); padding-top: 8px; }
.other-cats .cat-item { display: block; }
.other-cats .cat-en { font-family: var(--cg); font-style: italic; font-size: 11px; color: rgba(26,22,18,0.5); letter-spacing: .08em; display: block; margin-bottom: 10px; position: relative; z-index: 1; }

/* ════════ 個別ページ レスポンシブ ════════ */
@media (max-width: 720px) {
	.post-hero { height: 48vh; height: 50svh; min-height: 340px; }
	.post-hero-head { padding: 0 24px 36px; }
	.post-content, .post-footer { padding-left: 22px; padding-right: 22px; }
	.post-content { padding-top: 52px; }
	.post-content h2 { font-size: 22px; }
	.related-grid, .archive-grid { grid-template-columns: 1fr; }
	.related-grid .photo-card, .archive-grid .photo-card { height: 280px; }
	.grid-filler { display: none; } /* 1 カラムでは末尾フィラー不要 */
	.archive-hero { padding: calc(58px + 48px) 22px 40px; }
	.other-cats .cat-strip { grid-template-columns: 1fr 1fr; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 720px) {
	.site-header { padding: 0 22px; height: 58px; }
	.site-nav { display: none; }
	/* タグラインはモバイルでもロゴ下に小さく出す（縦積み）。横並びだと幅が足りないため。 */
	.brand { flex-direction: column; align-items: flex-start; gap: 2px; }
	.header-tagline { display: block; padding-left: 0; border-left: none; font-size: 9.5px; letter-spacing: .02em; color: rgba(255,255,255,0.6); }
	.hamburger { display: block; }
	/* モバイルは vh/svh だと実機で十分縮まず写真の左右が深く切れたため、固定 px で制御。
	   高さは「たっぷり」希望で 420→520px に戻す（Ken Burns の寄りは止めたまま＝左右クロップ抑制）。 */
	.hero { height: 520px; min-height: 0; max-height: none; }
	.hero-slide .hero-img img, .hero-slide.is-active .hero-img img { transform: none; }
	.hero-content { left: 24px; right: 24px; bottom: 56px; grid-template-columns: 1fr; gap: 24px; }
	.hero-img img, .hero-img video { object-position: center 42%; }
	.issue-bar { padding: 0 16px; }
	/* ラベルがモバイルで横幅を食い過ぎてティッカー本文の表示量が激減するため、
	   レター間隔・右マージン・フォントを詰めてラベルの占有を圧縮する（テキストは温存）。 */
	.issue-label { letter-spacing: 0.12em; margin-right: 12px; font-size: 9px; gap: 6px; }
	.issue-label::before { font-size: 7px; }
	.issue-ticker-inner { animation-duration: 53s; }
	.main-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
	.main-grid .photo-card { min-height: 230px; }
	.main-grid .card--large { grid-column: 1 / -1; grid-row: auto !important; min-height: 300px; }
	.main-grid .card--text-only { min-height: 230px; padding: 26px 20px; }
	.main-grid .card-body { padding: 18px 16px; }
	.main-grid .card-cat { margin-bottom: 8px; }
	.main-grid .card--large .card-title { font-size: 25px; }
	.main-grid .card--medium .card-title, .main-grid .card--small .card-title { font-size: 16px; line-height: 1.4; }
	.main-grid .card--large .card-lead { font-size: 11px; }
	.main-grid .card--medium .card-meta, .main-grid .card--small .card-meta { display: none; }
	.main-grid .card--text-only h2 { font-size: 18px; line-height: 1.5; }
	.main-grid .card--text-only .pull { font-size: 44px; margin-bottom: 12px; }
	/* 今号の一軒：560px 固定だとモバイルで大カード(min 300px)の倍近く大きく見えるため縮小。 */
	.strip-card { height: 400px; }
	.strip-title { font-size: 26px; }
	.strip-body { left: 28px; right: 28px; max-width: none; }
	.portrait-split { grid-template-columns: 1fr; }
	.portrait-text { padding: 56px 32px; }
	.small-grid { grid-template-columns: 1fr; }
	.cat-strip { grid-template-columns: 1fr 1fr; }
	.cat-item:nth-child(2n) { border-right: none; }
	/* フッタ：ロゴ＋About を全幅で独立（中央寄せ＋仕切り線）→ 残り3群は均等3カラム。
	   2列だと About 塊が半分幅に潰れて窮屈＋Editorial が孤立するため（A案 2026-06-24）。 */
	.footer-top { grid-template-columns: repeat(6, 1fr); gap: 40px 14px; }
	.footer-top > div:first-child { grid-column: 1 / -1; text-align: center; padding-bottom: 36px; border-bottom: 1px solid var(--rule); }
	.footer-top > div:first-child .footer-logo-link { margin-left: auto; margin-right: auto; }
	.footer-top > div:first-child .brand-statement { margin-left: auto; margin-right: auto; }
	.footer-top > div:not(:first-child) { grid-column: span 2; }
	.footer-top h4 { font-size: 12px; letter-spacing: .12em; margin-bottom: 14px; }
	/* セクション見出しはモバイルで縦積み（横 space-between だとタイトルが半分幅に潰れ
	   「もっと」が途中で折れ＋右メタが窮屈になるため）。タイトル全幅→メタ左寄せで下に。 */
	.sec-head { flex-direction: column; align-items: flex-start; gap: 16px; }
	.sec-head h2 { font-size: 32px; white-space: nowrap; }
	.sec-head .sub { text-align: left; }
	.sec-band, .site-footer { padding-left: 24px; padding-right: 24px; }
	/* 共通小見出し（案B）：左右パディングを他セクションに合わせ、メタは省いて 1 行に収める。 */
	.section-label { padding: 32px 24px 16px; gap: 14px; }
	.section-label .sl-head { gap: 10px; }
	.section-label .sl-en { font-size: 14px; }
	.section-label .sl-jp { font-size: 17px; }
	.section-label .sl-meta { display: none; }
}
