/* ===== 全体共通：リセットとカラートークン ===== */
* {
	box-sizing: border-box;
}

:root {
	--navy: #0d224f;
	--navy-deep: #06163a;
	--blue: #2f4db7;
	--blue-soft: #e8eef9;
	--gold: #d7b06b;
	--gold-soft: #efe1bf;
	--text: #1d2741;
	--muted: #5f6780;
	--line: #d8deea;
	--panel: #f7f8fd;
	--white: #ffffff;
	--shadow: 0 20px 50px rgba(13, 34, 79, 0.12);
}

/* ===== 全体共通：基本要素 ===== */
html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
	color: #05183C;
    background-color: #F6F7FF;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

button,
input {
	font: inherit;
}

h2 {
	font-weight: 500;
}

/* ===== JS animation hooks ===== */
body.js-animations-ready [data-animate] {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition:
		opacity 720ms ease,
		transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}

body.js-animations-ready [data-animate="fade-left"] {
	transform: translate3d(30px, 0, 0);
}

body.js-animations-ready [data-animate="fade-right"] {
	transform: translate3d(-30px, 0, 0);
}

body.js-animations-ready [data-animate="scale-in"] {
	transform: translate3d(0, 18px, 0) scale(0.96);
}

body.js-animations-ready [data-animate].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.concept__diagram-image,
.sales__chart-image {
	transform: translate3d(0, var(--scroll-shift, 0), 0);
	transition: transform 180ms ease-out;
	will-change: transform;
}

.js-button-motion {
	position: relative;
	overflow: hidden;
}

.js-button-motion::before {
	content: "";
	position: absolute;
	inset: -40% auto -40% -35%;
	width: 34%;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.42),
		transparent
	);
	opacity: 0;
	transform: translateX(-120%) skewX(-18deg);
}

.js-button-motion.is-attention-ready::before {
	animation: button-sheen 1350ms ease 520ms 1 both;
}

.js-button-motion.is-attention-ready {
	animation: button-settle 900ms cubic-bezier(0.22, 1, 0.36, 1) 360ms 1 both;
}

@keyframes button-sheen {
	0% {
		opacity: 0;
		transform: translateX(-120%) skewX(-18deg);
	}
	26% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateX(420%) skewX(-18deg);
	}
}

