/* ============================================================
   main.css — レストラン メリ・メロ
   BEM記法／モバイルファースト／ブレークポイント 768px・1024px
   ============================================================ */

/* ---------- 基本 ---------- */
body {
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 2;
	color: var(--ink);
	background: var(--paper);
	font-feature-settings: "palt";
	overflow-wrap: break-word;
}

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

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 22px;
}

.container--narrow { max-width: var(--narrow); }

@media (min-width: 768px) {
	.container { padding-inline: 40px; }
}

.section { padding-block: var(--section-y); }
.section--paper2 { background: var(--paper-2); }
.section--dark {
	background: var(--forest-800);
	color: rgba(255, 255, 255, .88);
}
.section--tight { padding-block: calc(var(--section-y) * .65); }

/* ---------- 見出しの型 ---------- */
.head { margin-bottom: var(--sp-7); }
.head--center { text-align: center; }

.head__en {
	display: block;
	font-family: var(--font-display);
	font-size: 12px;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--moss-deep);
	margin-bottom: var(--sp-3);
}

.section--dark .head__en { color: var(--moss); }

.head__ja {
	display: block;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: 24px;
	line-height: 1.75;
	letter-spacing: .06em;
}

.head__lead {
	margin-top: var(--sp-4);
	color: var(--ink-soft);
	font-size: 14px;
	line-height: 2.1;
}

.section--dark .head__lead { color: rgba(255, 255, 255, .72); }

@media (min-width: 768px) {
	.head { margin-bottom: var(--sp-8); }
	.head__ja { font-size: 31px; }
	.head__lead { font-size: 15px; }
}

/* 装飾の細い縦線（「自然の歩幅」＝ゆっくり下へ視線を送る） */
.rule {
	width: 1px;
	height: 56px;
	margin: 0 auto var(--sp-5);
	background: linear-gradient(to bottom, transparent, var(--moss));
}

/* ---------- ボタン ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6em;
	min-height: 52px;
	padding: 14px 30px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.5;
	text-align: center;
	transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.btn--moss { background: var(--moss); color: #1b2410; }
.btn--moss:hover { background: var(--moss-deep); color: #fff; }

.btn--dark { background: var(--forest-800); color: #fff; }
.btn--dark:hover { background: var(--moss); color: #1b2410; }

.btn--ghost {
	border: 1px solid currentColor;
	color: var(--ink);
	background: transparent;
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.section--dark .btn--ghost,
.btn--on-photo { color: #fff; border-color: rgba(255, 255, 255, .55); backdrop-filter: blur(2px); }
.section--dark .btn--ghost:hover,
.btn--on-photo:hover { background: #fff; color: var(--forest-900); border-color: #fff; }

.btn--lg { min-height: 60px; padding-inline: 40px; font-size: 15px; }
.btn--full { width: 100%; }

.btn__arrow { font-family: var(--font-display); font-size: 1.1em; }

/* テキストリンク */
.tlink {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	font-size: 14px;
	letter-spacing: .08em;
	border-bottom: 1px solid var(--line);
	padding-bottom: 4px;
	transition: border-color .25s var(--ease), color .25s var(--ease);
}
.tlink:hover { color: var(--moss-deep); border-color: var(--moss); }

/* ============================================================
   ヘッダー
   ============================================================ */
.header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--header-h);
	display: flex;
	align-items: center;
	transition: background .3s var(--ease), box-shadow .3s var(--ease);
}

/* トップの透明ヘッダー時、明るい写真の上でもロゴとナビが沈まないように薄い影を敷く */
.is-front .header::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: calc(var(--header-h) + 40px);
	background: linear-gradient(to bottom, rgba(10, 17, 12, .62), rgba(10, 17, 12, .18) 55%, transparent);
	pointer-events: none;
	transition: opacity .3s var(--ease);
}
.is-front .header.is-solid::before { opacity: 0; }

.header__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-4);
}

.header__brand { display: flex; align-items: center; gap: 14px; min-width: 0; }

/* ロゴ：透明ヘッダー時は白版、白背景ヘッダー時は濃色版を重ねて切り替える */
.header__logo {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: 132px;
	line-height: 0;
}
.header__logo img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity .3s var(--ease);
}
.header__logo-d {
	position: absolute;
	inset: 0;
	opacity: 0;
}
.header.is-solid .header__logo-l { opacity: 0; }
.header.is-solid .header__logo-d { opacity: 1; }

.header__name {
	font-family: var(--font-display);
	font-size: 17px;
	letter-spacing: .12em;
	white-space: nowrap;
	color: #fff;
	transition: color .3s var(--ease);
}

.header__sub {
	display: none;
	font-family: var(--font-sans);
	font-size: 10px;
	letter-spacing: .18em;
	color: rgba(255, 255, 255, .7);
	transition: color .3s var(--ease);
}

.header__nav { display: none; }

.header__actions { display: flex; align-items: center; gap: 10px; }

.header__cta {
	display: none;
	min-height: 42px;
	padding: 8px 20px;
	font-size: 13px;
	letter-spacing: .1em;
	background: var(--moss);
	color: #1b2410;
	border-radius: var(--radius);
	align-items: center;
	transition: background .25s var(--ease);
}
.header__cta:hover { background: #fff; }

/* トップ以外／スクロール後は白背景 */
.header.is-solid {
	background: rgba(250, 249, 244, .96);
	box-shadow: 0 1px 0 var(--line);
	backdrop-filter: blur(8px);
}
.header.is-solid .header__name { color: var(--ink); }
.header.is-solid .header__sub { color: var(--ink-faint); }
.header.is-solid .header__nav a { color: var(--ink); }
.header.is-solid .burger__bar { background: var(--ink); }

/* バーガー */
.burger {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	gap: 5px;
	grid-auto-rows: 1px;
}
.burger__bar {
	width: 22px;
	height: 1px;
	background: #fff;
	transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.burger.is-open .burger__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open .burger__bar:nth-child(2) { opacity: 0; }
.burger.is-open .burger__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ドロワー */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 99;
	background: var(--forest-900);
	color: #fff;
	padding: calc(var(--header-h) + 28px) 26px 40px;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-12px);
	transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .3s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }

