@charset "UTF-8";
/*
 * Ann Cafe & Farm — site.css
 * ビルドツールなし・1 ファイル・素の CSS。
 *
 * 構成
 *   A. Design tokens
 *   B. Base
 *   C. Layout
 *   D. Header / Drawer / Footer / Buttons / Status / Breadcrumb
 *   E. Components   … 定義リスト／メニュー表／カード／セクション見出し／カルーセル／カレンダー
 *   F. Front page sections
 *   G. Sub pages + Gutenberg entry-content
 *   H. Utilities / print
 *
 * 決めごと（外さない）
 *   - 角丸なし・box-shadow なし（例外はステータスの点＝円のみ）
 *   - font-weight は 400 だけ。階層はサイズと色でつくる
 *   - 背景色は paper / surface / green-pale / ink の 4 種のみ
 *   - セクション同士は 28px の隙間で離す。セクション間に罫線は引かない
 *   - 暗色面の本文は --color-line
 *   - ブレークポイントは 768px（タブレット）と 1024px（デスクトップ）の 2 つ
 */


/* =========================================================================
 * A. Design tokens
 * ====================================================================== */

:root {
	/* --- 色（HANDOFF §2） --- */
	--color-ink: #1e211c;         /* 本文・境界の主線 */
	--color-muted: #696d61;       /* 補助テキスト */
	--color-paper: #f8f5ee;       /* ページ地（セクション間の隙間に見える色） */
	--color-surface: #fffdf8;     /* セクション面・カード面 */
	--color-line: #ded7c8;        /* 罫線 */
	--color-green: #314f3a;       /* 主アクション・空き◯ */
	--color-moss: #62704f;        /* 小見出し（英字ラベル）。HANDOFF §2 の #778464 は AA 未達（3.49〜3.92:1）のため、同系色相のまま 4.5:1 以上（surface 5.23 / paper 4.88 / green-pale 4.66）に暗色化 */
	--color-clay: #9f6449;        /* 未撮影プレースホルダの枠（本番では未使用） */
	--color-coffee: #4a3528;      /* フッター内の罫線 */
	--color-green-pale: #eef1ea;  /* 淡緑の面 */
	--color-green-lite: #a9c39a;  /* 暗色面の上での緑 */

	/* 派生値。新しいトークンではなく、緑ボタンのホバー（明度を少し落とす）用。 */
	--color-green-deep: #28402f;
	/* ヒーロー用スクリム（7b：全面オーバーレイ）。
	   一様に 60% で覆うと晴天の写真まで曇って見えるので、上は薄く・文字の乗る下部だけ濃くする。
	   下端は .78 で、明るい石垣の上でも白文字が 4.5:1 を割らない。 */
	--scrim-hero: rgba(30, 33, 28, .60);
	--scrim-hero-gradient: linear-gradient(
		to bottom,
		rgba(30, 33, 28, .30) 0%,
		rgba(30, 33, 28, .18) 35%,
		rgba(30, 33, 28, .52) 62%,
		rgba(30, 33, 28, .78) 100%
	);
	--scrim-header: rgba(30, 33, 28, .68);

	/* --- フォント（HANDOFF §3） --- */
	--font-base: -apple-system, "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
	--font-en: "Helvetica Neue", Arial, sans-serif;

	/* --- タイポグラフィスケール（モバイル既定。768px 以上でデスクトップ値） --- */
	--fs-hero: 21px;
	--lh-hero: 1.5;
	--fs-h1: 22px;
	--fs-h2: 19px;
	--lh-h2: 1.45;
	--fs-h3: 16px;
	--fs-body: 13px;
	--lh-body: 1.85;
	--fs-list: 11.5px;
	--lh-list: 1.7;
	--fs-label: 10px;
	--ls-label: .18em;
	--fs-note: 10.5px;

	/* --- 幅・間隔 --- */
	--content: min(100vw - 28px, 720px);
	--gap-section: 28px;          /* セクション間の隙間（ページ地が見える） */
	--section-pad-top: 22px;
	--section-pad-bottom: 26px;
	--header-h: 72px;             /* 透過ヘッダーの実高。ヒーローの上パディングの目安 */

	/* --- 線 --- */
	--border-strong: 1.5px solid var(--color-ink);
	--border-hair: 1px solid var(--color-line);

	/* --- フォーカスリング（暗色面では green-lite に差し替える） --- */
	--focus-ring: var(--color-green);
}

@media (min-width: 768px) {
	:root {
		--fs-hero: 44px;
		--lh-hero: 1.45;
		--fs-h1: 30px;
		--fs-h2: 26px;
		--lh-h2: 1.5;
		--fs-h3: 20px;
		--fs-body: 14px;
		--fs-list: 13.5px;
		--fs-label: 11px;
		--ls-label: .16em;
		--fs-note: 12px;

		--content: min(1120px, 100vw - 40px);
		--section-pad-top: 36px;
		--section-pad-bottom: 40px;
		--header-h: 76px;
	}
}

@media (min-width: 1024px) {
	:root {
		--fs-h1: 34px;
		--section-pad-top: 48px;
		--section-pad-bottom: 56px;
		--header-h: 80px;
	}
}


/* =========================================================================
 * B. Base
 * ====================================================================== */

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

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

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
}

/* ドロワーを開いている間は背景をスクロールさせない。 */
html.is-drawer-open,
html.is-drawer-open body {
	overflow: hidden;
}

body {
	position: relative;
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: var(--font-base);
	font-size: var(--fs-body);
	font-weight: 400;
	line-height: var(--lh-body);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ol, ul, hr {
	margin: 0;
}

ol, ul {
	padding: 0;
}

/* 見出しは太字にしない。階層はサイズと色でつける。 */
h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	line-height: 1.5;
	text-wrap: pretty;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.6; }
h4, h5, h6 { font-size: var(--fs-body); }

p {
	text-wrap: pretty;
}

strong, b, th {
	font-weight: 400;
}

a {
	color: inherit;
}

img, svg, video, iframe {
	max-width: 100%;
}