@keyframes button-settle {
	0%,
	100% {
		transform: translateY(0);
	}
	42% {
		transform: translateY(-2px);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	body.js-animations-ready [data-animate] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.js-button-motion::before {
		display: none;
	}

	.js-button-motion,
	.js-button-motion.is-attention-ready {
		animation: none;
	}

	.concept__diagram-image,
	.sales__chart-image {
		transform: none;
		transition: none;
	}
}

/* ===== 共通レイアウト：ページ骨格・セクション幅 ===== */
.page-shell {
	display: flex;
	align-items: flex-start;
	min-height: 100vh;
}

.lp-main {
	width: calc(100% - 360px);
}

.section-inner {
	/* width: min(100%, 1040px); */
	margin-left: 0;
	padding-left: 48px;
	padding-right: 44px;
}

.section-panel {
	padding-top: 30px;
	padding-bottom: 56px;
}

.sales.section-panel--soft {
	background: #fff;
}

.section-panel--tint {
	background: #eaf1fb;
}

.section-panel--tint p {
	font-size: 1.2rem;
	font-weight: 500;
}

.section-panel--blue {
	background: linear-gradient(90deg, #0b1d40 0%, #1d4ba6 100%);
	color: var(--white);
}

/* ===== ヘッダー：ロゴ・会社リンク ===== */
.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 12px;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
}

.site-header__logo-image {
	display: block;
	width: 110px;
	height: auto;
}

.site-header__brand-text {
	font-size: 1rem;
}

.site-header__company-link {
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 500;
}

/* ===== 共通見出し：各セクションタイトル ===== */
.section-heading {
	margin-bottom: 22px;
}

.section-heading--left {
	text-align: left;
}

.section-heading__title {
	margin: 0;
	font-family: "Noto Serif JP", serif;
	font-size: 2.2rem;
	line-height: 1.28;
	letter-spacing: 0.02em;
}

.section-heading--inverse .section-heading__title {
	color: var(--white);
}

/* ===== ファーストビュー：メインビジュアル・コピー ===== */
.hero {
	--hero-copy-offset: clamp(400px, 32%, 500px);
	--hero-visual-width: min(calc(var(--hero-copy-offset) - 28px), 440px);
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(320px, 36vw, 400px);
	overflow: hidden;
	background: linear-gradient(120deg, #00318E 0%, #000E28 40%);
	color: var(--white);
}

.hero.section-inner {
	padding-left: 0;
}

.hero__media {
	position: absolute;
	inset: 0 auto 0 0;
	width: var(--hero-copy-offset);
	height: 100%;
	border-radius: 0;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	object-position: center;
	overflow: hidden;
	z-index: 0;
}

.hero__media img {
	width: auto;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: left bottom;
	display: block;
}

.hero__media .hero__visual-image {
	width: var(--hero-visual-width);
	height: auto;
	max-height: calc(100% - clamp(24px, 4vw, 48px));
	margin-left: clamp(16px, 2vw, 28px);
	object-fit: contain;
	object-position: left bottom;
}

.hero__content {
	position: relative;
	z-index: 1;
	width: calc(100% - var(--hero-copy-offset));
	max-width: 780px;
	margin-left: var(--hero-copy-offset);
	padding: 0;
}

.hero__title {
	margin: 0;
	font-family: "Noto Serif JP", serif;
	font-size: clamp(1.75rem, 3.8vw, 2.5rem);
	line-height: 1.2;
	letter-spacing: 0.04em;
}

.hero_lead_gold {
	color: #FFBA50;
}


.hero_title_gold {
	display: inline-block;
	background: linear-gradient(90deg, #C48520 0%, #D9BC90 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__title-nowrap {
	white-space: nowrap;
}

.hero__title > span:first-child {
	font-size: clamp(4.5rem, 8vw, 5.5rem);
}

.hero__lead {
	margin: 20px 0 0;
	font-family: "Noto Serif JP", serif;
	font-size: clamp(0.875rem, 1.6vw, 1.5rem);
	font-weight: 600;
	line-height: 1.3;
}

.hero__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
}

/* ===== コンセプト：説明文・関係図 ===== */
.concept__body {
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 32px;
	align-items: center;
}

.concept__body p {
	margin: 0;
	font-size: 1.2rem;
	line-height: 2;
}

.concept__diagram {
	position: relative;
	width: 460px;
	height: 420px;
	margin-left: auto;
	border-radius: 24px;
	overflow: hidden;
}

.concept__diagram-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.section-heading--question {
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-heading__icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

/* ===== 物件紹介：物件カード一覧===== */
.properties__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.property-card {
	overflow: hidden;
	border-radius: 14px;
	background: var(--white);
	box-shadow: var(--shadow);
}

.property-card__image {
	height: 174px;
	background-size: cover;
	background-position: center;
}

.property-card__image--one { background-image: url("../img/property1.png"); }
.property-card__image--two { background-image: url("../img/property2.png"); }
.property-card__image--three { background-image: url("../img/property3.png"); }
.property-card__image--four { background-image: url("../img/property4.png"); }

.property-card__body {
	padding: 14px 14px 16px;
	text-align: center;
}

.property-card__body h3 {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 700;
}

.property-card__body p {
	margin: 10px 0 0 0;
	color: #CE1F1F;
	font-size: 1rem;
	font-weight: 500;
}

.property-card__body span {
	font-size: 1.1rem;
	font-weight: 500;
}

/* ===== 売上説明：グラフ画像・説明文 ===== */
.sales__visual {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: center;
}

.sales__chart {
	position: relative;
	padding: 22px 22px 24px;
	border-radius: 18px;
	background: var(--white);
}

.sales__chart-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.sales__visual p {
	margin: 0;
	font-size: 1.2rem;
	line-height: 2;
}

/* ===== シミュレーション：基本レイアウト ===== */
.simulation.section-panel {
	padding-top: 20px;
	padding-bottom: 10px;
}

.simulation {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 34%);
	align-items: center;
	text-align: left;
	overflow: hidden;
}

/* シミュレーション：見出し */
.simulation .section-heading {
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
	margin-bottom: 40px;
}

.simulation .section-heading__title {
	display: inline-block;
	background: linear-gradient(90deg, #e4c99e 0%, #ba8f49 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: clamp(2rem, 2.6vw, 2.6rem);
	line-height: 1.55;
	letter-spacing: 0.04em;
}

.simulation .section-heading__title span {
	white-space: nowrap;
}

/* シミュレーション：説明文 */
.simulation__lead {
	grid-column: 1;
	grid-row: 2;
	min-width: 0;
	max-width: 560px;
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.2rem;
	line-height: 1.8;
}

/* シミュレーション：画像エリア */
.simulation__formula {
	display: flex;
	grid-column: 2;
	grid-row: 1 / 3;
	align-items: center;
	justify-content: flex-end;
	min-width: 0;
}

.simulation__image {
	width: 100%;
	max-width: 380px;
	height: auto;
	border-radius: 16px;
}
/* ===== サポート内容：支援カード一覧 ===== */
.support__groups {
	display: grid;
	gap: 16px;
}

.support-group {
	overflow: hidden;
	border-radius: 16px;
	background: var(--white);
	box-shadow: var(--shadow);
	margin-bottom: 20px;
}

.support-group h3 {
	margin: 0;
	padding: 14px 18px;
	font-size: 1.5rem;
	text-align: center;
}

.support-group--gold h3 {
	background: #CFB285;
}

.support-group--navy h3 {
	background: var(--navy);
	color: var(--white);
}

.support-group__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.support-card {
	min-height: 164px;
	padding: 24px 18px 20px;
	border-right: 1px solid rgba(216, 222, 234, 0.72);
	border-top: 1px solid rgba(216, 222, 234, 0.72);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 247, 252, 0.98));
}

.support-card__icon {
	display: block;
	margin: 0 auto 14px;
	object-fit: contain;
}

.support-card:last-child {
	border-right: none;
}

.support-card h4 {
	margin: 0 0 12px;
	font-size: 1.2rem;
	text-align: center;
}

.support-card p {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.9;
}

/* ===== フッター：会社リンク・コピーライト ===== */
.site-footer {
	padding-top: 18px;
	padding-bottom: 18px;
	text-align: center;
	color: rgba(255, 255, 255, 0.92);
	background: #303030;
}

.site-footer p {
	margin: 0;
	font-size: 0.75rem;
}

/* ===== 右固定フォーム：無料相談フォーム ===== */
.consult-form {
	position: fixed;
	right: 0;
	top: 0;
	width: 360px;
	height: 100vh;
	min-height: 100vh;
	margin-left: 0;
	overflow-y: auto;
	background: linear-gradient(180deg, #091e4f 0%, #0c204b 100%);
	z-index: 20;
}

.consult-form__inner {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding: 0 40px 24px;
	background: linear-gradient(180deg, rgba(9, 30, 79, 0.97), rgba(8, 24, 62, 0.98));
}

.consult-form__header {
	position: relative;
	margin: 0 -40px 18px;
	padding: 0 40px;
	background: #D9BC90;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
}
.consult-form__header p {
	margin: 10px;
}

.consult-form__close,
.mobile-cta {
	display: none;
}

.consult-form__form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.consult-form__name-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.field label {
	display: block;
	margin-bottom: 8px;
	font-size: 1rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.92);
}

.field input {
	width: 100%;
	height: 38px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--text);
}

