/*
 * LP styles (kuon-chiba-togane). Loaded only when jso_is_lp().
 * Site-wide non-LP styles live in style.css — do not mix.
 */

@charset "UTF-8";

/* --------------------------------------------------------------------------
   Tokens
   PC: Desktop.pdf 1440px → 1rem=16px (100vw/90).
   Mobile: Mobile.pdf 390px → 1rem=16px (100vw/24.375), liquid to 781px.
-------------------------------------------------------------------------- */
:root {
	--color-blue: #1a4ca0;
	--color-blue-soft: #3462a9;
	--color-accent: #e18363;
	--color-accent-hover: #d47150;
	--color-ink: #1a1a1a;
	--color-text: #464b4d;
	--color-text-muted: #6a6a6a;
	--color-text-faint: #9a9a9a;
	--color-border: #e5e5e5;
	--color-bg: #ffffff;
	--color-bg-soft: #f7fafc;
	--color-bg-column: #eafbff;
	--color-bg-table: #eefaee;
	--color-bg-table-accent: #c7f2dd;
	--color-bg-choice: #f3f4f6;
	--color-bg-choice-on: #eaf3fb;
	--color-placeholder: #e8ecef;
	--font-sans: "IBM Plex Sans", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-heading: "IBM Plex Sans", "Klee One", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	--radius: 6px;
	--radius-lg: 10px;
	--shadow-card: 0 0.5rem 1.75rem rgba(26, 77, 160, 0.08);
	--header-h: 84px;
	--design-w: 1440;
	--u: 1px;
	--pad-x: 20px;
	--pad-x-narrow: 20px;
	--pad-x-header: 16px;
	/* 長さの数値は Desktop.pdf 1440 基準。calc(N * var(--u)) で指定（「@1440」は省略） */
	/* Desktop.pdf type scale @1440 (≤14→16 except ©; 19→18; 23→22; 27→28) */
	--fs-14: 0.875rem;
	--fs-16: 1rem;
	--fs-18: 1.125rem;
	--fs-20: 1.25rem;
	--fs-22: 1.375rem;
	--fs-24: 1.5rem;
	--fs-28: 1.75rem;
	--fs-32: 2rem;
	--fs-40: 2.5rem;
	--fs-48: 3rem;
}

/*
 * Mobile: 390/16=24.375 → 390pxで16px、781pxまでリキッド（781で32pxで頭打ち）
 * Tablet: PCレイアウト。remは --fs-14=12px になるよう底上げ（比率は rem トークン維持）
 * Desktop: 1440/16=90 → 1024px以上
 */
html.kuon-chiba-togane-html {
	font-size: min(calc(100vw / 24.375), calc(781px / 24.375));
	--u: 0.0625rem;
	--radius: calc(6 * var(--u));
	--radius-lg: calc(10 * var(--u));
	--header-h: calc(70 * var(--u));
	--pad-x: calc(15 * var(--u));
	--pad-x-narrow: calc(15 * var(--u));
	--pad-x-header: calc(15 * var(--u));
}

@media (min-width: 782px) and (max-width: 1023px) {
	html.kuon-chiba-togane-html {
		/* 0.875rem(--fs-14)=12px → 1rem=12/0.875。ジャンプ率は --fs-* のまま */
		font-size: calc(12px / 0.875);
		--header-h: calc(105 * var(--u));
		--pad-x: calc(15 * var(--u));
		--pad-x-narrow: calc(15 * var(--u));
		--pad-x-header: calc(15 * var(--u));
	}
}

@media (min-width: 1024px) {
	html.kuon-chiba-togane-html {
		font-size: calc(100vw / 90);
		--header-h: calc(105 * var(--u));
		--pad-x: calc(240 * var(--u));
		--pad-x-narrow: calc(320 * var(--u));
		--pad-x-header: calc(80 * var(--u));
	}
}

/* --------------------------------------------------------------------------
   Base
-------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: 1rem; /* 16px @1440 — design ≤14pt → 16 */
	line-height: 1.8;
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

/* Copyright only. Design ≤14pt otherwise maps to 1rem. */
small {
	font-size: var(--fs-14);
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.85;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
p {
	margin: 0;
}

h1,
h2 {
	font-family: var(--font-heading);
	font-weight: 600;
}

button,
input,
textarea {
	font: inherit;
}

/* --------------------------------------------------------------------------
   Layout
-------------------------------------------------------------------------- */
.l-inner {
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--pad-x);
	box-sizing: border-box;
}

.l-inner--narrow {
	padding-inline: var(--pad-x-narrow);
}

.l-inner--1120 {
	width: min(calc(1120 * var(--u)), calc(100% - 2 * var(--pad-x-header)));
	padding-inline: 0;
}

.l-inner--960 {
	width: min(calc(960 * var(--u)), calc(100% - 2 * var(--pad-x-header)));
	padding-inline: 0;
}

.l-inner--800 {
	width: min(calc(800 * var(--u)), calc(100% - 2 * var(--pad-x-header)));
	padding-inline: 0;
}

.l-inner--830 {
	width: min(calc(830 * var(--u)), calc(100% - 2 * var(--pad-x-header)));
	padding-inline: 0;
}

.l-inner--1240 {
	width: min(calc(1240 * var(--u)), calc(100% - 2 * var(--pad-x-header)));
	padding-inline: 0;
}

.site-main {
	overflow-x: clip;
}

.br-sp {
	display: none;
}

.br-pc {
	display: inline;
}

/* PC: ラッパーを消して見出しがグリッド項目のまま */
.vertical-slot {
	display: contents;
}