img, svg, video {
	display: block;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

hr {
	border: 0;
	border-top: var(--border-hair);
}

/* --- フォーカスリング（全要素共通・HANDOFF §10） --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--focus-ring);
	outline-offset: 2px;
}

/* スキップリンクとページ内アンカーの着地点。tabindex="-1" はフォーカスを受けるためだけの
   ものなので、面いっぱいの輪郭は出さない（操作できる要素の輪郭は上のルールで出る）。 */
main:focus,
.section[tabindex="-1"]:focus {
	outline: none;
}

/* --- 英字ラベル（eyebrow） --- */
.eyebrow {
	font-family: var(--font-en);
	font-size: var(--fs-label);
	letter-spacing: var(--ls-label);
	line-height: 1.4;
	color: var(--color-moss);
	text-transform: uppercase;
}

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


/* =========================================================================
 * C. Layout
 * ====================================================================== */

.container {
	width: var(--content);
	margin-inline: auto;
}

/* セクションは全幅の「面」。中身は .container で中央に寄せる。
   面どうしは 28px の隙間で離す。間に罫線は引かない。 */
.site-main {
	display: flex;
	flex-direction: column;
	gap: var(--gap-section);
}

.section {
	background: var(--color-surface);
	padding-top: var(--section-pad-top);
	padding-bottom: var(--section-pad-bottom);
}

.section--pale {
	background: var(--color-green-pale);
}

.section--ink {
	background: var(--color-ink);
	color: var(--color-line);
	--focus-ring: var(--color-green-lite);
}

.section--flush {
	padding-top: 0;
	padding-bottom: 0;
}

/* 面を縦に積むだけのラッパ（page.php のページヘッダー＋本文など）。 */
.page-stack {
	display: flex;
	flex-direction: column;
	gap: var(--gap-section);
}

/* index.php / single.php / 404.php が使う素の器。 */
.page-shell {
	width: var(--content);
	margin-inline: auto;
	padding-top: var(--section-pad-top);
	padding-bottom: var(--section-pad-bottom);
}


/* =========================================================================
 * D. Header / Drawer / Footer / Buttons / Status / Breadcrumb
 * ====================================================================== */

/* --- D.1 スキップリンク --------------------------------------------- */

.skip-link {
	position: absolute;
	top: 0;
	left: -9999px;
	z-index: 100;
	padding: 12px 18px;
	background: var(--color-surface);
	border: var(--border-strong);
	color: var(--color-ink);
	font-size: 13px;
	text-decoration: none;
}

.skip-link:focus {
	top: 12px;
	left: 12px;
}

/* --- D.2 ヘッダー ---------------------------------------------------- */

.site-header {
	background: var(--color-surface);
	border-bottom: var(--border-hair);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: var(--header-h);
	padding-block: 12px;
}

@media (min-width: 768px) {
	.site-header__inner {
		gap: 24px;
		padding-block: 16px;
	}
}

@media (min-width: 1024px) {
	.site-header__inner {
		padding-block: 20px;
	}
}

/* ブランド */
.site-brand {
	min-width: 0;
}

.site-brand__link {
	display: inline-block;
	text-decoration: none;
}

.site-brand__name {
	font-size: 15px;
	letter-spacing: .06em;
	line-height: 1.3;
}

@media (min-width: 768px) {
	.site-brand__name {
		font-size: 16px;
	}
}

.site-brand .custom-logo {
	max-height: 40px;
	width: auto;
}

/* デスクトップナビ */
.site-nav {
	display: none;
	margin-left: auto;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12.5px;
}

.site-nav__list a {
	display: inline-block;
	padding-block: 6px;
	border-bottom: 1.5px solid transparent;
	text-decoration: none;
	white-space: nowrap;
}

.site-nav__list a:hover {
	border-bottom-color: currentColor;
}

/* 写真に重ならない通常ヘッダーだけ、宿泊予約を主要アクションとして示す。 */
.has-solid-header .site-nav__list .menu-item--booking > a {
	padding: 9px 14px;
	border: 1.5px solid var(--color-green);
	background: var(--color-green);
	color: var(--color-surface);
}

.has-solid-header .site-nav__list .menu-item--booking > a:hover,
.has-solid-header .site-nav__list .menu-item--booking.current-menu-item > a {
	border-color: var(--color-green-deep);
	background: var(--color-green-deep);
	color: var(--color-surface);
}

.site-nav__list .current-menu-item > a,
.site-nav__list a[aria-current="page"] {
	border-bottom-color: var(--color-green);
}

@media (min-width: 768px) {
	.site-nav {
		display: block;
		min-width: 0;
	}
}

@media (min-width: 1024px) {
	.site-nav__list {
		gap: 22px;
		font-size: 13px;
	}
}

/* 右側（モバイルのハンバーガー） */
.site-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: none;
}

.nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-right: -10px;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	cursor: pointer;
}

.nav-toggle__bars {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 22px;
}

.nav-toggle__bar {
	display: block;
	height: 1.5px;
	background: currentColor;
}

@media (min-width: 768px) {
	.nav-toggle {
		display: none;
	}
}

/* 写真の上に重なる透過ヘッダー（トップ） */
.has-overlay-header .site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	/* 帯の下端まで完全な透明にはしない。ロゴ・ナビ・CTA が写真の明部に乗るため。 */
	background: linear-gradient(to bottom, var(--scrim-header), rgba(30, 33, 28, .38));
	border-bottom: 0;
	color: var(--color-surface);
	--focus-ring: var(--color-green-lite);
}

.has-overlay-header .site-nav__list .current-menu-item > a,
.has-overlay-header .site-nav__list a[aria-current="page"] {
	border-bottom-color: var(--color-surface);
}

/* --- D.3 ドロワー ---------------------------------------------------- */

.site-drawer {
	position: fixed;
	inset: 0;
	z-index: 60;
}

.site-drawer[hidden] {
	display: none;
}

.site-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: var(--scrim-hero);
	cursor: pointer;
}

.site-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	width: min(88vw, 360px);
	background: var(--color-surface);
	border-left: var(--border-hair);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.site-drawer__bar {
	position: sticky;
	top: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 16px;
	background: var(--color-surface);
	border-bottom: var(--border-hair);
}

.site-drawer__brand {
	font-size: 14px;
	letter-spacing: .06em;
}

.site-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-right: -10px;
	padding: 0 10px;
	border: 0;
	background: none;
	color: var(--color-muted);
	font-size: 12px;
	cursor: pointer;
}

.site-drawer__close:hover {
	color: var(--color-ink);
}

.drawer-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.drawer-nav__list a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 12px 16px;
	border-bottom: var(--border-hair);
	font-size: 14px;
	text-decoration: none;
}

.drawer-nav__list a:hover {
	background: var(--color-green-pale);
}

.drawer-nav__list .current-menu-item > a,
.drawer-nav__list a[aria-current="page"] {
	border-left: 1.5px solid var(--color-green);
	padding-left: 14.5px;
}

