/*
Theme Name: 推しとおでかけ
Theme URI: https://oshitoodekake.com/
Author: oshi to odekake
Author URI: https://oshitoodekake.com/
Description: 「推しとおでかけ」用の自作クラシックテーマ。design_handoff_oshitoodekake の仕様に基づいて実装。
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: oto-theme
*/

/* =========================================================
   0. フォント読み込み（README §3）
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&family=Archivo:wght@700;800&family=Sacramento&display=swap');
/* Sacramento は README §3 では別枠指定（サイト名副題・TOPのみ）だが、
   ウェイト400/500/700/800/900のみ使用というルールに沿って一括読み込みしている。
   TODO: unspecified in handoff — Sacramento はウェイト指定が無い書体のため単体で追加。確認事項として残す。 */

/* =========================================================
   1. デザイントークン（README §2）
   ========================================================= */
:root {
	/* 地色・インク */
	--bg: #f0f0f0; /* サイト全体の背景 */
	--surface: #ffffff; /* カード・パネルの面 */
	--ink: #201e1d; /* 本文・枠線の基本色 */
	--ink-card: #33302b; /* 記事カードの枠線・バッジ枠 */
	--text: #3a3733; /* 本文 */
	--text-sub: #605c59; /* 補足文 */
	--text-mute: #8a8a8a; /* 日付・注記 */
	--label: #999999; /* 情報グリッドのラベル */
	--rule: #dcdcdc; /* 罫線 */

	/* カテゴリー色（塗り用） */
	--c-hotel: #f1c242;
	--c-gourmet: #10a02a;
	--c-oshi: #1116ed;
	--c-area: #e73946; /* README §2 確定値に戻す（一時的にオレンジに変更していたが赤が正） */

	/* カテゴリー色（本文サイズの文字用・濃い段） */
	--c-hotel-dk: #8a6206;
	--c-gourmet-dk: #0b7a20;
	--c-oshi-dk: #1116ed; /* 青はそのまま可 */
	--c-area-dk: #b7202c;

	/* 星評価などの中間段 */
	--c-hotel-md: #c99a13;
}

/* =========================================================
   2. リセット／ベース
   ========================================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
	font-weight: 400;
	font-size: 13.5px;
	line-height: 2.15;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--ink);
	text-decoration: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	background: none;
	border: 0;
	padding: 0;
}

input,
button {
	font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
	border: 0;
	padding: 0;
	margin: -1px;
}

/* =========================================================
   3. カテゴリー・アクセント方式（README §9）
   ========================================================= */
.cat-hotel {
	--accent: var(--c-hotel);
	--accent-dk: var(--c-hotel-dk);
	/* TODO: unspecified in handoff — README §9 は --accent / --accent-dk のみ定義。
	   カテゴリー色の上に置く文字色（黄=黒／緑・赤・青=白）の切り替えが§2で必須のため、
	   --on-accent を追加して各カテゴリーで定義する。値自体は§2の表に忠実。 */
	--on-accent: var(--ink);
}
.cat-gourmet {
	--accent: var(--c-gourmet);
	--accent-dk: var(--c-gourmet-dk);
	--on-accent: #fff;
}
.cat-oshi {
	--accent: var(--c-oshi);
	--accent-dk: var(--c-oshi-dk);
	--on-accent: #fff;
}
.cat-area {
	--accent: var(--c-area);
	--accent-dk: var(--c-area-dk);
	--on-accent: #fff;
}

/* =========================================================
   4. リンクの見せ方（README §9）
   ========================================================= */
.entry-content a {
	color: var(--accent-dk, var(--c-gourmet-dk));
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--accent, var(--c-gourmet));
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
}
.entry-content a:hover {
	color: var(--ink);
	text-decoration-color: var(--ink);
}

.oto-mark {
	background: linear-gradient(
		transparent 58%,
		color-mix(in srgb, var(--accent, var(--c-gourmet)) 28%, transparent) 58%
	);
}

/* =========================================================
   5. 見出しコンポーネント oto-h2（README §3）
   ========================================================= */

/* A. 白抜き英字＋日本語＋短い色下線（記事内h2の標準） */
.oto-h2 {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin: 0 0 20px;
}
.oto-h2__en {
	font: 800 15px/1 "Archivo", sans-serif;
	letter-spacing: 0.1em;
	color: transparent;
	-webkit-text-stroke: 0.9px #9a9a9a;
}
.oto-h2__jp {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	font: 700 19px/1.4 "Noto Sans JP", sans-serif;
	color: var(--ink);
}
.oto-h2__bar {
	display: inline-block;
	width: 26px;
	height: 3px;
	background: var(--accent, var(--c-gourmet));
}

/* B. カテゴリー色の縁取り文字（REVIEW / SETLIST / RELATED 等の強調見出し） */
.oto-h2--stroke {
	display: block;
	font: 900 21px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.12em;
	color: var(--accent, var(--c-gourmet));
	-webkit-text-stroke: 2px #000;
	paint-order: stroke fill;
}

/* =========================================================
   6. 記事カード oto-card（README §7）
   ========================================================= */
.oto-card {
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 2.5px solid var(--ink-card);
}

.oto-card__thumb {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-bottom: 2.5px solid var(--ink-card);
	background: var(--rule);
}
.oto-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.oto-card__body {
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 13px 14px 15px;
}

.oto-badge {
	align-self: flex-start;
	background: var(--accent, var(--c-gourmet));
	color: var(--on-accent, var(--ink));
	border: 2px solid var(--ink-card);
	font: 700 9.5px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.06em;
	padding: 5px 9px;
}

.oto-card__title {
	font: 700 13.5px/1.55 "Noto Sans JP", sans-serif;
	color: #2c2925;
}

.oto-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font: 500 10.5px/1 "Noto Sans JP", sans-serif;
	color: #7d7d7d;
}
.oto-card__tags a {
	color: inherit;
	font-weight: 500;
}
.oto-card__tag-mark {
	color: var(--accent, var(--c-gourmet));
}

/* ミニカード版：大カードの縮小コピーではなく、サムネ小＋バッジ／タイトルの
   横並び専用コンポーネント（Claude Designで確定したレイアウトに合わせて
   全面差し替え）。カード自体の外枠は無し。 */
.oto-card--mini {
	flex-direction: row;
	align-items: flex-start;
	gap: 14px;
	border: none;
	background: transparent;
}
.oto-card--mini .oto-card__thumb {
	flex: none;
	width: 108px;
	aspect-ratio: 16 / 9;
	border: 2px solid var(--ink-card);
}
.oto-card--mini .oto-card__body {
	flex: 1;
	min-width: 0;
	padding: 0;
	gap: 6px;
}
.oto-card--mini .oto-badge {
	font-size: 9px;
	padding: 3px 7px;
	border-width: 1.5px;
}
.oto-card--mini .oto-card__title {
	font: 700 13px/1.5 "Noto Sans JP", sans-serif;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* サイドバー・フッターは白背景。記事カードと同じ考え方で外枠に線をつける。 */
.oto-sidebar,
.oto-footer__panel {
	border: 2px solid var(--ink);
	background: var(--surface);
}

/* =========================================================
   7. CATEGORYカード oto-cat-card（README §8）
   ========================================================= */
.oto-cat-card {
	/* グリッドのセル幅いっぱいに広がりつつ196pxを超えない。固定196pxのままだと
	   2列グリッドの列幅より広くなり、SPで右側が見切れる原因になっていた。 */
	width: 100%;
	max-width: 196px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--accent, var(--c-hotel));
	color: var(--ink-card);
	border: 1.5px solid var(--ink);
	border-radius: 10px;
}
.oto-cat-card.cat-oshi {
	color: #fff;
}

.oto-cat-card__head {
	padding: 18px 16px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	text-align: center;
}

.oto-cat-card__en {
	font: 800 13px/1 "Archivo", sans-serif;
	letter-spacing: 0.18em;
	color: var(--ink);
}
.oto-cat-card.cat-oshi .oto-cat-card__en {
	color: #fff;
}
/* HOTEL・GOURMET・AREA は白文字＋黒フチ（CATEGORY見出し .oto-h2--stroke
   と同じ縁取り文字の技法）に。推し活（青地）は元々白文字で読めるため対象外。 */
.oto-cat-card.cat-hotel .oto-cat-card__en,
.oto-cat-card.cat-gourmet .oto-cat-card__en,
.oto-cat-card.cat-area .oto-cat-card__en {
	color: #fff;
	-webkit-text-stroke: 1px var(--ink-card);
	paint-order: stroke fill;
}

.oto-cat-card__jp {
	font: 700 21px/1.3 "Noto Sans JP", sans-serif;
}

.oto-cat-card__bar {
	width: 26px;
	height: 2px;
	background: currentColor;
}

.oto-cat-card__sub {
	font: 300 10.5px/1.5 "Noto Sans JP", sans-serif;
	opacity: 0.9;
}
/* ホテル以外（グルメ・エリア。推し活は元々白）はサブテキストと
   「もっと見る」も白文字に。 */
