@charset "UTF-8";
/* ==========================================================================
   訪問理美容うららか オリジナルテーマ
   高齢のご家族・施設ご担当者が読むことを前提に、本文17px／行間1.9を基準に
   設計しています。配色は緑（安心感）＋生成り（清潔感）＋ロゼ（電話CTA）。
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. トークン
   -------------------------------------------------------------------------- */
:root {
	--green-900: #2e3a1f;
	--green-800: #3c4d27;
	--green-700: #55702f;
	--green-600: #6d8b3c;
	--green-500: #7d9b4e;
	--green-200: #cfdcb4;
	--green-100: #e7efd7;
	--green-50: #f2f6e9;

	--cream: #faf6ec;
	--cream-200: #f3ead6;
	--cream-300: #ebdfc4;

	--rose-600: #cf4f74;
	--rose-700: #b8425f;
	--rose-100: #fbe9ef;

	--ink: #35352e;
	--ink-muted: #6b6b60;
	--line: #e2ddcd;
	--white: #fff;

	--font-sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Yu Gothic Medium", "Yu Gothic", Meiryo, system-ui, sans-serif;
	--font-serif: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "BIZ UDPMincho", "MS PMincho", serif;

	--container: 1180px;
	--narrow: 760px;
	--radius: 16px;
	--radius-lg: 24px;
	--radius-pill: 999px;
	--shadow: 0 4px 20px rgba(70, 80, 45, .08);
	--shadow-lg: 0 12px 40px rgba(70, 80, 45, .12);
	--header-h: 88px;
	--sticky-cta-h: 60px;
}

/* --------------------------------------------------------------------------
   2. ベース
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	overflow-x: clip;
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 1.9;
	color: var(--ink);
	background: var(--white);
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

img, svg, video { max-width: 100%; height: auto; vertical-align: middle; }
img { object-fit: cover; }

a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-600); }

h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.5; font-weight: 700; }
p, ul, ol, dl, figure, table { margin: 0; }
ul, ol { padding: 0; list-style: none; }

button { font: inherit; color: inherit; cursor: pointer; }

:focus-visible {
	outline: 3px solid var(--green-600);
	outline-offset: 2px;
	border-radius: 4px;
}

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

.skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 200;
	padding: 12px 20px;
	background: var(--green-700);
	color: var(--white);
	border-radius: 0 0 8px 8px;
	text-decoration: none;
}
.skip-link:focus { top: 0; color: var(--white); }

.container {
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
}
.container--narrow { width: min(100% - 40px, var(--narrow)); }

.icon { flex: none; }

/* --------------------------------------------------------------------------
   3. ボタン
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 12px 28px;
	border: 2px solid transparent;
	border-radius: var(--radius-pill);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn__body { display: flex; flex-direction: column; align-items: flex-start; }
.btn__main { display: block; }
.btn__sub { display: block; font-size: .75em; font-weight: 500; opacity: .9; }

.btn--primary { background: var(--green-600); color: var(--white); }
.btn--primary:hover { background: var(--green-700); color: var(--white); }

.btn--tel { background: var(--rose-600); color: var(--white); }
.btn--tel:hover { background: var(--rose-700); color: var(--white); }
.btn--tel .btn__main { font-size: 1.12em; letter-spacing: .02em; }

.btn--outline {
	background: var(--white);
	border-color: var(--green-600);
	color: var(--green-700);
}
.btn--outline:hover { background: var(--green-50); color: var(--green-800); }

.btn--sm { min-height: 46px; padding: 8px 20px; font-size: .94rem; }
.btn--lg { min-height: 64px; padding: 14px 34px; font-size: 1.06rem; }

/* --------------------------------------------------------------------------
   4. ヘッダー
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	/* backdrop-filter は指定すると fixed 子要素の含みブロックになってしまい、
	   中のドロワー（.global-nav）がヘッダー内に閉じ込められる。
	   可読性の面でも不透明のほうが良いため使用しない。 */
	background: var(--white);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	width: min(100% - 32px, 1440px);
	margin-inline: auto;
	min-height: var(--header-h);
	min-width: 0;
}

.site-header__brand { min-width: 0; }

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--green-900);
}
.brand__mark { color: var(--green-500); display: inline-flex; }
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__sub { font-size: .72rem; letter-spacing: .16em; color: var(--green-700); }
.brand__name { font-family: var(--font-serif); font-size: 1.62rem; font-weight: 600; letter-spacing: .06em; white-space: nowrap; }
.brand__roman { font-size: .58rem; letter-spacing: .34em; color: var(--ink-muted); }

.custom-logo-link { display: inline-flex; }
.custom-logo { max-height: 64px; width: auto; object-fit: contain; }

.brand--image { display: inline-flex; align-items: center; }
.brand--image img { width: 264px; height: auto; object-fit: contain; }

.global-nav { margin-inline-start: auto; }
.global-nav__panel { display: flex; align-items: center; }
.global-nav__list { display: flex; align-items: center; gap: 4px; }
.global-nav__list a {
	display: block;
	padding: 8px 14px;
	font-size: .96rem;
	font-weight: 700;
	color: var(--green-900);
	text-decoration: none;
	border-radius: 8px;
	position: relative;
	white-space: nowrap;
}
.global-nav__list a:hover { background: var(--green-50); color: var(--green-700); }
.global-nav__list .current-menu-item > a::after,
.global-nav__list .current_page_item > a::after {
	content: "";
	position: absolute;
	left: 14px; right: 14px; bottom: 2px;
	height: 2px;
	background: var(--green-600);
	border-radius: 2px;
}
.global-nav__cta { display: none; }

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