.field input::placeholder {
	color: #b8b8b8;
	opacity: 1;
}

.field input:focus {
	outline: 2px solid rgba(215, 176, 107, 0.88);
	outline-offset: 1px;
}

.field--error input {
	border-color: #ff9d9d;
	background: #fff6f6;
}

.field__error {
	min-height: 18px;
	margin: 3px 0 0;
	font-size: 0.75rem;
	color: #ffb6b6;
}

.consult-form__consent {
	padding: 10px 0 0;
}

.checkbox {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.4;
	color: var(--white);
}

.checkbox input {
	width: 25px;
	height: 25px;
	accent-color: var(--gold);
}

.consult-form__privacy-text {
	margin: 0 0 10px;
	font-size: 0.8rem;
	font-weight: 900;
	line-height: 1.55;
	color: var(--white);
	letter-spacing: 0.04em;
}

.consult-form__privacy-link {
	color: #d8b676;
	text-decoration: none;
}

.consult-form__submit {
	position: relative;
	height: 54px;
	padding: 0 46px 0 20px;
	border: 0;
	border-radius: 5px;
	background: linear-gradient(90deg, #DFBB83, #BE9451);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	cursor: pointer;
	color: #05183C;
}

.consult-form__submit::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	width: 12px;
	height: 12px;
	border-top: 4px solid var(--navy);
	border-right: 4px solid var(--navy);
	transform: translateY(-50%) rotate(45deg);
}