.oto-cat-card.cat-gourmet .oto-cat-card__sub,
.oto-cat-card.cat-area .oto-cat-card__sub,
.oto-cat-card.cat-gourmet .oto-cat-card__more,
.oto-cat-card.cat-area .oto-cat-card__more {
	color: #fff;
}

.oto-cat-card__links {
	padding: 16px 14px 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.oto-cat-card__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	background: var(--ink);
	color: #fff;
	border-radius: 7px;
	padding: 11px 12px;
	font: 700 11.5px/1.5 "Noto Sans JP", sans-serif;
}
.oto-cat-card__link-arrow {
	flex: none;
	font: 700 11px/1 "Noto Sans JP", sans-serif;
	color: #fff;
}

.oto-cat-card__more {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 16px 0 13px;
	font: 500 11.5px/1 "Noto Sans JP", sans-serif;
}
.oto-cat-card.cat-oshi .oto-cat-card__more {
	color: #fff;
}
.oto-cat-card__more-arrow {
	font: 700 9px/1 "Noto Sans JP", sans-serif;
}

.oto-cat-grid {
	/* 列を196px固定にする（1frのままだと広い画面でカードの右に余白が
	   できて、カード同士の間隔が実際のgap値より広く見えてしまうため）。
	   余ったスペースは行の右側に流す。 */
	display: grid;
	grid-template-columns: repeat(4, 196px);
	justify-content: start;
	gap: 18px;
}

/* =========================================================
   8. ヘッダー
   ========================================================= */
.oto-header {
	background: var(--surface);
}

.oto-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 34px;
}

.oto-header__brand {
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: var(--ink);
}
.oto-header__title {
	font: 700 20px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.08em;
}
.oto-header__logo-img {
	display: block;
	align-self: flex-start;
	height: 28px;
	width: auto;
}

.oto-header__nav-wrap {
	display: flex;
	align-items: center;
	gap: 20px;
}

.oto-header__nav ul {
	display: flex;
	align-items: center;
	gap: 20px;
}
.oto-header__nav a {
	font: 500 11px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.14em;
	color: #4a463f;
}
.oto-header__nav a:hover {
	color: var(--ink);
}

.oto-header__search-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #ddd8cf;
	padding: 8px 12px;
	color: var(--text-mute);
	min-height: 44px;
}
.oto-header__search-toggle .oto-icon-dot {
	width: 12px;
	height: 12px;
	border: 1.5px solid #9a9285;
	border-radius: 50%;
	display: inline-block;
}
.oto-header__search-toggle span.oto-header__search-label {
	font: 400 10.5px/1 "Noto Sans JP", sans-serif;
}

.oto-header__search-form {
	padding: 0 34px 14px;
}
.oto-header__search-form[hidden] {
	display: none;
}

.oto-header__hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 44px;
	height: 44px;
	align-items: center;
}
.oto-header__hamburger span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--ink);
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.oto-header__hamburger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}
.oto-header__hamburger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.oto-header__hamburger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   9. サイドバー（README §7 / §10 / 6c）
   ========================================================= */
.oto-sidebar-wrap {
	padding: 22px;
}

.oto-sidebar {
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 26px;
}

/* ドロワー化するのは900px以下のみ（レスポンシブブロックで表示に切替）。 */
.oto-sidebar__close {
	display: none;
}

.oto-no-scroll {
	overflow: hidden;
}

.oto-sidebar__brand {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.oto-sidebar__title {
	font: 700 20px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.08em;
	color: var(--ink);
}
.oto-sidebar__logo-img {
	display: block;
	align-self: flex-start;
	height: 32px;
	width: auto;
}

.oto-sidebar__block {
	display: flex;
	flex-direction: column;
}
.oto-sidebar__label {
	font: 800 11px/1 "Archivo", sans-serif;
	letter-spacing: 0.18em;
	color: #201e1d;
	padding-bottom: 10px;
}

.oto-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.oto-sidebar__cat-item,
.oto-sidebar__about-item {
	display: flex;
	align-items: center;
	gap: 10px;
	border-top: 1px solid #dcdcdc;
	padding: 13px 0;
	font: 400 13.5px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.06em;
	color: var(--ink);
}
.oto-sidebar__cat-item:last-child,
.oto-sidebar__about-item:last-child {
	border-bottom: 1px solid #dcdcdc;
}
.oto-sidebar__chip {
	width: 5px;
	height: 17px;
	flex: none;
	background: var(--accent, var(--ink));
}
.oto-sidebar__arrow {
	margin-left: auto;
	color: #b3b3b3;
}

/* --- POPULAR TAG（新規） --- */
.oto-sidebar__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	border-top: 1px solid #dcdcdc;
	padding-top: 13px;
}

/* --- .oto-tag：タグチップの共通コンポーネント（sidebar POPULAR TAG /
   footer POPULAR TAG / 記事ヒーローの利用形態チップで共通利用）。
   枠線 1.5px #dcdcdc は罫線(1px)ともパネル枠(2px)とも太さが揃わず浮いて
   見えていたため、枠をやめてサイト地色(--bg)の面で処理する。 --- */
.oto-tag {
	display: inline-flex;
	align-items: center;
	background: var(--bg);
	color: var(--text);
	font: 500 11px/1 "Noto Sans JP", sans-serif;
	padding: 8px 10px;
	text-decoration: none;
}
.oto-tag:hover {
	background: #e3e3e3;
}
.oto-tag__hash {
	font-weight: 700;
	color: var(--accent-dk, var(--ink));
}

/* --- FOLLOW（新規。旧・公式サイトの角丸ボタンは廃止 — 角丸はCATEGORY
   カードにしか使わない方針のため） --- */
/* 支給されたSVGが黒丸バッジ込みの完成アイコンなので、枠線ラッパーは
   持たせず、サイズだけコンテキストごとに変える。 */
.oto-follow {
	display: flex;
	gap: 9px;
}
.oto-follow__icon {
	display: flex;
	flex: none;
}
.oto-follow__icon img {
	display: block;
}
/* サイドバー：46×46（既定値） */
.oto-sidebar .oto-follow__icon img {
	width: 46px;
	height: 46px;
}
/* フッターPC：40×40 */
.oto-footer__follow .oto-follow__icon img {
	width: 40px;
	height: 40px;
}

/* =========================================================
   10. フッター（sidebar-footer.dc.html 13b PC / 13c SP、15g採用案）
   4ブロック構成：①カテゴリー4列 ②POPULAR TAG ③ポリシー+SNS+
   ページトップ（1行） ④ロゴ帯。区切り線はロゴ帯上の2px #201e1dのみ。
   1px #dcdcdcの横罫は全廃し、gap 24pxの余白だけでブロックを分ける
   （線が3本あると4段が同格に見えて主従が読めなくなるため、線を1本に
   絞って「本編／締め」の2部構成にする）。
   ========================================================= */
.oto-footer-wrap {
	padding: 8px 34px 34px;
}

.oto-footer__panel {
	border: 2px solid #201e1d;
	padding: 30px 34px 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* --- 1. カテゴリー4列（変更なし） --- */
.oto-footer__cats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.oto-footer__cat-col {
	display: flex;
	flex-direction: column;
}
.oto-footer__cat-head {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--ink);
	font: 700 13px/1 "Noto Sans JP", sans-serif;
	margin-bottom: 10px;
}
.oto-footer__chip {
	width: 5px;
	height: 15px;
	flex: none;
	background: var(--accent, var(--ink));
}
.oto-footer__sublinks {
	list-style: none;
	margin: 0;
	padding-left: 14px;
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.oto-footer__sublinks li {
	margin: 0;
	padding: 0;
}
.oto-footer__sublinks a {
	display: block;
	font: 400 11.5px/1 "Noto Sans JP", sans-serif;
	color: var(--text-sub);
	text-decoration: none;
}
.oto-footer__sublinks a:hover {
	color: var(--ink);
}
.oto-footer__sublink-short {
	display: none;
}

/* --- 2. POPULAR TAG（上の罫線は廃止） --- */
.oto-footer__tags-label {
	font: 800 10px/1 "Archivo", sans-serif;
	letter-spacing: 0.18em;
	color: #8a8a8a;
	margin-bottom: 13px;
}
.oto-footer__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

/* --- 3. ポリシーリンク＋SNS＋ページトップ（1行に統合、罫線なし） ---
   パネル全体のブロック間gap(24px)だと、POPULAR TAGとの間だけ他の
   ブロック内の余白（ラベル→チップ13pxなど）より間延びして見えたため、
   ここだけ負のmargin-topで詰める。 */
.oto-footer__policy-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: -10px;
}
.oto-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	font: 400 10.5px/1 "Noto Sans JP", sans-serif;
	color: #8a8a8a;
}
.oto-footer__links a {
	color: #8a8a8a;
}
.oto-footer__links a:hover {
	color: var(--ink);
}
.oto-footer__policy-right {
	display: flex;
	align-items: center;
	gap: 9px;
}
.oto-footer__follow .oto-follow__icon img {
	width: 36px;
	height: 36px;
}
.oto-footer__totop {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 5px;
	border: 2px solid #201e1d;
	font: 700 10px/1 "Noto Sans JP", sans-serif;
	color: var(--ink);
	padding: 11px 13px;
}