/* --------------------------------------------------------------------------
   Media / icon placeholders (images later)
-------------------------------------------------------------------------- */
.media-placeholder {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(135deg, #eef2f5 0%, var(--color-placeholder) 100%);
	color: #9aa3ad;
	font-size: 1rem;
	border-radius: var(--radius);
}

.media-placeholder--hero {
	aspect-ratio: 5 / 4;
	min-height: 20rem;
}

.media-placeholder--story {
	aspect-ratio: 16 / 9;
	margin-top: 1.5rem;
}

.media-placeholder--map {
	aspect-ratio: 4 / 3;
	min-height: 16.25rem;
}

.access__map {
	position: relative;
	overflow: hidden;
	width: calc(480 * var(--u));
	max-width: 100%;
	aspect-ratio: 480 / 320;
	border-radius: var(--radius);
	background: var(--color-placeholder);
}

.access__map-frame {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.lp-icon {
	display: block;
	flex-shrink: 0;
	width: 3rem; /* 48px @1440 */
	height: 3rem;
	object-fit: contain;
}

.lp-icon--sm {
	width: 2.25rem; /* 36px @1440 */
	height: 2.25rem;
}

/* --------------------------------------------------------------------------
   Buttons / CTA
-------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: 0.875rem 1.75rem;
	border: 2px solid transparent;
	border-radius: var(--radius);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
	cursor: pointer;
}

.btn:hover {
	opacity: 1;
}

.btn--accent {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #fff;
}

.btn--accent:hover {
	background: var(--color-accent-hover);
	border-color: var(--color-accent-hover);
}

.btn--outline {
	background: #fff;
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.btn--outline:hover {
	background: #fff7f4;
}

.btn--lg {
	min-width: min(100%, 17.5rem);
	padding: calc(16 * var(--u)) calc(47.5 * var(--u));
}

.btn--header {
	flex-direction: row;
	padding: calc(8 * var(--u)) calc(16 * var(--u));
	font-size: var(--fs-14);
	white-space: nowrap;
}

.btn__main {
	font-size: var(--fs-20);
	line-height: 1;
	padding-bottom: 0.25rem;
}

a[href^="tel"] .btn__main {
	font-size: var(--fs-22);
}

.btn__sub {
	font-size: var(--fs-14);
	font-weight: 500;
	line-height: 1;
	opacity: 0.92;
}

.cta-pair {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 1rem;
	width: calc(560 * var(--u));
	max-width: 100%;
	height: calc(85 * var(--u));
	overflow: visible;
}

.cta-pair .btn {
	flex: 1 0 0;
	min-width: 0;
	width: auto;
	height: 100%;
	overflow: visible;
}

.cta-pair .btn--accent {
	position: relative;
}

.cta-pair--center {
	justify-content: center;
	margin-top: 2.5rem;
	margin-inline: auto;
}

.cta-note {
	margin-top: 0.75rem;
	text-align: right;
	color: var(--color-text-muted);
	font-size: var(--fs-14);
}

.cta-block {
	padding: 3rem 0;
}

.features + .cta-block {
	padding-top: calc(16 * var(--u));
	padding-bottom: 0;
}

.faq + .cta-block {
	padding-top: calc(152 * var(--u));
	padding-bottom: calc(160 * var(--u));
}

.cta-block .cta-pair {
	width: 100%;
}

.cta-block .cta-pair--center {
	margin-top: 0;
}

/* --------------------------------------------------------------------------
   Header
-------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(0.5rem);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	width: min(calc(1240 * var(--u)), calc(100% - 2 * var(--pad-x-header)));
	height: var(--header-h);
	min-height: var(--header-h);
	margin-inline: auto;
	padding-inline: 0;
	box-sizing: border-box;
}

.site-header__eyebrow {
	color: var(--color-text);
	font-size: var(--fs-14);
	line-height: 1.35;
	letter-spacing: 0.04em;
}

.site-header__logo-main {
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: var(--fs-28);
	font-weight: 600;
	letter-spacing: 0.04em;
}

.site-header__end {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	flex: 0 1 auto;
	min-width: 0;
	margin-left: auto;
	gap: 0.25rem;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.site-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: calc(40 * var(--u));
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-ink);
}

.site-nav__list a:not(.btn):hover {
	color: var(--color-blue);
	opacity: 1;
}

.site-header__tel-btn,
.site-nav__toggle {
	display: none;
}

.site-header__tel-btn-icon {
	display: block;
	width: calc(18 * var(--u));
	height: calc(18 * var(--u));
	background: #fff;
	mask: url("../assets/icons/tel.svg") center / contain no-repeat;
	-webkit-mask: url("../assets/icons/tel.svg") center / contain no-repeat;
}

.site-nav__toggle {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
	width: calc(36 * var(--u));
	height: calc(36 * var(--u));
}

.site-nav__toggle-icon {
	display: block;
	width: 100%;
	height: 100%;
}

.site-nav__toggle-icon--close {
	display: none;
}

.site-header.is-nav-open .site-nav__toggle-icon--menu {
	display: none;
}

.site-header.is-nav-open .site-nav__toggle-icon--close {
	display: block;
}

.site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	gap: 1rem;
}

.site-header__tel {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
	line-height: 1.3;
}

.site-header__tel-num {
	display: flex;
	align-items: center;
	gap: calc(8 * var(--u));
	color: var(--color-blue);
	font-size: var(--fs-22);
	font-weight: 700;
}

.site-header__tel-icon {
	display: block;
	flex-shrink: 0;
	width: calc(18 * var(--u));
	height: calc(18 * var(--u));
}

.site-header__tel-hours {
	color: var(--color-text-faint);
	font-size: var(--fs-14);
}

.site-header__tel-hours-time {
	color: var(--color-ink);
}

/* --------------------------------------------------------------------------
   Fixed side CTA
-------------------------------------------------------------------------- */
.fixed-cta {
	position: fixed;
	right: 0;
	bottom: calc(16 * var(--u));
	z-index: 90;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: calc(8 * var(--u));
}

.fixed-cta__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: calc(166 * var(--u));
	gap: calc(8 * var(--u));
	padding: calc(12 * var(--u)) calc(20 * var(--u));
	border-radius: calc(4 * var(--u)) 0 0 calc(4 * var(--u));
	font-size: var(--fs-14);
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
}

.fixed-cta__item--accent {
	background: var(--color-accent);
	color: #fff;
}

.fixed-cta__item--outline {
	background: #fff;
	border: 1px solid var(--color-accent);
	border-right: 0;
	color: var(--color-accent);
}

.fixed-cta__icon {
	display: block;
	flex-shrink: 0;
	width: calc(18 * var(--u));
	height: calc(18 * var(--u));
	background: currentColor;
	mask: url("../assets/icons/tel.svg") center / contain no-repeat;
	-webkit-mask: url("../assets/icons/tel.svg") center / contain no-repeat;
}

/* --------------------------------------------------------------------------
   Section titles
-------------------------------------------------------------------------- */
.section-label {
	margin-bottom: 0.75rem;
	color: var(--color-blue);
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

.section-label span {
	display: inline-block;
	border-bottom: 2px solid var(--color-blue);
}

.section-title {
	margin-bottom: 2.25rem;
	color: var(--color-blue);
	font-family: var(--font-heading);
	font-size: var(--fs-48);
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.06em;
}

.section-title--lg {
	margin-bottom: 0;
	color: var(--color-text);
	font-size: var(--fs-40);
}

/* --------------------------------------------------------------------------
   Hero
-------------------------------------------------------------------------- */
.hero {
	padding: calc(50 * var(--u)) 0 calc(100 * var(--u));
	background:
		url("../assets/images/fv-deco-tl.svg?v=1.5.349") left calc(-105 * var(--u)) / calc(644 * var(--u)) auto no-repeat,
		url("../assets/images/fv-deco-br.webp") right bottom / calc(595 * var(--u)) auto no-repeat,
		url("../assets/images/fv-bg1.webp?v=1.5.348") center top / 100% 100% no-repeat;
}

.hero__inner {
	position: relative;
	overflow: visible;
}

.hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	min-width: 0;
	overflow: visible;
	padding-top: calc(50 * var(--u));
}

.hero__content .cta-pair {
	max-width: none;
	margin-top: calc(40 * var(--u));
}

.hero__content .cta-pair .btn {
	overflow: visible;
}

.hero__lead {
	margin-bottom: 0.625rem;
	color: var(--color-blue);
	font-size: var(--fs-24);
	font-weight: 700;
}

.hero__title {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: start;
	align-items: baseline;
	column-gap: 0.5rem;
	row-gap: 0.25rem;
	margin-bottom: calc(40 * var(--u));
	color: var(--color-blue);
	font-family: var(--font-heading);
	font-size: calc(72 * var(--u));
	font-weight: 700;
	line-height: 1.35;
}

.hero__title-main {
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.hero__title-ruby {
	font-size: calc(100% * 28 / 72);
	white-space: nowrap;
}

.hero__title-place {
	grid-column: 1 / -1;
	white-space: nowrap;
}

.hero__text {
	margin-bottom: calc(70 * var(--u));
	color: var(--color-text);
}

.hero__event {
	display: flex;
	align-items: center;
	position: absolute;
	left: 50%;
	top: -1.5rem;
	z-index: 2;
	height: calc(32 * var(--u));
	margin: 0;
	padding: 0 1rem;
	border: 1px solid var(--color-accent);
	border-radius: var(--radius);
	background: #fff;
	color: var(--color-accent);
	font-size: var(--fs-16);
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	transform: translateX(-50%);
	filter: drop-shadow(0 4px 10px rgba(26, 26, 26, 0.12));
}

.hero .hero__event {
	top: -1rem;
}

.hero__event::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -6px;
	width: 12px;
	height: 12px;
	background: #fff;
	transform: translateX(-50%) rotate(45deg);
}

.hero__visual {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.hero__image {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
}

.hero__badges {
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	z-index: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.625rem;
	width: calc(320 * var(--u));
	margin: 0;
	padding: 0 0 calc(40 * var(--u));
	pointer-events: none;
}

.hero__badges li {
	padding: 0.5rem 1rem 0.5rem 1.25rem;
	border-radius: 4px 0 0 4px;
	background: linear-gradient(90deg, rgba(47, 99, 185, 0) 16%, rgba(47, 99, 185, 0.9) 57%);
	color: #fff;
	font-size: var(--fs-18);
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Story
-------------------------------------------------------------------------- */
.story {
	position: relative;
	padding: 4.5rem 0 0;
	overflow: hidden;
}

.story__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 2.5rem;
	align-items: start;
}

.story__vertical {
	writing-mode: vertical-rl;
	color: var(--color-blue);
	font-family: var(--font-heading);
	font-size: var(--fs-48);
	font-weight: 600;
	letter-spacing: 0.18em;
	line-height: 1.7;
}

.story-card {
	padding: 2.25rem;
	aspect-ratio: 1 / 1;
	background: #fff url("../assets/images/story-family.webp") bottom / 100% auto no-repeat;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

.story-card__title {
	margin-bottom: 0.625rem;
	font-family: var(--font-heading);
	font-size: var(--fs-24);
}

.story-card__meta {
	margin-bottom: calc(22 * var(--u));
	color: var(--color-text-faint);
	font-size: var(--fs-14);
	text-align: right;
}

.story-card__body {
	color: var(--color-text-muted);
	font-size: var(--fs-14);
}

/* --------------------------------------------------------------------------
   Intro / anxieties
-------------------------------------------------------------------------- */
.intro {
	margin-top: calc(-80 * var(--u));
	margin-bottom: calc(50 * var(--u));
	padding: calc(237 * var(--u)) 0 calc(30 * var(--u));
	text-align: center;
	background: url("../assets/images/bg-intro.svg") center top / calc(1440 * var(--u)) auto no-repeat;
}

.intro__text {
	margin-top: calc(40 * var(--u));
	color: var(--color-text);
}

.anxieties {
	padding: calc(96 * var(--u)) 0 calc(160 * var(--u));
	background: linear-gradient(
		180deg,
		#fff 0%,
		#eafbff 25%,
		#eafbff 59%,
		#fff 87%
	);
}

.anxieties__heading {
	position: relative;
	width: 100%;
	margin: 0 auto 2.25rem;
	padding: calc(18 * var(--u)) calc(24 * var(--u));
	background: url("../assets/images/heading-fade.svg") center / 100% 100% no-repeat;
	color: var(--color-blue);
	font-family: var(--font-heading);
	font-size: var(--fs-32);
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.04em;
}

.anxieties__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.25rem 3rem;
}

.anxiety-card__head {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: calc(16 * var(--u));
}

.anxiety-card__head::after {
	content: "";
	position: absolute;
	right: calc(80 * var(--u) + 1rem);
	bottom: 0;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, #2f63b9 48%, rgba(47, 99, 185, 0) 100%);
	pointer-events: none;
}

.anxiety-card h3 {
	flex: 1;
	min-width: 0;
	padding-bottom: calc(16 * var(--u));
	color: var(--color-blue);
	font-family: var(--font-sans);
	font-size: var(--fs-20);
	font-weight: 700;
	line-height: 1.5;
}

.anxiety-card .lp-icon {
	flex-shrink: 0;
	width: calc(80 * var(--u));
	height: calc(80 * var(--u));
	margin-bottom: calc(-5 * var(--u));
}

.anxiety-card p {
	color: var(--color-text-muted);
	font-size: 1rem;
}

.anxieties__note {
	margin: calc(80 * var(--u)) 0 calc(24 * var(--u));
	color: var(--color-text-muted);
	font-size: var(--fs-24);
	text-align: center;
}

.worry-circles {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.75rem;
	margin-bottom: calc(120 * var(--u));
}

.worry-circles li {
	display: grid;
	place-items: center;
	width: min(100%, calc(200 * var(--u)));
	aspect-ratio: 1;
	border: 1px solid #9ec0e8;
	border-radius: 50%;
	background: #eef6ff;
	color: var(--color-blue);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.55;
	text-align: center;
}

.anxieties__resolve {
	color: var(--color-text);
	font-family: var(--font-heading);
	font-size: var(--fs-40);
	text-align: center;
}

/* --------------------------------------------------------------------------
   Features
-------------------------------------------------------------------------- */
.features {
	padding: 5rem 0;
	background: url("../assets/images/bg-features.webp") center / cover no-repeat;
}

.features__inner {
	display: grid;
	grid-template-columns: auto calc(920 * var(--u));
	justify-content: space-between;
	gap: 3rem;
	align-items: start;
}

.features__vertical {
	writing-mode: vertical-rl;
	color: var(--color-blue);
	font-family: var(--font-heading);
	font-size: var(--fs-48);
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: calc(8 * var(--u));
	width: calc(920 * var(--u));
	max-width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.feature-list__item {
	padding: calc(24 * var(--u)) calc(40 * var(--u));
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

.feature-list__head {
	display: flex;
	align-items: center;
	gap: calc(16 * var(--u));
}

.feature-list__item h3 {
	margin: 0;
	color: var(--color-blue);
	font-family: var(--font-sans);
	font-size: var(--fs-20);
	font-weight: 700;
}

.feature-list__item p {
	margin-top: calc(12 * var(--u));
	color: var(--color-text-muted);
	font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Plans
-------------------------------------------------------------------------- */
.plans {
	padding: calc(160 * var(--u)) 0;
}

.plans .section-title {
	margin-bottom: calc(40 * var(--u));
}

.plans-table-wrap {
	overflow-x: auto;
}

.plans-table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	font-weight: 700;
}

.plans-table th,
.plans-table td {
	padding: 1rem 0.75rem;
	border: 1px solid var(--color-bg-table-accent);
	border-left: 0;
	border-right: 0;
}

.plans-table th:first-child,
.plans-table td:first-child {
	border-left: 1px solid var(--color-bg-table-accent);
}

.plans-table th:last-child,
.plans-table td:last-child {
	border-right: 1px solid var(--color-bg-table-accent);
}

.plans-table thead th {
	background: var(--color-bg-table);
	color: var(--color-text);
	font-size: var(--fs-18);
	font-weight: 700;
}

.plans-table__option td {
	padding-top: 1.25rem;
	font-size: 1rem;
}

.plans-notes {
	margin-top: 1.25rem;
	color: var(--color-text-muted);
	font-size: var(--fs-14);
	line-height: 1.7;
}

.plans-notes li + li {
	margin-top: 0.375rem;
}

/* --------------------------------------------------------------------------
   Voices
-------------------------------------------------------------------------- */
.voices {
	position: relative;
	padding: calc(160 * var(--u)) 0;
	background: url("../assets/images/bg-voices.webp") center / cover no-repeat;
}

.voices__deco {
	position: absolute;
	z-index: 0;
	height: auto;
	max-width: none;
	pointer-events: none;
	cursor: default;
}

.voices__deco--tr {
	top: calc(-78 * var(--u));
	right: 0;
	width: calc(840 * var(--u));
}

.voices__deco--bl {
	bottom: calc(-208 * var(--u));
	left: 0;
	width: calc(537 * var(--u));
}

.voices__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 2.5rem;
	align-items: start;
}

.voices__vertical {
	writing-mode: vertical-rl;
	color: var(--color-blue);
	font-family: var(--font-heading);
	font-size: var(--fs-48);
}

.voices__cards {
	display: grid;
	gap: calc(40 * var(--u));
	width: calc(790 * var(--u));
	max-width: 100%;
}

.voice-card {
	width: min(100%, calc(480 * var(--u)));
	padding: 1.75rem;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

.voices__cards .voice-card:nth-child(1) {
	margin-right: auto;
}

.voices__cards .voice-card:nth-child(2) {
	margin-left: auto;
}

.voices__cards .voice-card:nth-child(3) {
	margin-left: calc(80 * var(--u));
	margin-right: auto;
}

.voice-card__head {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	margin-bottom: 0.5rem;
}

.voice-card__head .lp-icon {
	width: calc(60 * var(--u));
	height: calc(64 * var(--u));
}

.voice-card h3 {
	font-size: var(--fs-18);
}

.voice-card__meta {
	margin-bottom: 0.75rem;
	color: var(--color-text-faint);
	font-size: 1rem;
	text-align: right;
}

.voice-card__body {
	color: var(--color-text-faint);
	font-size: 1rem;
}

/* --------------------------------------------------------------------------
   FAQ
-------------------------------------------------------------------------- */
.faq {
	padding: calc(160 * var(--u)) 0;
	background:
		linear-gradient(180deg, rgba(234, 251, 255, 0) 0%, #eafbff 100%),
		url("../assets/images/bg-faq.webp") center / cover no-repeat;
}

.faq .section-title {
	margin-bottom: calc(80 * var(--u));
}

.faq__list {
	display: grid;
	gap: calc(40 * var(--u));
	margin-bottom: 0;
}

.faq-item {
	padding: 1.5rem 1.75rem;
	background: #fff;
}

.faq-item__question {
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
	color: var(--color-blue);
	font-weight: 700;
	font-size: var(--fs-18);
}

.faq-item__q {
	flex-shrink: 0;
	font-family: "IBM Plex Sans JP", sans-serif;
	font-size: var(--fs-22);
	line-height: 1;
}

.faq-item__text {
	min-width: 0;
}

.faq-item p {
	margin-top: calc(8 * var(--u));
	color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Access / environment
-------------------------------------------------------------------------- */
.access {
	padding: calc(80 * var(--u)) 0;
}

.access__inner {
	display: grid;
	grid-template-columns: auto calc(900 * var(--u));
	gap: 1.75rem;
	align-items: start;
	justify-content: start;
}

.access__body {
	display: grid;
	grid-template-columns: calc(480 * var(--u)) minmax(0, 1fr);
	gap: calc(40 * var(--u));
	box-sizing: border-box;
	width: calc(900 * var(--u));
	max-width: calc(900 * var(--u));
	min-width: 0;
	justify-self: start;
	align-items: start;
}

.access__vertical {
	writing-mode: vertical-rl;
	color: var(--color-blue);
	font-family: var(--font-heading);
	font-size: var(--fs-48);
}

.access__data {
	display: grid;
	gap: 1.125rem;
	min-width: 0;
	align-self: center;
	font-size: var(--fs-14);
}

.access__data > div {
	display: grid;
	grid-template-columns: 5.5em 1fr;
	gap: 0.75rem;
	align-items: center;
}

.access__data dt {
	color: var(--color-text-muted);
	font-size: inherit;
	font-weight: 700;
}

.access__data dd {
	margin: 0;
}

.environment {
	padding: 2.5rem 0 calc(160 * var(--u));
}

.environment .section-title {
	margin-bottom: calc(32 * var(--u));
	color: #474B4E;
	font-size: var(--fs-32);
}

.environment__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: calc(40 * var(--u));
}

.environment__grid figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
}

.environment__grid img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: var(--color-placeholder);
}

.environment-card__badge {
	position: absolute;
	bottom: calc(16 * var(--u));
	left: 0;
	z-index: 1;
	width: calc(192 * var(--u));
	padding: calc(8 * var(--u)) 0;
	color: #474B4E;
	font-size: var(--fs-14);
	font-weight: 700;
	line-height: 1.4;
}

.environment-card__badge::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

/* --------------------------------------------------------------------------
   Columns
-------------------------------------------------------------------------- */
.columns {
	padding: 5rem 0;
	background: var(--color-bg-column);
}

.columns .section-title {
	margin-bottom: calc(40 * var(--u));
	font-size: var(--fs-40);
	text-align: left;
}

.columns__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: calc(40 * var(--u));
}

.columns .column-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.column-card__thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	margin-bottom: 0.75rem;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--color-placeholder);
}