.site-drawer__foot {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px 16px 28px;
}

.drawer-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.drawer-tags a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 12px;
	border: var(--border-hair);
	color: var(--color-muted);
	font-size: 11.5px;
	text-decoration: none;
}

.drawer-tags a:hover {
	background: var(--color-green-pale);
	color: var(--color-ink);
}

/* 768px 以上ではドロワーは使わない（ハンバーガーも消える）。 */
@media (min-width: 768px) {
	.site-drawer,
	.site-drawer.is-open {
		display: none;
	}
}

/* --- D.4 ボタン（HANDOFF §4.1） -------------------------------------- */

.button,
.wp-block-button__link,
button[type="submit"],
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 14px 26px;
	border: var(--border-strong);
	background: var(--color-surface);
	color: var(--color-ink);
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.button:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
	background: var(--color-green-pale);
}

.button--primary {
	background: var(--color-green);
	border-color: var(--color-green);
	color: var(--color-surface);
}

.button--primary:hover {
	background: var(--color-green-deep);
	border-color: var(--color-green-deep);
	color: var(--color-surface);
}

/* 写真の上：枠線＝白線＋透明地 */
.button--on-photo,
.button--ghost {
	background: transparent;
	border-color: var(--color-surface);
	color: var(--color-surface);
}

.button--on-photo:hover,
.button--ghost:hover {
	background: var(--color-surface);
	color: var(--color-ink);
}

/* 写真の上の主要：白地に ink 文字 */
.button--on-photo.button--primary {
	background: var(--color-surface);
	border-color: var(--color-surface);
	color: var(--color-ink);
}

.button--on-photo.button--primary:hover {
	background: var(--color-green-pale);
	border-color: var(--color-green-pale);
	color: var(--color-ink);
}

.button--sm {
	min-height: 40px;
	padding: 9px 18px;
	font-size: 12.5px;
}

.button--block {
	display: flex;
	width: 100%;
}

.button[disabled],
button[disabled] {
	opacity: .45;
	cursor: default;
}

/* --- D.5 営業日ステータス（HANDOFF §4.3） ---------------------------- */

.status-bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 8px;
	font-size: 11.5px;
	line-height: 1.6;
}

.status-bar__dot {
	flex: none;
	width: 8px;
	height: 8px;
	/* 唯一の角丸。仕様どおり 8px の円。 */
	border-radius: 50%;
	background: var(--color-green);
}

.status-bar--closed .status-bar__dot {
	background: var(--color-line);
}

.status-bar__detail {
	color: var(--color-muted);
}

/* 帯（モバイルのヒーロー直下）。全幅の面として使う。 */
.status-band {
	background: var(--color-green-pale);
	border-top: var(--border-hair);
	border-bottom: var(--border-hair);
	padding-block: 12px;
}

/* カード（ドロワー内・カフェページのヒーロー右下） */
.status-bar--card {
	padding: 12px 14px;
	background: var(--color-green-pale);
	border: var(--border-hair);
}

/* 写真の上（デスクトップのヒーロー内） */
.status-bar--on-photo {
	color: var(--color-surface);
	font-size: 12.5px;
}

.status-bar--on-photo .status-bar__dot {
	background: var(--color-green-lite);
}

.status-bar--on-photo .status-bar__detail {
	color: var(--color-line);
}

@media (min-width: 768px) {
	.status-bar {
		font-size: 12.5px;
	}
}

/* --- D.6 パンくず・ページヘッダー ------------------------------------ */

.page-header {
	background: var(--color-surface);
	padding-top: 18px;
	padding-bottom: 22px;
}

.page-header__title {
	margin-top: 8px;
}

.page-body {
	background: var(--color-surface);
	padding-top: var(--section-pad-top);
	padding-bottom: var(--section-pad-bottom);
}

@media (min-width: 768px) {
	.page-header {
		padding-top: 24px;
		padding-bottom: 32px;
	}

	.page-header__title {
		margin-top: 10px;
	}
}

.breadcrumb {
	font-size: 11px;
	line-height: 1.6;
	color: var(--color-muted);
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumb__list li + li::before {
	content: "／";
	padding-right: 6px;
	color: var(--color-line);
}

/* padding-block はインライン要素の行の高さを変えないまま、指で触れる面だけ広げる。 */
.breadcrumb a {
	padding-block: 4px;
	text-decoration: none;
}

.breadcrumb a:hover {
	color: var(--color-ink);
	text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
	color: var(--color-ink);
}

/* --- D.7 フッター ---------------------------------------------------- */

.site-footer {
	margin-top: var(--gap-section);
	padding-top: 26px;
	padding-bottom: 22px;
	background: var(--color-ink);
	color: var(--color-line);
	font-size: 12px;
	line-height: 1.8;
	--focus-ring: var(--color-green-lite);
}

.site-footer a {
	color: var(--color-line);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--color-surface);
	text-decoration: underline;
}