.header-contact,
.header-tel {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .2s;
}
.header-contact { background: var(--green-600); color: var(--white); }
.header-contact:hover { background: var(--green-700); color: var(--white); }
.header-tel { background: var(--rose-600); color: var(--white); }
.header-tel:hover { background: var(--rose-700); color: var(--white); }
.header-tel__body { display: flex; flex-direction: column; line-height: 1.25; }
.header-tel__num { font-size: 1.12rem; letter-spacing: .02em; }
.header-tel__hours { font-size: .64rem; font-weight: 500; opacity: .92; }

.nav-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	width: 56px;
	padding: 8px 4px;
	background: none;
	border: 0;
	color: var(--green-800);
}
.nav-toggle__bars { display: block; width: 26px; }
.nav-toggle__bars span {
	display: block;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform .25s, opacity .2s;
}
.nav-toggle__bars span + span { margin-top: 6px; }
.nav-toggle__label { font-size: .62rem; font-weight: 700; letter-spacing: .08em; }
.nav-toggle__label--close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__label--open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__label--close { display: inline; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(46, 58, 31, .45);
}

/* --------------------------------------------------------------------------
   5. 装飾
   -------------------------------------------------------------------------- */
.leaf-decor {
	position: absolute;
	width: 220px;
	color: var(--green-500);
	pointer-events: none;
	z-index: 0;
}
.leaf-decor--hero-tl { top: -30px; left: -60px; transform: rotate(-14deg); }
.leaf-decor--hero-bl { bottom: -40px; left: -30px; width: 170px; transform: scaleX(-1) rotate(12deg); }
.leaf-decor--cta-left { top: -20px; left: -40px; width: 190px; transform: rotate(-8deg); }
.leaf-decor--cta-right { right: -40px; bottom: -30px; width: 190px; transform: scaleX(-1) rotate(-8deg); }
.leaf-decor--pagehead { right: -30px; bottom: -50px; width: 210px; transform: scaleX(-1); opacity: .8; }

/* --------------------------------------------------------------------------
   6. セクション見出し
   -------------------------------------------------------------------------- */
.section-heading { margin-bottom: 44px; text-align: center; }
.section-heading__en {
	display: block;
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .28em;
	color: var(--green-500);
	margin-bottom: 6px;
}
.section-heading__ja {
	font-family: var(--font-serif);
	font-size: clamp(1.62rem, 1.2rem + 1.6vw, 2.3rem);
	font-weight: 600;
	color: var(--green-900);
	letter-spacing: .04em;
}
.section-heading__ja::after {
	content: "";
	display: block;
	width: 46px;
	height: 3px;
	margin: 18px auto 0;
	background: var(--green-200);
	border-radius: 2px;
}
.section-heading__lead {
	max-width: 720px;
	margin: 18px auto 0;
	color: var(--ink-muted);
}

/* 左寄せパターン */
.safety__copy .section-heading,
.area__copy .section-heading,
.greeting__copy .section-heading { text-align: left; margin-bottom: 24px; }
.safety__copy .section-heading__ja::after,
.area__copy .section-heading__ja::after,
.greeting__copy .section-heading__ja::after { margin-inline: 0; }
.safety__copy .section-heading__lead,
.area__copy .section-heading__lead,
.greeting__copy .section-heading__lead { margin-inline: 0; }

/* --------------------------------------------------------------------------
   7. ヒーロー
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, var(--cream) 0%, var(--green-50) 100%);
}
.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(340px, 46%) 1fr;
	grid-template-areas:
		"copy visual"
		"actions visual";
	align-items: center;
	align-content: center;
	gap: 0 48px;
	width: min(100% - 40px, 1320px);
	margin-inline: auto;
	padding-block: clamp(40px, 5vw, 76px);
}
.hero__copy { grid-area: copy; }
.hero__visual { grid-area: visual; }
.hero__actions { grid-area: actions; }
.hero__title {
	font-family: var(--font-serif);
	font-size: clamp(2.1rem, 1.3rem + 3.2vw, 3.5rem);
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: .04em;
	color: var(--green-900);
}
.hero__lead {
	margin-top: 24px;
	font-size: clamp(1.1rem, .95rem + .6vw, 1.4rem);
	font-weight: 700;
	line-height: 1.7;
	color: var(--green-800);
}
.hero__text { margin-top: 16px; color: var(--ink-muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__visual { position: relative; }

.hero__image {
	width: 100%;
	aspect-ratio: 16 / 11;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}
.hero__catch {
	position: absolute;
	top: 8px;
	right: -52px;
	writing-mode: vertical-rl;
	font-family: var(--font-serif);
	font-size: 1.02rem;
	letter-spacing: .34em;
	color: var(--green-700);
}
.hero__instagram {
	position: absolute;
	right: -28px;
	bottom: -28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	width: 168px;
	padding: 18px 14px;
	background: var(--white);
	border-radius: 50%;
	aspect-ratio: 1;
	justify-content: center;
	box-shadow: var(--shadow-lg);
	text-align: center;
	text-decoration: none;
	color: var(--green-900);
	transition: transform .2s;
}
.hero__instagram:hover { transform: scale(1.04); color: var(--green-900); }
.hero__instagram .icon--brand { width: 30px; height: 30px; color: #d6336c; }
.hero__instagram-title { font-weight: 700; font-size: .94rem; }
.hero__instagram-text { font-size: .66rem; line-height: 1.5; color: var(--ink-muted); }
.hero__instagram-btn {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	margin-top: 4px;
	padding: 4px 12px;
	background: var(--rose-600);
	color: var(--white);
	border-radius: var(--radius-pill);
	font-size: .64rem;
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   8. 特徴
   -------------------------------------------------------------------------- */