.column-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.column-card__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.25rem 0.75rem;
	background: rgba(255, 255, 255, 0.9);
	color: var(--color-text);
	font-size: var(--fs-14);
	font-weight: 700;
}

.column-card__date {
	margin-bottom: 0.375rem;
	color: var(--color-text-faint);
	font-size: 1rem;
}

.column-card__title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.6;
}

.columns__more {
	margin-top: calc(40 * var(--u));
	text-align: center;
}

.columns__more .btn {
	width: calc(320 * var(--u));
	font-size: var(--fs-18);
}

/* --------------------------------------------------------------------------
   Contact
-------------------------------------------------------------------------- */
.contact {
	padding: calc(96 * var(--u)) 0;
}

.contact__ribbon {
	--ribbon-notch: calc(16 * var(--u));
	position: relative;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto calc(40 * var(--u));
	padding: calc(10 * var(--u)) calc(40 * var(--u));
	background: var(--color-accent);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	clip-path: polygon(
		0 0,
		100% 0,
		calc(100% - var(--ribbon-notch)) 50%,
		100% 100%,
		0 100%,
		var(--ribbon-notch) 50%
	);
}

.contact-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 1.75rem;
	overflow: hidden;
	padding: 5px;
	background: #eceff3;
}

.contact-tabs__btn {
	padding: 0.75rem;
	border: 0;
	border-radius: 5px;
	background: #eceff3;
	color: var(--color-text);
	font-size: var(--fs-18);
	font-weight: 700;
	cursor: pointer;
}