/* --- 4. ロゴ帯（区切り線はここだけ）。ロゴ／タグライン／copyright は
   常にフラットな3兄弟。PCは「ロゴ+copyright」を左ペアにしタグラインを
   右へ（タグラインの margin-left:auto で押し出す）。SPは「ロゴ+
   タグライン」を左ペアにしcopyrightを最後に送る（縦積み時は単純に
   DOM順を並べ替える）。 --- */
.oto-footer__logoband {
	display: flex;
	align-items: flex-end;
	gap: 20px;
	border-top: 2px solid #201e1d;
	padding-top: 22px;
}
.oto-footer__title {
	font: 700 18px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.08em;
	color: var(--ink);
}
.oto-footer__logo-img {
	display: block;
	height: 26px;
	width: auto;
	order: 1;
}
.oto-footer__copyright {
	font: 400 10.5px/1 "Archivo", sans-serif;
	color: #8a8a8a;
	order: 2;
}
/* サブテキストではなくロゴ帯右端のタグラインとして扱う（黒・太字）。 */
.oto-footer__tagline {
	margin: 0 0 0 auto;
	font: 700 17px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.14em;
	color: #201e1d;
	order: 3;
}

/* --- サイドバー・フッター SP（sidebar-footer.dc.html 13c）
   順序・線の扱いはPCと同じ（ロゴ帯上の2pxのみ）。 --- */
@media (max-width: 520px) {
	.oto-footer__panel {
		padding: 24px 18px 20px;
	}

	.oto-footer__cats {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}
	.oto-footer__cat-head {
		font-size: 12.5px;
		margin-bottom: 9px;
	}
	.oto-footer__chip {
		width: 5px;
		height: 14px;
	}
	.oto-footer__sublinks {
		gap: 6px;
		padding-left: 13px;
	}
	.oto-footer__sublinks a {
		font-size: 11px;
		line-height: 1;
	}
	.oto-footer__sublink-full {
		display: none;
	}
	.oto-footer__sublink-short {
		display: inline;
	}

	.oto-footer__tags {
		gap: 6px;
	}
	.oto-footer__tags a:nth-child(n + 6) {
		display: none;
	}
	.oto-footer__tags .oto-tag {
		font-size: 10.5px;
		padding: 8px 9px;
	}

	.oto-footer__policy-row {
		/* 行間(リンク群とSNS行の間)は列間より広くする。flex-wrapの
		   gapは行・列で共通値になりがちで、SNS行が近すぎて見えていた。 */
		row-gap: 18px;
		column-gap: 16px;
		margin-top: 0;
	}
	.oto-footer__links {
		flex-wrap: wrap;
		gap: 9px 16px;
		font-size: 10.5px;
	}

	/* ロゴ帯はSPでは縦積み：ロゴ＋タグラインをペアにし、copyrightを最後に
	   送る（PCとはペアの組み方が逆になるため、flatな3兄弟のorderだけを
	   ここで組み替える）。 */
	.oto-footer__logoband {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	.oto-footer__logo-img {
		height: 23px;
		order: 1;
	}
	.oto-footer__tagline {
		font-size: 13px;
		margin: 0;
		order: 2;
	}
	.oto-footer__copyright {
		margin-top: 8px;
		order: 3;
	}
	.oto-footer__policy-right {
		width: 100%;
		justify-content: space-between;
	}
	.oto-footer__follow .oto-follow__icon img {
		width: 44px;
		height: 44px;
	}
	.oto-footer__copyright {
		order: 4;
	}
}

/* =========================================================
   11. 検索フォーム（README §2 罫線表：補助的な枠 = 1.5px --rule）
   ========================================================= */
.oto-search-form {
	display: flex;
	align-items: stretch;
	border: 1.5px solid var(--rule);
}
.oto-search-form__field {
	flex: 1 1 auto;
	border: 0;
	padding: 10px 12px;
	font: 400 12.5px/1.5 "Noto Sans JP", sans-serif;
	color: var(--text);
	background: transparent;
	min-height: 44px;
}
.oto-search-form__field:focus {
	outline: 2px solid var(--ink);
	outline-offset: -2px;
}
.oto-search-form__submit {
	flex: none;
	min-width: 44px;
	min-height: 44px;
	padding: 0 16px;
	font: 700 11px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.06em;
	color: var(--ink);
	background: var(--surface);
	border-left: 1.5px solid var(--rule);
}
.oto-search-form__submit:hover {
	background: var(--bg);
}

/* =========================================================
   12. レスポンシブ（README §10）
   ========================================================= */
@media (max-width: 900px) {
	/* サイドバーを本文の下に移動。
	   TODO: 実際のグリッド組み替えは front-page.php 等のテンプレート側で
	   .oto-layout（2カラム）→ 1カラムへの並び替えとして実装する（Stage 1 では未着手）。 */
	.oto-cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.oto-header__bar {
		padding: 14px 20px;
	}
	.oto-header__nav-wrap {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		background: var(--surface);
		border-top: 1px solid var(--rule);
		border-bottom: 2px solid var(--ink);
		padding: 8px 20px 16px;
		z-index: 20;
	}
	.oto-header__nav-wrap.is-open {
		display: flex;
	}
	.oto-header__nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}
	.oto-header__nav a {
		display: block;
		width: 100%;
		padding: 12px 0;
		border-bottom: 1px solid var(--rule);
		min-height: 44px;
	}
	.oto-header__hamburger {
		display: flex;
	}
	.oto-header {
		position: relative;
	}

	/* サイドバーは900px以下ではインライン表示せず、ハンバーガーで開閉する
	   右からのオフキャンバス・ドロワーになる。PHP出力はどの幅でも同一で、
	   ここでの position:fixed 切り替えだけで見た目を変える（assets/js/nav.js
	   が .is-open クラスを付け外しする）。 */
	.oto-sidebar-wrap {
		position: fixed;
		top: 0;
		right: 0;
		width: min(320px, 85vw);
		max-width: 85vw;
		height: 100vh;
		height: 100dvh;
		overflow-y: auto;
		padding: 18px;
		background: var(--bg);
		box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
		transform: translateX(100%);
		transition: transform 0.25s ease;
		z-index: 60;
	}
	.oto-sidebar-wrap.is-open {
		transform: translateX(0);
	}
	.oto-sidebar {
		min-height: 100%;
	}
	.oto-sidebar__close {
		display: flex;
		align-items: center;
		justify-content: center;
		align-self: flex-end;
		width: 32px;
		height: 32px;
		margin-bottom: -10px;
		border: 1px solid var(--rule);
		font-size: 20px;
		line-height: 1;
		color: var(--ink);
	}
	.oto-sidebar-backdrop {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(32, 30, 29, 0.4);
		z-index: 55;
	}
	.oto-sidebar-backdrop.is-open {
		display: block;
	}

	.oto-footer-wrap {
		padding: 8px 18px 18px;
	}
	.oto-footer__cats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	/* 記事本文パディングは18px（確定値。README §10 記載の20pxは誤りで、
	   モック実測に合わせて修正）。CATEGORYカードは375px以下まで2列を
	   維持する（③参照）。フッターのカテゴリー4列は2×2のまま（後方の
	   「サイドバー・フッター SP」ブロックで指定、ここでは触らない）。 */
	.oto-content-pad {
		padding-left: 18px;
		padding-right: 18px;
	}
}

@media (max-width: 375px) {
	.oto-cat-grid {
		grid-template-columns: 1fr;
	}
}

.oto-content-pad {
	padding-left: 34px;
	padding-right: 34px;
}

/* サイト全体の横幅上限。README §1「対応幅 PC 1080px以上」はデザインを
   作った基準幅であって無制限に伸ばす前提ではないため、広いモニターでも
   コンテンツが間延びしないよう1280pxで頭打ちにして中央寄せする。 */
.oto-header__bar,
.oto-mainvisual,
.oto-content-pad,
.oto-footer-wrap {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

/* =========================================================
   13. アーカイブ（README archive.php項 / archive.dc.html 7a・7b）
   Stage 2 追加分。カード・ページ送り・パンくず・タグチップ・
   アーカイブ見出しブロック。既存セクションはそのまま、末尾に追記。
   ========================================================= */

/* --- 記事カードのグリッド（README §10 のブレークポイントに合わせる） --- */
.oto-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px 20px;
}

/* --- パンくず（確定仕様）
   文字 400 11px/1.7、通常項目 --text-sub、現在ページ --ink 700、
   区切り"›"は#b3b3b3・前後gap8px、上下パディング12px（左右は
   .oto-content-pad の記事本文と同じ34px/18pxを継承）、
   SPは折り返さず横スクロール（スクロールバー非表示） --- */