.site-footer__top {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.site-footer__name {
	color: var(--color-surface);
	font-size: 15px;
	letter-spacing: .06em;
	line-height: 1.4;
}

/* 住所・電話は文字数が変わる前提。nowrap は使わない。 */
.site-footer__meta {
	margin-top: 8px;
	max-width: 34em;
	font-size: 11.5px;
}

.site-footer__social {
	margin-top: 8px;
	font-size: 11.5px;
}

.footer-nav__list,
.footer-sub__list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-nav__list a,
.footer-sub__list a {
	display: inline-block;
	padding-block: 5px;
}

.site-footer__rule {
	margin-block: 18px;
	border-top: 1px solid var(--color-coffee);
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-sub__list {
	font-size: 11px;
}

.site-footer__copy {
	color: var(--color-line);
	font-size: 11px;
}

@media (min-width: 768px) {
	.site-footer {
		padding-top: 36px;
		padding-bottom: 28px;
	}

	.site-footer__top {
		flex-direction: row;
		justify-content: space-between;
		gap: 40px;
	}

	.site-footer__brand {
		flex: none;
		max-width: 30em;
	}

	.footer-nav__list {
		justify-content: flex-end;
		max-width: 40em;
	}

	.site-footer__bottom {
		flex-direction: row;
		align-items: baseline;
		justify-content: space-between;
		gap: 24px;
	}
}


/* =========================================================================
 * E. Components
 * ====================================================================== */

/* --- E.0 写真フレーム -------------------------------------------------- */
/* 実写真が無い場所は淡緑の面のまま成立させる（HANDOFF §7）。
   img が入れば aspect-ratio の枠内に cover で収まり、差し替えてもレイアウトは動かない。 */

.photo {
	display: block;
	position: relative;
	overflow: hidden;
	background: var(--color-green-pale);
	border: var(--border-hair);
}

.photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo--portrait {
	aspect-ratio: 3 / 4;
}

/* --- E.0b 未確定値「準備中」 -------------------------------------------- */
/* 住所・料金・台数など、まだ入っていない値の置き場所。muted で言葉として出す。 */

.tbd {
	color: var(--color-muted);
}

/* --- E.1 定義リスト（HANDOFF §4.4） ----------------------------------- */

.spec-list {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 6px 14px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: var(--border-hair);
	font-size: var(--fs-list);
	line-height: var(--lh-list);
}

.spec-list dt {
	color: var(--color-muted);
}

.spec-list dd {
	margin: 0;
	overflow-wrap: anywhere; /* 値は文字数可変の前提。折り返して耐える。 */
}

.spec-list--tight {
	gap: 4px 12px;
	margin-top: 8px;
	padding-top: 10px;
}

/* --- E.2 メニュー表（HANDOFF §4.5） ----------------------------------- */

.menu-list {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.menu-list__item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding-block: 10px;
	border-bottom: var(--border-hair);
	font-size: var(--fs-list);
	line-height: var(--lh-list);
}

.menu-list__name {
	min-width: 0;
}

.menu-list__note {
	display: block;
	font-size: var(--fs-note);
	color: var(--color-muted);
}

.menu-list__price {
	flex: none;
	white-space: nowrap;
}

/* 価格未確定の行は名前だけ置く。行高は価格ありの行と揃う。 */
.menu-list__item--no-price {
	min-height: calc(var(--fs-list) * var(--lh-list) + 20px);
}

.menu-list__unit {
	margin-left: 1px;
	font-size: var(--fs-note);
	color: var(--color-muted);
}

/* --- E.3 カード（HANDOFF §4.6） --------------------------------------- */

.card {
	background: var(--color-surface);
	border: var(--border-hair);
}

/* 設備カード（宿泊ページの .amenity-grid / wp:html でも使う） */
.amenity-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 16px;
}

@media (min-width: 768px) {
	.amenity-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.amenity-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 150px;
	padding: 14px;
	background: var(--color-surface);
	border: var(--border-hair);
}

.amenity-card__num {
	font-family: var(--font-en);
	font-size: var(--fs-label);
	letter-spacing: var(--ls-label);
	color: var(--color-moss);
}

.amenity-card__title {
	font-size: var(--fs-h3);
}

.amenity-card__note {
	font-size: var(--fs-note);
	color: var(--color-muted);
	line-height: 1.7;
}

/* --- E.4 セクション見出し（HANDOFF §4.7） ----------------------------- */

.section-heading {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 18px;
}

.section-heading__lead {
	max-width: 44em;
	color: var(--color-muted);
}

/* 見出し行の右端に操作（カルーセル矢印・一覧リンク）を置く形 */
.section-heading--row {
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

.section-heading--row > :first-child {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

@media (min-width: 768px) {
	.section-heading {
		margin-bottom: 24px;
	}
}

/* --- E.5 カルーセル（HANDOFF §4.8 / JS は site.js） -------------------- */

.carousel__track {
	display: flex;
	gap: 10px;
	margin: 0;
	padding: 0 0 4px;
	list-style: none;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
	display: none;
}

.carousel__item {
	flex: none;
	width: 210px;
	scroll-snap-align: start;
}

.photo-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
}

.photo--carousel {
	height: 250px;
}

.photo-card__caption {
	font-size: var(--fs-note);
	color: var(--color-muted);
}

.carousel-arrows {
	display: none;
	flex: none;
	gap: 8px;
}

.carousel-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: var(--border-hair);
	background: var(--color-surface);
	color: var(--color-ink);
	cursor: pointer;
}

.carousel-arrow:hover {
	background: var(--color-green-pale);
}

/* 端に着いた矢印。disabled にするとフォーカスが飛ぶので aria-disabled で伝える。 */
.carousel-arrow[disabled],
.carousel-arrow[aria-disabled="true"] {
	opacity: .35;
	cursor: default;
}

.carousel-arrow[disabled]:hover,
.carousel-arrow[aria-disabled="true"]:hover {
	background: var(--color-surface);
}

/* インジケータ（棒）。JS が .is-active を同期する。 */
.carousel__dots {
	display: flex;
	gap: 6px;
	margin-top: 12px;
}

.carousel__dots > * {
	width: 22px;
	height: 2px;
	background: var(--color-line);
}

.carousel__dots > .is-active {
	background: var(--color-green);
}

.carousel__hint {
	margin-top: 8px;
	font-size: var(--fs-note);
	color: var(--color-muted);
}

/* 設備カードやメニュー表の直下に写真カルーセルを置くとき、面の中で息継ぎを作る。 */
.amenity-grid + .carousel,
.menu-cols + .carousel {
	margin-top: 30px;
}

@media (min-width: 768px) {
	.carousel__item {
		width: 300px;
	}

	.photo--carousel {
		height: 340px;
	}

	.carousel-arrows {
		display: flex;
	}
}

/* --- E.6 空き状況カレンダー（HANDOFF §4.9） ---------------------------- */
/* 出力はプラグイン側（ann_cafe_theme_availability_calendar）。
   ◯＝green の枠と文字／×＝line の枠・淡色の文字。記号併記で色に依存しない。 */

.avail-cal-set {
	/* HANDOFF §4.9 の淡色 #c8c2b4 は surface 上で 1.9:1 と読めない。
	   ◯×と日付の数字が本文情報なので、同系色のまま 4.5:1 以上に暗色化する。 */
	--cal-mute: #767164;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.avail-cal__title {
	margin-bottom: 8px;
	font-size: var(--fs-list);
}

.avail-cal__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 3px;
}

.avail-cal__dow {
	padding-block: 4px;
	font-size: 10px;
	text-align: center;
	color: var(--color-muted);
}

.avail-cal__day {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1px;
	aspect-ratio: 1;
	border: 1px solid var(--color-line);
	background: var(--color-surface);
	font-size: 11px;
	line-height: 1.3;
}

.avail-cal__num {
	font-family: var(--font-en);
	font-size: 11px;
}

.avail-cal__mark {
	font-size: 10px;
}