.features { background: var(--cream-200); padding-block: 40px; }
.features__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.feature { text-align: center; }
.feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	margin-bottom: 12px;
	background: var(--white);
	color: var(--green-600);
	border-radius: 50%;
	box-shadow: var(--shadow);
}
.feature__title {
	font-size: 1.02rem;
	line-height: 1.55;
	color: var(--green-900);
}
.feature__text {
	margin-top: 8px;
	font-size: .82rem;
	line-height: 1.75;
	color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   9. 導線（施設 / 個人）
   -------------------------------------------------------------------------- */
.audience { padding-block: clamp(56px, 6vw, 92px); }
.audience__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}
.audience-card {
	position: relative;
	padding: 36px 32px 32px;
	border: 2px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--white);
	transition: border-color .2s, box-shadow .2s, transform .2s;
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.audience-card--facility { border-color: var(--green-200); background: var(--green-50); }
.audience-card--individual { border-color: var(--cream-300); background: var(--cream); }
.audience-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px; height: 68px;
	background: var(--white);
	border-radius: 50%;
	color: var(--green-600);
	box-shadow: var(--shadow);
}
.audience-card--individual .audience-card__icon { color: var(--rose-600); }
.audience-card__label { margin-top: 16px; font-size: .88rem; font-weight: 700; color: var(--ink-muted); }
.audience-card__title {
	font-family: var(--font-serif);
	font-size: clamp(1.5rem, 1.2rem + 1vw, 1.9rem);
	font-weight: 600;
	color: var(--green-900);
	letter-spacing: .04em;
}
.audience-card__points { margin-top: 20px; display: grid; gap: 10px; }
.audience-card__points li {
	display: grid;
	grid-template-columns: 24px 1fr;
	align-items: start;
	gap: 8px;
	font-size: .96rem;
	line-height: 1.7;
}
.audience-card__points .icon { color: var(--green-600); margin-top: 5px; }
.audience-card--individual .audience-card__points .icon { color: var(--rose-600); }
.audience-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 24px;
	font-weight: 700;
	text-decoration: none;
	color: var(--green-700);
}
.audience-card__link:hover { gap: 12px; }
.audience-card--individual .audience-card__link { color: var(--rose-700); }

/* --------------------------------------------------------------------------
   10. サービス
   -------------------------------------------------------------------------- */
