/* ============================================================
   結果ページ共通（page-thanks / page-form-error / 404）
============================================================ */
.result-page {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	padding-block: 5rem;
}

.result-page__inner {
	max-width: 540px;
	text-align: center;
	padding-inline: var(--ark-padding--container, min(48px, 4vw));
}

.result-page__eyebrow {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #427c89;
	margin-bottom: 1rem;
}

.result-page__heading {
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.04em;
	margin-bottom: 1.5rem;
	color: var(--ark-color--text, #1a1a1a);
}

.result-page__body {
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--ark-color--text, #1a1a1a);
	margin-bottom: 2.5rem;
}

.result-page__link {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 600;
	color: #427c89;
	text-decoration: none;
	letter-spacing: 0.04em;
	padding: 0.6em 1.4em;
	border: 2px solid #427c89;
	border-radius: 6px;
	transition: background-color 0.15s, color 0.15s;
}

.result-page__link:hover {
	background-color: #427c89;
	color: #fff;
}

/* ============================================================
   エラーページ（page-form-error.php）
============================================================ */
.result-page--error .result-page__eyebrow {
	color: #c45c3a;
}

.result-page--error .result-page__heading {
	color: #c45c3a;
}

.result-page__contact {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	font-size: 0.9rem;
	margin-bottom: 2rem;
}

.result-page__contact a {
	color: #427c89;
	text-decoration: none;
}

.result-page__contact a:hover {
	text-decoration: underline;
}

.result-page__buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.result-page__link--primary {
	background-color: #427c89;
	color: #fff;
	border-color: #427c89;
}

.result-page__link--primary:hover {
	background-color: #356770;
	border-color: #356770;
}

/* ============================================================
   404ページ（404.php）
============================================================ */
.result-page__eyebrow--large {
	font-size: clamp(3rem, 10vw, 6rem);
	line-height: 1;
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
	opacity: 0.15;
	color: #427c89;
}