.avail-cal__day.is-open {
	border-color: var(--color-green);
}

.avail-cal__day.is-open .avail-cal__mark {
	color: var(--color-green);
}

.avail-cal__day.is-full,
.avail-cal__day.is-closed {
	color: var(--cal-mute);
}

.avail-cal__day.is-past {
	border-color: transparent;
	background: transparent;
	color: var(--cal-mute);
}

.avail-cal__day.is-empty {
	border: 0;
	background: transparent;
}

.avail-cal__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	margin-top: 2px;
	font-size: var(--fs-note);
	color: var(--color-muted);
}

/* モバイルは1ヶ月だけ見せる（HANDOFF §4.9）。 */
.avail-cal + .avail-cal {
	display: none;
}

@media (min-width: 768px) {
	.avail-cal-set {
		flex-direction: row;
		flex-wrap: wrap; /* 凡例を2段目の全幅に落とす */
		align-items: flex-start;
		gap: 24px;
	}

	.avail-cal {
		flex: 1;
		min-width: 0;
	}

	.avail-cal + .avail-cal {
		display: block;
	}

	.avail-cal__legend {
		flex-basis: 100%;
	}
}


/* =========================================================================
 * F. Front page sections
 * ====================================================================== */

/* --- F.1 ヒーロー（7b：全面オーバーレイ） ------------------------------ */

.hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: min(660px, 92svh);
	overflow: hidden;
	background: var(--color-ink);
	color: var(--color-surface);
	--focus-ring: var(--color-green-lite);
}

.hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 40%;
}

.hero__scrim {
	position: absolute;
	inset: 0;
	background: var(--scrim-hero-gradient);
}

/* <picture> は箱を作らない。img だけが絶対配置で面いっぱいに広がる。 */
.hero picture {
	display: contents;
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-top: calc(var(--header-h) + 20px);
	padding-bottom: 30px;
}

.hero__eyebrow {
	/* green-lite は写真の明部で 4.5:1 を割る（実測 28% 未達）。ヒーローだけ白にする。
	   緑の英字ラベルは暗色面（Instagram セクション）では green-lite のまま。 */
	color: var(--color-surface);
}

.hero__title {
	/* 「〜カフェと／一日一組の宿。」で折り返す幅。 */
	max-width: 17em;
	font-size: var(--fs-hero);
	line-height: var(--lh-hero);
}

.hero__lead {
	max-width: 38em;
	color: var(--color-line);
}

.hero__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 6px;
}

.hero__status {
	display: none;
}

/* モバイル（767px 以下）は写真を 3:4 のまま見せ、文字は写真の下の暗色面に置く。
   オーナー指定のヤギの写真は下 1/4 にヤギがいるので、文字やボタンで覆わない。 */
@media (max-width: 767px) {
	.hero {
		display: block;
		min-height: 0;
	}

	.hero__media {
		position: static;
		aspect-ratio: 3 / 4;
		height: auto;
		object-position: 50% 50%;
	}

	.hero__scrim {
		display: none;
	}

	.hero__inner {
		padding-top: 22px;
		padding-bottom: 26px;
	}
}

@media (min-width: 768px) {
	.hero {
		min-height: min(760px, 94svh);
	}

	.hero__inner {
		padding-bottom: 40px;
	}

	.hero__actions {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 12px;
	}

	/* デスクトップは営業ステータスをヒーロー内に。 */
	.hero__status {
		display: block;
		margin-top: 12px;
	}
}

@media (min-width: 1024px) {
	.hero {
		min-height: min(900px, 94svh);
	}
}

/* --- F.2 大ボタン4つ（HANDOFF §4.2） ---------------------------------- */

.dest {
	display: grid;
	gap: 10px;
}

.dest-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px 42px;
	background: var(--color-surface);
	border: var(--border-hair);
	text-decoration: none;
	transition: background-color .15s ease;
}

.dest-card:hover {
	background: var(--color-green-pale);
}

.dest-card__title {
	font-size: 15px;
}

.dest-card__sub {
	font-size: 11.5px;
	line-height: 1.6;
	color: var(--color-muted);
}

.dest-card__arrow {
	position: absolute;
	left: 18px;
	bottom: 12px;
	font-family: var(--font-en);
}

/* 先頭の「はなれ」だけ緑地 */
.dest-card--primary {
	background: var(--color-green);
	border-color: var(--color-green);
	color: var(--color-surface);
}

.dest-card--primary .dest-card__sub {
	color: var(--color-line);
}

.dest-card--primary:hover {
	background: var(--color-green-deep);
	border-color: var(--color-green-deep);
}