.service { padding-block: clamp(56px, 6vw, 92px); background: var(--green-50); }
.service__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.service-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__thumb { aspect-ratio: 4 / 3; background: var(--green-100); }
.service-card__thumb img { width: 100%; height: 100%; }
.service-card__noimage {
	display: flex; align-items: center; justify-content: center;
	width: 100%; height: 100%;
	color: var(--green-200);
}
.service-card__body { padding: 18px 18px 22px; }
.service-card__title {
	font-family: var(--font-serif);
	font-size: 1.26rem;
	font-weight: 600;
	color: var(--green-900);
	letter-spacing: .04em;
}
.service-card__text { margin-top: 8px; font-size: .84rem; line-height: 1.8; color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   11. 料金
   -------------------------------------------------------------------------- */
.price { padding-block: clamp(56px, 6vw, 92px); }
.price__table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.price-table {
	width: 100%;
	min-width: 620px;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.price-table th,
.price-table td {
	padding: 16px 18px;
	border-bottom: 1px solid var(--line);
	text-align: right;
	vertical-align: middle;
}
.price-table thead th {
	background: var(--green-700);
	color: var(--white);
	font-size: .96rem;
	text-align: center;
	border-bottom: 0;
}
.price-table thead th small { display: block; font-size: .68rem; font-weight: 500; opacity: .9; }
.price-table thead .price-table__menu { text-align: left; }
.price-table tbody th {
	font-weight: 700;
	text-align: left;
	color: var(--green-900);
}
.price-table__name {
	display: flex;
	align-items: center;
	gap: 10px;
}
.price-table__label { min-width: 0; }
.price-table__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px; height: 34px;
	background: var(--green-50);
	color: var(--green-600);
	border-radius: 8px;
	flex: none;
}
.price-table tbody tr:nth-child(even) td,
.price-table tbody tr:nth-child(even) th { background: #fcfbf6; }
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table__yen { font-size: 1.5rem; font-weight: 700; color: var(--green-800); letter-spacing: .02em; }
.price-table__unit { margin-left: 2px; font-size: .84rem; }
.price-table td.price-table__facility { background: var(--green-50); }
.price-table tbody tr:nth-child(even) td.price-table__facility { background: #eaf1dc; }
.price-table__none { color: #b9b9ae; }
.price-table__sp-label { display: none; }

.travel-fee {
	margin-top: 32px;
	padding: 28px 30px;
	background: var(--cream-200);
	border-radius: var(--radius);
}
.travel-fee__title {
	font-family: var(--font-serif);
	font-size: 1.36rem;
	font-weight: 600;
	color: var(--green-900);
	letter-spacing: .04em;
}
.travel-fee__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 18px;
}
.travel-fee__col {
	padding: 18px 22px;
	background: var(--white);
	border-radius: 12px;
}
.travel-fee__label { font-size: .86rem; font-weight: 700; color: var(--ink-muted); }
.travel-fee__list { margin-top: 8px; display: grid; gap: 6px; }
.travel-fee__list li { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.travel-fee__list strong { font-size: 1.18rem; color: var(--green-800); }
.travel-fee__col--free { display: flex; flex-direction: column; justify-content: center; align-items: center; background: var(--green-600); }
.travel-fee__col--free .travel-fee__label { color: rgba(255,255,255,.9); }
.travel-fee__free { font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1.2; }

.price__note { margin-top: 20px; font-size: .88rem; color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   12. 安心・安全
   -------------------------------------------------------------------------- */
.safety { padding-block: clamp(56px, 6vw, 92px); background: var(--cream); }
.safety__inner {
	display: grid;
	grid-template-columns: 1fr minmax(300px, 42%);
	gap: 48px;
	align-items: center;
}
.safety__text { color: var(--ink-muted); }
.safety__points { margin-top: 26px; display: grid; gap: 18px; }
.safety__points li {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 12px;
	font-size: .94rem;
	line-height: 1.8;
	color: var(--ink-muted);
}
.safety__points strong {
	grid-column: 2;
	display: block;
	font-size: 1.06rem;
	color: var(--green-900);
}
.safety__point-icon {
	grid-row: span 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px; height: 34px;
	background: var(--green-600);
	color: var(--white);
	border-radius: 50%;
}
.safety__visual img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   13. 流れ
   -------------------------------------------------------------------------- */
.flow { padding-block: clamp(56px, 6vw, 92px); }
.flow__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	counter-reset: flow;
}
.flow-step {
	position: relative;
	padding: 32px 24px 26px;
	background: var(--white);
	border: 2px solid var(--green-100);
	border-radius: var(--radius);
}
.flow-step::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -14px;
	width: 12px; height: 12px;
	border-top: 2px solid var(--green-200);
	border-right: 2px solid var(--green-200);
	transform: translateY(-50%) rotate(45deg);
}
.flow-step:last-child::after { display: none; }
.flow-step__num {
	position: absolute;
	top: -18px;
	left: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	background: var(--green-600);
	color: var(--white);
	border-radius: 50%;
	font-size: 1.06rem;
	font-weight: 700;
	letter-spacing: .02em;
}
.flow-step__title {
	font-family: var(--font-serif);
	font-size: 1.22rem;
	font-weight: 600;
	color: var(--green-900);
	letter-spacing: .04em;
}
.flow-step__text { margin-top: 8px; font-size: .86rem; line-height: 1.8; color: var(--ink-muted); }

.flow__contact {
	margin-top: 40px;
	padding: 28px;
	background: var(--green-50);
	border-radius: var(--radius);
	text-align: center;
}
.flow__contact-lead { font-weight: 700; color: var(--green-900); }
.flow__contact-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 16px;
}

/* --------------------------------------------------------------------------
   14. 対応エリア
   -------------------------------------------------------------------------- */
.area { padding-block: clamp(56px, 6vw, 92px); background: var(--green-50); }
.area__inner {
	display: grid;
	grid-template-columns: 1fr minmax(260px, 34%);
	gap: 48px;
	align-items: center;
}
.area__text { color: var(--ink-muted); }
.area__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}
.area__list li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	background: var(--white);
	border: 1px solid var(--green-200);
	border-radius: var(--radius-pill);
	font-weight: 700;
	color: var(--green-800);
}
.area__list .icon { color: var(--green-500); }
.area__note { margin-top: 18px; font-size: .88rem; color: var(--ink-muted); }
.area__visual {
	padding: 36px 28px;
	background: var(--white);
	border-radius: var(--radius-lg);
	text-align: center;
	box-shadow: var(--shadow);
}
.area__pin { display: inline-flex; color: var(--green-500); }
.area__base { margin-top: 10px; font-weight: 700; color: var(--green-900); }

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq { padding-block: clamp(56px, 6vw, 92px); }
.faq__list { display: grid; gap: 14px; }
.faq-item {
	background: var(--white);
	border: 2px solid var(--green-100);
	border-radius: var(--radius);
	overflow: hidden;
}
.faq-item[open] { border-color: var(--green-200); }
.faq-item__q {
	display: grid;
	grid-template-columns: 40px 1fr 24px;
	align-items: center;
	gap: 14px;
	padding: 20px 22px;
	font-weight: 700;
	color: var(--green-900);
	cursor: pointer;
	list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { background: var(--green-50); }
.faq-item__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	background: var(--green-600);
	color: var(--white);
	border-radius: 50%;
	font-family: var(--font-serif);
	font-size: 1.16rem;
	flex: none;
}
.faq-item__mark--a { background: var(--rose-600); }
.faq-item__toggle {
	position: relative;
	width: 20px; height: 20px;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
	content: "";
	position: absolute;
	inset: 50% 0 auto;
	height: 2px;
	background: var(--green-600);
	border-radius: 2px;
	transition: transform .25s;
}
.faq-item__toggle::after { transform: rotate(90deg); }
.faq-item[open] .faq-item__toggle::after { transform: rotate(0); }
.faq-item__a {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 14px;
	padding: 0 22px 22px;
	color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   16. ご挨拶
   -------------------------------------------------------------------------- */
.greeting { padding-block: clamp(56px, 6vw, 92px); background: var(--cream); }
.greeting__inner {
	display: grid;
	grid-template-columns: minmax(260px, 44%) 1fr;
	gap: 48px;
	align-items: center;
}
.greeting__visual img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}
.greeting__copy p { color: var(--ink-muted); }
.greeting__copy p + p { margin-top: 16px; }
.greeting__sign {
	margin-top: 20px !important;
	font-family: var(--font-serif);
	font-size: 1.06rem;
	color: var(--green-900) !important;
	text-align: right;
}