.drawer__list { border-top: 1px solid var(--line-dark); }
.drawer__list a {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 17px 2px;
	border-bottom: 1px solid var(--line-dark);
	font-size: 15px;
	letter-spacing: .08em;
}
.drawer__en {
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: .2em;
	color: var(--moss);
	min-width: 88px;
}
.drawer__foot { margin-top: var(--sp-7); display: grid; gap: 12px; }
.drawer__info {
	margin-top: var(--sp-6);
	font-size: 12.5px;
	line-height: 2.1;
	color: rgba(255, 255, 255, .62);
}

@media (min-width: 1024px) {
	.burger, .drawer { display: none; }
	.header__sub { display: block; align-self: center; padding-left: 14px; border-left: 1px solid currentColor; }
	.header__logo { width: 158px; }
	.header__nav { display: block; }
	.header__nav ul { display: flex; align-items: center; gap: 26px; }
	.header__nav a {
		font-size: 13px;
		letter-spacing: .1em;
		color: #fff;
		position: relative;
		padding-block: 6px;
		transition: color .25s var(--ease);
	}
	.header__nav a::after {
		content: "";
		position: absolute;
		left: 0; right: 0; bottom: 0;
		height: 1px;
		background: var(--moss);
		transform: scaleX(0);
		transform-origin: left;
		transition: transform .3s var(--ease);
	}
	.header__nav a:hover::after { transform: scaleX(1); }
	.header__nav a { white-space: nowrap; }
	.header__cta { display: inline-flex; }
	.header__inner { padding-inline: 40px; }
}

/* ノートPCの幅（1024〜1199px）では横幅が足りず、メニューが1文字ずつ折り返してしまう。
   英字のサブタイトルを引っ込め、字間と余白を詰めて1行に収める。 */
@media (min-width: 1024px) and (max-width: 1199px) {
	.header__sub { display: none; }
	.header__inner { padding-inline: 24px; }
	.header__nav ul { gap: 18px; }
	.header__nav a { font-size: 12.5px; letter-spacing: .04em; }
}

/* ============================================================
   ヒーロー
   ============================================================ */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
}

.hero__media { position: absolute; inset: 0; }

/* スライド：森 → 一皿 → 店 をゆっくり入れ替える。
   動きを減らす設定の端末では1枚目を静止表示する（下の @media 参照）。 */
.hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	overflow: hidden;
}
.hero__slide:first-child { opacity: 1; }
.hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
}

@media (prefers-reduced-motion: no-preference) {
	.hero__slide { animation: heroFade 21s linear infinite; }
	.hero__slide:nth-child(1) { animation-delay: 0s; }
	.hero__slide:nth-child(2) { animation-delay: 7s; }
	.hero__slide:nth-child(3) { animation-delay: 14s; }
	.hero__slide img { animation: heroZoom 21s var(--ease) infinite; animation-delay: inherit; }

	@keyframes heroFade {
		0%   { opacity: 0; }
		4%   { opacity: 1; }
		31%  { opacity: 1; }
		38%  { opacity: 0; }
		100% { opacity: 0; }
	}
	@keyframes heroZoom {
		0%   { transform: scale(1.10); }
		38%  { transform: scale(1.00); }
		100% { transform: scale(1.00); }
	}
}

/* 文字を確実に読ませるための重ね。上下から締めて中央は写真を見せる。 */
.hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(10, 17, 12, .86) 0%, rgba(10, 17, 12, .55) 26%, rgba(10, 17, 12, .12) 52%, rgba(10, 17, 12, .46) 100%),
		radial-gradient(120% 80% at 20% 90%, rgba(10, 17, 12, .5), transparent 60%);
}

.hero__inner {
	position: relative;
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding: 0 22px calc(var(--sp-8) + 12px);
}

/* 空の明るい写真の上でも読めるよう、緑ではなく白＋細い罫で見せる */
.hero__en {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-display);
	font-size: 10.5px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .92);
	margin-bottom: var(--sp-5);
	text-shadow: 0 1px 12px rgba(0, 0, 0, .55);
}
.hero__en::before {
	content: "";
	width: 34px;
	height: 1px;
	background: var(--moss);
	flex: 0 0 auto;
}

.hero__catch {
	font-family: var(--font-serif);
	font-weight: 300;
	font-size: 28px;
	line-height: 1.7;
	letter-spacing: .1em;
	text-shadow: 0 2px 30px rgba(0, 0, 0, .55), 0 1px 3px rgba(0, 0, 0, .3);
}

.hero__catch b { font-weight: 400; }

.hero__sub {
	margin-top: var(--sp-5);
	font-size: 14px;
	line-height: 2.1;
	color: rgba(255, 255, 255, .88);
	max-width: 34em;
	text-shadow: 0 1px 14px rgba(0, 0, 0, .6);
}