@media (min-width: 768px) {
	.dest {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.dest {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* --- F.3 二分割（Stay／Cafe／アクセス） -------------------------------- */
/* モバイルは 見出し → 写真 → 本文 の順。
   デスクトップは写真列（縦位置写真をそのまま置く固定幅）＋テキスト列。 */

.split {
	display: grid;
	grid-template-areas:
		"head"
		"media"
		"body";
	gap: 16px;
}

.split__head {
	grid-area: head;
}

.split__head .section-heading {
	margin-bottom: 0;
}

.split__media {
	grid-area: media;
	min-width: 0;
}

.split__body {
	grid-area: body;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.split__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4px;
}

.info-cols .split__actions {
	margin-top: 24px;
}

@media (min-width: 768px) {
	.split {
		grid-template-columns: clamp(320px, 42%, 460px) minmax(0, 1fr);
		grid-template-rows: auto 1fr;
		grid-template-areas:
			"media head"
			"media body";
		column-gap: 36px;
		row-gap: 18px;
		align-items: start;
	}

	.split--media-right {
		grid-template-columns: minmax(0, 1fr) clamp(320px, 42%, 460px);
		grid-template-areas:
			"head media"
			"body media";
	}
}

@media (min-width: 1024px) {
	.split {
		grid-template-columns: clamp(420px, 44%, 540px) minmax(0, 1fr);
		column-gap: 44px;
	}

	.split--media-right {
		grid-template-columns: minmax(0, 1fr) clamp(420px, 44%, 540px);
	}
}

/* 地図つき二分割（アクセス） */
.map-embed {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	background: var(--color-green-pale);
	border: var(--border-hair);
	color: var(--color-muted);
	font-size: var(--fs-note);
}

.map-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* --- F.4 News ---------------------------------------------------------- */

.news {
	max-width: 840px;
}

.news__more {
	flex: none;
	font-size: var(--fs-list);
	color: var(--color-muted);
	text-decoration: none;
}

.news__more:hover {
	color: var(--color-ink);
	text-decoration: underline;
}

.news-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-list__item {
	display: flex;
	align-items: baseline;
	gap: 14px;
	padding-block: 12px;
	border-bottom: var(--border-hair);
	font-size: var(--fs-list);
	line-height: var(--lh-list);
}

.news-list__date {
	flex: none;
	font-family: var(--font-en);
	font-size: var(--fs-note);
	color: var(--color-muted);
}

/* 行の高さは変えずに、触れる面だけ上下へ広げる（パンくずと同じ考え方）。 */
.news-list__link {
	min-width: 0;
	padding-block: 4px;
	text-decoration: none;
}

.news-list__link:hover {
	text-decoration: underline;
}

.news__empty {
	padding-block: 18px 4px;
	color: var(--color-muted);
	font-size: var(--fs-list);
}

.news-index__header {
	display: grid;
	gap: 8px;
	padding-bottom: 8px;
}

.news-index__header > p:last-child {
	color: var(--color-muted);
}

.news-layout {
	display: grid;
	gap: 36px;
}

.news-layout__main {
	min-width: 0;
}

.news-sidebar {
	display: grid;
	align-content: start;
	gap: 28px;
	padding-top: 28px;
	border-top: var(--border-hair);
}

.news-sidebar__section h2 {
	margin-bottom: 12px;
	font-size: var(--fs-h3);
}

.news-sidebar__list,
.news-sidebar__links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-sidebar__list li {
	display: grid;
	gap: 3px;
	padding-block: 10px;
	border-bottom: var(--border-hair);
}

.news-sidebar__list a,
.news-sidebar__links a {
	text-decoration: none;
}

.news-sidebar__list a:hover,
.news-sidebar__links a:hover {
	text-decoration: underline;
}

.news-sidebar__list time,
.news-sidebar__empty {
	color: var(--color-muted);
	font-size: var(--fs-note);
}

.news-sidebar__links {
	display: grid;
	border-top: var(--border-hair);
}

.news-sidebar__links a {
	display: block;
	padding-block: 9px;
	border-bottom: var(--border-hair);
}

@media (min-width: 768px) {
	.news-layout {
		grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
		gap: 48px;
		align-items: start;
	}

	.news-sidebar {
		padding-top: 0;
		padding-left: 28px;
		border-top: 0;
		border-left: var(--border-hair);
	}
}

.content-list {
	display: grid;
}

.content-card {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 5px 18px;
	padding-block: 18px;
	border-bottom: var(--border-hair);
}

.content-card__date {
	grid-row: 1 / span 2;
	font-family: var(--font-en);
	font-size: var(--fs-note);
	color: var(--color-muted);
}

.content-card__title {
	font-size: var(--fs-h3);
}

.content-card__title a {
	text-decoration: none;
}

.content-card__title a:hover {
	text-decoration: underline;
}

.content-card .entry-summary {
	font-size: var(--fs-list);
	color: var(--color-muted);
}

.content-card .entry-summary p {
	margin: 0;
}

.content-card--empty {
	display: block;
	color: var(--color-muted);
}

/* よくある質問。Q と A を同じ組の中に入れ、回答だけを折りたたむ。 */
.faq-list {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.faq-item {
	border: var(--border-hair);
	background: var(--color-surface);
}

.faq-item summary {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 10px;
	padding: 15px 16px;
	font-size: var(--fs-list);
	line-height: 1.7;
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	font-family: var(--font-en);
	font-size: 18px;
	color: var(--color-moss);
	text-align: center;
}

.faq-item[open] summary {
	border-bottom: var(--border-hair);
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item summary:hover {
	background: var(--color-green-pale);
}

.faq-item__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--color-green);
	color: var(--color-surface);
	font-family: var(--font-en);
	font-size: 12px;
	line-height: 1;
}

.faq-item__answer {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 10px;
	padding: 16px;
	color: var(--color-muted);
}

.faq-item__answer .faq-item__mark {
	background: var(--color-paper);
	color: var(--color-green);
	border: 1px solid var(--color-green);
}

.faq-item__answer p {
	margin: 0;
}

@media (max-width: 479px) {
	.content-card {
		grid-template-columns: 1fr;
	}

	.content-card__date {
		grid-row: auto;
	}
}

/* --- F.5 Instagram（暗色面） ------------------------------------------- */

.insta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding-block: 10px;
	text-align: center;
}

.insta__eyebrow {
	color: var(--color-green-lite);
}

.insta__title {
	font-family: var(--font-en);
	font-size: var(--fs-h3);
	letter-spacing: .04em;
	color: var(--color-surface);
}

.insta__lead {
	font-size: var(--fs-note);
}

/* --- F.6 空き状況 ------------------------------------------------------- */

.avail {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.avail__calendars {
	min-width: 0;
}

.avail__fallback {
	color: var(--color-muted);
}

.avail-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
	background: var(--color-surface);
	border: var(--border-hair);
}

.avail-card__title {
	font-size: var(--fs-h3);
}

.avail-card__note {
	font-size: var(--fs-note);
	color: var(--color-muted);
	line-height: 1.7;
}

@media (min-width: 1024px) {
	.avail {
		flex-direction: row;
		align-items: flex-start;
		gap: 32px;
	}

	.avail__calendars {
		flex: 1;
	}

	.avail-card {
		flex: none;
		width: 260px;
	}
}


/* =========================================================================
 * G. Sub pages + Gutenberg entry-content（HANDOFF §8）
 * ====================================================================== */

.entry-content {
	width: 100%;
}

.entry-content > * + * {
	margin-top: 1.2em;
}

.entry-content h2 {
	margin-top: 2.4em;
	font-size: var(--fs-h2);
	line-height: var(--lh-h2);
}

.entry-content h3 {
	margin-top: 2em;
	font-size: var(--fs-h3);
}

.entry-content > h2:first-child,
.entry-content > h3:first-child {
	margin-top: 0;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.5em;
	line-height: 2;
}

.entry-content li::marker {
	color: var(--color-moss);
}

.entry-content a {
	color: var(--color-green);
}

.entry-content a:hover {
	color: var(--color-ink);
}

.entry-content figure {
	margin-block: 1.6em;
}

.entry-content figcaption {
	margin-top: 6px;
	font-size: var(--fs-note);
	color: var(--color-muted);
}

.entry-content blockquote {
	padding-left: 16px;
	border-left: 2px solid var(--color-line);
	color: var(--color-muted);
}

/* お知らせ個別記事 */
.single-post .entry-page__header {
	margin-bottom: 24px;
}

.news-post__image {
	width: min(calc(100% - 32px), 680px);
	margin: 0 auto;
}

.news-post__image img {
	width: 100%;
	max-height: 640px;
	object-fit: cover;
}

.news-post__lead {
	display: grid;
	gap: 8px;
}

.news-post__details {
	display: grid;
	grid-template-columns: minmax(88px, 140px) minmax(0, 1fr);
	border-top: var(--border-hair);
}

.news-post__details dt,
.news-post__details dd {
	padding: 10px 8px;
	border-bottom: var(--border-hair);
}

.news-post__details dt {
	color: var(--color-muted);
}

.allergy-note {
	padding: 18px 20px;
	border-left: 4px solid var(--color-clay);
	background: var(--color-paper);
}

.allergy-note h2 {
	margin: 0 0 10px;
	font-size: var(--fs-h3);
}

.allergy-note p + p {
	margin-top: 6px;
}

.allergy-note__dummy {
	color: var(--color-muted);
	font-size: var(--fs-note);
}

/* 表（メニュー表と同じ罫線。下 1px line のみ、縦罫なし） */
.entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--fs-list);
	line-height: var(--lh-list);
}