/* --------------------------------------------------------------------------
   17. お知らせ
   -------------------------------------------------------------------------- */
.news { padding-block: clamp(56px, 6vw, 92px); }
.news__list,
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.post-card { background: var(--white); }
.post-card__link { display: block; text-decoration: none; color: inherit; }
.post-card__thumb {
	aspect-ratio: 4 / 3;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--green-100);
}
.post-card__thumb img { width: 100%; height: 100%; transition: transform .4s; }
.post-card__link:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__noimage {
	display: flex; align-items: center; justify-content: center;
	width: 100%; height: 100%;
	color: var(--green-200);
}
.post-card__body { padding-top: 14px; }
.post-card__date { font-size: .8rem; font-weight: 700; color: var(--green-500); letter-spacing: .04em; }
.post-card__title {
	margin-top: 4px;
	font-size: 1.06rem;
	line-height: 1.6;
	color: var(--green-900);
}
.post-card__link:hover .post-card__title { color: var(--green-600); }
.news__more { margin-top: 36px; text-align: center; }

/* --------------------------------------------------------------------------
   18. CTAバンド / フッター
   -------------------------------------------------------------------------- */
.cta-band {
	position: relative;
	overflow: hidden;
	padding-block: clamp(44px, 5vw, 68px);
	background: var(--cream-200);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 32px;
	padding: 34px 40px;
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}
.cta-band__title {
	font-family: var(--font-serif);
	font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.05rem);
	font-weight: 600;
	color: var(--green-900);
	letter-spacing: .04em;
}
.cta-band__lead { margin-top: 10px; color: var(--ink-muted); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.site-footer {
	padding-block: 56px 24px;
	background: var(--green-800);
	color: rgba(255, 255, 255, .86);
}
.site-footer a { color: rgba(255, 255, 255, .86); }
.site-footer a:hover { color: var(--white); }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 40px;
}
.brand--footer { color: var(--white); }
.brand--footer .brand__sub { color: var(--green-200); }
.brand--footer .brand__mark { color: var(--green-200); }
.site-footer__desc { margin-top: 16px; font-size: .88rem; line-height: 1.85; }
.site-footer__heading {
	font-size: .96rem;
	letter-spacing: .1em;
	color: var(--white);
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.site-footer__tel {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	letter-spacing: .02em;
}
.site-footer__hours { display: flex; align-items: center; gap: 6px; font-size: .82rem; }
.site-footer__mail { margin-top: 10px; font-size: .9rem; }
.footer-nav__list { margin-top: 14px; display: grid; gap: 8px; font-size: .92rem; }
.footer-nav__list a { text-decoration: none; }
.footer-nav__list a:hover { text-decoration: underline; }

.sns-list { display: flex; gap: 12px; margin-top: 20px; }
.sns-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	background: rgba(255, 255, 255, .12);
	border-radius: 50%;
	transition: background-color .2s;
}
.sns-list a:hover { background: rgba(255, 255, 255, .24); }

.site-footer__copy {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .16);
	text-align: center;
	font-size: .8rem;
}

/* --------------------------------------------------------------------------
   19. スマホ固定CTA
   -------------------------------------------------------------------------- */
.sticky-cta {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 80;
	display: none;
	border-top: 1px solid rgba(0, 0, 0, .08);
	box-shadow: 0 -4px 16px rgba(70, 80, 45, .12);
}
.sticky-cta__item {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: var(--sticky-cta-h);
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
}
.sticky-cta__item--tel { background: var(--rose-600); }
.sticky-cta__item--mail { background: var(--green-600); }

/* VK ExUnit のページトップボタンをテーマの配色に合わせる。
   background-image（矢印）はプラグイン側の指定を活かすため background-color のみ上書き。 */
#page_top.page_top_btn {
	right: 16px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background-color: rgba(60, 77, 39, .92);
	box-shadow: 0 4px 14px rgba(70, 80, 45, .28);
	background-size: 42%;
}
#page_top.page_top_btn:hover { background-color: rgba(60, 77, 39, 1); }

/* --------------------------------------------------------------------------
   20. 下層ページ
   -------------------------------------------------------------------------- */
.page-head {
	position: relative;
	overflow: hidden;
	padding-block: clamp(36px, 4vw, 58px);
	background: linear-gradient(180deg, var(--cream) 0%, var(--green-50) 100%);
	text-align: center;
}
.page-head .container { position: relative; z-index: 1; }
.page-head__title {
	font-family: var(--font-serif);
	font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
	font-weight: 600;
	color: var(--green-900);
	letter-spacing: .06em;
}

.breadcrumb { padding-block: 14px; border-bottom: 1px solid var(--line); }
.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	font-size: .8rem;
	color: var(--ink-muted);
}
.breadcrumb__list li + li::before { content: "›"; margin-right: 6px; color: var(--green-200); }
.breadcrumb__list a { text-decoration: none; }
.breadcrumb__list a:hover { text-decoration: underline; }