.hero__meta {
	margin-top: var(--sp-6);
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	font-size: 12px;
	letter-spacing: .1em;
	color: rgba(255, 255, 255, .74);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before {
	content: "";
	width: 4px; height: 4px;
	border-radius: 50%;
	background: var(--moss);
}

.hero__actions {
	margin-top: var(--sp-6);
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero__scroll {
	display: none;
	position: absolute;
	right: 42px;
	bottom: 0;
	writing-mode: vertical-rl;
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: .3em;
	color: rgba(255, 255, 255, .7);
	padding-bottom: 70px;
}
.hero__scroll::after {
	content: "";
	position: absolute;
	left: 50%; bottom: 0;
	width: 1px; height: 56px;
	background: rgba(255, 255, 255, .4);
	overflow: hidden;
}

@media (min-width: 768px) {
	.hero__en { font-size: 12px; letter-spacing: .32em; gap: 14px; }
	.hero__catch { font-size: 42px; }
	.hero__sub { font-size: 15px; }
	.hero__inner { padding-inline: 40px; padding-bottom: var(--sp-9); }
}

@media (min-width: 1024px) {
	.hero__catch { font-size: 52px; letter-spacing: .12em; }
	.hero__scroll { display: block; }
	.hero__meta { gap: 10px 26px; font-size: 12.5px; }
}

/* ============================================================
   リード（何を売っているのか）
   ============================================================ */
.lead { text-align: center; }

.lead__big {
	font-family: var(--font-serif);
	font-weight: 300;
	font-size: 20px;
	line-height: 2.3;
	letter-spacing: .05em;
}

.lead__big em {
	font-style: normal;
	background: linear-gradient(transparent 66%, var(--moss-pale) 66%);
	padding-inline: 2px;
}

.lead__body {
	margin-top: var(--sp-6);
	color: var(--ink-soft);
	font-size: 14.5px;
	line-height: 2.3;
}

.lead__words {
	margin-top: var(--sp-8);
	display: grid;
	gap: 1px;
	background: var(--line);
	border-block: 1px solid var(--line);
}
.lead__word { background: var(--paper); padding: 26px 12px; }
.lead__word dt {
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: .24em;
	color: var(--moss-deep);
	margin-bottom: 10px;
}
.lead__word dd {
	font-family: var(--font-serif);
	font-size: 17px;
	letter-spacing: .02em;
	white-space: nowrap;
}
.lead__word p {
	margin-top: 8px;
	font-size: 13px;
	line-height: 2;
	color: var(--ink-soft);
}

@media (min-width: 768px) {
	.lead__big { font-size: 27px; }
	.lead__words { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   汎用：写真＋テキストの2カラム
   ============================================================ */
.duo { display: grid; gap: var(--sp-6); align-items: center; }
.duo__media { position: relative; }
.duo__media img { width: 100%; }
.duo__cap {
	margin-top: 10px;
	font-size: 11.5px;
	letter-spacing: .08em;
	color: var(--ink-faint);
}
.duo__body p + p { margin-top: 1.6em; }

@media (min-width: 768px) {
	.duo { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
	.duo--wide-media { grid-template-columns: 1.15fr 1fr; }
	.duo--rev .duo__media { order: 2; }
}

/* ============================================================
   コンセプト
   ============================================================ */
.concept__quote {
	font-family: var(--font-serif);
	font-weight: 300;
	font-size: 19px;
	line-height: 2.2;
	letter-spacing: .06em;
	margin-bottom: var(--sp-6);
}

.concept__text { color: var(--ink-soft); font-size: 14.5px; line-height: 2.3; }
.concept__text p + p { margin-top: 1.5em; }

.concept__grid { margin-top: var(--sp-7); display: grid; gap: var(--sp-4); }
.concept__grid img { width: 100%; }

/* 店名をブランドに育てる一文（各ページに1回置く）。
   箱で囲まず、罫と余白、背景の大きなマークで見せる。 */
.creed {
	position: relative;
	margin-top: var(--sp-9);
	padding: var(--sp-8) var(--sp-4) var(--sp-7);
	text-align: center;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
}
.creed::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	height: 300px;
	transform: translate(-50%, -50%);
	background: url("../images/logo-mark-flat.svg") center / contain no-repeat;
	opacity: .05;
	pointer-events: none;
}
.creed > * { position: relative; }
.creed__en {
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: .34em;
	color: var(--moss-deep);
}
.creed__ja {
	margin-top: 18px;
	font-family: var(--font-serif);
	font-weight: 300;
	font-size: 21px;
	line-height: 1.85;
	letter-spacing: .08em;
	/* 「…になる。」の「る。」だけが次行に落ちるのを防ぐ */
	text-wrap: balance;
}
.creed__note {
	margin-top: 20px;
	font-size: 13px;
	line-height: 2.2;
	color: var(--ink-soft);
}

@media (min-width: 768px) {
	.concept__quote { font-size: 24px; }
	.concept__grid { grid-template-columns: repeat(3, 1fr); }
	.creed { padding: var(--sp-9) var(--sp-5) var(--sp-8); }
	.creed::before { width: 420px; height: 420px; }
	.creed__ja { font-size: 25px; }
}

@media (min-width: 1200px) {
	.creed { padding-inline: var(--sp-7); }
	.creed__ja { font-size: 29px; }
}

/* ============================================================
   四季
   ============================================================ */
.season__list { display: grid; gap: var(--sp-5); }

.season__item { display: flex; flex-direction: column; }

/* 写真の右下に季節の漢字を大きく重ねる。文字は写真の上に置かず可読性を保つ。 */
.season__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--forest-700);
}
.season__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--ease);
}
.season__item:hover .season__media img { transform: scale(1.06); }
.season__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(12, 20, 14, .62), transparent 46%);
}
.season__kanji {
	position: absolute;
	right: 14px;
	bottom: 4px;
	z-index: 1;
	font-family: var(--font-serif);
	font-weight: 300;
	font-size: 58px;
	line-height: 1;
	color: rgba(255, 255, 255, .96);
	text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
	pointer-events: none;
}