.oto-breadcrumb {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	padding: 12px 0;
	font: 400 11px/1.7 "Noto Sans JP", sans-serif;
	color: var(--text-sub);
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.oto-breadcrumb::-webkit-scrollbar {
	display: none;
}
.oto-breadcrumb a {
	color: var(--text-sub);
	flex: none;
}
.oto-breadcrumb a:hover {
	color: var(--ink);
}
.oto-breadcrumb__current {
	color: var(--ink);
	font-weight: 700;
	flex: none;
}
.oto-breadcrumb__sep {
	flex: none;
	color: #b3b3b3;
	padding: 0 8px;
}

/* --- アーカイブ見出しブロック（archive.dc.html 7a: 白地＋2px --ink 枠） --- */
.oto-archive-head {
	padding: 24px 26px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: var(--surface);
	border: 2px solid var(--ink);
}
.oto-archive-head__label {
	font: 800 13px/1 "Archivo", sans-serif;
	letter-spacing: 0.16em;
	/* 文字色は塗り色ではなく濃い段を使う（README §2「本文サイズの文字色ルール」） */
	color: var(--accent-dk, var(--ink));
}
.oto-archive-head__title {
	font: 700 30px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.04em;
	color: var(--ink);
}
.oto-archive-head__desc {
	max-width: 62ch;
	font: 300 12.5px/2 "Noto Sans JP", sans-serif;
	color: #4a463f;
}
/* タグアーカイブ・検索結果・日付アーカイブ：カテゴリー色を持たないので黒のまま */
.oto-archive-head--plain .oto-archive-head__title {
	color: var(--ink);
}
.oto-archive-head__tagmark {
	color: var(--text-mute);
	margin-right: 4px;
}

/* --- タグチップ行（archive.dc.html 7a: 選択中はカテゴリー色で塗り） --- */
.oto-tag-chips {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}
.oto-tag-chips__label {
	padding-right: 4px;
	font: 900 10.5px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.18em;
	color: var(--ink);
}
.oto-tag-chip {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	background: var(--surface);
	border: 1.5px solid var(--rule);
	padding: 8px 12px;
	font: 400 11px/1 "Noto Sans JP", sans-serif;
	color: #4a463f;
}
.oto-tag-chip:hover {
	border-color: #4a463f;
}
.oto-tag-chip__mark {
	color: var(--accent-dk, var(--ink));
}
.oto-tag-chip.is-active {
	background: var(--accent, var(--ink));
	border-color: var(--ink);
	color: var(--on-accent, #fff);
	font-weight: 700;
}
.oto-tag-chip.is-active .oto-tag-chip__mark {
	color: inherit;
}

/* --- 記事0件時 --- */
.oto-archive-empty {
	padding: 40px 0;
	font: 400 13px/1.8 "Noto Sans JP", sans-serif;
	color: var(--text-mute);
}

/* --- 番号ページ送り（archive.dc.html 7a・7b共通の丸ボタン形） --- */
.oto-pagination ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 26px 0 6px;
}
.oto-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--surface);
	border: 1.5px solid var(--rule);
	font: 400 12px/1 "Noto Sans JP", sans-serif;
	color: var(--ink);
}
.oto-pagination .page-numbers.current {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
	font-weight: 700;
}
.oto-pagination .page-numbers.prev,
.oto-pagination .page-numbers.next {
	border: 2px solid var(--ink);
	border-radius: 50%;
	font: 700 15px/1 "Noto Sans JP", sans-serif;
}
.oto-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}

/* --- レスポンシブ（README §10 と同じブレークポイント値） --- */
@media (max-width: 900px) {
	.oto-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.oto-card-grid {
		grid-template-columns: 1fr;
	}
	.oto-archive-head {
		padding: 20px;
	}
}

/* =========================================================
   14. 記事詳細（single.php）— README §5「共通（全カテゴリー）」
   Stage 3 追加分。バッジ＋日付／タイトル／TAG／アイキャッチ／INDEX／
   SHARE／RELATEDの各テンプレート実装ブロック。既存セクションは
   そのまま、末尾に追記。
   ========================================================= */

/* --- 記事全体の横幅上限。アイキャッチ（.oto-article-eyecatch）は左右
   パディング無しで「縁いっぱい」に見せる仕様だが、その"縁"がサイト全体の
   1280px上限ではなくブラウザ全幅になってしまっていたため、記事のルート
   要素自体をここで1280px＋中央寄せにする。 --- */
.oto-article {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

/* --- 記事全体：大セクション間 52px（README §2 余白表） --- */
.oto-article-body {
	display: flex;
	flex-direction: column;
	gap: 52px;
	padding-top: 44px;
	padding-bottom: 54px;
}

/* --- 1〜3. バッジ＋日付／タイトル／TAG（article-*-full.dc.html 冒頭ブロック） --- */
.oto-article-head {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-top: 30px;
	padding-bottom: 24px;
}
.oto-article-head__meta {
	display: flex;
	align-items: center;
	gap: 12px;
}
.oto-article-head__date {
	font: 400 10.5px/1 "Noto Sans JP", sans-serif;
	color: var(--text-mute);
}
.oto-article-head__title {
	font: 700 25px/1.6 "Noto Sans JP", sans-serif;
	color: var(--ink);
}

.oto-article-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}
.oto-article-tags__label {
	font: 900 10.5px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.18em;
	color: var(--ink);
}
.oto-article-tags__item {
	padding: 4px 0;
	font: 500 11.5px/1 "Noto Sans JP", sans-serif;
	color: #4a463f;
}
/* README §2 の「本文サイズの文字色には塗り色を使わず必ず濃い段を使う」ルールに
   忠実に --accent-dk を使用。article-hotel.dc.html の # は実際に #8a6206
   （c-hotel-dk）で塗られており、この規則どおり。gourmet の同モックだけ塗り色の
   ままになっているが、README本文の明記されたルールを優先した。
   TODO: これは既存 .oto-card__tag-mark（Stage 2, var(--accent)）とは
   意図的に異なる値。カード内の小さな飾り記号と、本文見出し級の# は別物として
   扱っている。 */
.oto-article-tags__mark {
	color: var(--accent-dk, var(--c-gourmet-dk));
}

/* --- 4. アイキャッチ（16:9、左右パディングなしで縁いっぱいに表示） --- */
.oto-article-eyecatch {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--rule);
}
.oto-article-eyecatch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- 6. INDEX（目次）：article-*-full.dc.html の白パネル型目次 --- */
.oto-toc {
	border: 1.5px solid var(--ink);
	padding: 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.oto-toc__head {
	display: flex;
	align-items: baseline;
	gap: 12px;
}
.oto-toc__label {
	font: 900 11px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.18em;
	color: var(--ink);
}
.oto-toc__sub {
	font: 400 10.5px/1 "Noto Sans JP", sans-serif;
	color: var(--text-mute);
}
.oto-toc__list {
	display: flex;
	flex-direction: column;
}
.oto-toc__item {
	display: flex;
	align-items: baseline;
	gap: 12px;
	border-top: 1px solid var(--rule);
	padding: 11px 0;
	font: 400 12.5px/1 "Noto Sans JP", sans-serif;
	color: var(--text);
}
.oto-toc__item:last-child {
	border-bottom: 1px solid var(--rule);
}
.oto-toc__num {
	font: 700 12.5px/1 "Noto Sans JP", sans-serif;
	color: var(--accent-dk, var(--c-gourmet-dk));
}

/* --- 7. 本文（entry-content の外枠。リンク装飾は既存 §4 を流用） --- */
.entry-content {
	display: flex;
	flex-direction: column;
	gap: 26px;
}
.entry-content > * {
	margin: 0;
}

/* --- 11. SHARE --- */
.oto-share {
	display: flex;
	flex-direction: column;
	gap: 11px;
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	padding: 18px 0;
}
.oto-share__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}
.oto-share__label {
	font: 900 11px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.18em;
	color: var(--ink);
}
.oto-share__icons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.oto-share__icon {
	display: inline-flex;
	align-items: center;
	border: 1.5px solid var(--ink);
	font: 700 10.5px/1 "Noto Sans JP", sans-serif;
	padding: 9px 14px;
	color: var(--ink);
	background: transparent;
}
a.oto-share__icon:hover {
	background: var(--ink);
	color: #fff;
}
.oto-share__icon--copy {
	border-color: var(--rule);
	font-weight: 400;
	color: var(--text-sub);
}
.oto-share__icon--copy:hover {
	border-color: var(--text-sub);
}
.oto-share__note {
	font: 400 11px/1.8 "Noto Sans JP", sans-serif;
	color: var(--text-mute);
}