.entry { padding-block: clamp(40px, 5vw, 64px); }
.entry__header { margin-bottom: 24px; }
.entry__date { font-size: .84rem; font-weight: 700; color: var(--green-500); letter-spacing: .04em; }
.entry__title {
	margin-top: 6px;
	font-family: var(--font-serif);
	font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.05rem);
	font-weight: 600;
	color: var(--green-900);
}
.entry__thumb { margin-bottom: 28px; }
.entry__thumb img { width: 100%; border-radius: var(--radius); }

.blog-layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
body:not(.no-sidebar) .blog-layout { grid-template-columns: minmax(0, 1fr) 300px; }
.blog-layout__main { min-width: 0; }
.blog-layout__side { padding-top: clamp(40px, 5vw, 64px); }
.widget + .widget { margin-top: 32px; }
.widget__title {
	font-size: 1.06rem;
	color: var(--green-900);
	padding-bottom: 10px;
	border-bottom: 2px solid var(--green-100);
	margin-bottom: 14px;
}
.widget ul { display: grid; gap: 8px; font-size: .94rem; }

.post-grid { padding-block: clamp(40px, 5vw, 64px); }

.pagination { margin-top: 40px; padding-bottom: 40px; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	padding: 0 14px;
	background: var(--white);
	border: 1px solid var(--green-200);
	border-radius: 10px;
	text-decoration: none;
	font-weight: 700;
}
.page-numbers.current { background: var(--green-600); border-color: var(--green-600); color: var(--white); }
.page-numbers:hover { background: var(--green-50); }

.post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	padding-bottom: 40px;
}
.post-nav a {
	display: block;
	padding: 16px 20px;
	background: var(--green-50);
	border-radius: var(--radius);
	text-decoration: none;
	font-weight: 700;
	color: var(--green-900);
}
.post-nav a:hover { background: var(--green-100); }
.post-nav span { display: block; font-size: .76rem; color: var(--green-500); }
.post-nav__next { text-align: right; }

.notfound { padding-block: clamp(40px, 5vw, 64px); text-align: center; }
.notfound__lead { font-size: 1.1rem; font-weight: 700; color: var(--green-900); }
.notfound__text { margin-top: 8px; color: var(--ink-muted); }
.notfound__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin: 28px 0;
}

.search-form { display: flex; gap: 8px; max-width: 420px; margin-inline: auto; }
.search-form__field {
	flex: 1;
	min-height: 48px;
	padding: 8px 16px;
	border: 1px solid var(--green-200);
	border-radius: var(--radius-pill);
	font: inherit;
	background: var(--white);
}
.search-form__submit {
	min-height: 48px;
	padding: 8px 24px;
	background: var(--green-600);
	color: var(--white);
	border: 0;
	border-radius: var(--radius-pill);
	font-weight: 700;
}
.search-form__submit:hover { background: var(--green-700); }
.no-results { padding-block: 40px; text-align: center; color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   21. 本文（ブロックエディタ出力）
   -------------------------------------------------------------------------- */
.entry__content > * + * { margin-top: 1.5em; }
.entry__content h2 {
	margin-top: 2.2em;
	padding: 10px 0 10px 18px;
	border-left: 5px solid var(--green-600);
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--green-900);
	letter-spacing: .04em;
}
.entry__content h3 {
	margin-top: 2em;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--green-100);
	font-size: 1.24rem;
	color: var(--green-900);
}
.entry__content h4,
.entry__content h5,
.entry__content h6 { margin-top: 1.8em; color: var(--green-800); }
.entry__content h5 { font-size: 1.12rem; }

.entry__content ul:not(.wp-block-gallery):not(.wp-block-social-links) { list-style: disc; padding-left: 1.4em; }
.entry__content ol { list-style: decimal; padding-left: 1.4em; }
.entry__content li + li { margin-top: .4em; }

.entry__content a { font-weight: 700; }

.entry__content img { border-radius: var(--radius); }
.wp-block-image figcaption,
.wp-element-caption {
	margin-top: 8px;
	font-size: .82rem;
	color: var(--ink-muted);
	text-align: center;
}
.is-style-vk-image-shadow img,
.wp-block-image.border img { box-shadow: var(--shadow); }

.wp-block-columns { display: flex; flex-wrap: wrap; gap: 28px; }
.wp-block-column { flex: 1 1 0; min-width: 240px; }

.wp-block-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 10px 28px;
	background: var(--green-600);
	color: var(--white);
	border: 2px solid var(--green-600);
	border-radius: var(--radius-pill);
	font-weight: 700;
	text-decoration: none;
	transition: background-color .2s, color .2s;
}
.wp-block-button__link:hover { background: var(--green-700); border-color: var(--green-700); color: var(--white); }
.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	color: var(--green-700);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover { background: var(--green-600); color: var(--white); }
.wp-block-button__link.no-border-radius { border-radius: var(--radius-pill); }

.wp-block-table { overflow-x: auto; }
.wp-block-table table { width: 100%; border-collapse: collapse; background: var(--white); }
.wp-block-table th,
.wp-block-table td {
	padding: 12px 16px;
	border: 1px solid var(--line);
	text-align: left;
}
.wp-block-table th { background: var(--green-50); color: var(--green-900); }

.wp-block-quote,
.wp-block-pullquote {
	margin-inline: 0;
	padding: 20px 24px;
	background: var(--green-50);
	border-left: 4px solid var(--green-300, var(--green-200));
	border-radius: 0 var(--radius) var(--radius) 0;
	color: var(--ink-muted);
}
.wp-block-pullquote { text-align: center; border-left: 0; border-radius: var(--radius); }