.season__body { padding-top: 20px; }
.season__no {
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: .26em;
	color: var(--moss);
}
.season__name {
	margin-top: 8px;
	font-family: var(--font-serif);
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: .08em;
	color: #fff;
}
.season__text {
	margin-top: 12px;
	font-size: 13px;
	line-height: 2.05;
	color: rgba(255, 255, 255, .72);
}
.season__tags {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.season__tags li {
	font-size: 11px;
	letter-spacing: .06em;
	padding: 3px 11px;
	border: 1px solid var(--line-dark);
	color: rgba(255, 255, 255, .78);
	border-radius: 999px;
}

@media (min-width: 768px) {
	.season__list { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
}
@media (min-width: 1024px) {
	.season__list { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
	.season__kanji { font-size: 66px; right: 16px; }
}

/* ============================================================
   コース
   ============================================================ */
.course__group + .course__group { margin-top: var(--sp-9); }

.course__label {
	display: flex;
	align-items: baseline;
	gap: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
	margin-bottom: var(--sp-5);
}
.course__label b {
	font-family: var(--font-display);
	font-size: 13px;
	letter-spacing: .26em;
	color: var(--moss-deep);
	font-weight: 500;
}
.course__label span { font-family: var(--font-serif); font-size: 19px; letter-spacing: .08em; }
.course__label small { margin-left: auto; font-size: 12px; color: var(--ink-faint); letter-spacing: .06em; }

/* 写真＋カードの2カラム。ブロックごとに写真の左右を入れ替えて単調さを避ける。 */
.course__main { display: grid; gap: var(--sp-4); }

/* 縦横比は入れ物側で決め、画像は常にその中を埋める。
   こうしておくと、PCで高さを揃える時に画像側を触らずに済む。 */
.course__media {
	overflow: hidden;
	background: var(--paper-2);
	aspect-ratio: 3 / 2;
}
.course__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--ease);
}
.course__group:hover .course__media img { transform: scale(1.04); }

.course__cards { display: grid; gap: var(--sp-4); }

.course__card {
	background: var(--white);
	border: 1px solid var(--line);
	padding: 26px 22px;
	display: flex;
	flex-direction: column;
}
.course__name { font-family: var(--font-serif); font-size: 17px; line-height: 1.8; letter-spacing: .04em; }
.course__price {
	margin-top: 12px;
	font-family: var(--font-display);
	font-size: 30px;
	letter-spacing: .02em;
	color: var(--ink);
	line-height: 1.2;
}
.course__price small { font-family: var(--font-sans); font-size: 12px; letter-spacing: .08em; color: var(--ink-faint); margin-left: 6px; }
.course__items {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px dashed var(--line);
	font-size: 13px;
	line-height: 2.1;
	color: var(--ink-soft);
}
.course__note { margin-top: 14px; font-size: 13px; line-height: 2; color: var(--moss-deep); }

/* 価格を出さないコース（ネット予約特別コース）の表記 */
.course__price--ask {
	font-family: var(--font-sans);
	font-size: 13px;
	letter-spacing: .04em;
	line-height: 1.9;
	color: var(--ink-faint);
	margin-top: 14px;
}

/* コースごとの予約ボタン */
.course__book {
	margin-top: var(--sp-5);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.course__book .btn { flex: 1 1 100%; }

@media (min-width: 768px) {
	.course__book .btn { flex: 0 1 340px; }
}

.course__cards--single { grid-template-columns: 1fr !important; }

.course__rules {
	margin-top: var(--sp-7);
	padding: 24px 22px;
	background: var(--paper-2);
	font-size: 13px;
	line-height: 2.1;
	color: var(--ink-soft);
}
.course__rules--inline {
	margin-top: var(--sp-5);
	padding: 20px 20px;
	background: transparent;
	border: 1px solid var(--line);
	font-size: 12.5px;
}
.course__rules li { padding-left: 1.2em; text-indent: -1.2em; }
.course__rules li + li { margin-top: 6px; }
.course__rules li::before { content: "・"; color: var(--moss-deep); }

@media (min-width: 768px) {
	/* タブレット：写真は全幅で上、カードは2列 */
	.course__main { gap: var(--sp-5); }
	.course__cards { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
	.course__card { padding: 34px 30px; }
	.course__price { font-size: 36px; }
	/* 価格を出さないコースは本文サイズのまま（.course__price の拡大を打ち消す） */
	.course__card .course__price--ask { font-size: 13.5px; }
	.course__rules { padding: 30px 34px; }
	/* 1枚だけのブロックは横に伸びすぎないよう中央に置く */
	.course__cards--single { max-width: 640px; margin-inline: auto; }
}

@media (min-width: 1024px) {
	/* PC：写真とカードを左右に並べる。ブロックごとに写真の左右を入れ替える。
	   ★写真列とカード列は必ず同じ高さにする（stretch）。
	     どちらかが余ると、写真の下や特別コースの下に中途半端な余白ができる。 */
	.course__main {
		grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
		gap: var(--sp-6);
		align-items: stretch;
	}
	.course__main--nophoto { grid-template-columns: 1fr; }
	/* 写真を右に置くブロックは、列幅も入れ替える。
	   order だけ変えると写真が広いほうの列に入り、元画像より拡大されてしまう。 */
	.course__group--rev .course__main { grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); }
	.course__group--rev .course__media { order: 2; }

	/* ★写真は縦横比を持たせず、画像を絶対配置にして「入れ物の高さ＝行の高さ」に従わせる。
	   aspect-ratio を残したまま stretch すると、高さに合わせて幅まで伸び、列からはみ出す。 */
	.course__media { aspect-ratio: auto; position: relative; }
	.course__media img { position: absolute; inset: 0; }

	/* 行の高さはカード列が決める。カードが1枚だけのブロックでも
	   写真が潰れないよう下限を持たせる（3:2に近い形に落ち着く）。 */
	.course__cards {
		grid-template-columns: 1fr;
		gap: var(--sp-3);
		grid-auto-rows: 1fr;
		min-height: 300px;
	}
	.course__card { padding: 26px 26px; justify-content: center; }
	.course__price { font-size: 32px; }
}

/* ============================================================
   シェフ
   ============================================================ */
.chef__name {
	font-family: var(--font-serif);
	font-size: 24px;
	letter-spacing: .12em;
}
.chef__name small {
	display: block;
	font-family: var(--font-display);
	font-size: 12px;
	letter-spacing: .24em;
	color: var(--moss);
	margin-bottom: 10px;
}
.chef__kana { font-size: 14px; letter-spacing: .06em; color: rgba(255, 255, 255, .55); margin-left: 4px; }
.chef__from { margin-top: 8px; font-size: 12.5px; letter-spacing: .08em; color: rgba(255,255,255,.6); }
.chef__text { margin-top: var(--sp-5); font-size: 14px; line-height: 2.3; color: rgba(255, 255, 255, .78); }
.chef__text p + p { margin-top: 1.5em; }

@media (min-width: 768px) {
	.chef__name { font-size: 29px; }
}

/* ============================================================
   ギャラリー
   ============================================================ */
/* 均一な格子ではなく、大小を混ぜた雑誌的な配置にする */
.gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-flow: dense;
	gap: 6px;
}
.gallery__grid img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.gallery__item { overflow: hidden; }
.gallery__item img { transition: transform 1s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }

/* 1枚目だけ2×2で見せる。
   17枚（大1＋小16＝20コマ）にしてあるので、2列・4列・5列のどれでも
   最終行が欠けずにきれいに埋まる。 */
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* ギャラリーページは枚数が多いので、大小をつけず均一に並べる */
.gallery__grid--page .gallery__item:nth-child(1) { grid-column: auto; grid-row: auto; }
.gallery__grid--page { grid-template-columns: repeat(3, 1fr); }

@media (min-width: 768px) {
	.gallery__grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
	.gallery__grid--page { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1024px) {
	.gallery__grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
	.gallery__grid--page { grid-template-columns: repeat(6, 1fr); }
}

/* ============================================================
   軽井沢という土地
   ============================================================ */
.karuizawa__list {
	margin-top: var(--sp-6);
	display: grid;
	gap: 10px;
}
.karuizawa__list li {
	display: flex;
	gap: 12px;
	font-size: 13.5px;
	line-height: 1.9;
	color: var(--ink-soft);
}
.karuizawa__list li::before {
	content: "";
	flex: 0 0 auto;
	width: 5px; height: 5px;
	margin-top: .75em;
	border-radius: 50%;
	background: var(--moss);
}

/* 2列にすると1行に収まらず不格好に折り返すため、1列のまま読ませる */
@media (min-width: 1200px) {
	.karuizawa__list { gap: 12px; }
}

/* ============================================================
   お店のこと
   ============================================================ */
/* 画面いっぱいの1枚で「店の空気」を見せてから、細部を3枚で添える */
.shop__hero {
	margin: var(--sp-7) 0 var(--sp-6);
	overflow: hidden;
}
.shop__hero img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.shop__photos { display: grid; gap: 8px; grid-template-columns: repeat(2, 1fr); }
.shop__photos img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.shop__photos img:first-child { grid-column: 1 / -1; }

@media (min-width: 768px) {
	.shop__hero { margin-block: var(--sp-8) var(--sp-7); }
	.shop__hero img { aspect-ratio: 21 / 8; }
	.shop__photos { grid-template-columns: repeat(3, 1fr); gap: 10px; }
	.shop__photos img:first-child { grid-column: auto; }
}

/* ============================================================
   ご予約
   ============================================================ */
.reserve__grid { display: grid; gap: 12px; }

.reserve__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px;
	border: 1px solid var(--line);
	background: var(--white);
	transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.reserve__card:hover { border-color: var(--moss); transform: translateY(-2px); }
.reserve__site { font-size: 15px; letter-spacing: .04em; }
.reserve__site small { display: block; font-size: 12px; color: var(--ink-faint); margin-top: 4px; letter-spacing: .04em; }
.reserve__arrow { font-family: var(--font-display); font-size: 18px; color: var(--moss-deep); }

.reserve__note {
	margin-top: var(--sp-6);
	font-size: 13px;
	line-height: 2.1;
	color: var(--ink-soft);
}

@media (min-width: 768px) {
	.reserve__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
	.reserve__card { flex-direction: column; align-items: flex-start; gap: 10px; padding: 24px 22px; }
	.reserve__arrow { align-self: flex-end; margin-top: -6px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faqgroup + .faqgroup { margin-top: var(--sp-8); }
.faqgroup__title {
	font-size: 19px;
	letter-spacing: .08em;
	margin-bottom: var(--sp-4);
	display: flex;
	align-items: center;
	gap: 14px;
}
.faqgroup__title::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--moss);
	flex: 0 0 auto;
}

.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }

.faq__q {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 20px 2px;
	text-align: left;
	font-size: 15px;
	line-height: 1.9;
	letter-spacing: .03em;
}
.faq__q::before {
	content: "Q";
	font-family: var(--font-display);
	font-size: 15px;
	color: var(--moss-deep);
	flex: 0 0 auto;
	line-height: 1.9;
}
.faq__q::after {
	content: "";
	margin-left: auto;
	flex: 0 0 auto;
	width: 11px; height: 11px;
	margin-top: .65em;
	border-right: 1px solid var(--ink-faint);
	border-bottom: 1px solid var(--ink-faint);
	transform: rotate(45deg);
	transition: transform .3s var(--ease);
}
.faq__item.is-open .faq__q::after { transform: rotate(-135deg); }

.faq__a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .35s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
	padding: 0 2px 22px 29px;
	font-size: 13.5px;
	line-height: 2.2;
	color: var(--ink-soft);
}