/* --- 12. RELATED --- */
.oto-related {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.oto-related__head {
	display: flex;
	align-items: baseline;
	gap: 14px;
}
.oto-related__sub {
	font: 400 11.5px/1 "Noto Sans JP", sans-serif;
	color: var(--text-mute);
}

/* --- レスポンシブ（README §10・article-*-full.dc.html の520px上書きに準拠） --- */
@media (max-width: 520px) {
	.oto-article-head {
		padding-top: 20px;
		padding-bottom: 18px;
	}
	.oto-article-head__title {
		font-size: 20px;
	}
	.oto-toc {
		padding: 20px 18px;
	}
}

/* =========================================================
   15. 記事詳細の本文ブロック（ヒーロー／訪問情報／REVIEW／メニュー／
   USE CASE／Q&A／PLAN／基本情報＋地図）は css/oto-article.css（記事詳細
   ページ限定で読み込み）に統合済み。ここには置かない。

   .entry-content（ブロックエディタの自由記述本文）だけは oto-article.css の
   対象外（WP標準クラスのため）。.oto-entry-body 直下の他ブロックと同じ
   セクション間隔で並ぶよう、.oto-section と同じgapをここで補っておく。
   ========================================================= */
.oto-entry-body .entry-content {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

/* =========================================================
   16. TOP（front-page.php）— README §4 front-page.php項、
   top-layout.dc.html 3a（PC）/ 4a（SP）。
   ========================================================= */

/* --- 2. メインビジュアル（画像のみ。テキスト・リンクは置かない） ---
   注意：single.php の施設情報ヒーロー用 .oto-hero とは別名にする
   （§15 で既に .oto-hero を使用済みのため .oto-mainvisual とした）。 */
.oto-mainvisual {
	width: 100%;
}
.oto-mainvisual__img {
	display: block;
	width: 100%;
	height: 330px;
	object-fit: cover;
	background: var(--rule);
}

/* --- 6. サイドバー（PCは右カラム。コンテンツエリア内のみの高さ）
   TODO: top-layout.dc.html の採用案 3a 自体は「左サイドバー固定」の検討用
   マークアップだが、README §4 本文は明示的に「PCは右カラム」と書いてあり
   数値仕様（README冒頭「値は変えずに実装」）はREADMEの記述が優先。ここでは
   README本文の右カラム指定に従う。全画面高さにしないための実装方法は
   align-items:start（stretchにしない）＝サイドバーは自分の中身の高さで
   止まり、本文カラムの高さに引っ張られない。 */
.oto-layout {
	display: grid;
	grid-template-columns: 300px 1fr;
	align-items: start;
	gap: 0 22px;
}
.oto-layout__main {
	min-width: 0;
}
.oto-layout__aside {
	min-width: 0;
}

/* 各セクション共通の縦間隔 */
.oto-front-section {
	padding: 34px 0;
}
.oto-front-section:first-child {
	padding-top: 22px;
}

/* --- 3. CATEGORY（既存 .oto-cat-card / .oto-cat-grid を再利用） --- */
.oto-front-category__head {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 22px;
}
.oto-front-category__sub {
	font: 400 11.5px/1 "Noto Sans JP", sans-serif;
	color: var(--text-mute);
}

/* --- 5. PICK UP スライダー（Swiper。前後の丸ボタンに ‹ ›） --- */
.oto-pickup__head {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 20px;
}
.oto-pickup__sub {
	font: 400 11.5px/1 "Noto Sans JP", sans-serif;
	color: var(--text-mute);
}
.oto-pickup__viewport {
	position: relative;
}
.oto-pickup__swiper {
	overflow: hidden;
}
/* カード幅は枚数指定(slidesPerView:2.2など)ではなく固定幅にする。
   枚数指定だと画面幅に合わせてカード自体が伸び縮みし、大きくなりすぎる
   ため（JS側は slidesPerView:'auto' とセットで指定 — assets/js/swiper-init.js）。 */
.oto-pickup__swiper .swiper-slide {
	width: 300px;
	flex: none;
	height: auto;
	display: flex;
}
.oto-pickup__swiper .swiper-slide > .oto-card {
	width: 100%;
}
/* サムネイルは16:9固定（サイト全体共通のルールをこの文脈でも明示）。 */
.oto-pickup .oto-card__thumb {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.oto-pickup .oto-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* カード内部の余白は中身まかせ。高さ揃えのmin-height/heightは付けない。
   タイトルは2行で省略。 */
.oto-pickup .oto-card__body {
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 11px 12px 12px;
}
.oto-pickup .oto-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.oto-pickup__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--surface);
	border: 2px solid var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	font: 700 17px/1 "Noto Sans JP", sans-serif;
	color: var(--ink);
	z-index: 2;
}
.oto-pickup__nav--prev {
	left: -18px;
}
.oto-pickup__nav--next {
	right: -18px;
}
.oto-pickup__nav.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}
.oto-pickup__pagination.swiper-pagination {
	position: static;
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 18px;
}
.oto-pickup__pagination .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #c2c2c2;
	opacity: 1;
	margin: 0;
}
.oto-pickup__pagination .swiper-pagination-bullet-active {
	background: var(--ink);
}

/* --- 4. カテゴリーごとの新着記事セクション（大カード1枚＋ミニカード3枚） ---
   左カラムは top-layout.dc.html 3a の実物レール構成（アイコン＋連番／英字
   ラベル／カテゴリー名／サブテキスト／もっと見る）を再現。見出しは既存
   .oto-h2 / .oto-h2--stroke のどちらとも異なる専用コンポーネント。
   線とフォントの太さはサイト標準（他セクションとの統一）に合わせて確定。 */
.oto-new-section__body {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 26px;
	align-items: start;
}
.oto-new-section__rail {
	display: flex;
	flex-direction: column;
	gap: 9px;
}
/* rail-left / title-group はPCでは素通りのラッパー（gapはrailと同じ9pxを
   踏襲し、見た目を変えない）。SPで横並びレールに組み替える際の単位になる。 */
.oto-new-section__rail-left {
	display: flex;
	flex-direction: column;
	gap: 9px;
}
/* イラスト＋連番は廃止し、CATEGORY／PICK UPと同じ縁取り見出し
   （.oto-h2--stroke）＋日本語名の組にした。 */
.oto-new-section__title-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.oto-new-section__jp {
	font: 700 22px/1.4 "Noto Sans JP", sans-serif;
	color: var(--ink);
}
.oto-new-section__sub {
	margin: 0;
	font: 400 11.5px/1.8 "Noto Sans JP", sans-serif;
	color: var(--text-sub);
}
/* 「もっと見る」ボタン：テキスト面と矢印面（カテゴリー色ベタ塗り）を
   分割。枠線だけだと面積が小さくクリック要素に見えず、全面ベタ塗りだと
   記事カードのバッジと同じ見た目になるため、その中間を取っている。
   矢印面の文字色は既存の --on-accent を再利用（黄色だけ黒、他は白の
   ルールが既にこの変数に入っているため、--accent-on を新設しない）。 */
.oto-more {
	display: flex;
	align-items: stretch;
	align-self: flex-start;
	flex: none;
	margin-top: 8px;
	border: 2px solid var(--accent);
	text-decoration: none;
}
.oto-more__label {
	font: 700 11.5px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.08em;
	color: var(--accent-dk);
	padding: 11px 15px;
}
.oto-more__arrow {
	display: flex;
	align-items: center;
	padding: 0 12px;
	background: var(--accent);
	color: var(--on-accent);
	font: 700 12px/1 "Noto Sans JP", sans-serif;
}

/* 1大カード＋3ミニカード（ミニは右側に縦積み）。
   大カードが縦積みミニ列に対して大きすぎたため 2:1 → 1.5:1 に縮小。 */