.wp-block-cover { border-radius: var(--radius-lg); overflow: hidden; }
.wp-block-cover__inner-container { width: min(100% - 40px, var(--container)); }

.wp-block-separator {
	max-width: 80px;
	height: 3px;
	margin: 3em auto;
	background: var(--green-200);
	border: 0;
	border-radius: 2px;
}

.wp-block-embed iframe { max-width: 100%; }

/* Contact Form 7 */
.wpcf7 { margin-top: 24px; }
.wpcf7-form p { margin-bottom: 20px; }
.wpcf7-form label { display: block; font-weight: 700; color: var(--green-900); }
.wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
	width: 100%;
	min-height: 52px;
	margin-top: 6px;
	padding: 12px 16px;
	background: var(--white);
	border: 1px solid var(--green-200);
	border-radius: 10px;
	font: inherit;
}
.wpcf7-form textarea.wpcf7-form-control { min-height: 180px; }
.wpcf7-form-control:focus { outline: 3px solid var(--green-600); outline-offset: 1px; }
.wpcf7-submit {
	min-height: 58px;
	padding: 12px 48px;
	background: var(--green-600);
	color: var(--white);
	border: 0;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: 1.06rem;
	cursor: pointer;
}
.wpcf7-submit:hover { background: var(--green-700); }
.wpcf7-not-valid-tip { color: var(--rose-700); font-size: .86rem; }
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 14px 18px;
	border-width: 2px;
	border-radius: 10px;
}

/* 狭い画面では表を1件ずつのカードに組み替える。
   料金は本サイトで最も重要な情報のため、横スクロールさせない。 */
@media (max-width: 700px) {
	.price__table-wrap { overflow: visible; }

	.price-table {
		display: block;
		min-width: 0;
		background: none;
		border-radius: 0;
		box-shadow: none;
		overflow: visible;
	}
	.price-table thead { display: none; }
	.price-table tbody { display: block; }

	.price-table tbody tr {
		display: block;
		margin-bottom: 14px;
		background: var(--white);
		border: 2px solid var(--green-100);
		border-radius: var(--radius);
		overflow: hidden;
	}
	.price-table tbody tr:last-child { margin-bottom: 0; }

	.price-table tbody th,
	.price-table tbody td,
	.price-table tbody tr:nth-child(even) th,
	.price-table tbody tr:nth-child(even) td {
		display: block;
		width: auto;
		padding: 12px 16px;
		border-bottom: 1px solid var(--line);
		text-align: left;
		background: none;
	}
	.price-table tbody th {
		background: var(--green-50);
		font-size: 1.02rem;
	}
	.price-table__icon { display: inline-flex; }

	.price-table tbody td,
	.price-table tbody tr:nth-child(even) td {
		display: flex;
		align-items: baseline;
		justify-content: space-between;
		gap: 12px;
	}
	.price-table tbody td.price-table__facility,
	.price-table tbody tr:nth-child(even) td.price-table__facility {
		background: var(--green-50);
		border-bottom: 0;
	}
	.price-table__sp-label {
		display: block;
		font-size: .88rem;
		font-weight: 700;
		color: var(--ink-muted);
	}
	.price-table__yen { font-size: 1.34rem; }
}