.contact-tabs__btn.is-active {
	background: #fff;
}

.contact.is-visit .lp-cf7__address .req {
	display: none;
}

.contact.is-docs .lp-cf7__date {
	display: none;
}

.contact-form {
	display: grid;
	gap: 1.375rem;
}

.wpcf7-lp,
.wpcf7-lp .wpcf7-form,
.lp-cf7 {
	display: grid;
	gap: 1.375rem;
}

.wpcf7-lp .wpcf7-form > p {
	margin: 0;
}

.wpcf7-lp .form-field {
	margin: 0;
}

.wpcf7-lp .wpcf7-form-control-wrap {
	display: block;
}

.form-field label,
.form-field legend {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.form-field legend {
	padding: 0;
}

.form-field fieldset,
fieldset.form-field {
	margin: 0;
	padding: 0;
	border: 0;
}

.req {
	display: inline-block;
	color: var(--color-accent);
	font-size: var(--fs-14);
	font-weight: 700;
	line-height: 1.5;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="date"],
.form-field textarea,
.wpcf7-lp input[type="text"],
.wpcf7-lp input[type="tel"],
.wpcf7-lp input[type="email"],
.wpcf7-lp input[type="date"],
.wpcf7-lp textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid #d9dde3;
	border-radius: var(--radius);
	background: #fff;
	font: inherit;
	box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus,
.wpcf7-lp input:focus,
.wpcf7-lp textarea:focus {
	outline: 2px solid rgba(26, 77, 160, 0.25);
	border-color: var(--color-blue-soft);
}

.form-field__help {
	margin-top: 0.5rem;
	color: var(--color-text-muted);
	font-size: var(--fs-14);
}

.choice-card,
.lp-cf7__situation .wpcf7-list-item {
	display: block;
	margin: 0.625rem 0 0;
}

.lp-cf7__situation .wpcf7-list-item {
	display: block;
	margin-left: 0;
}

.lp-cf7__situation .wpcf7-list-item label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
	padding: 0.875rem 1rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	background: var(--color-bg-choice);
	font-weight: 500;
	cursor: pointer;
}