.consult-form__submit:hover {
	filter: brightness(1.03);
}

.consult-form__submit:disabled {
	cursor: wait;
	filter: grayscale(0.2) brightness(0.9);
}

.consult-form__message {
	min-height: 22px;
	margin: 0;
	font-size: 0.8125rem;
	color: #b9f3be;
	text-align: center;
}

.hubspot-form-hidden {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

/* ===== サンクスページ ===== */
.thanks-view[hidden] {
	display: none;
}

.thanks-view {
	min-height: 100vh;
	background: linear-gradient(180deg, #081a43 0%, #0d2862 100%);
	color: var(--white);
}

.thanks {
	width: min(100%, 960px);
	margin: 0 auto;
	padding: 40px 0;
}

.thanks__header {
	padding: 8px 0 72px;
}

.thanks__header .site-header__brand {
	color: var(--white);
}

.thanks__title {
	margin: 0 0 28px;
	font-family: "Noto Serif JP", serif;
	font-size: 2.5rem;
	line-height: 1.45;
	color: #e6c37f;
}

.thanks__content p {
	margin: 0 0 22px;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 2;
	color: rgba(255, 255, 255, 0.94);
}

.thanks__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	margin-top: 18px;
	padding: 0 28px;
	border-radius: 8px;
	background: linear-gradient(90deg, #DFBB83, #BE9451);
	color: var(--navy);
	font-weight: 900;
}

body.is-thanks .page-shell {
  display: block;
}

body.is-thanks .lp-main {
  width: 100%;
  min-width: 0;
}

body.is-thanks .consult-form {
  display: none;
}

body.is-thanks .thanks-view {
  width: 100%;
  min-height: calc(100vh - 80px);
  background: #06163a;
}

/* ===== コンセプト直下CTA ===== */
.concept-cta {
  display: none;
}

/* ===== レスポンシブ調整：PC幅 ===== */
@media (max-width: 1400px) {
	/* ファーストビュー：コピー位置 */
	.hero {
		--hero-copy-offset: clamp(390px, 44%, 500px);
		--hero-visual-width: min(calc(var(--hero-copy-offset) - 24px), 420px);
	}

	.hero__title {
		font-size: clamp(2.5rem, 4vw, 3.375rem);
	}

	.hero__title > span:first-child {
		font-size: clamp(4.125rem, 7.6vw, 6rem);
	}

	/* コンセプト：1カラム化 */
	.concept__body {
		grid-template-columns: 1fr;
		max-width: 720px;
		margin-left: 0;
		margin-right: auto;
	}

	.concept__body p {
		text-align: left;
	}

	.concept__diagram {
		justify-self: center;
		margin-left: 0;
	}

	/* 売上説明：1カラム化 */
	.sales__visual {
		grid-template-columns: 1fr;
		max-width: 720px;
		margin-left: 0;
		margin-right: auto;
	}

	.sales__chart {
		justify-self: start;
		width: 100%;
	}

	.sales__visual p {
		text-align: left;
	}
}

@media (max-width: 1100px) and (min-width: 769px) {
	.hero {
		--hero-copy-offset: clamp(270px, 42%, 340px);
		--hero-visual-width: min(calc(var(--hero-copy-offset) - 18px), 310px);
		min-height: clamp(430px, 56vw, 520px);
	}

	.hero__content {
		max-width: none;
	}

	.hero__title {
		font-size: clamp(1.875rem, 3.4vw, 2.5rem);
		line-height: 1.24;
	}

	.hero__title > span:first-child {
		font-size: clamp(3.25rem, 6.8vw, 4.25rem);
	}

	.hero__lead {
		font-size: clamp(0.95rem, 1.8vw, 1.125rem);
		line-height: 1.55;
	}
}

/* ===== レスポンシブ調整：シミュレーション ===== */
@media (max-width: 1280px) and (min-width: 769px) {
	/* シミュレーション：右側フォームがあるPC幅の調整 */
	.simulation {
		grid-template-columns: minmax(0, 1fr) minmax(220px, 32%);
		column-gap: 24px;
	}

	.simulation .section-heading {
		grid-column: 1 / -1;
		grid-row: 1;
		margin-bottom: 28px;
	}

	.simulation .section-heading__title {
		line-height: 1.55;
	}

	.simulation .section-heading__title span {
		white-space: normal;
	}

	.simulation__lead {
		grid-column: 1;
		grid-row: 2;
		max-width: 420px;
	}

	.simulation__formula {
		grid-column: 2;
		grid-row: 2;
		justify-content: flex-end;
	}

	.simulation__image {
		max-width: 260px;
	}
}

/* ===== レスポンシブ調整：スマホ全体 ===== */
@media (max-width: 768px) {
	/* body:not(.is-thanks) {
		padding-bottom: calc(150px + env(safe-area-inset-bottom));
	} */

	body.is-form-open {
		overflow: hidden;
	}

	.page-shell {
		display: block;
	}

	.lp-main {
		width: 100%;
		min-width: 0;
	}

	.section-inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.site-header {
		align-items: center;
		justify-content: flex-start;
		height: 54px;
		padding: 10px 14px;
		background: #f6f7ff;
	}

	.site-header.section-inner {
		padding: 10px 14px;
	}

	.site-header__brand {
		gap: 8px;
	}

	.site-header__logo-image {
		width: 72px;
	}

	.site-header__brand-text {
		font-size: 0.75rem;
		white-space: nowrap;
	}

	.section-panel {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.section-panel p {
		font-size: 0.8rem;
	}

	.section-heading__title {
		font-size: 1.2rem;
	}

	.section-heading__sub {
		font-size: 1rem;
	}

	.section-heading--question {
		align-items: flex-start;
		gap: 12px;
	}

	.section-heading--question img {
		width: 40px;
		height: 40px;
	}

	.section-heading__icon {
		width: 48px;
		height: 48px;
	}

	.hero {
		--hero-copy-offset: clamp(148px, 34%, 260px);
		--hero-visual-width: min(calc(var(--hero-copy-offset) - 10px), 250px);
		--hero-title-size: clamp(1rem, 3.6vw, 1.625rem);
		--hero-title-emphasis-size: calc(var(--hero-title-size) * 2);
		--hero-lead-size: clamp(0.75rem, 2.35vw, 0.95rem);
		position: relative;
		display: grid;
		grid-template-columns: var(--hero-copy-offset) minmax(0, 1fr);
		align-items: center;
		height: auto;
		min-height: clamp(300px, 78vw, 430px);
		padding: 28px 18px 28px 0;
		overflow: hidden;
		background: linear-gradient(160deg, #00318E 0%, #000E28 50%);
	}

	.hero.section-inner {
		padding: 0;
	}

	.hero__media {
		position: relative;
		inset: auto;
		grid-column: 1;
		align-self: stretch;
		z-index: 0;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: flex-end;
		justify-content: flex-start;
		overflow: hidden;
	}

	.hero__media img,
	.hero__media .hero__visual-image {
		width: var(--hero-visual-width);
		height: auto;
		margin-left: 0;
		max-width: 100%;
		max-height: calc(100% - 20px);
		object-fit: contain;
		object-position: left bottom;
		display: block;
	}

	.hero__content {
		position: relative;
		z-index: 1;
		top: auto;
		left: auto;
		right: auto;
		transform: none;
		grid-column: 2;
		width: auto;
		max-width: none;
		min-width: 0;
		margin-left: 0;
		padding: 0;
	}

	.hero__title {
		margin: 0;
		font-family: "Noto Serif JP", serif;
		font-size: var(--hero-title-size);
		line-height: 1.22;
		letter-spacing: 0;
		color: var(--white);
		text-shadow: none;
	}

	.hero__title > span:first-child {
		display: inline;
		white-space: normal;
	}

	.hero__title > span:first-child {
		font-size: var(--hero-title-emphasis-size);
	}

	.hero_title_blue {
		display: inline;
		background: linear-gradient(90deg, #2638f0 0%, #17248f 100%);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		-webkit-text-fill-color: transparent;
		text-shadow: none;
	}

	.hero__lead {
		margin-top: 12px;
		font-size: var(--hero-lead-size);
		line-height: 1.55;
		color: var(--white);
		max-width: 100%;
		overflow-wrap: anywhere;
		word-break: break-all;
		line-break: anywhere;
		text-shadow: none;
	}

	.hero__lead span {
		overflow-wrap: anywhere;
		word-break: break-all;
		line-break: anywhere;
	}

	.hero__lead br {
		display: none;
	}

	@media (max-width: 480px) {
		.hero {
			--hero-copy-offset: clamp(170px, 52%, 300px);
    		--hero-visual-width: min(calc(var(--hero-copy-offset) - 4px), 240px);
			--hero-title-size: clamp(0.78rem, 3.75vw, 1.08rem);
			--hero-title-emphasis-size: calc(var(--hero-title-size) * 2);
			--hero-lead-size: clamp(0.62rem, 2.7vw, 0.78rem);
			display: grid;
			min-height: clamp(100px, 45vw, 170px);
			padding: 24px 12px 24px 0;
		}

		.hero.section-inner {
			padding-left: 0;
			padding-right: 12px;
		}

		.hero__media {
			inset: auto;
			width: 100%;
			height: 100%;
		}

		.hero__media img,
		.hero__media .hero__visual-image {
			width: var(--hero-visual-width);
			max-height: calc(100% - 20px);
		}

		.hero__content {
			width: auto;
			margin-left: 0;
			padding-bottom: 0;
			margin-left: -50px;
		}

		.hero__title {
			font-size: var(--hero-title-size);
		}

		.hero__title > span:first-child {
			font-size: var(--hero-title-emphasis-size);
		}

		.hero__lead {
			font-size: var(--hero-lead-size);
		}
	}

	.concept__body,
	.sales__visual {
		max-width: none;
		gap: 22px;
	}

	/* シミュレーション：スマホ表示 */
	.simulation.section-panel {
		padding-top: 20px;
		padding-bottom: 10px;
	}

	.simulation {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(112px, 42%);
		column-gap: 12px;
		align-items: center;
		min-height: auto;
		overflow: hidden;
	}

	.simulation .section-heading {
		grid-column: 1 / -1;
		grid-row: 1;
		margin-bottom: 22px;
	}

	.simulation .section-heading__title {
		font-size: 1.35rem;
		line-height: 1.6;
		letter-spacing: 0.03em;
	}

	.simulation .section-heading__title span {
		white-space: normal;
	}

	.simulation__lead {
		grid-column: 1;
		grid-row: 2;
		min-width: 0;
		max-width: none;
		margin: 0;
		font-size: 0.8rem;
		line-height: 1.9;
	}

	.simulation__formula {
		display: flex;
		grid-column: 2;
		grid-row: 2;
		justify-content: flex-end;
		min-width: 0;
	}

	.simulation__image {
		width: 100%;
		max-width: 100%;
	}

	.concept__body p,
	.sales__visual p {
		font-size: 0.8rem;
		line-height: 1.9;
	}

	.concept__diagram {
		width: 100%;
		max-width: 460px;
		height: auto;
		aspect-ratio: 46 / 42;
	}

	.properties__grid {
		margin-left: 20px;
		margin-right: 20px;
	}

	.properties__grid,
	.support-group__grid {
		grid-template-columns: 1fr;
	}

	.support__groups,
	.support-group__grid {
		margin-left: 20px;
		margin-right: 20px;
	}
	

	.support-card {
		border-right: 0;
	}

	.mobile-cta {
		position: fixed;
		left: 0;
		right: 0;
		bottom: var(--mobile-cta-bottom, 0);
		z-index: 35;
		display: block;
		width: 100%;
		padding: 20px 20px calc(24px + env(safe-area-inset-bottom));
		text-align: center;
		background: #06163a;
		box-shadow: 0 -14px 32px rgba(0, 0, 0, 0.24);
	}

	.mobile-cta__lead {
		margin: 0 0 12px;
		color: #f0d4a0;
		font-size: 1.25rem;
		font-weight: 700;
		line-height: 1.3;
	}

	.mobile-cta__button {
		position: relative;
		width: 100%;
		min-height: 64px;
		padding: 0 54px 0 20px;
		border: 0;
		border-radius: 8px;
		background: linear-gradient(90deg, #DFBB83, #BE9451);
		font-size: clamp(1.25rem, 5.5vw, 1.875rem);
		color: #05183C;
		font-weight: 700;
		line-height: 1.25;
		box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
		cursor: pointer;
	}

	.mobile-cta__button::after {
		content: "";
		position: absolute;
		right: 24px;
		top: 50%;
		width: 16px;
		height: 16px;
		border-top: 5px solid #05183C;
		border-right: 5px solid #05183C;
		transform: translateY(-50%) rotate(45deg);
	}

	body.is-form-open .mobile-cta,
	body.is-thanks .mobile-cta {
		display: none;
	}

	.consult-form {
		display: none;
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100dvh;
		min-height: 0;
		overflow-y: auto;
		z-index: 45;
	}

	body.is-form-open .consult-form {
		display: block;
	}

	.consult-form__inner {
		min-height: 100dvh;
		padding: 0 24px calc(28px + env(safe-area-inset-bottom));
	}

	.consult-form__header {
		position: sticky;
		top: 0;
		z-index: 2;
		margin: 0 -24px 18px;
		padding: 14px 64px 14px 24px;
	}

	.consult-form__header p {
		margin: 0;
	}

	.consult-form__close {
		position: absolute;
		right: 16px;
		top: 50%;
		display: block;
		width: 36px;
		height: 36px;
		border: 0;
		border-radius: 50%;
		background: rgba(5, 24, 60, 0.12);
		cursor: pointer;
		transform: translateY(-50%);
	}

	.consult-form__close::before,
	.consult-form__close::after {
		content: "";
		position: absolute;
		left: 10px;
		top: 17px;
		width: 16px;
		height: 3px;
		border-radius: 999px;
		background: #05183C;
	}

	.consult-form__close::before {
		transform: rotate(45deg);
	}

	.consult-form__close::after {
		transform: rotate(-45deg);
	}

	.field input {
		height: 56px;
		font-size: 1rem;
	}

	.consult-form__submit {
		min-height: 64px;
		height: auto;
		font-size: 1.125rem;
	}

	.support {
    padding-bottom: calc(40px + var(--mobile-cta-space, 132px));
  }
  .site-header__company-link,.site-footer p {
font-size: 0.6rem;
  }

  .site-footer {
    margin-top: 0;
    padding-top: 8px;
    padding-bottom: 14px;
    background: #303030;
  }

  /* ===== コンセプト直下CTA ===== */

  .concept-cta {
    display: block;
    padding-top: 24px;
    padding-bottom: 28px;
    text-align: center;
    background: #ffffff;
  }

  .concept-cta__lead {
    margin: 0 0 14px;
    color: #05183C;
    font-size: 0.95rem;
    font-weight: 700;
  }

  .concept-cta__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    min-height: 58px;
    padding: 0 54px 0 28px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, #ff9a2f, #f26a00);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    box-shadow: 0 10px 22px rgba(242, 106, 0, 0.28);
    cursor: pointer;
  }

  .concept-cta__button::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-top: 4px solid #ffffff;
    border-right: 4px solid #ffffff;
    transform: translateY(-50%) rotate(45deg);
  }
}

/* ===== レスポンシブ調整：サンクスページ ===== */
@media (max-width: 640px) {
	.thanks {
		padding: 24px 20px 48px;
	}

	.thanks__header {
		padding-bottom: 48px;
	}

	.thanks__content {
		padding: 32px 24px;
	}

	.thanks__title {
		font-size: 1.875rem;
	}

	.thanks__content p {
		font-size: 1rem;
	}
}