/* ============================================================
   アクセス
   ============================================================ */
.access__table { border-top: 1px solid var(--line); font-size: 14px; }
.access__table th,
.access__table td {
	display: block;
	text-align: left;
	padding: 14px 0;
}
.access__table th {
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: .22em;
	color: var(--moss-deep);
	padding-bottom: 2px;
	font-weight: 500;
}
.access__table td { border-bottom: 1px solid var(--line); padding-top: 0; line-height: 2; }

.access__map {
	margin-top: var(--sp-6);
	aspect-ratio: 4 / 3;
	background: var(--paper-2);
}
.access__map iframe { width: 100%; height: 100%; border: 0; }

@media (min-width: 768px) {
	.access__table th, .access__table td { display: table-cell; padding: 18px 0; }
	.access__table th { width: 170px; padding-right: 20px; vertical-align: top; padding-top: 22px; }
	.access__table tr { border-bottom: 1px solid var(--line); }
	.access__table td { border-bottom: 0; }
	.access__map { aspect-ratio: 16 / 9; }
}

/* ============================================================
   ブログ（シェフの独り言）
   ============================================================ */
.posts { display: grid; gap: var(--sp-5); }

.post-card { display: block; }
.post-card__media { overflow: hidden; background: var(--paper-2); aspect-ratio: 4 / 3; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__date {
	margin-top: 14px;
	font-family: var(--font-display);
	font-size: 12px;
	letter-spacing: .16em;
	color: var(--moss-deep);
}
.post-card__title {
	margin-top: 6px;
	font-family: var(--font-serif);
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: .03em;
}
.post-card__excerpt { margin-top: 8px; font-size: 13px; line-height: 2; color: var(--ink-soft); }

.post-card__media--none {
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	letter-spacing: .2em;
	color: var(--ink-faint);
	font-size: 13px;
}

@media (min-width: 768px) {
	.posts { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
	/* 記事が1〜2本しか無いときに3列のまま右側が空くのを防ぐ（公開直後の見え方） */
	.posts--1 { grid-template-columns: minmax(0, 420px); justify-content: center; }
	.posts--2 { grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; }
}

/* ============================================================
   下層ページ・記事本文
   ============================================================ */
.pagehead {
	position: relative;
	padding-top: calc(var(--header-h) + 48px);
	padding-bottom: 48px;
	background: var(--forest-800);
	color: #fff;
	text-align: center;
	overflow: hidden;
}
.pagehead__media { position: absolute; inset: 0; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehead__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(10, 17, 12, .72) 0%, rgba(10, 17, 12, .42) 45%, rgba(10, 17, 12, .68) 100%);
}
.pagehead--photo { padding-top: calc(var(--header-h) + 74px); padding-bottom: 74px; }
.pagehead__inner { position: relative; }
.pagehead__en {
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: .3em;
	color: var(--moss);
	display: block;
	margin-bottom: 14px;
}
.pagehead__ja {
	font-family: var(--font-serif);
	font-weight: 300;
	font-size: 23px;
	letter-spacing: .12em;
	line-height: 1.7;
	text-shadow: 0 2px 24px rgba(0, 0, 0, .5);
}
.pagehead__lead {
	margin-top: 18px;
	font-size: 13.5px;
	line-height: 2.1;
	color: rgba(255, 255, 255, .82);
	text-shadow: 0 1px 14px rgba(0, 0, 0, .6);
}

@media (min-width: 768px) {
	.pagehead { padding-top: calc(var(--header-h) + 70px); padding-bottom: 70px; }
	.pagehead--photo { padding-top: calc(var(--header-h) + 118px); padding-bottom: 118px; }
	.pagehead__ja { font-size: 33px; }
	.pagehead__lead { font-size: 14.5px; }
}

/* ============================================================
   関連ページ
   ============================================================ */
.related { display: grid; gap: 12px; }
.related__item {
	position: relative;
	display: block;
	padding: 24px 46px 26px 24px;
	background: var(--white);
	border: 1px solid var(--line);
	transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.related__item:hover { border-color: var(--moss); transform: translateY(-2px); }
.related__en {
	display: block;
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: .26em;
	color: var(--moss-deep);
}
.related__ja {
	display: block;
	margin-top: 8px;
	font-family: var(--font-serif);
	font-size: 17px;
	letter-spacing: .05em;
}
.related__desc {
	display: block;
	margin-top: 8px;
	font-size: 12.5px;
	line-height: 1.95;
	color: var(--ink-soft);
}
.related__arrow {
	position: absolute;
	right: 22px;
	bottom: 22px;
	font-family: var(--font-display);
	font-size: 17px;
	color: var(--moss-deep);
}

@media (min-width: 768px) {
	.related { grid-template-columns: repeat(3, 1fr); gap: 16px; }
	.related__item { padding: 30px 46px 32px 28px; }
}

/* ============================================================
   下層ページの汎用パーツ
   ============================================================ */
/* 番号付きの考え方リスト */
.tenets { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.tenet { background: var(--paper); padding: 26px 4px; display: grid; gap: 6px; }
.tenet__no {
	font-family: var(--font-display);
	font-size: 12px;
	letter-spacing: .22em;
	color: var(--moss-deep);
}
.tenet__ja { font-family: var(--font-serif); font-size: 18px; line-height: 1.7; letter-spacing: .06em; }
.tenet__text { font-size: 13.5px; line-height: 2.05; color: var(--ink-soft); }

@media (min-width: 768px) {
	.tenets { grid-template-columns: repeat(2, 1fr); }
	.tenet { padding: 32px 26px; }
	/* 項目数が奇数のとき、最後の1枚を横いっぱいに広げて右下の穴を埋める */
	.tenets > .tenet:last-child:nth-child(odd) { grid-column: 1 / -1; }
	.tenets--3 { grid-template-columns: repeat(3, 1fr); }
	.tenets--3 > .tenet:last-child:nth-child(odd) { grid-column: auto; }
}

/* 年表 */
.timeline { border-left: 1px solid var(--line); padding-left: 24px; display: grid; gap: 26px; }
.timeline__item { position: relative; }
.timeline__item::before {
	content: "";
	position: absolute;
	left: -29px;
	top: .55em;
	width: 9px; height: 9px;
	border-radius: 50%;
	background: var(--moss);
}
.timeline__year {
	font-family: var(--font-display);
	font-size: 13px;
	letter-spacing: .14em;
	color: var(--moss-deep);
}
.timeline__text { margin-top: 6px; font-size: 14px; line-height: 2.05; color: var(--ink-soft); }

/* 写真の帯（3枚並び） */
.photostrip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.photostrip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 768px) {
	.photostrip { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* 定義リスト（食材カレンダー等） */
.deflist { border-top: 1px solid var(--line); }
.deflist__row { border-bottom: 1px solid var(--line); padding: 20px 0; }
.deflist__term {
	font-family: var(--font-serif);
	font-size: 16px;
	letter-spacing: .08em;
	line-height: 1.7;
	margin-bottom: 8px;
	/* 見出しの途中で不自然に折り返さないようにする。
	   欧文の小見出しと日本語を1行に並べていた頃は「ご予約につい／て」のように
	   1文字だけ落ちて見た目が崩れていたため、小見出しは上の行へ独立させている。 */
	text-wrap: pretty;
}
.deflist__term small {
	display: block;
	font-family: var(--font-display);
	font-size: 10.5px;
	letter-spacing: .22em;
	line-height: 1.4;
	color: var(--moss-deep);
	margin-bottom: 5px;
}
.deflist__desc { font-size: 13.5px; line-height: 2.05; color: var(--ink-soft); }

@media (min-width: 768px) {
	.deflist__row { display: grid; grid-template-columns: 230px 1fr; gap: 32px; padding: 24px 0; }
	.deflist__term { margin-bottom: 0; }
}

/* サイトマップ */
.sitemap { display: grid; gap: var(--sp-7); }
.sitemap__group h2 {
	font-family: var(--font-serif);
	font-size: 18px;
	letter-spacing: .08em;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 6px;
}
.sitemap__group h2 small {
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: .24em;
	color: var(--moss-deep);
	margin-right: 12px;
}
.sitemap__list li { border-bottom: 1px solid var(--line); }
.sitemap__list a {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 15px 2px;
	font-size: 14.5px;
	transition: color .2s var(--ease);
}
.sitemap__list a:hover { color: var(--moss-deep); }
.sitemap__list a::before { content: "→"; font-family: var(--font-display); color: var(--moss-deep); }
.sitemap__list span { font-size: 12.5px; color: var(--ink-faint); margin-left: auto; text-align: right; }

@media (min-width: 768px) {
	.sitemap { grid-template-columns: repeat(2, 1fr); gap: var(--sp-7) var(--sp-8); }
}

/* 大きな引用 */
.pull {
	font-family: var(--font-serif);
	font-weight: 300;
	font-size: 20px;
	line-height: 2.1;
	letter-spacing: .08em;
	text-align: center;
	padding-block: var(--sp-6);
}
@media (min-width: 768px) { .pull { font-size: 26px; } }

/* 本文ブロック（下層ページの読み物パート） */
.prose { font-size: 14.5px; line-height: 2.25; color: var(--ink-soft); }
.prose p + p { margin-top: 1.6em; }
.prose strong { color: var(--ink); font-weight: 500; }
@media (min-width: 768px) { .prose { font-size: 15px; } }

.crumb { border-bottom: 1px solid var(--line); background: var(--paper); }
.crumb__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding: 12px 22px;
	font-size: 11.5px;
	letter-spacing: .04em;
	color: var(--ink-faint);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.crumb__link:hover { color: var(--moss-deep); }
.crumb__sep { color: var(--line); }
.crumb__current { color: var(--ink-soft); }

@media (min-width: 768px) {
	.crumb__inner { padding-inline: 40px; }
}

.entry { font-size: 15px; line-height: 2.15; }
.entry > * + * { margin-top: 1.5em; }
.entry h2 {
	font-family: var(--font-serif);
	font-size: 21px;
	line-height: 1.7;
	letter-spacing: .05em;
	margin-top: 2.2em;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
}
.entry h3 {
	font-family: var(--font-serif);
	font-size: 18px;
	line-height: 1.8;
	letter-spacing: .05em;
	margin-top: 2em;
	padding-left: 14px;
	border-left: 2px solid var(--moss);
}
.entry h4 { font-weight: 700; margin-top: 1.8em; }
.entry a { color: var(--moss-deep); border-bottom: 1px solid currentColor; }
.entry ul, .entry ol { padding-left: 1.4em; }
.entry ul li { list-style: disc; }
.entry ol li { list-style: decimal; }
.entry li + li { margin-top: .4em; }
.entry blockquote {
	padding: 18px 22px;
	background: var(--paper-2);
	border-left: 2px solid var(--moss);
	font-size: 14px;
}
.entry img { margin-inline: auto; }
.entry table { font-size: 14px; }
.entry th, .entry td { border: 1px solid var(--line); padding: 10px 12px; }
.entry th { background: var(--paper-2); text-align: left; }
.entry iframe { max-width: 100%; }

.entry__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	align-items: center;
	font-size: 12px;
	letter-spacing: .1em;
	color: var(--ink-faint);
	margin-bottom: var(--sp-5);
}
.entry__meta time { font-family: var(--font-display); font-size: 13px; color: var(--moss-deep); }

.pager {
	margin-top: var(--sp-8);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	font-size: 13px;
}
.pager .page-numbers {
	min-width: 42px;
	height: 42px;
	display: inline-grid;
	place-items: center;
	padding-inline: 12px;
	border: 1px solid var(--line);
	font-family: var(--font-display);
	letter-spacing: .06em;
}
.pager .page-numbers.current,
.pager .page-numbers:hover { background: var(--forest-800); color: #fff; border-color: var(--forest-800); }

/* ============================================================
   フォーム
   ============================================================ */
.cform { display: grid; gap: var(--sp-5); }
.cform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cform__row { display: grid; gap: var(--sp-5); }
.cform__field { display: block; }
.cform__label {
	display: block;
	font-size: 13px;
	letter-spacing: .08em;
	margin-bottom: 8px;
}
.cform__label em {
	font-style: normal;
	font-size: 10.5px;
	letter-spacing: .1em;
	background: var(--moss);
	color: #1b2410;
	padding: 2px 7px;
	margin-left: 8px;
	border-radius: 2px;
}
.cform input[type="text"],
.cform input[type="email"],
.cform input[type="tel"],
.cform select,
.cform textarea {
	width: 100%;
	padding: 14px 15px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	font-size: 16px;
	line-height: 1.7;
	transition: border-color .2s var(--ease);
}
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--moss); outline: none; }
.cform__field.is-error input,
.cform__field.is-error textarea,
.cform__field.is-error select { border-color: #b3402f; background: #fdf5f3; }
.cform__agree { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.9; }
.cform__agree input { margin-top: .45em; }
.cform__agree a { color: var(--moss-deep); border-bottom: 1px solid currentColor; }
.cform__agree.is-error { color: #b3402f; }
.cform__alert {
	padding: 14px 16px;
	background: #fdf5f3;
	border: 1px solid #e6c6bf;
	color: #b3402f;
	font-size: 13.5px;
	line-height: 1.9;
}
.cform__submit { margin-top: var(--sp-3); text-align: center; }
.cform__note { margin-top: 14px; font-size: 12.5px; color: var(--ink-faint); }

@media (min-width: 768px) {
	.cform__row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CTA帯
   ============================================================ */
.cta {
	position: relative;
	color: #fff;
	text-align: center;
	overflow: hidden;
}
.cta__media { position: absolute; inset: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__media::after { content: ""; position: absolute; inset: 0; background: rgba(16, 26, 18, .72); }
.cta__inner { position: relative; padding-block: var(--section-y); }
.cta__ja {
	font-family: var(--font-serif);
	font-weight: 300;
	font-size: 21px;
	line-height: 2;
	letter-spacing: .07em;
}
.cta__text { margin-top: var(--sp-4); font-size: 14px; line-height: 2.1; color: rgba(255, 255, 255, .8); }
.cta__actions { margin-top: var(--sp-6); display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

@media (min-width: 768px) {
	.cta__ja { font-size: 28px; }
}

/* ============================================================
   フッター
   ============================================================ */
.footer { background: var(--forest-900); color: rgba(255, 255, 255, .74); }
.footer__top { padding-block: var(--sp-8); display: grid; gap: var(--sp-7); }

.footer__brand { display: block; }
.footer__logo { width: 220px; max-width: 70%; height: auto; }
.footer__name { font-family: var(--font-display); font-size: 20px; letter-spacing: .12em; color: #fff; }
.footer__shopname {
	margin-top: 14px;
	font-size: 12px;
	letter-spacing: .16em;
	color: rgba(255, 255, 255, .55);
}

.footer__info { margin-top: var(--sp-5); font-size: 13px; line-height: 2.1; }
.footer__info dt { color: var(--moss); font-size: 11px; letter-spacing: .18em; font-family: var(--font-display); margin-top: 14px; }
.footer__info dd { color: rgba(255, 255, 255, .78); }

.footer__nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; }
.footer__nav a { font-size: 13px; letter-spacing: .06em; transition: color .2s var(--ease); }
.footer__nav a:hover { color: var(--moss); }

.footer__sns { margin-top: var(--sp-5); display: flex; gap: 12px; }
.footer__sns a {
	min-height: 40px;
	padding: 8px 18px;
	border: 1px solid var(--line-dark);
	font-family: var(--font-display);
	font-size: 12px;
	letter-spacing: .16em;
	display: inline-flex;
	align-items: center;
	transition: border-color .2s var(--ease), color .2s var(--ease);
}
.footer__sns a:hover { border-color: var(--moss); color: var(--moss); }

.footer__bottom {
	border-top: 1px solid var(--line-dark);
	padding-block: 22px;
	font-size: 11.5px;
	letter-spacing: .06em;
	color: rgba(255, 255, 255, .5);
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	justify-content: space-between;
}

@media (min-width: 768px) {
	.footer__top { grid-template-columns: 1.2fr 1fr; gap: var(--sp-8); padding-block: var(--sp-9); }
	.footer__nav { grid-template-columns: repeat(2, 1fr); }
}

/* ページ最上部へ */
.totop {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 90;
	width: 46px; height: 46px;
	display: grid; place-items: center;
	background: var(--forest-800);
	color: #fff;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .2s;
}
.totop.is-show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--moss); color: #1b2410; }

/* スマホ固定CTA */
.spbar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 95;
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--forest-900);
	transform: translateY(100%);
	transition: transform .35s var(--ease);
}
.spbar.is-show { transform: none; }
.spbar--3 { grid-template-columns: 1fr 1fr 1.2fr; }
.spbar a {
	min-height: 56px;
	display: grid;
	place-items: center;
	font-size: 13px;
	letter-spacing: .08em;
	color: #fff;
	border-left: 1px solid rgba(255, 255, 255, .12);
}
.spbar a:first-child { border-left: 0; }
.spbar__cta { background: var(--moss); color: #1b2410; border-left: 0; font-weight: 500; }

@media (min-width: 1024px) {
	.spbar { display: none; }
	.totop { right: 26px; bottom: 26px; }
}

@media (max-width: 1023px) {
	body { padding-bottom: 0; }
	.totop { bottom: 70px; }
}

/* ============================================================
   スクロール表示アニメーション
   main.js が動かなかった場合に備え、footer 側でフェイルセーフを入れている
   ============================================================ */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   ユーティリティ
   ============================================================ */
.center { text-align: center; }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mt-8 { margin-top: var(--sp-8); }
.sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}
.no-scroll { overflow: hidden; }