.lp-cf7__situation .wpcf7-list-item:has(input:checked) label {
	border-color: #9ec0e8;
	background: var(--color-bg-choice-on);
}

.lp-cf7__situation .wpcf7-list-item input {
	accent-color: var(--color-blue);
	flex: 0 0 auto;
}

.choice-card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.625rem;
	padding: 0.875rem 1rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	background: var(--color-bg-choice);
	font-weight: 500;
	cursor: pointer;
}

.choice-card:has(input:checked) {
	border-color: #9ec0e8;
	background: var(--color-bg-choice-on);
}

.choice-card input {
	accent-color: var(--color-blue);
}

.contact-form__submit {
	margin-top: calc(1 * var(--u));
	text-align: center;
}

.contact-form__submit .btn,
.wpcf7-lp input[type="submit"].btn {
	min-width: min(100%, calc(360 * var(--u)));
	font-size: var(--fs-18);
	cursor: pointer;
}

.wpcf7-lp .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 0.875rem 1rem;
	border-radius: var(--radius);
}

.wpcf7-lp .wpcf7-not-valid-tip {
	display: block;
	margin-top: 0.375rem;
	color: #c0392b;
	font-size: 1rem;
}

.contact-form__fallback {
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-bg-soft);
	text-align: center;
}

/* --------------------------------------------------------------------------
   Thanks
-------------------------------------------------------------------------- */
.thanks {
	padding: calc(120 * var(--u)) 0 calc(160 * var(--u));
	text-align: center;
}

.thanks .section-title {
	margin-bottom: calc(24 * var(--u));
}

.thanks__status {
	margin-bottom: calc(32 * var(--u));
	color: var(--color-blue);
	font-family: var(--font-heading);
	font-size: var(--fs-32);
	font-weight: 700;
}

.thanks__lead,
.thanks__text {
	color: var(--color-text);
	font-size: var(--fs-18);
	line-height: 1.8;
}

.thanks__close-wrap {
	margin-top: calc(48 * var(--u));
}

.thanks__close {
	color: var(--color-text);
	font-size: var(--fs-18);
	line-height: 1.8;
	text-decoration: none;
}

.thanks__close:hover,
.thanks__close:focus-visible {
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Footer
-------------------------------------------------------------------------- */
.site-footer {
	background: linear-gradient(180deg, #fff 8%, #dff5fa 64%);
}

.site-footer__main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 2rem;
	align-items: flex-end;
	width: min(calc(1120 * var(--u)), calc(100% - 2 * var(--pad-x-header)));
	margin-inline: auto;
	padding-top: calc(160 * var(--u));
	padding-bottom: calc(40 * var(--u));
	padding-inline: 0;
	box-sizing: border-box;
}

.site-footer__eyebrow {
	font-size: var(--fs-14);
}

.site-footer__title {
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: var(--fs-32);
}

.site-footer__ruby {
	font-size: var(--fs-16);
	font-weight: 500;
}

.site-footer__sub {
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: var(--fs-32);
}

.site-footer__nav {
	margin-top: 1.25rem;
}

.site-footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem 1.375rem;
	font-size: var(--fs-14);
}

.site-footer__info {
	display: table;
	margin-left: auto;
	max-width: 100%;
	color: #9a9a9a;
	font-size: var(--fs-14);
	text-align: left;
}