.entry-content th,
.entry-content td {
	padding: 10px 8px;
	border: 0;
	border-bottom: var(--border-hair);
	text-align: left;
	vertical-align: top;
}

.entry-content thead th {
	font-size: var(--fs-note);
	color: var(--color-muted);
}

.entry-content .wp-block-table {
	overflow-x: auto;
}

.entry-content .wp-block-table table {
	margin: 0;
}

.entry-content .wp-block-separator {
	max-width: none;
	margin-block: 2.4em;
	border: 0;
	border-top: var(--border-hair);
}

.entry-content .wp-block-columns {
	gap: 24px;
	margin-top: 1.6em;
}

@media (min-width: 768px) {
	.entry-content .wp-block-columns {
		gap: 44px;
	}
}

.entry-content .wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 1.6em;
}

.entry-content .wp-block-button__link {
	border-radius: 0;
}

/* 既定は枠線。主要ボタンは is-style-fill で緑ベタに。 */
.entry-content .wp-block-button.is-style-fill .wp-block-button__link {
	background: var(--color-green);
	border-color: var(--color-green);
	color: var(--color-surface);
}

.entry-content .wp-block-button.is-style-fill .wp-block-button__link:hover {
	background: var(--color-green-deep);
	border-color: var(--color-green-deep);
}


/* --- G.2 全幅ページ（8a〜8d）用コンポーネント -------------------------- */

/* パンくず帯のみのページヘッダー（全幅ページ用） */
.page-header--slim {
	padding-top: 14px;
	padding-bottom: 14px;
}

/* 2 カラムの情報ブロック（備えつけ／基本情報、お車で／公共交通 など） */
.info-cols {
	display: grid;
	gap: 28px;
}

@media (min-width: 768px) {
	.info-cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 44px;
	}
}

.info-cols h2,
.info-cols h3 {
	font-size: var(--fs-h3);
}

.info-cols .spec-list {
	border-top: 0;
	padding-top: 0;
}

.info-note {
	margin-top: 12px;
	font-size: var(--fs-note);
	color: var(--color-muted);
	line-height: 1.8;
}

/* 箇条書き（備えつけのもの・ご利用にあたって） */
.plain-list {
	margin: 14px 0 0;
	padding-left: 1.4em;
	font-size: var(--fs-list);
	line-height: 2;
}

.plain-list li::marker {
	color: var(--color-moss);
}

/* 一日のながれ（8a・淡緑面） */
.dayflow {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 10px;
	margin-top: 18px;
}

@media (min-width: 768px) {
	.dayflow {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 14px;
	}
}

.dayflow-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
}

.dayflow-item__time {
	font-family: var(--font-en);
	font-size: var(--fs-note);
	color: var(--color-muted);
}

.dayflow-item .photo {
	aspect-ratio: 4 / 3;
}

.dayflow-item__title {
	font-size: var(--fs-list);
}

.dayflow-item__note {
	font-size: var(--fs-note);
	color: var(--color-muted);
	line-height: 1.7;
}

/* 季節ごとの毛原（8c） */
.season-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 10px;
	margin-top: 18px;
}

@media (min-width: 768px) {
	.season-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 14px;
	}
}

.season {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 10px;
	border-top: 2px solid var(--color-line);
}

.season--spring { border-top-color: var(--color-moss); }
.season--summer { border-top-color: var(--color-green); }
.season--autumn { border-top-color: var(--color-clay); }
.season--winter { border-top-color: var(--color-line); }

.season__name {
	font-size: var(--fs-h3);
}

.season .photo {
	aspect-ratio: 4 / 3;
}

.season__note {
	font-size: var(--fs-note);
	color: var(--color-muted);
	line-height: 1.8;
}

/* --- アルバム（宿泊ページの室内・自然ページのお庭） ------------------------
   スライダーではなく全部を並べる。タイルは 3:4、主役の写真は 2×2 に広げ、
   横位置の写真は横 2 マス。dense で隙間を詰める。クリックで拡大（site.js のライトボックス）。 */

.album {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: 6px;
	margin-top: 18px;
}

.album__item {
	position: relative;
	margin: 0;
}

.album__item--feature {
	grid-column: span 2;
	grid-row: span 2;
}

.album__item--wide {
	grid-column: span 2;
}

.album__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.album__item .photo {
	aspect-ratio: 3 / 4;
	border: 0;
}

.album__item--wide .photo {
	aspect-ratio: auto;
	height: 100%;
}

/* 何が写っているかは写真の下辺に重ねる。暗幕は下だけ。 */
.album__caption {
	position: absolute;
	inset: auto 0 0 0;
	padding: 28px 10px 8px;
	background: linear-gradient(to top, rgba(30, 33, 28, .72), rgba(30, 33, 28, 0));
	color: var(--color-line);
	font-size: var(--fs-note);
	line-height: 1.5;
	pointer-events: none;
}

.album__caption .photo-card__label {
	color: var(--color-surface);
	font-size: var(--fs-note);
}

.album__link:hover .photo img,
.album__link:focus-visible .photo img {
	opacity: .92;
}

@media (min-width: 768px) {
	.album {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
		margin-top: 24px;
	}

	.album__caption {
		padding: 34px 12px 10px;
	}
}