/* --------------------------------------------------------------------------
   22. レスポンシブ
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
	.hero__catch { right: -34px; }
	.hero__instagram { right: -8px; bottom: -12px; width: 148px; }
	.features__list { grid-template-columns: repeat(3, 1fr); gap: 24px; }
	.service__list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1200px) {
	:root { --header-h: 74px; }

	.site-header__inner { gap: 12px; }
	.brand--image img { width: 220px; }
	/* ドロワー時は .global-nav が position:fixed でフロートから外れるため、
	   右寄せの役目を actions 側に移す */
	.site-header__actions { margin-inline-start: auto; }
	/* ドロワー（z-index:95）より前面に置き、開いている間も × で閉じられるようにする */
	.nav-toggle { position: relative; z-index: 96; }
	.header-contact { display: none; }
	.header-tel__hours { display: none; }
	.nav-toggle { display: inline-flex; }

	/* ドロワーはビューポート全面のクリップ領域に収め、
	   パネルだけをスライドさせる（文書幅が広がって横スクロールが出るのを防ぐ） */
	.global-nav {
		position: fixed;
		inset: 0;
		z-index: 95;
		overflow: hidden;
		visibility: hidden;
		pointer-events: none;
	}
	.global-nav.is-open {
		visibility: visible;
		pointer-events: auto;
	}
	.global-nav__panel {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		display: block;
		width: min(88vw, 360px);
		padding: 88px 24px 40px;
		background: var(--white);
		overflow-y: auto;
		overscroll-behavior: contain;
		transform: translateX(100%);
		transition: transform .3s ease;
		box-shadow: -8px 0 30px rgba(70, 80, 45, .18);
	}
	.global-nav.is-open .global-nav__panel { transform: translateX(0); }
	.global-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
	.global-nav__list a {
		padding: 14px 12px;
		font-size: 1.02rem;
		border-bottom: 1px solid var(--line);
		border-radius: 0;
	}
	.global-nav__list .current-menu-item > a::after,
	.global-nav__list .current_page_item > a::after { display: none; }
	.global-nav__cta { display: grid; gap: 12px; margin-top: 24px; }
	.global-nav__cta .btn { width: 100%; }

	.hero__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"copy"
			"visual"
			"actions";
		gap: 30px;
	}
	/* 画面下に電話・問い合わせの固定バーが常時出ているため、
	   ファーストビューでは写真を先に見せてから行動ボタンを置く */
	.hero__actions { margin-top: 0; }
	.hero__catch { display: none; }
	.hero__instagram { right: 0; bottom: -16px; width: 132px; }

	.blog-layout,
	body:not(.no-sidebar) .blog-layout { grid-template-columns: 1fr; gap: 32px; }
	.blog-layout__side { padding-top: 0; }

	.safety__inner,
	.area__inner,
	.greeting__inner { grid-template-columns: 1fr; gap: 32px; }
	.greeting__visual { max-width: 380px; }

	.flow__list { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
	.flow-step:nth-child(2)::after { display: none; }

	.cta-band__inner { grid-template-columns: 1fr; text-align: center; }
	.cta-band__actions { justify-content: center; }

	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
	body { font-size: 16px; }

	.sticky-cta { display: flex; }
	.site-footer { padding-bottom: calc(var(--sticky-cta-h) + 24px); }

	/* VK ExUnit のページトップボタンが固定バーに重なるため、その上へ逃がす。
	   プラグイン側は bottom:3% / z-index:99999 のため、ID を含めた指定で上書きする。 */
	#page_top.page_top_btn { bottom: calc(var(--sticky-cta-h) + 14px); }

	.audience__grid { grid-template-columns: 1fr; }
	.news__list, .post-grid { grid-template-columns: repeat(2, 1fr); }
	.service__list { grid-template-columns: repeat(2, 1fr); }
	.travel-fee__grid { grid-template-columns: 1fr; }
	.post-nav { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	:root { --header-h: 66px; }

	.container, .container--narrow { width: calc(100% - 32px); }

	.brand--image img { width: 178px; }
	.brand__name { font-size: 1.16rem; letter-spacing: .02em; }
	.brand__sub { font-size: .62rem; letter-spacing: .1em; }
	.brand__roman { display: none; }
	.brand__mark .icon { width: 24px; height: 24px; }

	/* 画面が狭いときは電話をアイコンのみに（番号は画面下の固定バーで常時表示） */
	.header-tel {
		width: 48px;
		height: 48px;
		padding: 0;
		justify-content: center;
	}
	.header-tel__body { display: none; }
	.nav-toggle { width: auto; padding: 6px 4px; }
	.nav-toggle__label { font-size: .62rem; letter-spacing: .02em; }

	.hero__actions .btn { width: 100%; }
	.hero__image { aspect-ratio: 4 / 3; }
	.hero__instagram { width: 112px; padding: 12px 8px; right: -6px; }
	.hero__instagram-text { display: none; }

	.features__list { grid-template-columns: repeat(2, 1fr); }
	.feature__text { display: none; }

	.service__list { grid-template-columns: 1fr; }
	.news__list, .post-grid { grid-template-columns: 1fr; }

	.flow__list { grid-template-columns: 1fr; }
	.flow-step::after { display: none; }

	.price-table__yen { font-size: 1.24rem; }

	.audience-card { padding: 28px 22px 26px; }
	.cta-band__inner { padding: 28px 22px; }
	.cta-band__actions .btn { width: 100%; }

	.site-footer__grid { grid-template-columns: 1fr; gap: 28px; }

	.faq-item__q { grid-template-columns: 34px 1fr 20px; gap: 10px; padding: 16px; }
	.faq-item__mark { width: 34px; height: 34px; font-size: 1rem; }
	.faq-item__a { grid-template-columns: 34px 1fr; gap: 10px; padding: 0 16px 18px; }

	.wp-block-columns { gap: 20px; }
	.wp-block-column { flex-basis: 100% !important; }
}

/* 小型端末（iPhone SE 等）。ロゴ・余白を詰めてヘッダーの1行を確保する */
@media (max-width: 380px) {
	.site-header__inner { width: calc(100% - 24px); gap: 8px; }
	.brand--image img { width: 146px; }
	.header-tel { width: 44px; height: 44px; }
	.nav-toggle { padding: 6px 2px; }
	.hero__title { font-size: 1.92rem; }
}

/* --------------------------------------------------------------------------
   23. 動きを減らす設定への配慮
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
	.btn:hover, .service-card:hover, .audience-card:hover, .post-card__link:hover .post-card__thumb img { transform: none; }
}

/* 印刷 */
@media print {
	.site-header, .sticky-cta, .cta-band, .nav-overlay, .global-nav { display: none !important; }
	body { font-size: 12pt; }
}

/* --------------------------------------------------------------------------
   24. サイトマップページ
   -------------------------------------------------------------------------- */
.sitemap-block + .sitemap-block { margin-top: 44px; }
.sitemap-block__title {
	padding: 10px 0 10px 18px;
	border-left: 5px solid var(--green-600);
	font-family: var(--font-serif);
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--green-900);
	letter-spacing: .04em;
}
.sitemap-list { margin-top: 18px; display: grid; gap: 2px; }
.sitemap-list a {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
	text-decoration: none;
	font-weight: 700;
	color: var(--green-900);
}
.sitemap-list a:hover { background: var(--green-50); color: var(--green-700); }
.sitemap-list time { flex: none; font-size: .8rem; font-weight: 500; color: var(--green-500); }