.site-footer__info p + p {
	margin-top: 0.375rem;
}

.site-footer__info span {
	display: inline-block;
	min-width: 4.5em;
	margin-right: 0.5rem;
	font-weight: 700;
}

.site-footer__bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding-block: 0.875rem;
	padding-inline: max(var(--pad-x-header), calc((100% - 1120 * var(--u)) / 2));
	background: var(--color-blue);
	color: #fff;
	font-size: var(--fs-14);
}

.site-footer__bar small {
	font-size: 1em;
}

.site-footer__privacy {
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
-------------------------------------------------------------------------- */
@media (min-width: 782px) {
	.story__inner,
	.features__inner,
	.voices__inner,
	.access__inner {
		gap: calc(40 * var(--u));
	}
}

@media (min-width: 1024px) {
	.hero__content {
		padding-right: calc(760 * var(--u));
	}

	.hero__visual,
	.hero__image {
		width: calc(720 * var(--u));
	}
}

/* SP + tablet: hamburger nav (PC layout stays above 781 except menu) */
@media (max-width: 1023px) {
	.site-nav {
		gap: calc(5 * var(--u));
	}

	.site-nav__list {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 101;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 0;
		padding: calc(8 * var(--u)) var(--pad-x-header) calc(16 * var(--u));
		background: #fff;
		border-bottom: 1px solid var(--color-border);
		box-shadow: 0 calc(8 * var(--u)) calc(16 * var(--u)) rgba(26, 26, 26, 0.08);
	}

	.site-header.is-nav-open .site-nav__list {
		display: flex;
	}

	.site-nav__cta {
		display: none;
	}

	.site-nav__list a {
		display: block;
		padding: calc(12 * var(--u)) 0;
	}

	.site-header__tel-btn,
	.site-nav__toggle {
		display: inline-flex;
	}

	.site-header__actions {
		display: none;
	}

	.site-header__end {
		flex-direction: row;
		align-items: center;
		gap: calc(8 * var(--u));
	}

	/* Hero: same as SP */
	.hero {
		padding: calc(20 * var(--u)) 0 calc(40 * var(--u));
		background:
			url("../assets/images/fv-deco-tl.svg?v=1.5.349") left calc(-68 * var(--u)) / 100% auto no-repeat,
			url("../assets/images/fv-deco-br.webp") right bottom calc(140 * var(--u)) / 120% auto no-repeat,
			url("../assets/images/fv-bg1.webp?v=1.5.348") center top / auto 100% no-repeat;
	}

	.hero__inner {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.hero__content {
		width: 100%;
		padding-top: calc(10 * var(--u));
		padding-right: 0;
	}

	.hero__visual {
		position: relative;
		right: auto;
		top: auto;
		width: 100%;
	}

	.hero__image {
		width: calc(470 * var(--u));
		max-width: none;
		top: calc(-90 * var(--u));
	}

	.hero__lead {
		margin-bottom: 0;
		font-size: var(--fs-16);
		text-align: left;
	}

	.hero__title {
		display: grid;
		margin-bottom: calc(30 * var(--u));
		font-size: calc(46 * var(--u));
	}

	.hero__text {
		margin-bottom: calc(16 * var(--u));
		font-size: var(--fs-14);
		width: calc(250 * var(--u));
	}

	.hero .cta-pair {
		flex-direction: row;
		flex-wrap: nowrap;
		width: 100%;
		height: calc(72 * var(--u));
	}

	.hero .cta-pair .btn {
		width: auto;
		height: 100%;
	}

	.hero__content .cta-pair {
		width: 100%;
		gap: calc(10 * var(--u));
	}

	.hero__content .cta-pair .btn {
		padding-inline: 0;
	}

	.hero__content .cta-pair,
	.hero__content .cta-pair .btn__sub,
	.hero__content .cta-pair .hero__event {
		font-size: var(--fs-14);
	}

	.hero__content .cta-pair .btn__main,
	.hero__content .cta-pair a[href^="tel"] .btn__main {
		font-size: var(--fs-16);
	}

	.hero__badges {
		position: absolute;
		top: auto;
		right: calc(-16 * var(--u));
		bottom: calc(16 * var(--u));
		left: auto;
		flex-direction: column;
		align-items: flex-end;
		gap: calc(8 * var(--u));
		width: calc(315 * var(--u));
		margin-top: 0;
		padding-bottom: 0;
		pointer-events: none;
		font-size: var(--fs-14);
	}

	.hero__badges li {
		width: 100%;
		padding: calc(4 * var(--u)) calc(12 * var(--u));
		white-space: nowrap;
		max-width: none;
		text-align: right;
		font-size: inherit;
	}

	.hero .hero__event {
		display: block;
		top: calc(-40 * var(--u));
		height: auto;
		padding-block: calc(6 * var(--u));
		white-space: nowrap;
		line-height: 1.3;
		text-align: center;
	}

}

/* Tablet: hero layout/type scale = SP@781; cta-pair keeps root rem/--u */
@media (min-width: 782px) and (max-width: 1023px) {
	.hero {
		--u: calc(781px / 390);
		--fs-14: calc(14 * var(--u));
		--fs-16: calc(16 * var(--u));
		--fs-18: calc(18 * var(--u));
		--radius: calc(6 * var(--u));
	}

	.hero .cta-pair {
		--u: 0.0625rem;
		--fs-14: 0.875rem;
		--fs-16: 1rem;
		--fs-20: 1.25rem;
		--fs-22: 1.375rem;
		--radius: calc(6 * var(--u));
	}
}

@media (max-width: 1023px) {
	/* Features: same as SP */
	.features {
		padding-top: 0;
	}

	.features__inner {
		grid-template-columns: minmax(0, 1fr);
		width: min(calc(1120 * var(--u)), calc(100% - 2 * var(--pad-x-header)));
		min-width: 0;
		box-sizing: border-box;
		gap: 3rem;
	}

	.features__vertical {
		margin: auto;
		writing-mode: vertical-rl;
		letter-spacing: 0.18em;
		text-align: start;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		font-size: var(--fs-48);
	}

	.features__vertical br {
		display: none;
	}

	.features__vertical span:last-child {
		align-self: flex-end;
	}

	.feature-list,
	.feature-list__item,
	.feature-list__head {
		width: 100%;
		min-width: 0;
	}

	.feature-list__item {
		padding: calc(15 * var(--u));
	}

	.feature-list__item h3 {
		min-width: 0;
		overflow-wrap: anywhere;
		font-size: var(--fs-16);
	}

	.feature-list__item p {
		font-size: var(--fs-14);
	}

	/* Access: SP shell, PC horizontal body */
	.access {
		padding: 0;
	}

	.access__inner {
		grid-template-columns: minmax(0, 1fr);
		width: min(calc(1120 * var(--u)), calc(100% - 2 * var(--pad-x-header)));
		min-width: 0;
		box-sizing: border-box;
		gap: 1.75rem;
	}

	.access__vertical {
		margin: auto;
		writing-mode: vertical-rl;
		letter-spacing: 0.18em;
		text-align: start;
		font-size: var(--fs-48);
	}

	.access__body {
		display: grid;
		grid-template-columns: calc(480 * var(--u)) minmax(0, 1fr);
		gap: calc(40 * var(--u));
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
		justify-self: stretch;
		align-items: start;
	}

	.access__map,
	.access__data {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.cta-block .l-inner {
		width: 100%;
		max-width: none;
		padding-inline: calc(15 * var(--u));
		box-sizing: border-box;
	}

	.cta-block .cta-pair {
		width: 100%;
		max-width: none;
	}

	/* Environment grid: same as SP */
	.environment {
		padding-top: calc(60 * var(--u));
		padding-bottom: calc(90 * var(--u));
	}

	.environment .section-title {
		font-size: var(--fs-24);
		margin-bottom: calc(30 * var(--u));
	}

	.environment__grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: calc(15 * var(--u));
	}

	.environment-card__badge {
		bottom: calc(10 * var(--u));
	}
}

@media (max-width: 781px) {
	.hero__inner,
	.story__inner,
	.features__inner,
	.voices__inner,
	.access__inner,
	.access__body,
	.site-footer__main {
		grid-template-columns: 1fr;
	}

	.access__body {
		width: 100%;
		max-width: 100%;
	}

	.hero__badges {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: stretch;
		width: auto;
		margin-top: 1rem;
		pointer-events: auto;
	}

	.story__vertical,
	.features__vertical,
	.voices__vertical,
	.access__vertical {
		writing-mode: horizontal-tb;
		letter-spacing: 0.08em;
		text-align: center;
	}

	.anxieties__grid,
	.columns__grid {
		grid-template-columns: 1fr;
	}

	.environment__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.voices__cards .voice-card:nth-child(2),
	.voices__cards .voice-card:nth-child(3) {
		margin-left: 0;
		margin-inline: 0;
	}

	.site-footer__info {
		display: block;
		margin-left: 0;
		text-align: left;
	}
}

@media (max-width: 781px) {
	html.kuon-chiba-togane-html {
		--header-h: auto;
	}

	.site-header__inner {
		flex-wrap: nowrap;
		align-items: center;
		gap: calc(8 * var(--u));
		height: auto;
		min-height: auto;
		padding-block: calc(10 * var(--u));
	}

	.site-header__end {
		flex-direction: row;
		align-items: center;
		gap: calc(8 * var(--u));
	}

	.site-header__brand {
		min-width: 0;
		flex: 1 1 auto;
	}

	.site-header__logo-main {
		font-size: 1rem;
		line-height: 1.35;
	}

	.site-header__tel {
		display: none;
	}

	.site-header__actions {
		display: none;
	}

	.btn--header {
		padding: calc(4 * var(--u)) calc(8 * var(--u));
		font-size: var(--fs-14);
		white-space: nowrap;
	}

	.btn--header .btn__main {
		font-size: 1rem;
	}

	.hero {
		padding: calc(20 * var(--u)) 0 calc(40 * var(--u));
		background:
			url("../assets/images/fv-deco-tl.svg?v=1.5.349") left calc(-68 * var(--u)) / 100% auto no-repeat,
			url("../assets/images/fv-deco-br.webp") right bottom calc(140 * var(--u)) / 120% auto no-repeat,
			url("../assets/images/fv-bg1.webp?v=1.5.348") center top / auto 100% no-repeat;
	}

	.hero__inner {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.hero__content {
		width: 100%;
		padding-top: calc(10 * var(--u));
		padding-right: 0;
	}

	.hero__visual {
		position: relative;
		right: auto;
		top: auto;
		width: 100%;
	}

	.hero__image {
		width: calc(470 * var(--u));
		max-width: none;
		top: calc(-90 * var(--u));
	}

	.hero__lead {
		margin-bottom: 0;
		font-size: var(--fs-16);
		text-align: left;
	}

	.hero__title {
		display: grid;
		margin-bottom: calc(30 * var(--u));
		font-size: calc(46 * var(--u));
	}

	.hero__text {
		margin-bottom: calc(16 * var(--u));
		font-size: var(--fs-14);
		width: calc(250 * var(--u));
	}

	.hero__content .cta-pair {
		width: 100%;
		gap: calc(10 * var(--u));
	}

	.hero__content .cta-pair .btn {
		padding-inline: 0;
	}

	.hero__content .cta-pair,
	.hero__content .cta-pair .btn__sub,
	.hero__content .cta-pair .hero__event {
		font-size: var(--fs-14);
	}

	.hero__content .cta-pair .btn__main,
	.hero__content .cta-pair a[href^="tel"] .btn__main {
		font-size: var(--fs-16);
	}

	.hero__badges {
		position: absolute;
		top: auto;
		right: calc(-16 * var(--u));
		bottom: calc(16 * var(--u));
		left: auto;
		flex-direction: column;
		align-items: flex-end;
		gap: calc(8 * var(--u));
		width: calc(315 * var(--u));
		margin-top: 0;
		padding-bottom: 0;
		pointer-events: none;
		font-size: var(--fs-14);
	}

	.hero__badges li {
		width: 100%;
		padding: calc(4 * var(--u)) calc(12 * var(--u));
		white-space: nowrap;
		max-width: none;
		text-align: right;
		font-size: inherit;
	}

	.cta-pair {
		flex-direction: row;
		flex-wrap: nowrap;
		width: 100%;
		height: calc(72 * var(--u));
	}

	.cta-pair .btn {
		width: auto;
		height: 100%;
	}

	.cta-pair--center {
		flex-direction: column;
		height: auto;
	}

	.cta-pair--center .btn {
		flex: 0 0 auto;
		width: 100%;
		height: calc(72 * var(--u));
		min-height: 0;
		padding: 0;
	}

	.story__vertical,
	.features__vertical,
	.voices__vertical,
	.access__vertical {
		margin: auto;
		writing-mode: vertical-rl;
		letter-spacing: 0.18em;
		text-align: start;
	}

	.features__vertical {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		font-size: var(--fs-24);
	}

	.features__vertical br {
		display: none;
	}

	.features__vertical span:last-child {
		align-self: flex-end;
	}

	.voices__vertical,
	.access__vertical {
		font-size: var(--fs-24);
	}

	.br-sp {
		display: inline;
	}

	.br-pc {
		display: none;
	}

	.story__vertical {
		font-size: var(--fs-28);
	}

	/* 縦書き要素はサイズ制約しない（改行が壊れる）。箱は横書きラッパーで確保 */
	.vertical-slot {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.vertical-slot--story {
		min-height: calc(264 * var(--u)); /* 8字 × 28 × 1.18 */
	}

	.vertical-slot--features {
		min-height: calc(255 * var(--u)); /* 9字 × 24 × 1.18 */
	}

	.vertical-slot--voices {
		min-height: calc(170 * var(--u)); /* 6字 × 24 × 1.18 */
	}

	.vertical-slot--access {
		min-height: calc(142 * var(--u)); /* 5字 × 24 × 1.18 */
	}

	.story-card__title {
		font-size: var(--fs-16);
	}

	.story-card {
		padding: calc(16 * var(--u));
		aspect-ratio: 330 / 420;
	}

	.l-inner--800.story__inner {
		padding-inline: calc(30 * var(--u));
		width: 100%;
		box-sizing: border-box;
	}

	.intro {
		margin-top: 0;
		margin-bottom: 0;
		padding-top: calc(90 * var(--u));
		padding-bottom: calc(60 * var(--u));
		background: url("../assets/images/bg-intro-sp.svg") center bottom / 100% auto no-repeat;
	}

	.section-title,
	.environment .section-title,
	.faq .section-title,
	.plans .section-title {
		font-size: var(--fs-24);
		margin-bottom: calc(30 * var(--u));
	}

	.columns .section-title {
		font-size: var(--fs-20);
		margin-bottom: calc(30 * var(--u));
	}

	.section-title--lg {
		margin-bottom: 0;
	}

	.intro .l-inner {
		padding-inline: calc(55 * var(--u));
	}

	.intro__text {
		margin-top: calc(30 * var(--u));
		font-size: var(--fs-14);
	}

	.anxieties {
		padding-top: calc(45 * var(--u));
		padding-bottom: calc(160 * var(--u));
	}

	.anxieties__heading {
		font-size: var(--fs-20);
	}

	.anxiety-card h3 {
		font-size: var(--fs-16);
	}

	.anxiety-card .lp-icon {
		width: calc(60 * var(--u));
		height: calc(60 * var(--u));
	}

	.anxiety-card__head::after {
		right: calc(60 * var(--u) + 1rem);
	}

	.anxiety-card p {
		font-size: var(--fs-14);
	}

	.anxieties__note {
		margin-top: calc(60 * var(--u));
		padding-inline: calc(28 * var(--u));
		font-size: var(--fs-16);
	}

	.worry-circles {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		justify-items: center;
		gap: calc(20 * var(--u));
		padding-inline: calc(28 * var(--u));
		margin-bottom: calc(60 * var(--u));
	}

	.anxieties__resolve {
		font-size: var(--fs-20);
	}

	.features__inner {
		grid-template-columns: minmax(0, 1fr);
		width: min(calc(1120 * var(--u)), calc(100% - 2 * var(--pad-x-header)));
		min-width: 0;
		box-sizing: border-box;
	}

	.features {
		padding-top: 0;
	}

	.feature-list,
	.feature-list__item,
	.feature-list__head {
		width: 100%;
		min-width: 0;
	}

	.feature-list__item {
		padding: calc(15 * var(--u));
	}

	.feature-list__item h3 {
		min-width: 0;
		overflow-wrap: anywhere;
		font-size: var(--fs-16);
	}

	.feature-list__item p {
		font-size: var(--fs-14);
	}

	.voices__inner {
		grid-template-columns: minmax(0, 1fr);
		width: min(calc(960 * var(--u)), calc(100% - 2 * var(--pad-x-header)));
		min-width: 0;
		box-sizing: border-box;
	}

	.voices {
		padding: calc(90 * var(--u)) 0;
	}

	.voices__deco--tr {
		top: calc(-40 * var(--u));
		width: calc(300 * var(--u));
	}

	.voices__deco--bl {
		bottom: calc(-65 * var(--u));
		z-index: 2;
		width: calc(182 * var(--u));
	}

	.voices__cards,
	.voice-card,
	.voice-card__head {
		width: 100%;
		min-width: 0;
	}

	.voice-card {
		padding: calc(15 * var(--u));
	}

	.voice-card h3 {
		min-width: 0;
		overflow-wrap: anywhere;
		font-size: var(--fs-16);
	}

	.voice-card__head .lp-icon {
		width: calc(45 * var(--u));
		height: auto;
	}

	.voice-card__meta,
	.voice-card__body {
		font-size: var(--fs-14);
	}

	.plans {
		padding-top: calc(90 * var(--u));
		padding-bottom: calc(90 * var(--u));
	}

	.hero .hero__event {
		display: block;
		top: -2.5rem;
		height: auto;
		padding-block: calc(6 * var(--u));
		white-space: nowrap;
		line-height: 1.3;
		text-align: center;
	}

	.worry-circles li {
		width: min(100%, calc(160 * var(--u)));
		font-size: calc(12 * var(--u));
	}

	.worry-circles li:last-child {
		grid-column: 1 / -1;
	}

	.faq {
		padding: calc(90 * var(--u)) 0;
	}

	.faq + .cta-block {
		padding: calc(90 * var(--u)) 0 calc(160 * var(--u));
	}

	.faq__list {
		gap: calc(15 * var(--u));
	}

	.faq-item {
		padding: calc(16 * var(--u));
	}

	.faq-item__question {
		font-size: var(--fs-16);
	}

	.faq-item p {
		font-size: var(--fs-14);
	}

	.access__inner {
		grid-template-columns: minmax(0, 1fr);
		width: min(calc(1120 * var(--u)), calc(100% - 2 * var(--pad-x-header)));
		min-width: 0;
		box-sizing: border-box;
	}

	.access {
		padding: 0;
	}

	.access__body,
	.access__map,
	.access__data {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.access__body {
		gap: calc(30 * var(--u));
	}

	.environment {
		padding-top: calc(60 * var(--u));
		padding-bottom: calc(90 * var(--u));
	}

	.columns {
		padding: calc(60 * var(--u)) 0;
	}

	.columns__more .btn {
		width: 100%;
		font-size: var(--fs-16);
	}

	.environment__grid {
		gap: calc(15 * var(--u));
	}

	.environment-card__badge {
		bottom: calc(10 * var(--u));
	}

	.contact {
		padding: calc(60 * var(--u)) 0;
	}

	.contact__ribbon {
		--ribbon-notch: calc(12 * var(--u));
		width: 100%;
		max-width: 100%;
		padding: calc(10 * var(--u)) calc(32 * var(--u));
		font-size: var(--fs-14);
	}

	.contact-tabs__btn {
		font-size: var(--fs-16);
	}

	.lp-cf7__situation .wpcf7-list-item {
		font-size: var(--fs-14);
	}

	.lp-cf7__situation .wpcf7-list-item label {
		gap: 0;
	}

	.contact-form__submit .btn,
	.wpcf7-lp input[type="submit"].btn {
		font-size: var(--fs-16);
	}

	.site-footer__main {
		padding-top: 0;
	}

	.site-footer__bar {
		flex-direction: column;
		align-items: flex-start;
	}
}