.oto-new-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 30px;
	align-items: start;
}
.oto-new-grid__minis {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

/* --- レスポンシブ（README §10と同じブレークポイント） --- */
@media (max-width: 900px) {
	.oto-layout {
		grid-template-columns: 1fr;
	}
	/* README §10: 900px以下はサイドバーを本文の下に移動。
	   DOM順はPC左カラム表示のため aside が先だが、SPでは order で下に送る。 */
	.oto-layout__main {
		order: 1;
	}
	.oto-layout__aside {
		order: 2;
	}
	.oto-mainvisual__img {
		height: 240px;
	}
	.oto-new-grid {
		grid-template-columns: 1fr;
	}
	/* レール(アイコン+連番+ラベル+名前+サブ+ボタン)は900px以下で1カラムに
	   畳み、下にカードグリッドを続ける（160pxレールのまま2カラムを維持
	   すると新着カードが窮屈になるため）。 */
	.oto-new-section__body {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.oto-mainvisual__img {
		height: 210px;
	}
	.oto-front-section {
		padding: 24px 0;
	}
	/* 見出しレールをSPでも1行に（左：縁取り見出し＋日本語名、右：もっと
	   見るボタン）。サブテキストはSPでは非表示。
	   .oto-new-section__body の gap:26px（PC用、レールとカードグリッドの
	   間）は、rail自体のmargin-bottom:12pxと重なって余白が広がりすぎる
	   ため、SPでは0にしてrailのmargin-bottomだけに任せる。 */
	.oto-new-section__body {
		gap: 0;
	}
	.oto-new-section__rail {
		flex-direction: row;
		/* もっと見るボタンはOSHIKATSU（英字）ではなく推し活（日本語名）の
		   下端に揃える。 */
		align-items: flex-end;
		justify-content: space-between;
		gap: 12px;
		margin-bottom: 12px;
	}
	.oto-new-section__title-group {
		gap: 5px;
	}
	.oto-new-section__jp {
		font-size: 18px;
	}
	.oto-new-section__sub {
		display: none;
	}
	.oto-more {
		flex: none;
		align-self: auto;
		margin-top: 0;
	}
	.oto-more__label {
		font-size: 10px;
		letter-spacing: 0.06em;
		padding: 9px 12px;
	}
	.oto-more__arrow {
		font-size: 11px;
		padding: 0 10px;
	}
	.oto-pickup__swiper .swiper-slide {
		width: 265px;
	}
	.oto-pickup__nav {
		width: 28px;
		height: 28px;
		font-size: 13px;
	}
	.oto-pickup__nav--prev {
		left: -14px;
	}
	.oto-pickup__nav--next {
		right: -14px;
	}
}

/* =========================================================
   17. ブロックパターン／ショートコード コンポーネント（Stage 6）
   README §6「実装方式の振り分け」ブロックパターン表・ショートコード表、
   article-guide-parts.dc.html 10a〜10s、article-gourmet-full.dc.html /
   article-hotel.dc.html（ORDER LIST / RECOMMEND）の実測値に基づく。
   inc/patterns.php・inc/shortcodes.php から使用。
   ========================================================= */

/* --- 共通の小見出し（英字ストローク＋日本語＋色下線）。
   .oto-h2（本文h2用、19px）とはサイズが異なる箱型コンポーネント専用の
   見出しなので、既存クラスを再定義せず別名にした（10j/10k/10n/10o実測）。 --- */
.oto-pat-head {
	display: flex;
	align-items: baseline;
	gap: 14px;
}
.oto-pat-head__en {
	font: 800 14px/1 "Archivo", sans-serif;
	letter-spacing: 0.06em;
	color: transparent;
	-webkit-text-stroke: 0.9px #9a9a9a;
	white-space: nowrap;
}
.oto-pat-head__title {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.oto-pat-head__jp {
	font: 700 16px/1.4 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}
.oto-pat-head__bar {
	display: block;
	width: 26px;
	height: 3px;
	background: var(--accent, var(--c-gourmet));
}

/* --- 1. POINT囲み（カテゴリー色2px枠＋チェック） --- */
.oto-point {
	border: 2px solid var(--accent, var(--c-gourmet));
	padding: 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
/* 箱の内側に画像を置く場合は、枠のパディングの内側に収まるサイズで表示する
   （縁いっぱいに縁取りを消して見せる「ブリード」はデザイン見本にないため
   廃止— .oto-point の子要素として置いた <img> / <figure> はそのまま
   ブロック幅いっぱい・高さ自動で表示される）。 */
.oto-point > img,
.oto-point > figure {
	margin: 0;
	width: 100%;
	display: block;
}
.oto-point > figure img {
	width: 100%;
	height: auto;
	display: block;
}
.oto-point__head {
	display: flex;
	align-items: baseline;
	gap: 12px;
}
.oto-point__label {
	font: 900 11px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.18em;
	color: var(--accent-dk, var(--c-gourmet-dk));
}
.oto-point__title {
	font: 700 14px/1 "Noto Sans JP", sans-serif;
	color: var(--ink);
}
.oto-point__list {
	display: flex;
	flex-direction: column;
	gap: 11px;
}
.oto-point__item {
	display: flex;
	gap: 11px;
	font: 400 13px/1.95 "Noto Sans JP", sans-serif;
	color: var(--text);
}
.oto-point__mark {
	flex: none;
	font: 700 13px/1.95 "Noto Sans JP", sans-serif;
	color: var(--accent-dk, var(--c-gourmet-dk));
}

/* --- 2. タイトル付きボックス（推奨・注意・補足の3種／10h） --- */
/* A 推奨：黒ベタのタイトル帯 */
.oto-titlebox {
	background: var(--surface);
	border: 2px solid var(--ink);
	display: flex;
	flex-direction: column;
}
.oto-titlebox__head {
	background: var(--ink);
	color: #fff;
	font: 700 12px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.04em;
	padding: 12px 16px;
}
.oto-titlebox__body {
	padding: 18px 22px 20px;
	border-top: 2px solid var(--ink);
}
/* B 注意：左の色帯＋英字キッカー（帯色は注意喚起の固定色 #e73946） */
.oto-titlebox--stripe {
	background: var(--surface);
	border: 2px solid var(--ink);
	padding: 20px 22px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.oto-titlebox__row {
	display: flex;
	gap: 13px;
	align-items: stretch;
}
.oto-titlebox__bar {
	width: 5px;
	flex: none;
	background: #e73946;
}
.oto-titlebox__head-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.oto-titlebox__en {
	font: 800 9.5px/1 "Archivo", sans-serif;
	letter-spacing: 0.16em;
	color: var(--text-sub);
}
.oto-titlebox__title {
	font: 700 15px/1.4 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}
/* C 補足：左4pxのグレー帯だけ */
.oto-titlebox--note {
	background: var(--bg);
	border-left: 4px solid #b3b3b3;
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.oto-titlebox__note-label {
	font: 700 12px/1 "Noto Sans JP", sans-serif;
	color: var(--text-sub);
}

/* --- 3. リスト（5種：●、チェック、番号、色帯、カード／10i） --- */
.oto-list {
	display: flex;
	flex-direction: column;
	gap: 7px;
	font: 400 12.5px/1.9 "Noto Sans JP", sans-serif;
	color: var(--text);
}
.oto-list__item {
	display: flex;
	gap: 10px;
}
.oto-list__mark {
	flex: none;
	font: 700 12.5px/1.9 "Noto Sans JP", sans-serif;
	color: var(--accent-dk, var(--c-gourmet-dk));
}
.oto-list--num .oto-list__item {
	align-items: baseline;
	gap: 12px;
}
.oto-list--num .oto-list__mark {
	font: 800 15px/1 "Archivo", sans-serif;
	color: var(--accent-dk, var(--c-gourmet-dk));
}
.oto-list--rule {
	gap: 0;
	font-size: 12.5px;
	line-height: 1;
}
.oto-list--rule .oto-list__item {
	border-top: 1px solid var(--rule);
	padding: 11px 0;
}
.oto-list--rule .oto-list__item:last-child {
	border-bottom: 1px solid var(--rule);
}
.oto-list--chip .oto-list__item {
	align-items: center;
	gap: 11px;
}
.oto-list__chip {
	width: 5px;
	height: 13px;
	flex: none;
	background: var(--accent, var(--c-gourmet));
}

/* --- 4. 商品名と金額の表（10j） --- */
.oto-price-table {
	background: var(--surface);
	border: 2px solid var(--ink);
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.oto-price-table__list {
	display: flex;
	flex-direction: column;
}
.oto-price-table__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	border-top: 1px solid var(--rule);
	padding: 13px 0;
}
.oto-price-table__row:last-child {
	border-bottom: 1px solid var(--rule);
}
.oto-price-table__name {
	font: 400 12.5px/1.6 "Noto Sans JP", sans-serif;
	color: var(--text);
}
.oto-price-table__price {
	flex: none;
	font: 700 13px/1 "Noto Sans JP", sans-serif;
	color: var(--ink);
}
.oto-price-table__note {
	margin: 0;
	font: 400 10.5px/1.7 "Noto Sans JP", sans-serif;
	color: var(--text-sub);
}

/* --- 5. 2カラムの比較表（10k） --- */
.oto-compare {
	background: var(--surface);
	border: 2px solid var(--ink);
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.oto-compare__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
}
.oto-compare__col {
	display: flex;
	flex-direction: column;
}
.oto-compare__col-head {
	border-bottom: 2px solid var(--ink);
	padding: 0 0 11px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.oto-compare__col-en {
	font: 900 10px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.16em;
	color: var(--accent-dk, var(--c-gourmet-dk));
}
.oto-compare__col-title {
	font: 700 13px/1.4 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}
.oto-compare__row {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	border-bottom: 1px solid var(--rule);
	padding: 12px 0;
	font: 400 12px/1.7 "Noto Sans JP", sans-serif;
	color: var(--text);
}
.oto-compare__num {
	flex: none;
	width: 17px;
	height: 17px;
	background: var(--accent, var(--c-gourmet));
	color: #fff;
	font: 700 10px/1 "Noto Sans JP", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

/* --- 6. 横スクロールのカード（10l／10m）
   SP：overflow-x:auto＋カード固定幅のみで実装し、右端は次のカードが
   少し見える幅で自然に切れる（余分な右パディングを付けない）。 --- */
.oto-hscroll {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.oto-hscroll__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.oto-hscroll__hint {
	font: 700 11px/1 "Noto Sans JP", sans-serif;
	color: var(--text-sub);
}
.oto-hscroll__nav {
	display: flex;
	gap: 8px;
}
.oto-hscroll__btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--surface);
	border: 2px solid var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	font: 700 14px/1 "Noto Sans JP", sans-serif;
	color: var(--ink);
}
.oto-hscroll__track {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
	padding-bottom: 4px;
}
.oto-hscroll__card {
	flex: none;
	width: 230px;
	border: 2px solid var(--ink);
	background: var(--surface);
	display: flex;
	flex-direction: column;
	scroll-snap-align: start;
}
.oto-hscroll__card--narrow {
	width: 210px;
}
.oto-hscroll__card-thumb {
	display: block;
	width: 100%;
	height: 130px;
	object-fit: cover;
	border-bottom: 2px solid var(--ink);
	background: var(--rule);
}
.oto-hscroll__card--narrow .oto-hscroll__card-thumb {
	height: 118px;
}
.oto-hscroll__card-body {
	padding: 14px 15px 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.oto-hscroll__card-tag {
	align-self: flex-start;
	background: var(--accent, var(--c-hotel));
	color: var(--on-accent, var(--ink));
	font: 700 10px/1 "Noto Sans JP", sans-serif;
	padding: 6px 9px;
}
.oto-hscroll__card-title {
	font: 700 14px/1.5 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}
.oto-hscroll__card-desc {
	margin: 0;
	font: 400 11px/1.8 "Noto Sans JP", sans-serif;
	color: var(--text);
}
.oto-hscroll__card-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7px;
	padding-top: 2px;
}
.oto-hscroll__card-link {
	border: 1.5px solid var(--ink);
	color: var(--ink);
	background: transparent;
	font: 700 10.5px/1 "Noto Sans JP", sans-serif;
	padding: 10px 0;
	text-align: center;
}
.oto-hscroll__card-link--primary {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}
.oto-hscroll__card-link:hover {
	background: var(--accent, var(--c-hotel));
	color: var(--ink);
	border-color: var(--ink);
}

/* --- 7. タイムスケジュール（表型・時系列型／10n） --- */
.oto-schedule,
.oto-timeline {
	background: var(--surface);
	border: 2px solid var(--ink);
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.oto-schedule__list {
	display: flex;
	flex-direction: column;
}
.oto-schedule__row {
	display: grid;
	grid-template-columns: 17px 62px 1fr;
	gap: 14px;
	align-items: baseline;
	border-top: 1px solid var(--rule);
	padding: 13px 0;
}
.oto-schedule__row:last-child {
	border-bottom: 1px solid var(--rule);
}
.oto-schedule__num {
	flex: none;
	width: 17px;
	height: 17px;
	background: var(--accent, var(--c-gourmet));
	color: #fff;
	font: 700 10px/1 "Noto Sans JP", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}
.oto-schedule__time {
	font: 700 13px/1.6 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}
.oto-schedule__text {
	font: 400 12.5px/1.7 "Noto Sans JP", sans-serif;
	color: var(--text);
}

.oto-timeline__list {
	display: flex;
	flex-direction: column;
}
.oto-timeline__item {
	display: grid;
	grid-template-columns: 11px 1fr;
	gap: 16px;
}
.oto-timeline__rail {
	position: relative;
	display: block;
}
.oto-timeline__line {
	position: absolute;
	left: 4px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--rule);
}
.oto-timeline__item--last .oto-timeline__line {
	bottom: 50%;
}
.oto-timeline__dot {
	position: absolute;
	left: 0;
	top: 15px;
	width: 11px;
	height: 11px;
	background: var(--accent, var(--c-gourmet));
}
.oto-timeline__body {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 9px 0 14px;
}
.oto-timeline__item--last .oto-timeline__body {
	padding-bottom: 0;
}
.oto-timeline__time {
	font: 700 13px/1.4 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}
.oto-timeline__text {
	font: 400 12.5px/1.75 "Noto Sans JP", sans-serif;
	color: var(--text);
}

/* --- 8. セットリスト（10o） --- */
.oto-setlist {
	background: var(--surface);
	border: 2px solid var(--ink);
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.oto-setlist__rec {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--bg);
	padding: 9px 12px;
	font: 400 10.5px/1 "Noto Sans JP", sans-serif;
	color: var(--text-sub);
}
.oto-setlist__rec-label {
	font: 700 10px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.14em;
	color: var(--ink);
}
.oto-setlist__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 24px;
}
.oto-setlist__row {
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 12px;
	border-top: 1px solid var(--rule);
	padding: 9px 0;
}
.oto-setlist__num {
	font: 800 11px/1.7 "Archivo", sans-serif;
	color: #8a8a8a;
}
.oto-setlist__song {
	font: 400 12.5px/1.7 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}
.oto-setlist__row--mc {
	font: 700 11px/1.6 "Noto Sans JP", sans-serif;
	color: #999999;
}
.oto-setlist__note {
	margin: 0;
	font: 400 10.5px/1.7 "Noto Sans JP", sans-serif;
	color: var(--text-sub);
}

/* --- 9. 内部リンクバナー（10a〜10c） --- */
.oto-linkhead {
	background: var(--surface);
	padding: 34px 30px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
}
.oto-linkhead__kicker {
	font: 800 12px/1 "Archivo", sans-serif;
	letter-spacing: 0.24em;
	color: var(--text-sub);
}
.oto-linkhead__bar {
	width: 64px;
	height: 3px;
	background: var(--accent, var(--c-area));
}
.oto-linkhead__title {
	font: 700 26px/1.5 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}
.oto-linkhead__desc {
	margin: 0;
	max-width: 52ch;
	font: 400 12.5px/1.9 "Noto Sans JP", sans-serif;
	color: var(--text);
}
.oto-linkhead__links,
.oto-linkinline__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding-top: 6px;
}
.oto-linkhead__link {
	border: 1.5px solid var(--ink);
	border-radius: 7px;
	font: 700 11.5px/1 "Noto Sans JP", sans-serif;
	padding: 11px 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ink);
}
.oto-linkhead__link:hover {
	background: var(--accent, var(--c-area));
	border-color: var(--ink);
}
.oto-linkhead__link-arrow {
	font: 700 8px/1 "Noto Sans JP", sans-serif;
	color: var(--accent-dk, var(--c-area-dk));
}
.oto-linkinline {
	background: var(--surface);
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.oto-linkinline__lead {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
}
.oto-linkinline__rule {
	flex: 1;
	border-top: 1px solid var(--rule);
}
.oto-linkinline__label {
	font: 700 11.5px/1 "Noto Sans JP", sans-serif;
	color: var(--accent-dk, var(--c-area-dk));
}
.oto-shop-head {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.oto-shop-head__num {
	align-self: flex-start;
	border: 1.5px solid var(--accent, var(--c-area));
	border-radius: 7px;
	font: 700 10.5px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.06em;
	padding: 8px 12px;
	color: var(--accent-dk, var(--c-area-dk));
}
.oto-shop-head__name {
	font: 700 26px/1.4 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}
.oto-shop-head__rule {
	height: 2px;
	background: var(--accent, var(--c-area));
}

/* --- 10・11. 見出し／ハイライトは既存 .oto-h2 系・.oto-mark を再利用する
   だけなので、パターン専用の追加CSSは無し（inc/patterns.php参照）。 --- */

/* --- h3項目見出し（セクション内で無制限に繰り返す小見出し。AMENITIES／
   MINI-FRIDGE／CONVENIENCE STOREなど）。heading-structure.dc.html の
   h3行「左の色帯＋小さな英字ラベル＋日本語（700 16px）」、実測値は
   article-hotel.dc.html（AMENITIES: 帯5px／英字10px）。
   oto-article.css（正本）には無い旧サイト由来コンポーネントのため、
   ここ（style.css）に追加。VISIT INFO／MENU／SHOP GUIDE／HOTEL GUIDE／
   PLAN INFO のようなセクションの主見出しは対象外（.oto-h2を使う）。 --- */
.oto-h3-item {
	display: flex;
	gap: 13px;
	align-items: stretch;
}
.oto-h3-item__bar {
	width: 5px;
	flex: none;
	background: var(--accent);
}
.oto-h3-item__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.oto-h3-item__en {
	font: 800 10px/1 "Archivo", sans-serif;
	letter-spacing: 0.16em;
	color: var(--accent-dk);
}
.oto-h3-item__jp {
	font: 700 16px/1.4 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}

/* --- USE CASE（推し活での利用しやすさ）の見出し。article-hotel.dc.html
   実測：黒ベタ塗りの帯ラベル＋下線なし23px太字タイトル。oto-h2 / oto-h2-stroke
   / oto-h2-poster のどれとも異なる独自パターンのため、oto-article.css（正本）
   には無い。ここ（style.css）に追加。 --- */
.oto-usecase-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	margin: 14px 0;
}
.oto-usecase-head__eyebrow {
	background: var(--ink);
	color: #fff;
	font: 700 12px/1 "Noto Sans JP", sans-serif;
	letter-spacing: 0.04em;
	padding: 9px 14px;
}
.oto-usecase-head__title {
	margin: 0;
	font: 700 23px/1.4 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}

/* --- USE CASEの利用シーン別コメント（遠征利用での場合／推し活利用の場合など）。
   article-hotel.dc.html実測：塗りつぶしバッジ＋点線＋本文。oto-article.css
   （正本）には無いパターンのためここに追加。 --- */
.oto-case-badge {
	display: flex;
	align-items: center;
	gap: 14px;
}
.oto-case-badge__label {
	flex: none;
	background: var(--accent);
	color: var(--accent-on);
	font: 700 12.5px/1 "Noto Sans JP", sans-serif;
	padding: 10px 14px;
}
.oto-case-badge__line {
	flex: 1;
	border-top: 2px dotted var(--accent);
}

/* --- 12. ORDER LIST（グルメ）／ RECOMMEND（ホテル）は正本 css/oto-article.css
   の .oto-numhead コンポーネントに統一済み（inc/patterns.php参照）。旧
   .oto-num-block はここでは使わないため削除。 --- */

/* --- Wi-Fi速度チェックなどの数値カード（旧 stat-grid）。参照HTMLに該当
   パターンが無いため、既存トークンで新規デザイン。 --- */
.oto-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.oto-stat-card {
	border: 1px solid var(--rule);
	padding: 16px 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.oto-stat-card__label {
	font: 700 10px/1 "Archivo", sans-serif;
	letter-spacing: 0.1em;
	color: var(--label);
}
.oto-stat-card__val {
	font: 800 22px/1 "Archivo", sans-serif;
	color: var(--accent-dk);
}
.oto-stat-card__unit {
	font: 500 11px/1 "Noto Sans JP", sans-serif;
	color: var(--text-mute);
	margin-left: 3px;
}
@media (max-width: 520px) {
	.oto-stat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* --- .oto-numhead の番号スロットにアイコン画像を使う変種
   （メリットカードなど、番号ではなくアイコンで区分したい場合）。 --- */
.oto-numhead__icon {
	align-self: start;
	width: 34px;
	height: 34px;
	object-fit: contain;
}

/* --- .oto-card の画像が正方形素材のときの変種。既存の.oto-card（16:9、
   RELATED/PICK UP等）はそのまま、このクラスを足した場合だけ1:1にする。 --- */
.oto-card--square .oto-card__thumb {
	aspect-ratio: 1 / 1;
}

/* --- 横スクロールのカード列（旧 o2o-hotel-scroll / o2o-venue-scroll）。
   article-guide-parts.dc.html 10l・10m 実測。 --- */
.oto-scroll-cards {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.oto-scroll-cards__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.oto-scroll-cards__hint {
	font: 700 11px/1 "Noto Sans JP", sans-serif;
	color: var(--text-sub);
}
.oto-scroll-cards__nav {
	display: flex;
	gap: 8px;
}
.oto-scroll-cards__btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	font: 700 14px/1 "Noto Sans JP", sans-serif;
	cursor: pointer;
	padding: 0;
}
.oto-scroll-cards__track {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
}
.oto-scroll-cards__track::-webkit-scrollbar {
	display: none;
}

.oto-hotel-card,
.oto-venue-card {
	flex: none;
	border: 2px solid var(--ink);
	background: #fff;
	display: flex;
	flex-direction: column;
}
.oto-hotel-card {
	width: 230px;
}
.oto-venue-card {
	width: 210px;
}
.oto-hotel-card__photo-wrap,
.oto-venue-card__photo-wrap {
	width: 100%;
	overflow: hidden;
	background: var(--rule-soft, #e3e3e3);
}
.oto-hotel-card__photo-wrap {
	height: 130px;
}
.oto-venue-card__photo-wrap {
	height: 118px;
}
.oto-hotel-card__photo,
.oto-venue-card__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.oto-hotel-card__body,
.oto-venue-card__body {
	padding: 14px 15px 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-top: 2px solid var(--ink);
}
.oto-hotel-card__badge {
	align-self: flex-start;
	background: var(--accent);
	color: var(--ink);
	font: 700 10px/1 "Noto Sans JP", sans-serif;
	padding: 6px 9px;
}
.oto-hotel-card__title,
.oto-venue-card__title {
	font: 700 14px/1.5 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}
.oto-hotel-card__desc {
	font: 400 11px/1.8 "Noto Sans JP", sans-serif;
	color: var(--text, #3a3733);
}
.oto-venue-card__events {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font: 400 11px/1.7 "Noto Sans JP", sans-serif;
	color: var(--text, #3a3733);
}
.oto-venue-card__event {
	display: flex;
	gap: 9px;
}
.oto-venue-card__dot {
	flex: none;
	width: 4px;
	height: 11px;
	background: var(--accent);
	margin-top: 5px;
}
.oto-hotel-card__links,
.oto-venue-card__links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7px;
	padding-top: 2px;
}
.oto-hotel-card__links a,
.oto-venue-card__links a {
	border: 1.5px solid var(--ink);
	color: var(--ink);
	font: 700 10.5px/1 "Noto Sans JP", sans-serif;
	padding: 10px 0;
	text-align: center;
	text-decoration: none;
}
.oto-hotel-card__links a.solid,
.oto-venue-card__links a.solid {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}
.oto-hotel-card__links a:hover,
.oto-venue-card__links a:hover {
	background: var(--accent);
}
.oto-hotel-card__links a.solid:hover,
.oto-venue-card__links a.solid:hover {
	color: var(--ink);
	border-color: var(--ink);
}

/* --- [oto_sns]（README §6／§11：92px→実装時52px角） --- */
.oto-sns {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.oto-sns__col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.oto-sns__icon {
	width: 52px;
	height: 52px;
	border: 1.5px solid var(--ink);
	border-radius: 7px;
	background: var(--surface);
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
}
.oto-sns__icon:hover {
	background: var(--accent, var(--c-gourmet));
}
.oto-sns__label {
	font: 700 10px/1 "Noto Sans JP", sans-serif;
	color: var(--text-sub);
}

/* --- [oto_booking]（予約サイトボタン群。1つ目だけベタ塗りで主従をつける／10l） --- */
.oto-booking {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.oto-booking__btn {
	border: 1.5px solid var(--ink);
	color: var(--ink);
	background: transparent;
	font: 700 11px/1 "Noto Sans JP", sans-serif;
	padding: 11px 16px;
}
.oto-booking__btn--primary {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}
.oto-booking__btn:hover {
	background: var(--accent, var(--c-hotel));
	color: var(--ink);
	border-color: var(--ink);
}

/* --- [oto_affiliate]（README §6 アフィリエイトボタンのサービスカラー表。
   枠線はすべて --ink 1.5pxで固定、文字色は地色に対して読める側） --- */
.oto-affiliate-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	border: 1.5px solid var(--ink);
	font: 700 11px/1 "Noto Sans JP", sans-serif;
	padding: 11px 14px;
}
.oto-affiliate-btn:hover {
	filter: brightness(0.92);
}
.oto-affiliate-btn--amazon {
	background: #ff9900;
	color: #201e1d;
}
.oto-affiliate-btn--rakuten {
	background: #bf0000;
	color: #fff;
}
.oto-affiliate-btn--yahoo {
	background: #ff0033;
	color: #fff;
}
.oto-affiliate-btn--animate {
	background: #eb6100;
	color: #201e1d;
}
.oto-affiliate-btn--official {
	background: #201e1d;
	color: #fff;
}
.oto-affiliate-btn__arrow {
	font: 700 9px/1 "Noto Sans JP", sans-serif;
}

/* =========================================================
   14. 404 / 検索結果0件（README §4・§12「未設計」— Stage 7 judgment call）
   既存の .oto-archive-head--plain / .oto-archive-empty / .oto-search-form /
   .oto-card-grid をそのまま再利用し、この節では両者に共通する「本文と
   検索フォーム／2つ目の見出しの間の余白」だけを追加する。
   ========================================================= */
.oto-search-empty {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 20px;
}
.oto-search-empty .oto-search-form {
	max-width: 420px;
}

/* 404ページの「最新の記事」見出しは一覧見出しの直後に来るので、通常の
   .oto-archive-head の下マージンより少し詰めて連続感を出す。 */
.oto-404-recent-head {
	margin-top: 12px;
}

/* wp_link_pages()（改ページされた固定ページ用）— 既存の本文リンク装飾
   （.entry-content a）をそのまま継承するのでリンク自体のスタイルは不要、
   ラベルとの間隔だけ調整する。 */
.oto-page-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font: 700 12.5px/1 "Noto Sans JP", sans-serif;
	color: var(--ink);
}

/* --- 読者の声カード（旧 o2o-worry-card）。article-guide-parts.dc.html 10s
   実測：白＋2px枠のパネル、左の色帯＋一文、下に円形イラスト。 --- */
.oto-voice-grid {
	display: flex;
	gap: 16px;
	align-items: stretch;
}
.oto-voice-card {
	flex: 1;
	background: #fff;
	border: 2px solid var(--ink);
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 18px 18px 20px;
	align-items: center;
}
.oto-voice-card__text {
	display: flex;
	gap: 11px;
	align-items: stretch;
	width: 100%;
}
.oto-voice-card__bar {
	width: 4px;
	background: var(--accent);
	flex: none;
}
.oto-voice-card__text span:last-child {
	font: 700 12px/1.85 "Noto Sans JP", sans-serif;
	color: #1a1a1a;
}
.oto-voice-card__icon {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--rule-soft, #e3e3e3);
}
.oto-voice-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* --- レスポンシブ（README §10・article-guide-parts.dc.html の520px上書きに準拠） --- */
@media (max-width: 520px) {
	.oto-compare__grid,
	.oto-setlist__grid,
	.oto-voice-grid {
		grid-template-columns: 1fr;
	}
	.oto-voice-grid {
		flex-direction: column;
	}
}
