/**
 * House Stadium — Main Stylesheet
 *
 * @package House_Stadium
 */

/* ==========================================================================
   Overflow guard（横スクロール対策）
   ========================================================================== */

html,
body {
	overflow-x: clip;
	max-width: 100%;
}

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
	/* Colors */
	--color-main: #567d8b;
	--color-gradient: linear-gradient(to right, #6f8f9a 0%, #7fa2ad 50%, #2f6672 100%);
	--color-text: #1f2321;
	--color-bg-a: #ffffff;
	--color-bg-b: #fafeff;
	--color-border: #e2e6e4;
	--color-section-title: #567d8b;

	/* Typography */
	--font-base: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	--font-mincho: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS Mincho E", serif;
	--font-deco-num: "Zen Old Mincho", "Yu Mincho", serif;

	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-demibold: 700;

	/* Layout */
	--breakpoint-sp: 768px;
	--container-max: 1200px;
	--container-padding: 40px;
	--container-padding-sp: 20px;
	--lp-scroll-card-width-pc: 320px;
	--lp-scroll-card-gap-pc: 20px;
	--lp-scroll-card-gap-sp: 12px;
	--lp-edge-scroll-inset: max(
		var(--container-padding),
		calc((100vw - var(--container-max)) / 2 + var(--container-padding))
	);

	/* Section */
	--section-padding-y: 80px;
	--section-padding-y-sp: 28px;

	/* Section header */
	--section-title-size: 36px;
	--section-title-ls: 0.2em;
	--section-title-size-sp: 24px;
	--section-title-ls-sp: 0.1em;
	--heading-lg-size: 48px;
	--heading-lg-size-sp: 32px;
	--heading-xl-size: 48px;
	--heading-xl-size-sp: 28px;
	--section-sub-size: 14px;
	--section-header-margin-bottom: 48px;
	--section-header-padding-y: 48px;
	--section-header-padding-y-sp: 28px;
	--section-header-sub-margin-top: 12px;

	/* CTA bar */
	--cta-heading-size: 32px;
	--cta-heading-ls: 0.05em;
	--cta-gift-size: 14px;
	--cta-note-size: 12px;
	--cta-badge-size: 16px;
	--cta-badge-ls: 0.11em;
	--cta-btn-text-size: 32px;
	--cta-btn-text-ls: 0.05em;

	/* Site header（fixed 用・閉じた状態の高さ） */
	--site-header-height: 80px;
	--site-header-logo-height: 40px;
	--site-header-cta-width: 557px;
	--site-header-cta-height: 191px;
	--site-header-cta-display-height: 108px;
	--site-header-cta-overhang: 18px;
	--site-header-nav-duration: 0.35s;

	/* FV */
	--fv-height: 700px;
	--fv-offset-top: 40px;
	--fv-badge-offset-top: calc(var(--site-header-cta-overhang) + 36px);
	--fv-text-color: #091f37;
	--fv-text-shadow:
		0 0 10px rgba(255, 255, 255, 1),
		0 0 22px rgba(255, 255, 255, 1),
		0 0 38px rgba(255, 255, 255, 1),
		0 0 56px rgba(255, 255, 255, 0.98),
		0 0 78px rgba(255, 255, 255, 0.96),
		0 0 104px rgba(255, 255, 255, 0.94),
		0 0 132px rgba(255, 255, 255, 0.9);
	--fv-catch-wave-width: 200px;
	--fv-reservation-badge-size: 220px;
	--fv-bg-position-pc: center center;
	--fv-bg-position-sp: center 22%;
	--fv-reservation-badge-size-sp: 112px;
	--fv-catch-wave-width-sp: 100px;
	--fv-offset-top-sp: 48px;
	--fv-height-sp: 400px;
	--fv-height-sp-ratio: 0.62;
	--fv-content-bottom-sp: 25px;
	--gift-float-size-sp: 80px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
	max-width: 100%;
}

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

body {
	margin: 0;
	font-family: var(--font-base);
	font-size: 16px;
	font-weight: var(--fw-regular);
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--color-text);
	background-color: var(--color-bg-a);
}

/* LP：FVをヘッダー直下から表示（body の padding-top だと白い隙間が出る） */
body.is-lp-front {
	overflow-x: clip;
	padding-top: 0;
}

/* LP以外：fixed ヘッダー分の余白 */
body:not(.is-lp-front) {
	padding-top: var(--site-header-height);
}

