/* ===== 全体共通：リセットとカラートークン ===== */
* {
	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;
}

/* ===== 共通レイアウト：ページ骨格・セクション幅 ===== */
.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 {
	position: relative;
	display: block;
    min-height: 420px;
	padding-top: 18px;
	padding-bottom: 24px;
	overflow: hidden;
	background-color: #EDF0F5;
}

.hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 0;
  object-position: center;
	z-index: 0;
}

.hero__media img {
    width: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.hero__visual-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
}

.hero__content {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-42%);
	z-index: 1;
	max-width: 900px;
	padding: 0 12px 0 320px;
}

.hero__title {
	margin: 0;
	font-family: "Noto Serif JP", serif;
	font-size: 3.75rem;
	line-height: 1.2;
	letter-spacing: 0.04em;
	color: var(--text);
}

.hero_title_blue {
	display: inline-block;
	background: linear-gradient(90deg, #313AE3 0%, #202580 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__title span:first-child {
	font-size: 3rem;
}

.hero__lead {
	margin: 20px 0 0;
	font-family: "Noto Serif JP", serif;
	font-size: 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__privacy-link:hover {
	color: #f0d4a0;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.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;
}

/* ===== レスポンシブ調整：PC幅 ===== */
@media (max-width: 1400px) {
	/* ファーストビュー：コピー位置 */
	.hero__content {
		padding-left: 260px;
	}

	.hero__title {
		font-size: 3.375rem;
	}

	/* コンセプト：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: 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 {
		position: relative;
		height: 260px;
    min-height: 260px;
		padding: 0;
		overflow: hidden;
		background: #eef2fa;
	}

	.hero.section-inner {
		padding-left: 0;
		padding-right: 0;
	}

	.hero__media {
		position: absolute;
		inset: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}

	.hero__media img,
	.hero__visual-image {
		width: 100%;
		height: 100%;
		max-width: none;
		object-fit: cover;
		object-position: left center;
		display: block;
	}

	.hero__content {
		position: absolute;
		z-index: 1;
		top: 50%;
		left: 30%;
		right: 12px;
		transform: translateY(-46%);
		max-width: none;
		padding: 0;
	}

	.hero__title {
		margin: 0;
		font-family: "Noto Serif JP", serif;
		font-size: 1.5rem;
		line-height: 1.22;
		letter-spacing: 0.02em;
		color: #10182f;
		text-shadow: none;
	}

	.hero__title > span:first-child {
		display: inline;
		white-space: normal;
	}

	.hero__title span:first-child {
font-size: 1.5rem;
	}

	.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: 18px;
		font-size: 0.8rem;
		line-height: 1.7;
		color: #10182f;
		text-shadow: none;
	}

	.hero__lead br {
		display: none;
	}

	.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, 6vw, 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;
  }
}

/* ===== レスポンシブ調整：サンクスページ ===== */
@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;
	}
}