/* キャプションの 1 行目（被写体名）。 */
.photo-card__label {
	display: block;
	color: var(--color-ink);
	font-size: var(--fs-list);
}

/* 設備カードの直下にアルバムを置くとき、面の中で息継ぎを作る。 */
.amenity-grid + .album {
	margin-top: 30px;
}

/* --- メンバー紹介（自然ページ）。動物ごとに代表写真＋名前＋ひとこと＋ほかの写真。 --- */

.members {
	display: grid;
	gap: 22px;
	margin-top: 18px;
}

.member {
	display: grid;
	grid-template-columns: minmax(120px, 38%) minmax(0, 1fr);
	gap: 14px 16px;
	padding: 12px;
	background: var(--color-surface);
	border: var(--border-hair);
}

.member__photo {
	display: block;
	aspect-ratio: 3 / 4;
	align-self: start;
}

.member__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.member__name {
	font-size: var(--fs-h3);
	line-height: 1.4;
}

.member__role {
	font-size: var(--fs-note);
	color: var(--color-muted);
}

.member__note {
	font-size: var(--fs-list);
	line-height: var(--lh-list);
}

/* ほかの写真。小さな 3:4 のサムネイルを横に並べ、クリックで拡大。 */
.member__more {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 6px 0 0;
	padding: 0;
	list-style: none;
}

.member__more a {
	display: block;
	width: 48px;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border: var(--border-hair);
}

.member__more img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.member__more a:hover img,
.member__more a:focus-visible img {
	opacity: .85;
}

@media (min-width: 768px) {
	.members {
		gap: 24px;
		margin-top: 24px;
	}

	.member {
		grid-template-columns: 200px minmax(0, 1fr);
		gap: 20px 24px;
		padding: 16px;
	}

	.member__more a {
		width: 56px;
	}
}

@media (min-width: 1024px) {
	.members {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* --- ライトボックス（site.js が生成する <dialog>） -------------------------- */

.lightbox {
	max-width: none;
	max-height: none;
	width: 100vw;
	height: 100dvh;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(30, 33, 28, .94);
	color: var(--color-surface);
	--focus-ring: var(--color-green-lite);
}

.lightbox::backdrop {
	background: transparent;
}

.lightbox__inner {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	width: 100%;
	height: 100%;
	padding: 56px 16px 20px;
	box-sizing: border-box;
}

.lightbox__figure {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	margin: 0;
}

.lightbox__figure img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.lightbox__caption {
	padding-top: 12px;
	text-align: center;
	font-size: var(--fs-list);
	line-height: 1.6;
	color: var(--color-line);
}

.lightbox__caption .photo-card__label {
	color: var(--color-surface);
}

.lightbox__count {
	display: block;
	margin-top: 2px;
	font-family: var(--font-en);
	font-size: var(--fs-note);
	color: var(--color-muted);
}

.lightbox__button {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .35);
	background: rgba(30, 33, 28, .5);
	color: var(--color-surface);
	font-family: var(--font-en);
	font-size: 18px;
	cursor: pointer;
}

.lightbox__button:hover {
	background: rgba(255, 255, 255, .14);
}

.lightbox__close {
	top: 10px;
	right: 12px;
}

.lightbox__prev,
.lightbox__next {
	top: 50%;
	transform: translateY(-50%);
}

.lightbox__prev {
	left: 8px;
}

.lightbox__next {
	right: 8px;
}

.lightbox__button[hidden] {
	display: none;
}

@media (min-width: 768px) {
	.lightbox__inner {
		padding: 64px 72px 28px;
	}

	.lightbox__prev {
		left: 16px;
	}

	.lightbox__next {
		right: 16px;
	}
}

/* 写真がまだ無い枠（フォールバックの明示） */
.photo--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-muted);
	font-size: var(--fs-note);
}

/* カフェのメニュー（8b・カテゴリ 2 列） */
.menu-cols {
	display: grid;
	gap: 26px;
	margin-top: 18px;
}

@media (min-width: 768px) {
	.menu-cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px 60px;
	}
}

.menu-group .eyebrow {
	display: block;
}

.menu-group .menu-list {
	margin-top: 8px;
}

/* 中央寄せのヒーロー（8c） */
.center-stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
	text-align: center;
}

.center-stack .section-heading__lead {
	max-width: 36em;
}

/* カルーセル下段（ドット左・矢印またはボタン右 — 8c／トップ Farm） */
.carousel__foot {
	display: flex;
	flex-wrap: wrap; /* 狭い幅ではドットの下にボタンが落ちる（横はみ出し防止） */
	align-items: center;
	justify-content: space-between;
	gap: 12px 16px;
	margin-top: 12px;
}

.carousel__foot .button {
	flex: none;
}

.carousel__foot .carousel__dots {
	margin-top: 0;
}

/* 下部の誘導バンド（8c ほか） */
.cta-band {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cta-band__text h2 {
	font-size: var(--fs-h2);
}

.cta-band__text p {
	margin-top: 4px;
	color: var(--color-muted);
	font-size: var(--fs-list);
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

@media (min-width: 768px) {
	.cta-band {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 32px;
	}
}

/* 近くに寄るなら（8d） */
.poi-grid {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

@media (min-width: 768px) {
	.poi-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.poi-card {
	padding: 16px 18px;
	border: var(--border-hair);
	background: var(--color-surface);
}

.poi-card__name {
	font-size: var(--fs-list);
}

.poi-card__note {
	margin-top: 4px;
	font-size: var(--fs-note);
	color: var(--color-muted);
}

/* 大きな地図の埋め込み（8d）。iframe を入れると枠いっぱいに広がる。 */
.map-embed--wide {
	aspect-ratio: 16 / 9;
}

@media (min-width: 768px) {
	.map-embed--wide {
		aspect-ratio: 21 / 9;
	}
}


/* =========================================================================
 * H. Utilities / print
 * ====================================================================== */

/* 見出しをフレーズ単位で折り返す。語の途中で切れると読みにくい日本語向け。
   span どうしの間に空白を書かないこと（inline-block の隙間になる）。 */
.u-phrase {
	display: inline-block;
}

@media (min-width: 768px) {
	.only-mobile {
		display: none !important;
	}
}

@media print {
	.site-header__actions,
	.site-drawer,
	.skip-link,
	.carousel-arrows {
		display: none !important;
	}

	.site-footer {
		background: none;
		color: var(--color-ink);
	}
}