.lp-main {
	overflow-x: clip;
	max-width: 100%;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* 横スクロール（ビューポート右端まで並べる） */
.section-slider__scroll-wrap,
.section-slider__scroll,
.voice-layout-b__scroll-wrap,
.voice-layout-b__scroll,
.section-structure__cards-scroll,
.section-air__cards-scroll,
.section-maintenance__cards-scroll {
	max-width: none;
}

.lp-edge-scroll-wrap {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	padding-left: var(--lp-edge-scroll-inset);
	box-sizing: border-box;
}

.lp-edge-scroll {
	width: 100%;
	max-width: none;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.85;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

/* 游明朝体：オーナーの声 引用文のみ */
.font-yu-mincho,
.owner-voice__quote {
	font-family: var(--font-mincho);
	font-weight: var(--fw-regular);
}

/* Zen Old Mincho：数字の装飾のみ */
.font-deco-num,
.deco-num {
	font-family: var(--font-deco-num);
	font-weight: var(--fw-medium);
	font-feature-settings: "palt";
	line-height: 1;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.u-gradient-bg {
	background: var(--color-gradient);
}

.u-text-main {
	color: var(--color-main);
}

.u-text-section-title {
	color: var(--color-section-title);
}

.u-bg-a {
	background-color: var(--color-bg-a);
}

.u-bg-b {
	background-color: var(--color-bg-b);
}

.u-br-sp {
	display: none;
}

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

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

/* ==========================================================================
   Layout — LP Section
   ========================================================================== */

.lp-section {
	max-width: 100%;
	padding-top: var(--section-padding-y);
	padding-bottom: var(--section-padding-y);
}

.fv,
.cta-bar,
.site-header,
.site-footer {
	max-width: 100%;
}

/* PHP のユーティリティクラスよりセクション別指定を優先 */
.lp-section--bg-a,
.lp-section--bg-b {
	background-color: transparent;
}

/* 背景A #FFFFFF */
.fv,
.section-performance,
.section-experience,
.section-campaign,
.section-form {
	background-color: #ffffff;
}

.lp-section.section-form {
	padding-top: 0;
}

.lp-section.section-owner-voice {
	padding-top: 0;
}

/* 背景B #FAFEFF（.lp-section--bg-b の transparent より詳細度を上げる） */
.lp-section.section-worry,
.lp-section.section-stadium,
.lp-section.section-voice,
.lp-section.section-structure,
.lp-section.section-air,
.lp-section.section-maintenance,
.lp-section.section-numbers,
.lp-section.section-owner-voice,
.lp-section.section-slider {
	background-color: #fafeff;
}

/* ==========================================================================
   Component — Section Header（section-header.php）
   ========================================================================== */

.section-header {
	text-align: center;
	margin-bottom: var(--section-header-margin-bottom);
}

.section-header__inner {
	position: relative;
	z-index: 1;
}

.section-header__title {
	margin: 0;
	font-size: var(--section-title-size);
	font-weight: var(--fw-semibold);
	letter-spacing: var(--section-title-ls);
	color: #567d8b;
	line-height: 1.5;
}

.section-header__sub {
	margin: var(--section-header-sub-margin-top) 0 0;
	font-size: var(--section-sub-size);
	font-weight: var(--fw-regular);
	letter-spacing: 0.08em;
	color: #1f2321;
	line-height: 1.8;
	text-align: center;
}

.section-header--with-bg {
	position: relative;
	width: 100%;
	margin-bottom: 0;
	overflow: hidden;
	background-color: #fafeff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* CTAブロックと同様：背景は header、余白は inner（padding と背景の見え方を分離） */
.section-header--with-bg .section-header__inner {
	padding-block: var(--section-header-padding-y);
}

.section-header--with-bg .section-header__sub {
	color: #567d8b;
}

.section-header__line {
	display: block;
	width: min(100%, 720px);
	margin-inline: auto;
	border-top: 1px dashed #567d8b;
	opacity: 0.65;
}

.section-header__line--top {
	margin-bottom: 24px;
}

.section-header__line--bottom {
	margin-top: 24px;
}

.section-header--lg .section-header__title {
	font-size: var(--heading-lg-size);
	letter-spacing: 0.2em;
}

.section-header--semibold .section-header__title {
	font-weight: var(--fw-semibold);
	letter-spacing: 0.2em;
}

.section-header__label {
	display: none;
}

/* ==========================================================================
   Component — CTA Bar（cta-bar.php）
   ========================================================================== */

.cta-bar {
	background-color: #fafeff;
	border-block: 1px solid var(--color-border);
}

/* PC：左テキスト / 右グラデーションボタン */
.cta-bar__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 32px 40px;
	max-width: var(--container-max);
	margin-inline: auto;
	padding: 48px var(--container-padding);
}

.cta-bar__content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.cta-bar__heading {
	display: flex;
	flex-direction: column;
	gap: 0;
	font-size: var(--cta-heading-size);
	font-weight: var(--fw-semibold);
	letter-spacing: var(--cta-heading-ls);
	color: var(--color-text);
	line-height: 1.5;
}

.cta-bar__heading-line {
	display: block;
}

.cta-bar__gift {
	font-size: var(--cta-gift-size);
	font-weight: var(--fw-medium);
	letter-spacing: 0.08em;
	color: var(--color-main);
	line-height: 1.6;
}

.cta-bar__note {
	font-size: var(--cta-note-size);
	font-weight: var(--fw-regular);
	letter-spacing: 0.04em;
	color: var(--color-text);
	opacity: 0.75;
	line-height: 1.6;
}

.cta-bar__action {
	position: relative;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.cta-bar__badge-top {
	display: none;
	font-size: var(--cta-badge-size);
	font-weight: var(--fw-semibold);
	letter-spacing: var(--cta-badge-ls);
	color: var(--color-main);
	line-height: 1.4;
	text-align: right;
}

.cta-bar__badge-img {
	display: block;
	position: absolute;
	z-index: 2;
	pointer-events: none;
}

.cta-bar__badge-img--tokuten {
	top: -24px;
	left: -16px;
	width: auto;
	max-height: 56px;
}

.cta-bar__amazon-logo {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	max-height: 20px;
	margin-inline: 4px;
}

/* グラデーションボタン */
.cta-bar__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	max-width: 100%;
	min-width: 320px;
	padding: 10px 60px;
	background: linear-gradient(to right, #6f8f9a 0%, #7fa2ad 50%, #2f6672 100%);
	border: none;
	border-radius: 4px;
	font-family: var(--font-base);
	font-size: 32px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.05em;
	color: #ffffff;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
	box-shadow: 0 4px 16px rgba(47, 102, 114, 0.25);
}

.cta-bar__btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
	color: #ffffff;
}

.cta-bar__btn-arrow {
	font-size: 0.85em;
	letter-spacing: 0;
	color: #ffffff;
}

/* ブルーカード（共通グラデーション） */
.blue-card {
	background: linear-gradient(to right, #6f8f9a 0%, #7fa2ad 50%, #2f6672 100%);
	border-radius: 8px;
	color: #ffffff;
	padding: 32px;
}

.blue-card__title {
	font-size: 24px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #ffffff;
}

/* ==========================================================================
   Site Header（ヒーロー上に重ねる・下線なし）
   ========================================================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background: #ffffff;
	border-bottom: none;
	overflow: visible;
}

/* 管理バー表示時のみヘッダーをバー直下に（html の margin-top と併用・padding は増やさない） */
body.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

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

.site-header__brand {
	flex: 1 1 auto;
	min-width: 0;
}

.site-header__logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.site-header__logo {
	display: block;
	height: var(--site-header-logo-height);
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.site-header__cta {
	display: block;
	flex: 0 0 auto;
	align-self: flex-end;
	margin-bottom: calc(-1 * var(--site-header-cta-overhang));
	line-height: 0;
	transform-origin: bottom right;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
	opacity: 0.92;
	transform: scale(1.02);
}

.site-header__cta-img {
	display: block;
	width: auto;
	height: auto;
	max-width: min(var(--site-header-cta-width), 50vw);
	max-height: var(--site-header-cta-display-height);
	object-fit: contain;
}

.fv__icon-label-text--sp {
	display: none;
}

/* ==========================================================================
   FV（背景A）
   ========================================================================== */

.fv {
	position: relative;
	min-height: var(--fv-height);
	padding-top: 0;
	padding-bottom: 0;
	background-color: #ffffff;
	background-image: var(--fv-bg-image, none);
	background-position: var(--fv-bg-position-pc);
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* LP：固定ヘッダーの直下から FV（背景画像）を開始 */
body.is-lp-front .fv {
	margin-top: var(--site-header-height);
	min-height: var(--fv-height);
}

body.is-lp-front .fv__hero {
	padding-top: var(--fv-offset-top);
	padding-bottom: 0;
}

.fv__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: none;
	pointer-events: none;
}

.fv__reservation-badge {
	display: none;
	position: absolute;
	z-index: 3;
	line-height: 0;
}

.fv__hero {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
	min-height: calc(var(--fv-height) - 130px);
	padding-top: var(--fv-offset-top);
	padding-bottom: 0;
}

.fv__content {
	max-width: 720px;
	padding-top: 6px;
}

.fv__catch {
	margin: 40px 0 24px;
	font-family: var(--font-mincho);
	font-size: 68px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.1em;
	line-height: 1.2;
	color: var(--fv-text-color);
	text-shadow: var(--fv-text-shadow);
}

.fv__catch-block--pc,
.fv__catch-block {
	display: block;
}

.fv__catch-line--first {
	display: inline-flex;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 8px 14px;
}

.fv__catch-line--second {
	display: block;
}

.fv__catch-wave {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.fv__catch-wave-img {
	display: block;
	width: var(--fv-catch-wave-width);
	height: auto;
	max-width: 100%;
	object-fit: contain;
}

.fv__catch-text--sp {
	display: none;
}

.fv__sub {
	margin: 0;
	font-family: var(--font-mincho);
	font-size: 21px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.07em;
	line-height: 1.4;
	color: var(--fv-text-color);
	text-shadow: var(--fv-text-shadow);
}

.fv__body {
	display: none;
	margin-top: 16px;
	font-size: 16px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.05em;
	line-height: 1.9;
	color: var(--fv-text-color);
	max-width: 560px;
	text-shadow: var(--fv-text-shadow);
}

.fv__icons {
	display: none;
	grid-template-columns: repeat(2, 130px);
	column-gap: 20px;
	row-gap: 16px;
	margin-top: 32px;
}

.fv__icon-item {
	width: auto;
	max-width: 130px;
	text-align: center;
}

.fv__icon-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-inline: auto;
	border-radius: 50%;
	border: 1px solid #567d8b;
	overflow: hidden;
}

.fv__icon-img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.fv__icon-label {
	margin-top: 8px;
	font-size: 10px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #567d8b;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

/* 固定ギフト券ポップ（FVバッジ画像を流用） */
.gift-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 100;
	transition: bottom 0.15s ease;
}

.gift-float__link {
	display: block;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.gift-float__link:hover,
.gift-float__link:focus-visible {
	opacity: 0.92;
	transform: scale(1.02);
}

.gift-float__img {
	display: block;
	width: auto;
	max-width: 200px;
	height: auto;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

@media (min-width: 769px) {
	.fv__reservation-badge {
		top: var(--fv-badge-offset-top);
		right: max(
			var(--container-padding),
			calc((100% - min(100%, var(--container-max))) / 2 + var(--container-padding))
		);
		left: auto;
		display: block;
		transition: opacity 0.2s ease, transform 0.2s ease;
	}

	.fv__reservation-badge:hover,
	.fv__reservation-badge:focus-visible {
		opacity: 0.92;
		transform: scale(1.03);
	}

	.fv__reservation-badge-img {
		display: block;
		width: var(--fv-reservation-badge-size);
		max-width: min(var(--fv-reservation-badge-size), 18vw);
		height: auto;
		object-fit: contain;
		filter: drop-shadow(0 8px 20px rgba(9, 31, 55, 0.12));
	}

	.gift-float {
		display: none;
	}
}

/* ==========================================================================
   Section 01 — Badges（FV下・実績4枚）
   ========================================================================== */

.section-badges {
	--section-badges-gap: 40px;
	background-color: #f9f5f2;
}

.section-badges__grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--section-badges-gap);
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding: 28px var(--container-padding);
}

.section-badges__item {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	justify-content: center;
}

.section-badges__media {
	line-height: 0;
}

.section-badges__rule {
	flex: 0 0 1px;
	align-self: stretch;
	width: 1px;
	background-color: #d1ccc6;
}

.section-badges__img {
	display: block;
	width: 100%;
	max-width: 260px;
	height: auto;
	object-fit: contain;
}

/* ==========================================================================
   Section 01 — Choose（選ばれる理由）
   ========================================================================== */

.section-choose {
	--section-choose-text: #0c1837;
	--section-choose-cta-visit: #0c1837;
	--section-choose-cta-stay: #ad7401;
	--section-choose-ctas-max: 720px;
	padding-top: 18px;
	padding-bottom: 56px;
	background-color: #ffffff;
	color: var(--section-choose-text);
}

.section-choose__title {
	margin: 0 0 18px;
	font-size: 24px;
	font-weight: var(--fw-semibold);
	line-height: 1.5;
	letter-spacing: 0.08em;
	color: var(--section-choose-text);
	text-align: center;
}

.section-choose__features {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px 0px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.section-choose__feature {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-choose__feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	line-height: 0;
}

.section-choose__feature-img {
	display: block;
	width: 100px;
	height: 100x;
	object-fit: contain;
}

.section-choose__feature-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	font-size: 14px;
	font-weight: var(--fw-semibold);
	line-height: 1.55;
	letter-spacing: 0.04em;
	color: var(--section-choose-text);
	text-align: center;
}

.section-choose__feature-line {
	display: block;
}

.section-choose__ctas {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
	max-width: var(--section-choose-ctas-max);
	margin-inline: auto;
}

.section-choose__cta {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 80px;
	padding: 16px 20px;
	border-radius: 8px;
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.section-choose__cta:hover,
.section-choose__cta:focus-visible {
	color: #ffffff;
	opacity: 0.92;
	transform: translateY(-1px);
}

.section-choose__cta--visit {
	background-color: var(--section-choose-cta-visit);
}

.section-choose__cta--stay {
	background-color: var(--section-choose-cta-stay);
}

.section-choose__cta-icon-wrap {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}

.section-choose__cta-icon {
	display: block;
	width: 32px;
	height: 32px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.section-choose__cta-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.section-choose__cta-title {
	font-size: 20px;
	font-weight: var(--fw-semibold);
	line-height: 1.35;
	letter-spacing: 0em;
	color: #ffffff;
}

.section-choose__cta-sub {
	font-size: 13px;
	font-weight: var(--fw-regular);
	line-height: 1.45;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.92);
}

.section-choose__cta-arrow {
	flex-shrink: 0;
	font-size: 28px;
	font-weight: var(--fw-regular);
	line-height: 1;
	color: #ffffff;
}

/* ==========================================================================
   Section 02 — Worry（背景B）
   ========================================================================== */

.section-worry__stack {
	display: none;
}

.section-worry__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 24px 32px;
	align-items: center;
	max-width: 960px;
	margin-inline: auto;
}

.section-worry__col--left,
.section-worry__col--right {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.section-worry__col--center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.section-worry__person-img {
	display: block;
	width: auto;
	max-width: 220px;
	height: auto;
}

.section-worry__card {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 24px;
	background: #ffffff;
	border: none;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(86, 125, 139, 0.12);
}

.section-worry__card--tail-right::after,
.section-worry__card--tail-left::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	transform: translateY(-50%);
}

.section-worry__card--tail-right::after {
	right: -18px;
	border-left-color: #ffffff;
	filter: drop-shadow(4px 0 4px rgba(86, 125, 139, 0.06));
}

.section-worry__card--tail-left::after {
	left: -18px;
	border-right-color: #ffffff;
	filter: drop-shadow(-4px 0 4px rgba(86, 125, 139, 0.06));
}

.section-worry__card-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
}

.section-worry__icon-img {
	display: block;
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.section-worry__card-body {
	min-width: 0;
}

.section-worry__card-heading {
	margin: 0;
	font-size: 16px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.06em;
	line-height: 1.7;
	color: #567d8b;
}

.section-worry__card-sub {
	margin: 8px 0 0;
	font-size: 13px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.04em;
	line-height: 1.7;
	color: #6b848e;
}

.section-worry__close {
	margin-top: 48px;
	font-size: 24px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.2em;
	text-align: center;
	color: var(--color-main);
}

/* ==========================================================================
   Section 03 — Performance（背景A）
   ========================================================================== */

.section-performance {
	background-color: #ffffff;
	padding-top: 0;
	padding-bottom: 0;
}

.lp-section.section-performance {
	padding-top: 0;
}

.section-performance__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	min-height: 0;
}

.section-performance__content {
	display: flex;
	align-items: center;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: var(--container-padding);
	padding-left: var(--container-padding);
	padding-left: max(
		var(--container-padding),
		calc((100vw - var(--container-max)) / 2 + var(--container-padding))
	);
	background: linear-gradient(to right, #ffffff 77%, #d2e7ec 100%);
}

.section-performance__inner {
	width: 100%;
	max-width: 560px;
}

.section-performance__title {
	margin: 0;
	font-size: 36px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.2em;
	line-height: 1.6;
	color: #567d8b;
}

.section-performance__body {
	margin-top: 32px;
	font-size: 14px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.05em;
	line-height: 1.8;
	color: #1f2321;
}

.section-performance__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
	padding: 20px 40px;
	background: linear-gradient(to right, #6f8f9a 0%, #7fa2ad 50%, #2f6672 100%);
	color: #ffffff;
	font-size: 24px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.05em;
	line-height: 1.4;
	text-decoration: none;
	border-radius: 8px;
	transition: opacity 0.2s ease;
}

.section-performance__btn:hover {
	color: #ffffff;
	opacity: 0.92;
}

.section-performance__btn-arrow {
	line-height: 1;
}

.section-performance__visual {
	position: relative;
	min-height: 320px;
	overflow: hidden;
}

.section-performance__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	object-position: center;
}

/* ==========================================================================
   Section 04 — Stadium（背景B）
   ========================================================================== */

.section-stadium {
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.section-stadium__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.section-stadium__brand {
	margin: 0;
	line-height: 0;
}

.section-stadium__brand-logo {
	display: block;
	width: auto;
	max-width: 160px;
	max-height: 28px;
	height: auto;
	object-fit: contain;
	object-position: left center;
}

.section-stadium__name {
	margin: 8px 0 0;
	font-size: var(--heading-xl-size);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.2em;
	line-height: 1.3;
	color: #567d8b;
}

.section-stadium__headline {
	margin: 24px 0 0;
	font-size: 36px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #567d8b;
}

.section-stadium__body {
	margin-top: 16px;
}

.section-stadium__body-line {
	margin: 0;
	font-size: 14px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.05em;
	line-height: 1.8;
	color: #1f2321;
}

.section-stadium__body-line + .section-stadium__body-line {
	margin-top: 0.25em;
}

.section-stadium__building {
	margin-top: 24px;
}

.section-stadium__building-img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid rgba(86, 125, 139, 0.35);
	border-radius: 4px;
}

.section-stadium__intro {
	margin: 0;
	font-size: 20px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.08em;
	line-height: 1.6;
	color: #567d8b;
	text-align: center;
}

.section-stadium__intro-text {
	color: #567d8b;
}

.section-stadium__deco-num {
	font-size: 40px;
	font-weight: var(--fw-medium);
	color: #567d8b;
	vertical-align: baseline;
	margin-inline: 2px;
}

.section-stadium__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 24px;
	padding: 0;
	list-style: none;
}

.section-stadium__card {
	padding: 16px;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(31, 35, 33, 0.06);
}

.section-stadium__card-head {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.section-stadium__card-num {
	font-size: 28px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.05em;
	color: #567d8b;
	line-height: 1;
}

.section-stadium__card-title {
	margin: 0;
	font-size: 20px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.05em;
	line-height: 1.4;
	color: #1f2321;
}

.section-stadium__card-visual {
	margin-top: 12px;
	overflow: hidden;
	border-radius: 4px;
}

.section-stadium__card-img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.section-stadium__card-desc {
	margin: 12px 0 0;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.04em;
	line-height: 1.7;
	color: #1f2321;
}

/* ==========================================================================
   Section 05 — CTA Block
   ========================================================================== */

.section-cta-block {
	padding-top: 0;
	padding-bottom: 0;
	background: #fafeff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-block: 1px solid var(--color-border);
}

.section-cta-block__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 32px 40px;
	padding-block: 30px;
}

.section-cta-block__title {
	font-size: 32px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: var(--color-main);
}

.section-cta-block__gift {
	margin-top: 8px;
	font-size: 14px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.08em;
	color: var(--color-main);
}

.section-cta-block__note {
	margin-top: 4px;
	font-size: 12px;
	letter-spacing: 0.04em;
	line-height: 1.8;
	color: var(--color-main);
	opacity: 1;
}

.section-cta-block__btn {
	border-radius: 9999px;
}

.section-cta-block__action {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: fit-content;
	max-width: 100%;
}

.section-cta-block__btn-top {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: var(--color-main);
	text-align: center;
}

.section-cta-block__badge-left {
	position: absolute;
	top: -22px;
	left: -68px;
	z-index: 2;
	display: block;
	width: auto;
	max-height: 89px;
}

.section-cta-block__badge-right {
	position: absolute;
	top: -16px;
	right: -76px;
	z-index: 2;
	display: block;
	width: auto;
	max-height: 99px;
	pointer-events: none;
}

.section-cta-block__btn-sub {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: var(--color-main);
	text-align: center;
}

.section-cta-block__badge-top {
	display: none;
	font-size: 16px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.11em;
	color: var(--color-main);
}

.section-cta-block--performance .section-cta-block__inner,
.section-cta-block--voice .section-cta-block__inner {
	grid-template-columns: 1fr auto;
}

.section-cta-block--performance .section-cta-block__action,
.section-cta-block--voice .section-cta-block__action {
	min-width: 240px;
}

/* ==========================================================================
   Section 06 — Voice（背景B）
   ========================================================================== */

.section-voice {
	padding-top: 0;
}

.section-voice__list {
	margin: 48px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.section-voice__item {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e2e6e4;
	border-radius: 8px;
}

.section-voice__media {
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}

.section-voice__image {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: top;
}

.section-voice__body {
	padding: 0 24px 24px;
}

.section-voice__heading {
	margin: 0;
	padding-top: 15px;
	font-size: 14px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.05em;
	line-height: 1.6;
	color: #567d8b;
}

.section-voice__quote {
	margin: 12px 0 0;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.04em;
	line-height: 1.8;
	color: #1f2321;
}

.section-voice__profile {
	margin: 12px 0 0;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #567d8b;
	text-align: right;
}

/* ==========================================================================
   Section 07 — Structure（背景B）
   ========================================================================== */

.section-structure {
	padding-top: 0;
}

/* 上段: Section03 の左右反転（左画像フルブリード・右コンテンツは右端をコンテナに揃える） */
.section-structure__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	margin-top: 0;
}

.section-structure__visual {
	display: flex;
	min-height: 100%;
	overflow: hidden;
}

.section-structure__image {
	flex: 1 1 auto;
	display: block;
	width: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
}

.section-structure__content {
	display: flex;
	align-items: center;
	padding-top: 48px;
	padding-bottom: 48px;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
	padding-right: max(
		var(--container-padding),
		calc((100vw - var(--container-max)) / 2 + var(--container-padding))
	);
	background-color: #fafeff;
}

.section-structure__inner {
	width: 100%;
	max-width: 520px;
	margin-left: auto;
}

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

.section-structure__feature {
	display: flex;
	align-items: center;
	gap: 20px;
}

.section-structure__feature:not(:last-child) {
	padding-bottom: 36px;
	border-bottom: 1px solid var(--color-border);
}

.section-structure__feature + .section-structure__feature {
	margin-top: 36px;
}

.section-structure__feature-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: #567d8b;
}

.section-structure__feature-icon-svg {
	display: block;
	width: 32px;
	height: 32px;
}

.section-structure__feature-icon-img {
	display: block;
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.section-structure__feature-title {
	margin: 0;
	font-size: 24px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.12em;
	line-height: 1.5;
	color: #567d8b;
}

.section-structure__feature-desc {
	margin: 8px 0 0;
	font-size: 14px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.05em;
	line-height: 1.8;
	color: #1f2321;
}

/* 下段: 3カラムカード */
.section-structure .u-container {
	padding-top: 48px;
}

.section-structure__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.section-structure__cards-sp {
	display: none;
}

.section-structure__cards-sp-head {
	margin-bottom: 16px;
}

.section-structure__cards-sp-line {
	display: block;
	width: 40px;
	height: 2px;
	margin-bottom: 12px;
	background: linear-gradient(to right, #6f8f9a 0%, #567d8b 100%);
	border-radius: 1px;
}

.section-structure__cards-sp-title {
	margin: 0;
	font-size: 18px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #567d8b;
}

.section-structure__cards-sp-hint {
	margin: 6px 0 0;
	font-size: 11px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.12em;
	line-height: 1.4;
	color: #8aa3ab;
}

.section-structure__cards-scroll {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-padding-inline: var(--container-padding);
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.section-structure__cards-scroll::-webkit-scrollbar {
	display: none;
}

.section-structure__cards-scroll::after,
.section-air__cards-scroll::after,
.section-maintenance__cards-scroll::after,
.voice-layout-b__scroll::after,
.section-slider__scroll::after {
	content: "";
	flex: 0 0 var(--container-padding);
}

.section-structure__cards-scroll-item {
	flex: 0 0 86%;
}

.section-structure__cards-scroll-item .section-structure__card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.section-structure__card {
	background: #ffffff;
	border: 1px solid #e2e6e4;
	border-radius: 8px;
	overflow: hidden;
}

.section-structure__card-img-wrap {
	margin: 0;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
	background: #ffffff;
}

.section-structure__card-img {
	display: block;
	width: 100%;
	height: 240px;
	object-fit: cover;
	object-position: center;
}

.section-structure__card-body {
	padding: 20px 20px 24px;
}

.section-structure__card-head {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0;
}

.section-structure__card-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 2px 8px;
	border: 1px solid #567d8b;
	border-radius: 4px;
	font-size: 12px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: #567d8b;
	white-space: nowrap;
}

.section-structure__card-sep {
	flex-shrink: 0;
	align-self: stretch;
	width: 1px;
	margin: 0 12px;
	background-color: #e2e6e4;
}

.section-structure__card-title {
	margin: 0;
	min-width: 0;
	font-size: 16px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.06em;
	line-height: 1.4;
	color: #567d8b;
}

.section-structure__card-lead {
	margin: 16px 0 0;
	font-size: 14px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.05em;
	line-height: 1.7;
	color: #1f2321;
}

.section-structure__card-text {
	margin: 8px 0 0;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.04em;
	line-height: 1.8;
	color: #1f2321;
}

.section-structure__card-points {
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.section-structure__card-points li {
	position: relative;
	padding-left: 1em;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.04em;
	line-height: 1.8;
	color: #1f2321;
}

.section-structure__card-points li::before {
	content: "・";
	position: absolute;
	left: 0;
}

/* ==========================================================================
   Section 08 — Air（背景B）
   ========================================================================== */

.section-air {
	padding-top: 0;
}

.section-air .u-container {
	padding-top: 48px;
}

/* 中段: 数値ボックス + 図解 */
.section-air__main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 48px;
}

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

.section-air__stat {
	margin-bottom: 16px;
	padding: 12px 32px;
	background: linear-gradient(to right, #6f8f9a 0%, #7fa2ad 50%, #2f6672 100%);
	border-radius: 8px;
	text-align: center;
}

.section-air__stat:last-child {
	margin-bottom: 0;
}

.section-air__stat-label {
	margin: 0;
	font-size: 20px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: #ffffff;
}

.section-air__stat-value {
	margin: 8px 0 0;
	font-size: 48px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.06em;
	line-height: 1.2;
	color: #ffffff;
}

.section-air__diagram-img {
	display: block;
	width: 100%;
	height: auto;
}

/* 下段: 3列カード */
.section-air__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.section-air__card {
	background: #ffffff;
	border: 1px solid #e2e6e4;
	border-radius: 8px;
	overflow: hidden;
}

.section-air__card-img-wrap {
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}

.section-air__card-img {
	display: block;
	width: 100%;
	height: 240px;
	object-fit: cover;
	object-position: center;
}

.section-air__card-body {
	padding: 20px 20px 24px;
}

.section-air__card-head {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0;
}

.section-air__card-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 2px 8px;
	border: 1px solid #567d8b;
	border-radius: 4px;
	font-size: 12px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: #567d8b;
	white-space: nowrap;
}

.section-air__card-sep {
	flex-shrink: 0;
	align-self: stretch;
	width: 1px;
	margin: 0 12px;
	background-color: #e2e6e4;
}

.section-air__card-title {
	margin: 0;
	min-width: 0;
	font-size: 16px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.06em;
	line-height: 1.4;
	color: #567d8b;
}

.section-air__card-subtitle {
	margin: 16px 0 0;
	font-size: 14px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.05em;
	line-height: 1.7;
	color: #1f2321;
}

.section-air__card-text {
	margin: 8px 0 0;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.04em;
	line-height: 1.8;
	color: #1f2321;
}

.section-air__cards-sp {
	display: none;
}

.section-air__cards-sp-head {
	margin-bottom: 16px;
}

.section-air__cards-sp-line {
	display: block;
	width: 40px;
	height: 2px;
	margin-bottom: 12px;
	background: linear-gradient(to right, #6f8f9a 0%, #567d8b 100%);
	border-radius: 1px;
}

.section-air__cards-sp-title {
	margin: 0;
	font-size: 18px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #567d8b;
}

.section-air__cards-sp-hint {
	margin: 6px 0 0;
	font-size: 11px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.12em;
	line-height: 1.4;
	color: #8aa3ab;
}

.section-air__cards-scroll {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-padding-inline: var(--container-padding);
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.section-air__cards-scroll::-webkit-scrollbar {
	display: none;
}

.section-air__cards-scroll-item {
	flex: 0 0 86%;
}

.section-air__cards-scroll-item .section-air__card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* ==========================================================================
   Section 09 — Maintenance（背景B）
   ========================================================================== */

.section-maintenance {
	padding-top: 0;
}

.section-maintenance .u-container {
	padding-top: 48px;
}

/* 上段: ブルーカード3列 */
.section-maintenance__blocks {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 0 0 48px;
	padding: 0;
	list-style: none;
}

.section-maintenance__block {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 20px;
	background: linear-gradient(to right, #6f8f9a 0%, #7fa2ad 50%, #2f6672 100%);
	border-radius: 8px;
	text-align: center;
}

.section-maintenance__category {
	margin: 0;
	width: 100%;
	font-size: 20px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.12em;
	line-height: 1.5;
	color: #ffffff;
}

.section-maintenance__block-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	width: 100%;
	margin-top: 16px;
}

.section-maintenance__block-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-maintenance__block-icon-img {
	display: block;
	width: auto;
	max-width: 60px;
	height: auto;
	max-height: 60px;
	object-fit: contain;
}

.section-maintenance__value {
	margin: 0;
	font-size: 40px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.12em;
	line-height: 1.2;
	color: #ffffff;
}

.section-maintenance__sub {
	margin: 16px 0 0;
	width: 100%;
	font-size: 20px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.12em;
	line-height: 1.5;
	color: #ffffff;
}

/* 下段: 素材カード4列 */
.section-maintenance__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.section-maintenance__card {
	background: #ffffff;
	border: 1px solid #e2e6e4;
	border-radius: 8px;
	overflow: hidden;
}

.section-maintenance__card-img-wrap {
	overflow: hidden;
}

.section-maintenance__card-img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: center;
}

.section-maintenance__card-body {
	padding: 20px 16px 24px;
}

.section-maintenance__card-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2px 8px;
	border: 1px solid #567d8b;
	border-radius: 4px;
	font-size: 12px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: #567d8b;
}

.section-maintenance__card-title {
	margin: 12px 0 0;
	font-size: 24px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.06em;
	line-height: 1.4;
	color: #567d8b;
}

.section-maintenance__card-subtitle {
	margin: 8px 0 0;
	font-size: 14px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.05em;
	line-height: 1.7;
	color: #567d8b;
}

.section-maintenance__card-text {
	margin: 8px 0 0;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.04em;
	line-height: 1.8;
	color: #1f2321;
}

.section-maintenance__card-list {
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.section-maintenance__card-list li {
	position: relative;
	padding-left: 1em;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.04em;
	line-height: 1.8;
	color: #1f2321;
}

.section-maintenance__card-list li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.section-maintenance__cards-sp {
	display: none;
}

.section-maintenance__cards-sp-head {
	margin-bottom: 16px;
}

.section-maintenance__cards-sp-line {
	display: block;
	width: 40px;
	height: 2px;
	margin-bottom: 12px;
	background: linear-gradient(to right, #6f8f9a 0%, #567d8b 100%);
	border-radius: 1px;
}

.section-maintenance__cards-sp-title {
	margin: 0;
	font-size: 18px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #567d8b;
}

.section-maintenance__cards-sp-hint {
	margin: 6px 0 0;
	font-size: 11px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.12em;
	line-height: 1.4;
	color: #8aa3ab;
}

.section-maintenance__cards-scroll {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-padding-inline: var(--container-padding);
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.section-maintenance__cards-scroll::-webkit-scrollbar {
	display: none;
}

.section-maintenance__cards-scroll-item {
	flex: 0 0 86%;
}

.section-maintenance__cards-scroll-item .section-maintenance__card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* ==========================================================================
   Section 10 — Numbers（背景B）
   ========================================================================== */

.section-numbers {
	padding-top: 0;
}

.section-numbers .u-container {
	padding-top: 48px;
}

/* リード（時間が経つほど広がる差） */
.section-numbers__lead {
	margin-bottom: 48px;
}

.section-numbers__lead-head {
	display: flex;
	align-items: center;
	gap: 24px;
}

.section-numbers__lead-title {
	margin: 0;
	flex-shrink: 0;
	font-size: 36px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #1f2321;
}

.section-numbers__lead-line {
	flex: 1;
	min-width: 40px;
	height: 1px;
	background-color: #e2e6e4;
}

.section-numbers__lead-sub {
	margin: 0;
	font-size: 20px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.08em;
	line-height: 1.8;
	color: #567d8b;
}

.section-numbers__lead-sub:first-of-type {
	margin-top: 16px;
}

.section-numbers__lead-sub + .section-numbers__lead-sub {
	margin-top: 0;
}

/* 比較ボックス2枚 */
.section-numbers__compare {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 16px;
	margin-bottom: 48px;
}

.section-numbers__compare-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 24px;
	align-items: stretch;
	flex: 1;
	max-width: 520px;
	padding: 24px 28px;
	background: #ffffff;
	border: 1px solid #e2e6e4;
	border-radius: 8px;
}

.section-numbers__compare-aside {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	width: 100px;
	text-align: center;
}

.section-numbers__compare-period-sub {
	margin: 8px 0 0;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #8a9290;
}

.section-numbers__compare-badge {
	display: inline-block;
	padding: 6px 20px;
	background-color: #567d8b;
	border-radius: 4px;
	font-size: 20px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.12em;
	line-height: 1.4;
	color: #ffffff;
}

.section-numbers__compare-content {
	min-width: 0;
}

.section-numbers__compare-title {
	margin: 0;
	font-size: 24px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: #567d8b;
}

.section-numbers__compare-list {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.section-numbers__compare-list li {
	position: relative;
	padding-left: 1em;
	font-size: 14px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.05em;
	line-height: 1.8;
	color: #567d8b;
}

.section-numbers__compare-list li::before {
	content: "・";
	position: absolute;
	left: 0;
	color: #567d8b;
}

.section-numbers__compare-list li + li {
	margin-top: 4px;
}

.section-numbers__compare-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding-top: 16px;
	width: 100px;
}

.section-numbers__compare-icon-img {
	display: block;
	width: 50px;
	height: auto;
	object-fit: contain;
}

.section-numbers__compare-arrow {
	flex-shrink: 0;
	align-self: center;
	font-size: 24px;
	font-weight: var(--fw-regular);
	line-height: 1;
	color: #567d8b;
}

/* 素材ギャラリー5列 */
.section-numbers__gallery {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin: 0 0 48px;
	padding: 0;
	list-style: none;
}

.section-numbers__gallery-item {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 4px;
}

.section-numbers__gallery-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-numbers__gallery-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(200, 200, 200, 0.7);
    font-size: 20px;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    line-height: 1.6;
    text-align: center;
    color: #567d8b;
}

/* お客様の声（Section 10） */
.section-owner-voice .u-container {
	padding-top: 32px;
}

/* レイアウト切替: section に voice-layout-a / voice-layout-b */
.section-owner-voice.voice-layout-a .voice-layout-b {
	display: none;
}

.section-owner-voice.voice-layout-b .voice-layout-a {
	display: none;
}

/* --- パターンA: 写真左・コメント右 --- */
.voice-layout-a__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 880px;
	margin-inline: auto;
}

.voice-layout-a__card {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 20px 24px;
	background-color: #ffffff;
	border-radius: 24px;
	box-shadow: 0 6px 24px rgba(86, 125, 139, 0.08);
}

.voice-layout-a__photo {
	flex: 0 0 40%;
	max-width: 340px;
	min-width: 0;
}

.voice-layout-a__main {
	flex: 1 1 60%;
	min-width: 0;
	padding-block: 4px;
}

.voice-layout-a__quote {
	margin: 0;
}

.voice-layout-a__quote-text {
	margin: 0;
	font-size: 20px;
	font-weight: var(--fw-demibold);
	letter-spacing: 0.04em;
	line-height: 1.6;
	color: #3d5a64;
}

.voice-layout-a__quote-open,
.voice-layout-a__quote-close {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2.4em;
	font-weight: 400;
	line-height: 0;
	color: #b8d0d8;
	vertical-align: -0.12em;
}

.voice-layout-a__quote-open {
	margin-right: 0.08em;
}

.voice-layout-a__quote-close {
	margin-left: 0.04em;
}

.voice-layout-a__profile {
	margin: 10px 0 0;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.06em;
	line-height: 1.4;
	color: #8aa3ab;
}

.voice-layout-a__photo-img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 12px;
	object-fit: cover;
}

/* --- パターンB: 写真上・コメント下 --- */
.voice-layout-b__grid {
	display: none;
}

.voice-layout-b__scroll-wrap {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	overflow: visible;
}

.voice-layout-b__scroll {
	display: flex;
	gap: var(--lp-scroll-card-gap-sp);
	overflow-x: auto;
	overflow-y: visible;
	overscroll-behavior-x: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	width: 100%;
	padding: 2px 0;
	scroll-padding-left: var(--lp-edge-scroll-inset);
	scroll-padding-right: 0;
}

.voice-layout-b__scroll::-webkit-scrollbar {
	display: none;
}

.voice-layout-b__scroll-item {
	flex: 0 0 min(300px, calc(100vw - var(--container-padding) - 48px));
}

@media (min-width: 769px) {
	.voice-layout-b__scroll-wrap {
		width: auto;
		margin-left: 0;
	}

	.voice-layout-b__scroll-item:first-child {
		margin-left: 0;
	}

	.voice-layout-b__scroll {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 24px;
		overflow: visible;
		padding-inline: 0;
	}

	.voice-layout-b__scroll::after {
		content: none;
	}

	.voice-layout-b__scroll-item {
		flex: none;
		width: auto;
	}
}

.voice-layout-b__card {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	border-radius: 24px;
	box-shadow: 0 6px 24px rgba(86, 125, 139, 0.08);
	overflow: hidden;
}

.voice-layout-b__photo {
	flex: none;
}

.voice-layout-b__photo-img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.voice-layout-b__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px 22px 24px;
}

.voice-layout-b__tag {
	display: inline-block;
	align-self: flex-start;
	margin: 0 0 12px;
	padding: 4px 12px;
	font-size: 11px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.1em;
	line-height: 1.4;
	color: #567d8b;
	background-color: #edf4f6;
	border-radius: 999px;
}

.voice-layout-b__quote {
	margin: 0;
}

.voice-layout-b__quote-text {
	margin: 0;
	font-size: 18px;
	font-weight: var(--fw-demibold);
	letter-spacing: 0.04em;
	line-height: 1.65;
	color: #3d5a64;
}

.voice-layout-b__quote-open,
.voice-layout-b__quote-close {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2.2em;
	font-weight: 400;
	line-height: 0;
	color: #b8d0d8;
	vertical-align: -0.12em;
}

.voice-layout-b__quote-open {
	margin-right: 0.08em;
}

.voice-layout-b__quote-close {
	margin-left: 0.04em;
}

.voice-layout-b__meta {
	margin-top: auto;
	padding-top: 16px;
}

.voice-layout-b__meta-name {
	margin: 0;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.06em;
	line-height: 1.4;
	color: #8aa3ab;
}

.voice-layout-b__meta-years {
	margin: 4px 0 0;
	font-size: 11px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.06em;
	line-height: 1.4;
	color: #a8bcc3;
}

/* オーナーの声（旧 Section 10） */
.section-numbers__voice {
	display: grid;
	grid-template-columns: minmax(140px, 200px) 1fr minmax(200px, 280px);
	gap: 32px;
	align-items: center;
	margin-bottom: 48px;
	padding: 40px 32px;
	background-color: #f4f8fa;
	border-radius: 8px;
}

.section-numbers__voice-label {
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.12em;
	line-height: 1.4;
	color: #567d8b;
}

.section-numbers__voice-illust {
	display: block;
	width: 100%;
	max-width: 160px;
	height: auto;
}

.section-numbers__quote {
	margin: 0;
	font-size: 18px;
	font-weight: var(--fw-demibold);
	letter-spacing: 0.1em;
	line-height: 1.8;
	color: #567d8b;
}

.section-numbers__quote::before,
.section-numbers__quote::after {
	display: inline;
}

.section-numbers__quote::before {
	content: "\201C";
}

.section-numbers__quote::after {
	content: "\201D";
}

.section-numbers__voice-profile {
	margin: 16px 0 0;
	font-size: 14px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: #567d8b;
}

.section-numbers__voice-house-img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
	object-fit: cover;
}

/* ==========================================================================
   Section 11 — Slider（展示場）
   ========================================================================== */

.section-slider {
	overflow: visible;
	max-width: none;
}

.section-slider > .u-container {
	overflow: visible;
}

.section-slider__title {
	margin: 0 0 48px;
	font-family: var(--font-base);
	font-size: 36px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.2em;
	line-height: 1.5;
	text-align: center;
	color: #567d8b;
}

.section-slider__scroll-wrap {
	width: 100%;
	max-width: none;
	padding: 0;
	overflow: visible;
}

.section-slider__scroll {
	display: flex;
	gap: var(--lp-scroll-card-gap-sp);
	overflow-x: auto;
	overflow-y: visible;
	overscroll-behavior-x: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	width: 100%;
	max-width: none;
	padding: 2px 0;
	scroll-padding-left: var(--lp-edge-scroll-inset);
	scroll-padding-right: 0;
}

.section-slider__scroll::-webkit-scrollbar {
	display: none;
}

.section-slider__scroll-item:first-child {
	margin-left: var(--lp-edge-scroll-inset);
}

.section-slider__scroll-item {
	flex: 0 0 min(300px, calc(100vw - var(--lp-edge-scroll-inset) - var(--lp-scroll-card-gap-sp) - 32px));
}

@media (min-width: 769px) {
	.section-slider__scroll {
		gap: var(--lp-scroll-card-gap-pc);
	}

	.section-slider__scroll-item {
		flex: 0 0 var(--lp-scroll-card-width-pc);
	}
}

.section-slider__card {
	display: flex;
	flex: 1;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e2e6e4;
	border-radius: 8px;
}

.section-slider__media {
	height: 200px;
	overflow: hidden;
	background: #d2e7ec;
}

.section-slider__card-image {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
	background: #d2e7ec;
}

.section-slider__body {
	flex: 1;
	padding: 16px;
}

.section-slider__name {
	margin: 0;
	font-size: 14px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: #567d8b;
}

.section-slider__address {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 8px 0 0;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #1f2321;
}

.section-slider__address-text {
	min-width: 0;
}

.section-slider .icon-pin {
	flex-shrink: 0;
	font-size: 12px;
	line-height: 1;
	color: #567d8b;
}

/* ==========================================================================
   Section 12 — Experience（体感メッセージ＋建物写真）
   ========================================================================== */

.lp-section.section-experience {
	padding-bottom: 0;
}

.lp-section.section-campaign {
	padding-top: 48px;
	scroll-margin-top: var(--site-header-height);
}

.section-experience__title {
	margin: 0 0 40px;
	font-size: 36px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.2em;
	line-height: 1.5;
	text-align: center;
	color: #567d8b;
}

.section-experience__visual {
	width: 100%;
	overflow: hidden;
}

.section-experience__building {
	display: block;
	width: 100%;
	height: 400px;
	object-fit: cover;
	object-position: center;
}

/* ==========================================================================
   Section 12 — Campaign（ご来場キャンペーン）
   ========================================================================== */

.section-campaign__head {
	margin: 0;
	text-align: center;
}

.section-campaign__title,
.section-campaign__sub {
	margin: 0;
	font-size: var(--heading-lg-size);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.2em;
	line-height: 1.4;
	color: #567d8b;
}

.section-campaign__sub {
	margin-top: 0;
}

.section-campaign__amazon {
	max-width: 600px;
	margin: 32px auto 0;
}

.section-campaign__amazon-img {
	display: block;
	width: 100%;
	height: auto;
}

.section-campaign__notes {
	max-width: 600px;
	margin: 0 auto;
	text-align: left;
}

.section-campaign__note {
	margin: 0;
	font-size: 16px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.05em;
	line-height: 2;
	color: #1f2321;
}

.section-campaign__note + .section-campaign__note {
	margin-top: 0;
}

/* ==========================================================================
   Section 13 — Form（背景A）
   ========================================================================== */

.section-form__inner {
	max-width: 720px;
	margin-inline: auto;
	padding: 40px;
	background: #fafeff;
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.section-form__inner label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.06em;
}

.section-form__inner input[type="text"],
.section-form__inner input[type="email"],
.section-form__inner input[type="tel"],
.section-form__inner input[type="url"],
.section-form__inner textarea,
.section-form__inner select {
	width: 100%;
	margin-bottom: 20px;
	padding: 12px 16px;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	font-family: var(--font-base);
	font-size: 16px;
	background: #ffffff;
}

.section-form__inner .wpcf7-submit,
.section-form__inner input[type="submit"] {
	display: block;
	width: 100%;
	max-width: 400px;
	margin: 24px auto 0;
	padding: 18px 32px;
	background: linear-gradient(to right, #6f8f9a 0%, #7fa2ad 50%, #2f6672 100%);
	border: none;
	border-radius: 4px;
	color: #fff;
	font-size: 20px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.1em;
	cursor: pointer;
}

.section-form__placeholder {
	font-size: 14px;
	text-align: center;
	color: var(--color-main);
}

.privacy-box {
	height: 200px;
	overflow-y: scroll;
	border: 1px solid #e2e6e4;
	padding: 16px;
	font-size: 12px;
	line-height: 1.8;
	color: #1f2321;
	margin-bottom: 16px;
	border-radius: 4px;
	background: #ffffff;
}

.privacy-box p {
	margin: 0 0 12px;
}

.privacy-box p:last-child {
	margin-bottom: 0;
}

.privacy-agree {
	font-size: 14px;
	margin-bottom: 24px;
}

.section-form__inner .wpcf7-acceptance {
	margin-bottom: 24px;
}

.section-form__inner .wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	font-weight: var(--fw-regular);
	cursor: pointer;
}

.section-form__inner .wpcf7-acceptance input[type="checkbox"] {
	flex-shrink: 0;
	margin-top: 4px;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
	background: #567d8b;
	color: #ffffff;
	padding-block: 20px;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 24px;
}

.site-footer__logo-img {
	display: block;
	width: 140px;
	height: auto;
}

.site-footer__company {
	margin: 0;
	font-size: 16px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.12em;
	line-height: 1.4;
	color: #ffffff;
}

@media (min-width: 769px) {
	.site-footer__logo-img {
		width: 160px;
	}

	.site-footer__company {
		font-size: 15px;
	}
}

.site-footer__address {
	margin: 4px 0 0;
	font-size: 12px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.1em;
	line-height: 1.6;
	color: #ffffff;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__links li + li {
	margin-top: 0;
}

.site-footer__links a {
	font-size: 13px;
	font-weight: var(--fw-regular);
	letter-spacing: 0.05em;
	line-height: 1.4;
	white-space: nowrap;
	color: #ffffff;
	text-decoration: none;
}

.site-footer__links a:hover {
	opacity: 0.85;
}

.site-footer__sns {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-shrink: 0;
}

.site-footer__sns-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #ffffff;
}

.site-footer__sns-icon {
	display: block;
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.site-footer__sns-line {
	display: flex;
	align-items: center;
}

.site-footer__sns-line .line-it-button {
	display: inline-block !important;
}

.site-footer__copyright {
	text-align: center;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.7);
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 12px;
}

/* ==========================================================================
   Responsive — SP（768px 以下）
   ========================================================================== */

@media (max-width: 768px) {
	.u-br-sp {
		display: block;
	}

	:root {
		--container-padding: var(--container-padding-sp);
		--section-padding-y: var(--section-padding-y-sp);
		--section-title-size: var(--section-title-size-sp);
		--section-title-ls: var(--section-title-ls-sp);
		--heading-lg-size: var(--heading-lg-size-sp);
		--heading-xl-size: var(--heading-xl-size-sp);
		--section-header-margin-bottom: 13px;
		--section-header-padding-y-sp: 15px;
		--section-header-sub-margin-top: 6px;
		--section-leaf-deco: url("../images/section-header-bg.webp");
		--cta-heading-size: 22px;
		--cta-btn-text-size: 20px;
	}

	.lp-section {
		padding-top: var(--section-padding-y);
		padding-bottom: var(--section-padding-y);
	}

	.lp-section.section-performance {
		padding-top: 0;
		padding-bottom: 0;
	}

	.lp-section.section-worry {
		padding-top: 12px;
		background: linear-gradient(
			180deg,
			#ffffff 0%,
			#ffffff 148px,
			#fafeff 148px,
			#fafeff 100%
		);
	}

	.lp-section.section-structure {
		padding-top: 0;
	}

	.lp-section.section-owner-voice {
		padding-top: 20px;
	}

	.section-owner-voice > .section-header--with-bg .section-header__inner {
		padding-top: 18px;
	}

	.section-header {
		margin-bottom: var(--section-header-margin-bottom);
	}

	.section-header--with-bg {
		background-image: none !important;
	}

	.section-header--with-bg .section-header__inner {
		padding-block: var(--section-header-padding-y-sp);
	}

	.section-header__inner {
		text-align: left;
	}

	.section-header__title,
	.section-header__sub {
		text-align: left;
	}

	.section-worry .section-header__title,
	.section-worry .section-header__sub {
		text-align: center;
	}

	.section-structure > .section-header--with-bg,
	.section-air > .section-header--with-bg,
	.section-maintenance > .section-header--with-bg,
	.section-owner-voice > .section-header--with-bg {
		background-color: transparent;
	}

	.section-header--has-label .section-header__label {
		display: block;
		margin: 0 0 8px;
	}

	.section-header__label-text {
		font-size: 11px;
		font-weight: var(--fw-semibold);
		letter-spacing: 0.12em;
		line-height: 1.4;
		color: #8aa3ab;
	}

	.section-structure {
		background-color: #f7fafb !important;
	}

	.section-air {
		background-color: #ffffff !important;
	}

	.section-maintenance {
		background-color: #f7fafb !important;
	}

	.section-owner-voice {
		background-color: #ffffff !important;
	}

	.section-structure > .section-header--with-bg,
	.section-air > .section-header--with-bg,
	.section-maintenance > .section-header--with-bg,
	.section-owner-voice > .section-header--with-bg {
		position: relative;
		overflow: hidden;
	}

	.section-structure > .section-header--with-bg::before,
	.section-air > .section-header--with-bg::before,
	.section-maintenance > .section-header--with-bg::before,
	.section-owner-voice > .section-header--with-bg::before {
		content: "";
		position: absolute;
		width: 110px;
		height: 110px;
		background: var(--section-leaf-deco) no-repeat center / contain;
		opacity: 0.14;
		pointer-events: none;
	}

	.section-structure > .section-header--with-bg::before,
	.section-maintenance > .section-header--with-bg::before {
		top: 0;
		right: -12px;
	}

	.section-air > .section-header--with-bg::before,
	.section-owner-voice > .section-header--with-bg::before {
		bottom: 0;
		left: -12px;
	}

	.section-header__line {
		display: none;
	}

	.section-header__line--top {
		margin-bottom: 12px;
	}

	.section-header__line--bottom {
		margin-top: 12px;
	}

	.section-header__title,
	.section-header--lg .section-header__title,
	.section-header--semibold .section-header__title {
		letter-spacing: var(--section-title-ls-sp);
	}

	.section-header--lg .section-header__title {
		font-size: var(--heading-lg-size-sp);
		letter-spacing: 0.2em;
	}

	.section-header__sub {
		font-size: 13px;
	}

	.section-structure__feature-desc {
		display: none;
	}

	.section-structure__feature:not(:last-child) {
		padding-bottom: 20px;
	}

	.section-structure__feature + .section-structure__feature {
		margin-top: 20px;
	}

	.section-structure__features,
	.section-structure__feature,
	.section-structure__feature-text,
	.section-structure__feature-title,
	.section-air__stat,
	.section-air__card-body,
	.section-maintenance__block,
	.section-maintenance__card-body,
	.voice-layout-a__main,
	.voice-layout-b__body {
		text-align: left;
	}

	.section-air__stat {
		padding: 10px 16px;
		text-align: left;
	}

	.section-air__stat-value {
		font-size: 36px;
	}

	.section-maintenance__block-row {
		justify-content: flex-start;
	}

	.u-container {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.section-slider__scroll-wrap {
		max-width: none;
	}

	:root {
		--site-header-height: 56px;
		--site-header-logo-height: 25px;
		--site-header-cta-width: 140px;
		--site-header-cta-height: 48px;
		--site-header-cta-display-height: 72px;
		--site-header-cta-overhang: 10px;
	}

	.site-header__inner {
		gap: 8px;
		min-height: var(--site-header-height);
		padding-block: 8px;
		overflow: visible;
	}

	.site-header__logo {
		height: var(--site-header-logo-height);
	}

	.site-header__cta-img {
		max-width: min(var(--site-header-cta-width), 52vw);
		max-height: var(--site-header-cta-display-height);
	}

	body.is-lp-front .fv {
		min-height: min(
			var(--fv-height-sp),
			calc((100svh - var(--site-header-height)) * var(--fv-height-sp-ratio))
		);
	}

	.fv {
		height: min(
			var(--fv-height-sp),
			calc((100svh - var(--site-header-height)) * var(--fv-height-sp-ratio))
		);
		min-height: min(
			var(--fv-height-sp),
			calc((100svh - var(--site-header-height)) * var(--fv-height-sp-ratio))
		);
		padding-top: 0;
		padding-bottom: 0;
		background-image: var(--fv-bg-image, none);
		background-position: var(--fv-bg-position-pc);
		background-size: cover;
	}

	.fv__overlay {
		background: none;
	}

	.fv__reservation-badge {
		top: calc(var(--site-header-cta-overhang) + 12px);
		right: var(--container-padding);
		left: auto;
		display: block;
	}

	.fv__reservation-badge-img {
		width: var(--fv-reservation-badge-size-sp);
		max-width: min(var(--fv-reservation-badge-size-sp), 30vw);
		height: auto;
		object-fit: contain;
		filter: drop-shadow(0 6px 16px rgba(9, 31, 55, 0.12));
	}

	.fv__hero {
		position: relative;
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
		justify-content: start;
		width: 100%;
		max-width: 100%;
		min-height: auto;
		height: auto;
		margin-inline: 0;
		padding-top: var(--fv-offset-top-sp);
		padding-bottom: 24px;
	}

	body.is-lp-front .fv__hero {
		padding-top: var(--fv-offset-top-sp);
		padding-bottom: 24px;
	}

	.fv__hero.u-container {
		padding-inline: 0;
	}

	.fv__content {
		position: relative;
		right: auto;
		bottom: auto;
		left: auto;
		z-index: 2;
		max-width: min(100%, 320px);
		padding: 0 var(--container-padding);
		background: none;
		border-radius: 0;
	}

	.fv__content::before {
		content: none;
	}

	.fv__catch {
		margin: 0 0 14px;
		font-size: 34px;
		font-weight: var(--fw-semibold);
		letter-spacing: 0.08em;
		line-height: 1.35;
		color: var(--fv-text-color);
		white-space: normal;
		text-shadow: var(--fv-text-shadow);
	}

	.fv__catch-wave-img {
		width: var(--fv-catch-wave-width-sp);
	}

	.fv__sub {
		display: block;
		font-size: 14px;
		font-weight: var(--fw-semibold);
		letter-spacing: 0.05em;
		line-height: 1.75;
	}

	.fv__body {
		display: none;
	}

	.fv__icons {
		display: none;
	}

	.gift-float {
		display: none;
	}

	.section-choose {
		display: none;
	}

	.section-badges {
		--section-badges-gap: 24px;
	}

	.section-badges__grid {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		grid-template-rows: auto auto;
		gap: 24px var(--section-badges-gap);
		padding: 20px var(--container-padding);
	}

	.section-badges__item:nth-child(1) {
		grid-column: 1;
		grid-row: 1;
	}

	.section-badges__rule:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
	}

	.section-badges__item:nth-child(3) {
		grid-column: 3;
		grid-row: 1;
	}

	.section-badges__rule:nth-child(4) {
		display: none;
	}

	.section-badges__item:nth-child(5) {
		grid-column: 1;
		grid-row: 2;
	}

	.section-badges__rule:nth-child(6) {
		grid-column: 2;
		grid-row: 2;
	}

	.section-badges__item:nth-child(7) {
		grid-column: 3;
		grid-row: 2;
	}

	.section-badges__item {
		flex: none;
	}

	.section-badges__img {
		max-width: 180px;
	}

	.section-worry__layout--pc {
		display: none;
	}

	.section-worry__stack {
		display: flex;
		flex-direction: column;
		gap: 8px;
		max-width: 100%;
		margin-inline: auto;
	}

	.section-worry__person-wrap {
		display: flex;
		justify-content: center;
		margin-bottom: 4px;
	}

	.section-worry__person-img {
		max-width: 140px;
	}

	.section-worry__stack .section-worry__card {
		align-items: center;
		padding: 10px 14px;
		gap: 10px;
		border-radius: 10px;
		box-shadow: 0 2px 10px rgba(86, 125, 139, 0.08);
	}

	.section-worry__stack .section-worry__card-icon,
	.section-worry__stack .section-worry__icon-img {
		width: 36px;
		height: 36px;
	}

	.section-worry__stack .section-worry__card-heading {
		font-size: 14px;
		line-height: 1.45;
	}

	.section-worry__stack .section-worry__card-sub {
		display: none;
	}

	.section-worry__card--tail-right::after,
	.section-worry__card--tail-left::after {
		display: none;
	}

	.section-voice__list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.section-worry__close {
		margin-top: 24px;
		font-size: 16px;
		letter-spacing: 0.12em;
	}

	.section-performance__grid,
	.section-stadium__grid,
	.section-structure__grid,
	.section-air__main {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.section-air__stats-col {
		order: 1;
	}

	.section-air__diagram {
		order: 2;
	}

	.section-air .u-container {
		padding-top: 10px;
	}

	.section-air__main {
		display: none;
	}

	.section-air__cards--pc {
		display: none;
	}

	.section-air__cards-sp {
		display: block;
		margin-top: 4px;
	}

	.section-air__cards-sp .section-air__card-img {
		height: 160px;
	}

	.section-air__cards-sp .section-air__card-body {
		padding: 12px 14px 14px;
	}

	.section-air__cards-sp .section-air__card-tag,
	.section-air__cards-sp .section-air__card-sep,
	.section-air__cards-sp .section-air__card-text {
		display: none;
	}

	.section-air__cards-sp .section-air__card-head {
		display: block;
	}

	.section-air__cards-sp .section-air__card-title {
		margin: 0;
		font-size: 15px;
		line-height: 1.45;
		color: #567d8b;
	}

	.section-air__cards-sp .section-air__card-subtitle {
		display: block;
		margin: 8px 0 0;
		font-size: 12px;
		line-height: 1.55;
		color: #6b848e;
	}

	.section-air__stat-value {
		font-size: 40px;
	}

	.section-performance__content {
		order: 2;
		padding: 24px var(--container-padding);
		padding-left: var(--container-padding);
		background: linear-gradient(to bottom, #ffffff 0%, #d2e7ec 70%, #f7fafb 100%);
	}

	.section-performance__inner {
		display: flex;
		flex-direction: column;
		max-width: 100%;
	}

	.section-performance__visual {
		order: 1;
		min-height: 240px;
	}

	.section-performance__image {
		min-height: 240px;
	}

	.section-structure__visual {
		order: 1;
		display: block;
		min-height: 0;
	}

	.section-structure__content {
		display: none;
	}

	.section-structure__image {
		flex: none;
		width: 100%;
		height: 280px;
		min-height: 280px;
	}

	.section-structure__inner {
		max-width: none;
		margin-left: 0;
	}

	.section-performance__title {
		order: 1;
		font-size: var(--section-title-size-sp);
		letter-spacing: var(--section-title-ls-sp);
	}

	.section-performance__body {
		order: 2;
		margin-top: 16px;
	}

	.section-performance__btn {
		order: 3;
		display: inline-flex;
		align-self: center;
		width: auto;
		max-width: 100%;
		margin-top: 20px;
		padding: 12px 20px;
		font-size: 15px;
		letter-spacing: 0.04em;
		white-space: nowrap;
		box-sizing: border-box;
	}

	.section-stadium__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.section-stadium__name {
		font-size: var(--heading-xl-size-sp);
		letter-spacing: 0.1em;
	}

	.section-stadium__headline {
		font-size: var(--section-title-size-sp);
		letter-spacing: var(--section-title-ls-sp);
	}

	.section-stadium__cards {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.section-stadium__card {
		padding: 12px;
	}

	.section-stadium__card-num {
		font-size: 24px;
	}

	.section-stadium__card-title {
		font-size: 16px;
	}

	.section-cta-block__inner,
	.cta-bar__inner {
		grid-template-columns: 1fr;
		padding: 24px 16px;
		gap: 24px;
	}

	.cta-bar__action {
		align-items: stretch;
		width: 100%;
	}

	.section-cta-block__badge-top,
	.cta-bar__badge-top {
		display: block;
		margin-bottom: 8px;
		text-align: left;
	}

	.section-cta-block__action,
	.cta-bar__action {
		width: 100%;
	}

	.section-cta-block__badge-left {
		top: -6px;
		left: 0;
		max-height: 52px;
	}

	.section-cta-block__badge-right {
		top: -10px;
		right: 0;
		max-height: 46px;
	}

	.section-cta-block__btn-top,
	.section-cta-block__btn-sub {
		font-size: 12px;
	}

	.cta-bar__gift,
	.cta-bar__note {
		display: block;
	}

	.cta-bar__btn,
	.section-cta-block__btn {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		padding: 16px 24px;
		font-size: var(--cta-btn-text-size);
		letter-spacing: 0.05em;
		color: #ffffff;
	}

	.cta-bar__badge-img--tokuten {
		top: -16px;
		left: 0;
		max-height: 44px;
	}

	.section-structure__cards--pc {
		display: none;
	}

	.section-structure__cards-sp {
		display: block;
	}

	.section-structure__cards-sp-head,
	.section-air__cards-sp-head,
	.section-maintenance__cards-sp-head {
		margin-bottom: 13px;
		padding-inline: 0;
	}

	.section-structure__cards-scroll,
	.section-air__cards-scroll,
	.section-maintenance__cards-scroll {
		width: auto;
		max-width: none;
		margin-inline: calc(-1 * var(--container-padding));
		padding: 2px 0;
		scroll-padding-left: var(--container-padding);
		scroll-padding-right: 0;
		gap: var(--lp-scroll-card-gap-sp);
		box-sizing: border-box;
		overflow-y: visible;
	}

	.section-structure__cards-scroll-item:first-child,
	.section-air__cards-scroll-item:first-child,
	.section-maintenance__cards-scroll-item:first-child {
		margin-left: var(--container-padding);
	}

	.voice-layout-b__scroll-wrap {
		margin-inline: calc(-1 * var(--container-padding));
	}

	.voice-layout-b__scroll-item:first-child {
		margin-left: var(--container-padding);
	}

	.section-structure__cards-sp,
	.section-air__cards-sp,
	.section-maintenance__cards-sp {
		overflow: visible;
	}

	.section-structure__cards-scroll-item,
	.section-air__cards-scroll-item,
	.section-maintenance__cards-scroll-item {
		flex: 0 0 min(300px, calc(100vw - var(--container-padding) - 48px));
	}

	.section-structure__cards-sp .section-structure__card-img {
		height: 160px;
	}

	.section-structure__cards-sp .section-structure__card-body {
		padding: 12px 14px 14px;
	}

	.section-structure__cards-sp .section-structure__card-label,
	.section-structure__cards-sp .section-structure__card-sep,
	.section-structure__cards-sp .section-structure__card-text,
	.section-structure__cards-sp .section-structure__card-points {
		display: none;
	}

	.section-structure__cards-sp .section-structure__card-head {
		display: block;
	}

	.section-structure__cards-sp .section-structure__card-title {
		font-size: 15px;
		line-height: 1.45;
	}

	.section-structure__cards-sp .section-structure__card-lead {
		display: block;
		margin-top: 8px;
		font-size: 12px;
		line-height: 1.55;
		color: #6b848e;
	}

	.section-structure .u-container {
		padding-top: 10px;
	}

	.section-maintenance__blocks {
		display: none;
	}

	.section-maintenance .u-container {
		padding-top: 10px;
	}

	.section-maintenance__cards--pc {
		display: none;
	}

	.section-maintenance__cards-sp {
		display: block;
		margin-top: 4px;
	}

	.section-maintenance__cards-sp .section-maintenance__card-img {
		height: 160px;
	}

	.section-maintenance__cards-sp .section-maintenance__card-body {
		padding: 12px 14px 14px;
	}

	.section-maintenance__cards-sp .section-maintenance__card-tag,
	.section-maintenance__cards-sp .section-maintenance__card-text,
	.section-maintenance__cards-sp .section-maintenance__card-list {
		display: none;
	}

	.section-maintenance__cards-sp .section-maintenance__card-title {
		margin: 0;
		font-size: 15px;
		line-height: 1.45;
		color: #567d8b;
	}

	.section-maintenance__cards-sp .section-maintenance__card-subtitle {
		display: block;
		margin: 8px 0 0;
		font-size: 12px;
		line-height: 1.55;
		color: #6b848e;
	}

	.section-air__cards {
		grid-template-columns: 1fr;
	}

	.section-numbers .u-container {
		padding-top: 32px;
	}

	.section-numbers__lead-title {
		font-size: var(--heading-xl-size-sp);
	}

	.section-numbers__lead-sub {
		font-size: 16px;
	}

	.section-numbers__compare {
		flex-direction: column;
		align-items: stretch;
	}

	.section-numbers__compare-arrow {
		align-self: center;
		transform: rotate(90deg);
	}

	.section-numbers__compare-card {
		grid-template-columns: auto 1fr;
		gap: 16px;
		max-width: none;
	}

	.section-numbers__compare-aside {
		width: 80px;
	}

	.section-numbers__compare-icon,
	.section-numbers__compare-icon-img {
		width: 80px;
	}

	.section-numbers__gallery {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.section-numbers__voice {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 32px 24px;
	}

	.section-numbers__voice-aside {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 16px;
	}

	.section-numbers__voice-label {
		margin: 0;
	}

	.voice-layout-a__card {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		padding: 20px;
		border-radius: 20px;
	}

	.voice-layout-a__photo {
		flex: none;
		max-width: 100%;
		width: 100%;
	}

	.voice-layout-a__quote-open,
	.voice-layout-a__quote-close {
		font-size: 40px;
	}

	.voice-layout-a__quote-text {
		font-size: 17px;
		line-height: 1.6;
	}

	.voice-layout-a__profile {
		margin-top: 8px;
	}

	.voice-layout-b__quote-text {
		font-size: 16px;
		line-height: 1.6;
	}

	.voice-layout-b__body {
		padding: 18px 18px 22px;
	}

	.section-experience__title {
		font-size: var(--section-title-size-sp);
		letter-spacing: var(--section-title-ls-sp);
		margin-bottom: 24px;
	}

	.section-experience__building {
		height: 200px;
	}

	.section-campaign__title,
	.section-campaign__sub {
		font-size: var(--heading-lg-size-sp);
		letter-spacing: 0.12em;
	}

	.lp-section.section-campaign {
		padding-top: 24px;
	}

	.section-campaign__notes {
		text-align: left;
	}

	.section-campaign__note {
		font-size: 14px;
	}

	.section-owner-voice .u-container {
		padding-top: 10px;
	}

	.section-structure__cards-sp {
		margin-top: 4px;
	}

	.section-structure__content {
		padding: 24px var(--container-padding);
	}

	.voice-layout-a__card {
		padding: 16px;
		gap: 12px;
	}

	.voice-layout-b__body {
		padding: 14px 16px 18px;
	}

	.section-cta-block,
	.cta-bar {
		display: none !important;
	}

	.section-slider__title {
		margin-bottom: 24px;
		font-size: var(--section-title-size-sp);
		letter-spacing: var(--section-title-ls-sp);
	}

	.section-slider__media,
	.section-slider__card-image {
		height: 160px;
	}

	.section-form__inner {
		width: 100%;
		max-width: 100%;
		padding: 20px 16px;
		box-sizing: border-box;
	}

	.site-footer {
		padding-block: 16px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 12px;
		text-align: center;
	}

	.site-footer__info {
		order: 2;
	}

	.site-footer__nav {
		order: 3;
	}

	.site-footer__links {
		justify-content: center;
	}

	.site-footer__sns {
		order: 4;
		justify-content: center;
	}

	.site-footer__company {
		font-size: 16px;
	}
}
