*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--blue: #185fa5;
	--blue-dark: #0c447c;
	--blue-light: #e6f1fb;
	--blue-mid: #b5d4f4;
	--green: #3b6d11;
	--green-light: #eaf3de;
	--red: #a32d2d;
	--red-light: #fcebeb;
	--amber: #854f0b;
	--amber-light: #faeeda;
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-400: #9ca3af;
	--gray-600: #6b7280;
	--gray-800: #1f2937;
	--gray-900: #111827;
	--radius: 8px;
	--radius-lg: 12px;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	font-family:
		"Noto Sans JP",
		-apple-system,
		BlinkMacSystemFont,
		sans-serif;
	color: var(--gray-900);
	background: #fff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

/* ===== HEADER ===== */
.header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	backdrop-filter: none;
	border-bottom: 1px solid #ececec;
}
.header-inner {
	max-width: none;
	margin: 0;
	padding: 0 0 0 26px;
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 24px;
}
.brand-wrap {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-shrink: 0;
}
.logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
	flex-shrink: 0;
}
.logo img {
	display: block;
	width: clamp(150px, 14vw, 176px);
	height: auto;
}
.logo-tag {
	font-size: 16px;
	line-height: 1.35;
	color: #222;
	font-weight: 500;
	white-space: nowrap;
}
.nav {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
}
.nav a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	color: var(--gray-800);
	text-decoration: none;
	padding: 6px 12px;
	border-radius: 6px;
	transition:
		color 0.15s,
		background 0.15s;
}
.nav a::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 2px;
	height: 2px;
	border-radius: 2px;
	background: var(--blue);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}
.nav a:not(.nav-cta):hover {
	color: var(--blue);
	background: var(--blue-light);
}
.nav a:not(.nav-cta):hover::after {
	transform: scaleX(1);
}
.nav .nav-cta::after {
	display: none;
}
.header-cta {
	min-width: 284px;
	min-height: 76px;
	padding: 0 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	color: #fff;
	border-radius: 0 0 0 18px;
	background: linear-gradient(135deg, #ff6e35 0%, #ff9c96 100%);
	transition: background 0.2s ease;
	flex-shrink: 0;
}
.header-cta:hover {
	background: linear-gradient(135deg, #ff7440 0%, #ffa59e 100%);
}
.nav-cta {
	display: none;
}
.nav-header {
	display: none;
}
.nav-links {
	display: contents;
}
.nav-close {
	display: none;
}
/* ハンバーガーボタン */
.nav-toggle {
	display: none;
	width: 52px;
	height: 52px;
	padding: 0;
	background: #fff;
	border: 1.5px solid var(--gray-200);
	border-radius: 10px;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	margin-right: 10px;
	box-shadow: 0 2px 8px rgba(12, 68, 124, 0.08);
	transition:
		background 0.15s,
		border-color 0.15s;
}
.nav-toggle:hover {
	background: var(--blue-light);
	border-color: var(--blue);
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
	content: "";
	position: absolute;
	left: 13px;
	right: 13px;
	height: 2px;
	background: var(--blue-dark);
	border-radius: 2px;
	transition:
		transform 0.22s ease,
		opacity 0.18s ease,
		top 0.22s ease,
		bottom 0.22s ease;
}
.nav-toggle::before {
	top: 15px;
}
.nav-toggle span {
	top: 24px;
}
.nav-toggle::after {
	bottom: 15px;
}
.nav-toggle[aria-expanded="true"]::before {
	top: 24px;
	transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span {
	opacity: 0;
}
.nav-toggle[aria-expanded="true"]::after {
	bottom: 24px;
	transform: rotate(-45deg);
}
/* バックドロップ */
.nav-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(12, 68, 124, 0.3);
	backdrop-filter: blur(2px);
	z-index: 90;
}
.nav-backdrop.is-open {
	display: block;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 20px;
	border-radius: var(--radius);
	cursor: pointer;
	text-decoration: none;
	transition:
		background 0.15s,
		transform 0.1s;
	border: none;
}
.btn:active {
	transform: scale(0.98);
}
.btn-primary {
	background: #156fc6;
	color: #fff;
	border-radius: 999px;
	font-weight: 700;
	box-shadow: 0 3px 12px rgba(21, 111, 198, 0.2);
}
.btn-primary:hover {
	background: #0c447c;
	box-shadow: 0 5px 16px rgba(21, 111, 198, 0.3);
}
.btn-outline {
	background: transparent;
	border: 1.5px solid var(--blue);
	color: var(--blue);
}
.btn-outline:hover {
	background: var(--blue-light);
}
.btn-lg {
	font-size: 16px;
	padding: 14px 32px;
}
.btn-xl {
	font-size: 17px;
	padding: 16px 40px;
	border-radius: 10px;
}

/* ===== HERO ===== */
.hero {
	background: #f6f1eb;
	padding: 0;
	overflow: hidden;
	position: relative;
}
.hero-inner {
	margin: auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 520px;
	gap: 0;
	align-items: start;
	position: relative;
}
.hero-left {
	position: relative;
	text-align: left;
	padding: 108px 40px 32px;
	min-height: 836px;
	overflow: hidden;
	z-index: 2;
}
.hero-left > * {
	position: relative;
	z-index: 2;
}
@media (min-width: 1440px) {
	.hero-left {
		margin-left: calc((100vw - 1440px) / 2);
	}
}
.hero-form-card {
	z-index: 2;
}
.hero-fv {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}
.hero-fv img {
	display: block;
	width: 100%;
	height: 100%;
}
.hero-fv--01 {
	left: -80px;
	top: -100px;
	width: 262px;
	height: 262px;
	transform-origin: center;
}
.hero-fv--02 {
	left: 662px;
	top: -83px;
	width: 385px;
	height: 385px;
}
.hero-fv--03 {
	left: 742.1px;
	top: 533.9px;
	width: 172px;
	height: 153px;
}
.hero-fv--04 {
	left: -9px;
	top: 729px;
	width: 204px;
	height: 204px;
	transform: rotate(8.49deg);
	transform-origin: center;
}
.hero-topic {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #156fc6;
	border-radius: 999px;
	border: 1px solid #fff;
	padding: 10px 16px;
	font-size: clamp(16px, 1.6vw, 24px);
	font-weight: 700;
	line-height: 1.25;
}
.hero-topic-text {
	font-size: clamp(16px, 1.8vw, 28px);
	color: #156fc6;
	font-weight: 700;
	line-height: 1;
}
.hero-title {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: clamp(28px, 3.2vw, 48px);
	font-weight: 700;
	color: #000;
	line-height: 1.35;
	margin-bottom: 34px;
	letter-spacing: -0.02em;
}
.hero-title-main {
	position: relative;
	display: inline-block;
	padding-bottom: 18px;
	width: fit-content;
}
.hero-title-main::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: min(100%, 421px);
	height: 11px;
	background: url("../images/fv_path.svg") no-repeat left center / 100% 100%;
	pointer-events: none;
}
.hero-title-accent {
	color: #156fc6;
	letter-spacing: 0.08em;
	font-weight: 900;
}
.hero-visual {
	position: absolute;
	left: 540px;
	top: 84px;
	width: 460px;
	height: 342px;
	pointer-events: none;
	z-index: 1;
}
.hero-visual__image {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 459px;
	height: 342px;
	border-radius: 14px;
	overflow: hidden;
}
.hero-visual__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hero-sub {
	font-size: clamp(16px, 1.4vw, 20px);
	color: #222;
	line-height: 1.75;
	margin-bottom: 16px;
	max-width: 500px;
	font-weight: 500;
}
.hero-note {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: clamp(16px, 1.4vw, 20px);
	color: #156fc6;
	text-decoration: none;
	border-bottom: 2px solid #156fc6;
	padding-bottom: 3px;
	font-weight: 500;
}
.hero-assurance {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 620px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}
.hero-assurance li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(21, 111, 198, 0.18);
	color: #0c447c;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	box-shadow: 0 4px 12px rgba(12, 68, 124, 0.06);
}
.hero-assurance li::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #ff6e35;
	flex-shrink: 0;
}
.hero-note::after {
	content: "▼";
	font-size: 16px;
	transform: translateY(2px);
}
.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2.2vw, 28px);
	margin-top: 34px;
	max-width: 760px;
}
.stat-item {
	width: 100%;
	min-width: 0;
	max-width: none;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	padding: 10px;
	border: 4px solid transparent;
	background:
		linear-gradient(#f6f1eb, #f6f1eb) padding-box,
		linear-gradient(135deg, #ff6e35 0%, #ff9c96 100%) border-box;
}
.stat-body {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #fff;
	border: 4px solid #ffbdb5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(2px, 0.3vw, 5px);
	padding: clamp(6px, 0.7vw, 10px);
	text-align: center;
	position: relative;
}
.stat-icon {
	width: clamp(42px, 5.2vw, 76px);
	height: clamp(38px, 4.7vw, 68px);
	margin-top: clamp(-22px, -1.6vw, -14px);
	margin-bottom: clamp(4px, 0.8vw, 8px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.stat-icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}
.stat-num {
	max-width: 100%;
	font-size: clamp(18px, 1.55vw, 25px);
	font-weight: 800;
	color: #ff6e35;
	line-height: 1.1;
	overflow-wrap: anywhere;
}
.stat-label {
	max-width: 100%;
	font-size: clamp(13px, 1vw, 17px);
	color: #222;
	font-weight: 700;
	line-height: 1.25;
	overflow-wrap: anywhere;
}
.hero-form-card {
	background: #fff;
	border: none;
	border-radius: 0;
	padding: 40px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
	height: 100%;
	min-height: 836px;
	display: flex;
	flex-direction: column;
}
.hero-form-label {
	font-size: 18px;
	font-weight: 700;
	color: #156fc6;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 8px;
	line-height: 1.2;
}
.hero-form-title {
	font-size: clamp(28px, 2.6vw, 42px);
	line-height: 1.25;
	margin-bottom: 10px;
	color: #222;
}
.hero-form-sub {
	font-size: 16px;
	color: #222;
	margin-bottom: 24px;
	line-height: 1.45;
}
.hero-form-field {
	margin-bottom: 14px;
}
.hero-form-field label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	color: #222;
	margin-bottom: 5px;
	font-weight: 700;
	line-height: 1.4;
}
.req {
	color: #d63a31;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}
.hero-form-input,
.hero-form-textarea,
.hero-form-select {
	width: 100%;
	border: 1px solid #e8e8e8;
	border-radius: 4px;
	padding: 10px 14px;
	font-size: 16px;
	color: #222;
	background: #f6f6f6;
}
.hero-form-input::placeholder,
.hero-form-textarea::placeholder {
	color: #999;
}
.hero-form-textarea {
	min-height: 88px;
	resize: vertical;
}
.hero-form-check {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 16px;
	color: #1571da;
	margin: 8px 0 18px;
	line-height: 1.6;
}
.hero-form-check input {
	margin-top: 2px;
	accent-color: #156fc6;
}
.hero-form-check a {
	color: #1571da;
	text-decoration: none;
}
.hero-form-check a:hover {
	text-decoration: underline;
}
.hero-form-submit {
	width: 100%;
	min-height: 70px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: 3px solid #f3f3f3;
	border-radius: 999px;
	background: linear-gradient(135deg, #ff6e35 0%, #ff8e88 100%);
	color: #fff;
	cursor: pointer;
	box-shadow: 2px 8px 13px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.1s,
		filter 0.15s;
}
.hero-form-submit:hover {
	filter: brightness(0.97);
	transform: translateY(-1px);
}
.hero-form-submit__lead {
	width: 35px;
	height: 35px;
	display: inline-block;
	flex-shrink: 0;
}
.hero-form-submit__text {
	font-size: clamp(20px, 1.7vw, 24px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.01em;
}
.hero-form-submit__arrow {
	width: 35px;
	height: 35px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
	flex-shrink: 0;
	background: transparent;
	font-family: inherit;
}
.hero-form-help {
	display: block;
	margin-top: 18px;
	font-size: 16px;
	color: #222;
	text-decoration: none;
	text-align: center;
}
.hero-form-help:hover {
	text-decoration: underline;
}
.hero-form-notice {
	font-size: 16px;
	border-radius: 8px;
	padding: 9px 12px;
	margin: 0 0 12px;
}
.hero-form-notice--success {
	background: #eaf3de;
	color: #3b6d11;
	border: 1px solid #cfe4b8;
}
.hero-form-notice--error {
	background: #fcebeb;
	color: #a32d2d;
	border: 1px solid #f5caca;
}

/* ===== SECTION DECO (CSS backgrounds) ===== */
.deco-dots {
	position: absolute;
	width: 180px;
	height: 180px;
	background-image: radial-gradient(
		circle,
		rgba(21, 111, 198, 0.1) 2px,
		transparent 2px
	);
	background-size: 18px 18px;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}
.deco-blob {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	opacity: 0.5;
}
.deco-circle {
	position: absolute;
	border-radius: 50%;
	border: 3px solid rgba(21, 111, 198, 0.08);
	pointer-events: none;
	z-index: 0;
}

/* ===== SECTION ILLUSTRATION PLACEHOLDERS ===== */
.section-illust {
	display: flex;
	align-items: center;
	justify-content: center;
}
.section-illust img {
	max-width: 100%;
	height: auto;
	display: block;
}

.bg-warm {
	background: #faf7f3;
}
.bg-white {
	background: #fff;
}

/* ===== SECTION COMMON ===== */
section {
	padding: 96px 24px;
	position: relative;
	overflow: hidden;
}
.section-inner {
	max-width: 1080px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.section-label {
	font-size: 16px;
	font-weight: 700;
	color: #156fc6;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.section-title {
	font-size: clamp(26px, 4vw, 40px);
	font-weight: 700;
	color: #111;
	line-height: 1.5;
	margin-bottom: 18px;
	letter-spacing: -0.02em;
}
.section-title em {
	color: #156fc6;
	font-style: normal;
}
.section-sub {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
}
.sp-only {
	display: none;
}
@media (max-width: 760px) {
	.sp-only {
		display: block;
	}
}

/* ===== PROBLEMS ===== */
.problems {
	background: #faf7f3;
}
#problems.problems {
	background: linear-gradient(180deg, #eef5fc 0%, #f7f9fc 100%);
}
#problems .problems-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
}
#problems .section-label {
	margin-bottom: 0;
}
#problems .section-title {
	margin-bottom: 0;
	padding: 0 34px;
	position: relative;
}
#problems .section-title::before,
#problems .section-title::after {
	content: "";
	position: absolute;
	top: 12px;
	width: 14px;
	height: 14px;
	border-top: 2px solid rgba(21, 111, 198, 0.42);
}
#problems .section-title::before {
	left: 0;
	border-left: 2px solid rgba(21, 111, 198, 0.42);
}
#problems .section-title::after {
	right: 0;
	border-right: 2px solid rgba(21, 111, 198, 0.42);
}
#problems .problem-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
	max-width: 980px;
	margin: 40px auto 0;
}
#problems .problem-item {
	grid-column: span 2;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 3px solid rgba(21, 111, 198, 0.18);
	border-radius: 26px;
	padding: 22px 20px;
	min-height: 110px;
	text-align: center;
	box-shadow: 0 6px 16px rgba(21, 111, 198, 0.08);
}
#problems .problem-item:nth-child(4) {
	grid-column: 2 / span 2;
}
#problems .problem-item:nth-child(5) {
	grid-column: 4 / span 2;
}
.problem-text {
	font-size: 16px;
	color: #333;
	line-height: 1.7;
}
#problems .problem-text strong {
	color: #156fc6;
}
.problem-footer {
	margin-top: 36px;
	padding: 28px 32px;
	background: rgba(21, 111, 198, 0.06);
	border: 1px solid rgba(21, 111, 198, 0.12);
	border-radius: 16px;
	font-size: 16px;
	color: #333;
	line-height: 1.75;
	text-align: center;
}
.problem-footer strong {
	color: #156fc6;
}
#problems .problem-footer strong {
	color: #fff;
}
#problems .problem-footer {
	max-width: 920px;
	margin: 38px auto 0;
	padding: 22px 28px;
	background: #156fc6;
	border: 0;
	border-radius: 999px;
	font-size: clamp(20px, 2.8vw, 34px);
	font-weight: 700;
	line-height: 1.45;
	color: #fff;
	letter-spacing: 0.02em;
}
@media (max-width: 1024px) {
	#problems .problem-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 760px;
	}
	#problems .problem-item,
	#problems .problem-item:nth-child(4),
	#problems .problem-item:nth-child(5) {
		grid-column: span 1;
	}
}
@media (max-width: 640px) {
	#problems .section-title {
		padding: 0 24px;
	}
	#problems .section-title::before,
	#problems .section-title::after {
		top: 8px;
		width: 10px;
		height: 10px;
	}
	#problems .problem-grid {
		grid-template-columns: 1fr;
		margin-top: 30px;
	}
	#problems .problem-item {
		padding: 18px 16px;
		min-height: 0;
	}
	#problems .problem-footer {
		border-radius: 22px;
		padding: 18px 20px;
		font-size: 22px;
	}
}

/* ===== REASONS ===== */
.reasons-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	margin-top: 54px;
}
#reasons .section-inner {
	max-width: 1120px;
}
#reasons .section-label,
#reasons .section-title,
#reasons .section-sub {
	text-align: center;
}
#reasons .section-label {
	color: rgba(17, 17, 17, 0.35);
	letter-spacing: 0.08em;
}
#reasons .section-title {
	margin-bottom: 14px;
}
#reasons .section-sub {
	max-width: 760px;
	margin: 0 auto;
}
.reason-card {
	border-radius: 20px;
	padding: 30px 24px 26px;
	background: #f6f8fb;
	border: 1px solid #e5eaf1;
	position: relative;
	min-height: 300px;
}
.reason-point {
	font-size: 16px;
	font-weight: 700;
	color: #ff6e35;
	margin-bottom: 10px;
	letter-spacing: 0.03em;
	line-height: 1;
}
.reason-point span {
	font-size: 44px;
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.03em;
	display: inline-block;
	margin-left: 6px;
}
.reason-visual {
	height: 160px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin-bottom: 14px;
	position: relative;
}
.reason-visual::before {
	content: "";
	position: absolute;
	bottom: 6px;
	width: min(240px, 88%);
	height: 18px;
	border-radius: 999px;
	background: rgba(21, 111, 198, 0.12);
}
.reason-visual img {
	max-width: 138px;
	max-height: 128px;
	width: auto;
	height: auto;
	position: relative;
	z-index: 1;
	object-fit: contain;
}
.reason-title {
	font-size: 28px;
	font-weight: 700;
	color: #156fc6;
	margin-bottom: 14px;
	text-align: center;
	line-height: 1.45;
}
.reason-desc {
	font-size: 16px;
	color: #666;
	line-height: 1.85;
}
.reason-cta-wrap {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}
.reason-cta {
	min-width: 260px;
	padding: 14px 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: 2px solid #156fc6;
	border-radius: 999px;
	color: #156fc6;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	background: #fff;
	transition:
		background 0.15s,
		color 0.15s;
}
.reason-cta::after {
	content: "";
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #156fc6;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 1.5L6 5L2 8.5' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 10px 10px;
}
.reason-cta:hover {
	background: #156fc6;
	color: #fff;
}
.reason-cta:hover::after {
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 1.5L6 5L2 8.5' fill='none' stroke='%23156fc6' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media (max-width: 1024px) {
	.reasons-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
	.reason-card {
		min-height: 0;
	}
	.reason-visual {
		height: 134px;
	}
	.reason-title {
		font-size: 24px;
	}
}
@media (max-width: 640px) {
	.reasons-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* ===== COMPARISON ===== */
.comparison {
	padding: 72px 24px;
	background:
		radial-gradient(
			circle at 50% 18%,
			rgba(255, 255, 255, 0.96) 0 19%,
			rgba(255, 255, 255, 0) 44%
		),
		linear-gradient(180deg, #f4f8fd 0%, #f7faff 54%, #eef4fb 100%);
}
#comparison .comparison-inner {
	width: 100%;
	max-width: 1120px;
	min-width: 0;
}
.comparison-deco {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}
.comparison-deco img {
	display: none;
}
.comparison-deco--left {
	width: 260px;
	height: 274px;
	left: -173px;
	top: 31px;
	opacity: 1;
}
.comparison-deco--right {
	width: 240px;
	height: 160px;
	right: -38px;
	top: -40px;
	opacity: 1;
}
.comparison-deco--left::before,
.comparison-deco--right::before,
.comparison-deco--left::after {
	content: "";
	position: absolute;
	display: block;
}
.comparison-deco--left::before {
	width: 274px;
	height: 274px;
	left: 9px;
	top: 10px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(226, 239, 253, 0.58),
		rgba(235, 244, 255, 0.28)
	);
}
.comparison-deco--left::after {
	width: 136px;
	height: 108px;
	left: 234px;
	top: 53px;
	background-image: radial-gradient(
		circle,
		rgba(190, 215, 246, 0.96) 0 2.8px,
		transparent 3.2px
	);
	background-size: 23px 23px;
}
.comparison-deco--right::before {
	width: 240px;
	height: 240px;
	right: -70px;
	top: -114px;
	border-radius: 50%;
	background: repeating-linear-gradient(
		135deg,
		rgba(226, 239, 253, 0.78) 0 7px,
		rgba(246, 251, 255, 0.78) 7px 14px
	);
}
.comparison-heading,
.comparison-table-wrap,
.comparison-notes {
	position: relative;
	z-index: 2;
}
.comparison-heading {
	text-align: center;
}
.comparison-eyebrow {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #185fc8;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.2;
}
.comparison-eyebrow-dot {
	font-size: 0.72em;
	line-height: 1;
	letter-spacing: 0;
}
.comparison-eyebrow::before,
.comparison-eyebrow::after {
	content: "";
	width: 34px;
	height: 2px;
	border-radius: 999px;
	background: #8fb6e8;
}
.comparison-title {
	margin: 14px 0 0;
	color: #071c4d;
	font-size: clamp(34px, 4vw, 44px);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.06em;
}
.comparison-title::after {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	border-radius: 999px;
	margin: 14px auto 0;
	background: linear-gradient(90deg, #ff6e35 0%, #ffb26f 100%);
}
.comparison-lead {
	margin: 18px auto 0;
	max-width: 760px;
	color: #1b2846;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.02em;
	overflow-wrap: anywhere;
}
.comparison-mobile-break {
	display: none;
}
.comparison-table-wrap {
	width: 100%;
	max-width: 100%;
	margin-top: 44px;
}
.comparison-table-shell {
	position: relative;
	padding: 24px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow:
		inset 0 0 0 1px rgba(218, 228, 240, 0.92),
		0 18px 38px rgba(22, 71, 132, 0.08);
}
.comparison-table-shell::after {
	content: "";
	position: absolute;
	z-index: 4;
	top: 24px;
	bottom: 24px;
	left: calc(18.6% + 15.07px);
	width: calc(20.1% - 9.65px);
	border: 2px solid rgba(27, 102, 213, 0.95);
	border-radius: 14px;
	pointer-events: none;
	box-shadow: 0 0 18px rgba(24, 95, 200, 0.045);
}
.comparison-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	border: 1px solid #dce5f0;
	border-radius: 10px;
	background: #fff;
	overflow: visible;
}
.comparison-table .comparison-col-item {
	width: 18.6%;
}
.comparison-table .comparison-col-sitedoc {
	width: 20.1%;
}
.comparison-table .comparison-col-other {
	width: 15.325%;
}
.comparison-table caption {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.comparison-table th,
.comparison-table td {
	height: 88px;
	padding: 15px 14px;
	border-right: 1px solid #dce5f0;
	border-bottom: 1px solid #dce5f0;
	text-align: center;
	vertical-align: middle;
	color: #10182e;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
	background: #fff;
}
.comparison-table td {
	white-space: nowrap;
}
.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
	border-bottom: 0;
}
.comparison-table th:last-child,
.comparison-table td:last-child {
	border-right: 0;
}
.comparison-table thead th {
	height: 70px;
	padding-top: 12px;
	padding-bottom: 12px;
	background: linear-gradient(180deg, #f4f8fd 0%, #edf4fb 100%);
	font-size: clamp(22px, 2vw, 28px);
	font-weight: 900;
	letter-spacing: 0.03em;
}
.comparison-table thead th:first-child {
	border-top-left-radius: 9px;
}
.comparison-table thead th:last-child {
	border-top-right-radius: 9px;
}
.comparison-table tbody th {
	text-align: left;
	background: #fff;
	font-size: 16px;
	font-weight: 800;
	padding-left: 18px;
}
.comparison-item-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	white-space: nowrap;
}
.comparison-item-icon {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border-radius: 50%;
	background: #eaf2fb;
	color: #1f63c9;
}
.comparison-item-icon svg {
	width: 24px;
	height: 24px;
	display: block;
}
.comparison-item-sub {
	display: inline-block;
	margin-left: 2px;
	font-size: 0.68em;
	font-weight: 700;
	transform: scaleX(0.78);
	transform-origin: left center;
}
.comparison-sitedoc-head,
.comparison-sitedoc-cell {
	position: relative;
	background: linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%) !important;
	color: #185fc8 !important;
	box-shadow: 0 0 18px rgba(24, 95, 200, 0.035);
}
.comparison-sitedoc-name {
	display: inline-block;
	font-size: clamp(24px, 2.3vw, 30px);
	font-weight: 900;
	letter-spacing: 0.01em;
}
.comparison-recommend-badge {
	position: absolute;
	z-index: 5;
	left: 50%;
	top: -42px;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 150px;
	min-height: 44px;
	padding: 7px 16px;
	border-radius: 13px 13px 9px 9px;
	background: linear-gradient(180deg, #2f86fb 0%, #2468d7 100%);
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.04em;
	box-shadow: 0 8px 16px rgba(36, 104, 215, 0.2);
}
.comparison-recommend-rays {
	position: absolute;
	left: -35px;
	top: -17px;
	width: 34px;
	height: 34px;
	pointer-events: none;
}
.comparison-recommend-rays span {
	position: absolute;
	display: block;
	height: 3px;
	border-radius: 999px;
	background: #ff7a31;
	transform-origin: center;
}
.comparison-recommend-rays span:nth-child(1) {
	width: 16px;
	left: 23px;
	top: 1px;
	transform: rotate(58deg);
}
.comparison-recommend-rays span:nth-child(2) {
	width: 17px;
	left: 12px;
	top: 14px;
	transform: rotate(37deg);
}
.comparison-recommend-rays span:nth-child(3) {
	width: 20px;
	left: 1px;
	top: 28px;
	transform: rotate(12deg);
}
.comparison-recommend-icon {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.comparison-recommend-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}
.comparison-sitedoc-cell {
	font-size: 16px;
	font-weight: 900;
}
.comparison-sitedoc-value {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0 8px 0 54px;
}
.comparison-sitedoc-cell strong {
	display: inline-block;
	max-width: 100%;
	font-size: clamp(24px, 2.1vw, 28px);
	font-weight: 900;
	letter-spacing: 0.02em;
	line-height: 1.22;
	text-align: center;
	white-space: nowrap;
}
.comparison-check {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1b66d5;
	flex: 0 0 auto;
}
.comparison-check svg {
	width: 100%;
	height: 100%;
	display: block;
}
.comparison-notes {
	margin-top: 24px;
	padding: 18px 24px 20px;
	display: grid;
	gap: 6px;
	border: 1px solid rgba(219, 229, 241, 0.94);
	border-radius: 22px;
	background: rgba(248, 251, 255, 0.62);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}
.comparison-notes p {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #1d2947;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
	overflow-wrap: anywhere;
}
.comparison-note-icon {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border: 2px solid #2a6dcc;
	border-radius: 50%;
	color: #2a6dcc;
	font-size: 18px;
	font-weight: 700;
	font-family: Georgia, serif;
	font-style: italic;
	line-height: 1;
}
.comparison-note-text {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-all;
	line-break: anywhere;
}
.comparison-note-mobile-break {
	display: none;
}
@media (max-width: 1200px) {
	.comparison {
		padding-top: 64px;
		padding-bottom: 64px;
	}
	.comparison-table-wrap {
		margin-top: 12px;
		padding-top: 60px;
		padding-bottom: 8px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}
	.comparison-table-wrap::-webkit-scrollbar {
		height: 9px;
	}
	.comparison-table-wrap::-webkit-scrollbar-thumb {
		border-radius: 999px;
		background: rgba(27, 102, 213, 0.42);
	}
	.comparison-table-shell {
		min-width: 1120px;
	}
	.comparison-eyebrow {
		font-size: 15px;
	}
	.comparison-title {
		font-size: clamp(32px, 4.4vw, 42px);
	}
	.comparison-lead {
		font-size: 15px;
		max-width: 760px;
	}
	.comparison-table th,
	.comparison-table td {
		height: 84px;
		font-size: 15px;
	}
	.comparison-table thead th {
		height: 68px;
		font-size: clamp(21px, 2.6vw, 26px);
	}
	.comparison-table tbody th {
		font-size: 15px;
	}
	.comparison-sitedoc-name {
		font-size: clamp(24px, 3vw, 28px);
	}
	.comparison-recommend-badge {
		min-width: 140px;
		min-height: 40px;
		font-size: 17px;
		top: -38px;
	}
	.comparison-sitedoc-cell {
		font-size: 15px;
	}
	.comparison-sitedoc-value {
		padding: 0 8px 0 50px;
	}
	.comparison-sitedoc-cell strong {
		font-size: clamp(23px, 2.35vw, 27px);
	}
	.comparison-check {
		left: 13px;
		width: 28px;
		height: 28px;
	}
	.comparison-notes p {
		font-size: 14px;
	}
}
@media (max-width: 900px) {
	.comparison-deco {
		display: none;
	}
	.comparison-table-shell {
		min-width: 1120px;
		border-radius: 26px;
		padding: 16px;
	}
	.comparison-table-shell::after {
		top: 16px;
		bottom: 16px;
		left: calc(18.6% + 10.05px);
		width: calc(20.1% - 6.43px);
	}
	.comparison-table th,
	.comparison-table td {
		height: 88px;
	}
}
@media (max-width: 640px) {
	.comparison {
		padding: 56px 20px 64px;
	}
	.comparison-heading {
		width: calc(100vw - 40px);
		max-width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
	.comparison-eyebrow {
		gap: 12px;
		font-size: 16px;
	}
	.comparison-eyebrow::before,
	.comparison-eyebrow::after {
		width: 34px;
		height: 2px;
	}
	.comparison-title {
		margin-top: 14px;
		font-size: clamp(30px, 9vw, 38px);
	}
	.comparison-title::after {
		width: 54px;
		height: 4px;
		margin-top: 14px;
	}
	.comparison-lead {
		width: 100%;
		max-width: none;
		margin-top: 18px;
		font-size: 15px;
		line-height: 1.8;
		letter-spacing: 0.01em;
		word-break: break-all;
		line-break: anywhere;
	}
	.comparison-lead .comparison-mobile-break {
		display: inline;
	}
	.comparison-table-wrap {
		margin-top: 0;
		padding-top: 42px;
	}
	.comparison-table-shell {
		min-width: 1120px;
		padding: 16px;
		border-radius: 22px;
	}
	.comparison-table th,
	.comparison-table td {
		height: 78px;
		padding: 15px 10px;
		font-size: 14px;
	}
	.comparison-table thead th {
		height: 82px;
		font-size: 20px;
	}
	.comparison-table tbody th {
		font-size: 15px;
		padding-left: 14px;
	}
	.comparison-item-icon {
		width: 38px;
		height: 38px;
	}
	.comparison-item-icon svg {
		width: 25px;
		height: 25px;
	}
	.comparison-sitedoc-name {
		font-size: 24px;
	}
	.comparison-recommend-badge {
		min-width: 124px;
		min-height: 40px;
		padding: 6px 12px;
		top: -38px;
		font-size: 18px;
	}
	.comparison-recommend-icon {
		width: 18px;
		height: 18px;
	}
	.comparison-sitedoc-cell {
		font-size: 14px;
	}
	.comparison-sitedoc-value {
		padding: 0 8px 0 44px;
	}
	.comparison-sitedoc-cell strong {
		font-size: 21px;
	}
	.comparison-check {
		left: 8px;
		width: 30px;
		height: 30px;
	}
	.comparison-notes {
		width: calc(100vw - 40px);
		max-width: 100%;
		margin-right: auto;
		margin-left: auto;
		margin-top: 20px;
		padding: 16px 14px;
		border-radius: 16px;
	}
	.comparison-notes p {
		font-size: 14px;
		line-height: 1.75;
		align-items: flex-start;
		word-break: break-all;
		line-break: anywhere;
	}
	.comparison-note-icon {
		width: 24px;
		height: 24px;
		font-size: 17px;
	}
	.comparison-note-mobile-break {
		display: inline;
	}
}

/* ===== PRICING =====  */
.pricing {
	padding: 46px 0;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.96) 0%,
		rgba(247, 251, 255, 0.98) 58%,
		#fff 100%
	);
	color: #071c4d;
}
.pricing::before,
.pricing::after {
	content: "";
	position: absolute;
	z-index: 0;
	pointer-events: none;
}
.pricing::before {
	top: -96px;
	right: -126px;
	width: 380px;
	height: 178px;
	border-radius: 0 0 0 88%;
	background: #eef5fd;
	transform: rotate(24deg);
}
.pricing::after {
	top: 166px;
	left: -176px;
	width: 340px;
	height: 282px;
	border-radius: 0 62% 58% 0;
	background: #eef5fd;
	transform: rotate(18deg);
}
#pricing .pricing-inner {
	max-width: 1120px;
}
.pricing-inner::before,
.pricing-inner::after {
	content: "";
	position: absolute;
	z-index: 0;
	width: 148px;
	height: 148px;
	pointer-events: none;
	background-image: radial-gradient(
		circle,
		rgba(21, 111, 198, 0.32) 1.4px,
		transparent 1.6px
	);
	background-size: 14px 14px;
	opacity: 0.72;
}
.pricing-inner::before {
	top: -44px;
	right: -18px;
}
.pricing-inner::after {
	top: 222px;
	left: -44px;
}
.pricing-heading,
.pricing-panel {
	position: relative;
	z-index: 1;
}
.pricing-heading {
	padding: 0 24px 52px;
	text-align: center;
}
.pricing-eyebrow {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	color: #1269c7;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0.08em;
}
.pricing-eyebrow::before,
.pricing-eyebrow::after {
	content: "";
	width: 42px;
	height: 2px;
	border-radius: 999px;
	background: #63a4e8;
}
.pricing-title {
	margin: 16px 0 24px;
	color: #071c4d;
	font-size: clamp(34px, 4.2vw, 44px);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.08em;
}
.pricing-catch {
	margin: 0;
	color: #071c4d;
	font-size: clamp(24px, 3.25vw, 34px);
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: 0.02em;
	white-space: nowrap;
}
.pricing-catch span {
	display: inline-block;
	margin: 0 4px;
	font-size: 1.28em;
	letter-spacing: 0.03em;
}
.pricing-lead {
	max-width: 760px;
	margin: 18px auto 0;
	color: #071c4d;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.8;
	letter-spacing: 0.03em;
}
.pricing-initial-fee-note {
	margin: 20px auto 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 11px 24px;
	border: 2px solid #ff9a6e;
	background: linear-gradient(135deg, #ff5f2a 0%, #ff7d2c 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.5;
	letter-spacing: 0.02em;
	box-shadow: 0 8px 18px rgba(255, 95, 42, 0.24);
}
.pricing-initial-fee-sub {
	margin: 10px auto 0;
	color: #071c4d;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: 0.01em;
}
.pricing-panel {
	overflow: visible;
}
.pricing-panel-heading {
	text-align: center;
}
.pricing-panel-heading h3 {
	margin: 0;
	color: #071c4d;
	font-size: clamp(28px, 3.1vw, 34px);
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0.05em;
}
.pricing-panel-heading p {
	margin: 12px 0 0;
	color: #071c4d;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.65;
}
.pricing-plan-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 40px auto 0;
}
.pricing-plan-card {
	position: relative;
	min-height: 390px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	background: #fff;
	border: 1px solid #dce6f1;
	border-radius: 17px;
	padding: 42px 12px 26px;
	box-shadow: 0 5px 16px rgba(8, 37, 84, 0.13);
}
.pricing-plan-card.is-recommended {
	border: 2px solid #1269c7;
	box-shadow: 0 7px 20px rgba(18, 105, 199, 0.15);
}
.pricing-plan-badge {
	position: absolute;
	top: -22px;
	left: 50%;
	width: 174px;
	min-height: 38px;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	background: #1269c7;
	color: #fff;
	border-radius: 7px;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: 0.03em;
	box-shadow: 0 5px 10px rgba(18, 105, 199, 0.18);
}
.pricing-plan-name {
	margin: 0;
	color: #1269c7;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0.04em;
}
.pricing-plan-price {
	width: 100%;
	margin: 22px 0 0;
	display: inline-flex;
	align-items: flex-end;
	justify-content: center;
	gap: 6px;
	color: #1269c7;
	line-height: 1;
	white-space: nowrap;
}
.pricing-plan-price span {
	position: relative;
	top: -4px;
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: -0.04em;
}
.pricing-plan-price strong {
	flex: 0 0 auto;
	font-size: clamp(34px, 3.7vw, 43px);
	font-weight: 900;
	letter-spacing: -0.055em;
}
.pricing-plan-initial-fee {
	margin: 14px 0 0;
	padding: 7px 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border-radius: 999px;
	background: linear-gradient(90deg, #fff2e2 0%, #ffe1c3 100%);
	color: #8f3a00;
	border: 1px solid #ffc28c;
	font-weight: 900;
	line-height: 1.2;
}
.pricing-plan-initial-fee span {
	font-size: 11px;
	letter-spacing: 0.02em;
}
.pricing-plan-initial-fee strong {
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.01em;
}
.pricing-plan-count {
	width: 100%;
	margin: 18px 0 0;
	padding: 7px 12px 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 999px;
	background: linear-gradient(90deg, #edf6ff 0%, #dcecf9 100%);
	color: #1269c7;
	font-weight: 900;
	line-height: 1.2;
}
.pricing-plan-count span {
	font-size: 13px;
	letter-spacing: 0.02em;
}
.pricing-plan-count strong {
	font-size: 17px;
	font-weight: 900;
}
.pricing-plan-divider {
	width: 100%;
	margin: 29px 0 24px;
	border-top: 2px dotted #afd0f2;
}
.pricing-plan-rollover,
.pricing-plan-target {
	margin: 0;
	color: #071c4d;
	font-weight: 900;
	line-height: 1.6;
	letter-spacing: 0.02em;
}
.pricing-plan-rollover {
	display: grid;
	gap: 3px;
	max-width: 200px;
	font-size: 13px;
}
.pricing-plan-rollover span,
.pricing-plan-rollover strong,
.pricing-plan-rollover small {
	display: block;
}
.pricing-plan-rollover strong {
	color: #1269c7;
	font-size: 14px;
	font-weight: 900;
}
.pricing-plan-rollover small {
	color: #071c4d;
	font-size: 12px;
	font-weight: 800;
}
.pricing-plan-target {
	margin-top: 14px;
	font-size: 14px;
	letter-spacing: 0;
	white-space: nowrap;
}
.pricing-plan-divider + .pricing-plan-target {
	margin-top: 8px;
}
.pricing-plan-note {
	max-width: 820px;
	margin: 18px auto 0;
	color: #071c4d;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.7;
	text-align: center;
	letter-spacing: 0.01em;
}
.pricing-maintenance-section {
	min-height: 118px;
	margin: 32px 0 0;
	display: grid;
	grid-template-columns: minmax(500px, 1fr) auto minmax(480px, 0.86fr);
	gap: 30px;
	align-items: center;
	border: 1px solid #dce8f4;
	border-radius: 16px;
	background: #fff;
	padding: 22px 30px;
	box-shadow: 0 8px 24px rgba(8, 37, 84, 0.09);
}
.pricing-maintenance-copy {
	min-width: 0;
}
.pricing-maintenance-copy h3 {
	margin: 12px 0 0;
	color: #071c4d;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0;
}
.pricing-maintenance-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	max-width: 100%;
	padding: 6px 15px;
	border-radius: 999px;
	background: #e7f4ff;
	color: #1269c7;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0;
}
.pricing-maintenance-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	margin-top: 5px;
}
.pricing-maintenance-price {
	margin: 0;
	display: inline-flex;
	align-items: baseline;
	color: #1269c7;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}
.pricing-maintenance-price strong {
	font-size: 34px;
	font-weight: 900;
	letter-spacing: 0;
}
.pricing-maintenance-price span {
	margin-left: 3px;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0;
}
.pricing-maintenance-target {
	margin: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	border: 1px solid #ffb88c;
	border-radius: 999px;
	padding: 7px 18px;
	background: #fff;
	color: #f05a24;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0;
	white-space: nowrap;
}
.pricing-maintenance-divider {
	width: 0;
	height: 66px;
	border-left: 2px dotted #8bc2ff;
}
.pricing-maintenance-list {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, max-content);
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	list-style: none;
}
.pricing-maintenance-list li {
	display: grid;
	grid-template-columns: 28px max-content;
	gap: 12px;
	align-items: center;
	color: #071c4d;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0;
	white-space: nowrap;
}
.pricing-maintenance-list li::before {
	content: "";
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='10' viewBox='0 0 13 10'%3E%3Cpath d='M1.5 5.2 4.7 8 11.5 1.6' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
			center / 13px 10px no-repeat,
		#1269c7;
}
.pricing-spot-section {
	margin: 34px 0 0;
	padding: 28px 24px 26px;
}
.pricing-spot-heading {
	text-align: center;
}
.pricing-spot-initial-fee {
	margin: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 14px;
	border-radius: 999px;
	background: linear-gradient(135deg, #ff5f2a 0%, #ff7d2c 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.02em;
	box-shadow: 0 6px 14px rgba(255, 95, 42, 0.2);
}
.pricing-spot-heading h3 {
	margin: 8px 0 0;
	color: #071c4d;
	font-size: clamp(28px, 3.1vw, 34px);
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0.05em;
}
.pricing-spot-heading span {
	display: block;
	margin-top: 10px;
	color: #071c4d;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.65;
}
.pricing-spot-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 24px;
}
.pricing-spot-card {
	position: relative;
	min-height: 168px;
	border: 1px solid #d8e8fa;
	border-radius: 16px;
	background: #fff;
	padding: 22px 18px 18px;
	box-shadow: 0 5px 16px rgba(8, 37, 84, 0.08);
}
.pricing-spot-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 28px;
	border-radius: 999px;
	background: #1269c7;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.04em;
}
.pricing-spot-card h4 {
	margin: 14px 0 0;
	color: #1269c7;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0.02em;
}
.pricing-spot-card p {
	margin: 10px 0 0;
	color: #071c4d;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.65;
}
.pricing-chooser {
	margin: 38px 0 0;
	padding: 27px 24px 32px;
}
.pricing-chooser h3 {
	margin: 0;
	text-align: center;
	color: #071c4d;
	font-size: clamp(28px, 3.1vw, 34px);
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0.04em;
}
.pricing-chooser-lead {
	margin: 10px 0 0;
	text-align: center;
	color: #071c4d;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.6;
}
.pricing-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 41px;
}
.pricing-choice-card {
	position: relative;
	background: #fff;
	border: 2px solid #b9d8fb;
	border-radius: 16px;
	padding: 42px 28px 18px;
}
.pricing-choice-bubble {
	position: absolute;
	top: -31px;
	left: 50%;
	min-width: 238px;
	margin: 0;
	transform: translateX(-50%);
	background: #fff;
	border: 2px solid #b9d8fb;
	border-radius: 999px;
	padding: 12px 18px 11px;
	color: #1269c7;
	text-align: center;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.02em;
	white-space: nowrap;
}
.pricing-choice-bubble::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -11px;
	width: 18px;
	height: 18px;
	background: #fff;
	border-right: 2px solid #b9d8fb;
	border-bottom: 2px solid #b9d8fb;
	transform: translateX(-50%) rotate(45deg);
}
.pricing-choice-head {
	display: flex;
	align-items: center;
	gap: 24px;
}
.pricing-choice-icon {
	width: 86px;
	height: 86px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border-radius: 50%;
	background: linear-gradient(135deg, #e7f4ff 0%, #dcecff 100%);
}
.pricing-choice-icon svg {
	width: 58px;
	height: 58px;
	display: block;
}
.pricing-choice-head h4 {
	margin: 0;
	color: #1269c7;
	font-size: clamp(26px, 3.2vw, 38px);
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0.03em;
}
.pricing-choice-list {
	margin: 28px 0 0;
	padding: 0;
	display: grid;
	gap: 10px;
	list-style: none;
}
.pricing-choice-list li {
	position: relative;
	padding-left: 31px;
	color: #071c4d;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.55;
	letter-spacing: 0.01em;
}
.pricing-choice-list li::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M1.5 5 4.5 8 10.5 1.5' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
			center / 12px 10px no-repeat,
		#1269c7;
}
.pricing-choice-note {
	margin: 22px 0 0;
	min-height: 48px;
	display: flex;
	align-items: center;
	gap: 14px;
	border-radius: 9px;
	background: linear-gradient(90deg, #edf6ff 0%, #e7f0f9 100%);
	padding: 12px 18px;
	color: #1269c7;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.5;
}
.pricing-choice-note span {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border: 3px solid #1269c7;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 900;
	font-family: Georgia, serif;
	font-style: italic;
	line-height: 1;
}
.pricing-consult-cta {
	width: min(512px, 64%);
	min-height: 72px;
	margin: 38px auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	border-radius: 8px;
	background: linear-gradient(135deg, #ff4b15 0%, #ff7a22 100%);
	color: #fff;
	text-decoration: none;
	font-size: clamp(20px, 2.65vw, 28px);
	font-weight: 900;
	line-height: 1.2;
	box-shadow: 0 8px 17px rgba(255, 76, 19, 0.18);
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		background 0.15s ease;
}
.pricing-consult-cta:visited,
.pricing-consult-cta:hover,
.pricing-consult-cta:focus-visible {
	color: #fff;
}
.pricing-consult-cta:hover,
.pricing-consult-cta:focus-visible {
	transform: translateY(-1px);
	background: linear-gradient(135deg, #ff5c25 0%, #ff8a34 100%);
	box-shadow: 0 12px 24px rgba(255, 76, 19, 0.25);
}
.pricing-consult-arrow {
	width: 20px;
	height: 20px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	transform: rotate(45deg);
}
.pricing-banner {
	margin: 36px auto 0;
	max-width: 640px;
	background: #fff;
	border-radius: 999px;
	padding: 14px 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	box-shadow: 0 6px 20px rgba(12, 68, 124, 0.07);
	flex-wrap: wrap;
}
.pricing-banner-lead {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--gray-800);
}
.pricing-banner-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--blue);
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 700;
	transition:
		background-color 0.15s ease,
		color 0.15s ease;
}
.pricing-banner-cta:visited,
.pricing-banner-cta:hover,
.pricing-banner-cta:focus-visible {
	color: #fff;
}
.pricing-banner-cta:hover,
.pricing-banner-cta:focus-visible {
	background: var(--blue-dark);
}
.pricing-banner-cta::after {
	content: "➜";
	font-size: 16px;
}
.wide-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--blue);
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 10px 16px;
	font-size: 16px;
	font-weight: 700;
}
.wide-cta::after {
	content: "➜";
	font-size: 16px;
}
@media (max-width: 1160px) {
	.pricing-maintenance-section {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.pricing-maintenance-divider {
		width: 100%;
		height: 0;
		border-left: 0;
		border-top: 2px dotted #8bc2ff;
	}
	.pricing-maintenance-list {
		grid-template-columns: repeat(3, max-content);
		justify-content: start;
	}
}
@media (max-width: 1024px) {
	.pricing {
		padding-top: 44px;
	}
	.pricing-plan-grid {
		gap: 14px;
	}
	.pricing-plan-card {
		padding-left: 14px;
		padding-right: 14px;
	}
	.pricing-choice-card {
		padding-left: 24px;
		padding-right: 24px;
	}
}
@media (max-width: 900px) {
	.pricing-plan-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.pricing-plan-card {
		min-height: 330px;
	}
	.pricing-choice-grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}
	.pricing-spot-grid {
		grid-template-columns: 1fr;
	}
	.pricing-consult-cta {
		width: min(560px, 100%);
	}
}
@media (max-width: 640px) {
	.pricing {
		padding: 38px 0;
	}
	.pricing::before {
		top: -108px;
		right: -210px;
	}
	.pricing::after {
		top: 186px;
		left: -238px;
	}
	.pricing-inner::before {
		right: -70px;
	}
	.pricing-inner::after {
		left: -78px;
	}
	.pricing-heading {
		padding: 0 20px 42px;
	}
	.pricing-eyebrow {
		font-size: 16px;
		gap: 15px;
	}
	.pricing-eyebrow::before,
	.pricing-eyebrow::after {
		width: 34px;
	}
	.pricing-title {
		margin: 16px 0 20px;
		letter-spacing: 0.04em;
	}
	.pricing-catch {
		font-size: clamp(22px, 6vw, 26px);
		white-space: normal;
		overflow-wrap: anywhere;
		word-break: break-all;
	}
	.pricing-lead {
		font-size: 15px;
		font-weight: 700;
	}
	.pricing-initial-fee-note {
		padding: 9px 12px;
		font-size: 13px;
		white-space: normal;
	}
	.pricing-initial-fee-sub {
		font-size: 13px;
	}
	.pricing-lead br {
		display: none;
	}
	.pricing-panel {
		width: 100%;
		margin-right: auto;
		margin-left: auto;
		border-radius: 24px 24px 0 0;
		padding: 20px 0;
	}
	.pricing-plan-grid {
		grid-template-columns: 1fr;
		margin-top: 34px;
	}
	.pricing-plan-card {
		min-height: 0;
		padding: 34px 22px 24px;
	}
	.pricing-plan-card.is-recommended {
		margin-top: 18px;
	}
	.pricing-plan-price strong {
		font-size: 46px;
	}
	.pricing-plan-count {
		flex-wrap: wrap;
	}
	.pricing-plan-note {
		font-size: 12px;
		text-align: left;
	}
	.pricing-maintenance-section {
		margin-top: 24px;
		padding: 18px 16px;
		gap: 16px;
		border-radius: 14px;
	}
	.pricing-maintenance-copy h3 {
		font-size: 21px;
	}
	.pricing-maintenance-kicker {
		padding: 6px 12px;
		font-size: 12px;
	}
	.pricing-maintenance-price strong {
		font-size: 32px;
	}
	.pricing-maintenance-price span,
	.pricing-maintenance-target {
		font-size: 13px;
	}
	.pricing-maintenance-target {
		width: 100%;
		min-height: 32px;
		padding: 7px 14px;
	}
	.pricing-maintenance-list {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.pricing-maintenance-list li {
		grid-template-columns: 24px minmax(0, 1fr);
		gap: 10px;
		font-size: 15px;
	}
	.pricing-maintenance-list li::before {
		width: 24px;
		height: 24px;
		background-size: 12px 9px, auto;
	}
	.pricing-spot-section {
		margin-top: 26px;
		padding: 24px 0 22px;
	}
	.pricing-spot-heading span {
		font-size: 14px;
	}
	.pricing-spot-initial-fee {
		padding: 6px 12px;
		font-size: 13px;
	}
	.pricing-spot-card {
		min-height: 0;
		padding: 18px 16px;
	}
	.pricing-chooser {
		margin-top: 28px;
		padding: 20px 0;
	}
	.pricing-choice-grid {
		margin-top: 40px;
	}
	.pricing-choice-card {
		padding: 48px 18px 20px;
	}
	.pricing-choice-bubble {
		min-width: 0;
		width: calc(100% - 40px);
		font-size: 14px;
	}
	.pricing-choice-head {
		flex-direction: column;
		text-align: center;
		gap: 14px;
	}
	.pricing-choice-list li {
		font-size: 15px;
	}
	.pricing-choice-note {
		align-items: flex-start;
		font-size: 14px;
	}
	.pricing-consult-cta {
		min-height: 64px;
		gap: 20px;
		border-radius: 10px;
	}
	.pricing-consult-arrow {
		width: 16px;
		height: 16px;
	}
	.pricing-banner {
		flex-direction: column;
		border-radius: 18px;
		padding: 20px;
		gap: 12px;
	}
	.pricing-banner-cta {
		width: 100%;
		justify-content: center;
	}
}

/* ===== HOW IT WORKS ===== */
#how .section-inner {
	max-width: 1060px;
}
#how .section-label,
#how .section-title,
#how .section-sub {
	text-align: center;
}
#how .section-sub {
	max-width: 720px;
	margin: 0 auto;
}
#how .how-accent {
	width: 56px;
	height: 3px;
	border-radius: 999px;
	background: #156fc6;
	margin: 22px auto 30px;
	opacity: 0.72;
}
#how .how-intro-card {
	background: #fff;
	border: 1px solid #e8e4e0;
	border-radius: 14px;
	padding: 28px 30px;
	text-align: center;
	color: #333;
	line-height: 1.9;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
#how .how-intro-card p {
	font-size: 16px;
}
#how .how-intro-card p + p {
	margin-top: 10px;
}
#how .how-intro-note {
	margin: 18px auto 0;
	max-width: 860px;
	text-align: center;
	font-size: 16px;
	color: #666;
	line-height: 1.8;
}
#how .how-flow-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
#how .how-flow-item {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 14px;
	align-items: stretch;
}
#how .how-step-side {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#how .how-step-badge {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: #156fc6;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(21, 111, 198, 0.22);
}
#how .how-step-badge span {
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.08em;
}
#how .how-step-badge strong {
	font-size: 20px;
	line-height: 1.15;
}
#how .how-step-tail {
	flex: 1;
	width: 2px;
	min-height: 24px;
	margin-top: 8px;
	background: repeating-linear-gradient(
		to bottom,
		rgba(21, 111, 198, 0.4) 0 4px,
		transparent 4px 8px
	);
}
#how .how-flow-item:last-child .how-step-tail {
	display: none;
}
#how .how-step-card {
	background: #fff;
	border: 1px solid #e8e4e0;
	border-radius: 14px;
	padding: 18px 20px;
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 14px;
	align-items: flex-start;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}
#how .how-step-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: rgba(21, 111, 198, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}
#how .how-step-icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}
#how .how-step-title {
	font-size: 17px;
	font-weight: 700;
	color: #111;
	margin-bottom: 6px;
	line-height: 1.5;
}
#how .how-step-desc {
	font-size: 16px;
	color: #666;
	line-height: 1.75;
}
@media (max-width: 820px) {
	#how .how-flow-item {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	#how .how-step-side {
		flex-direction: row;
		justify-content: center;
	}
	#how .how-step-tail {
		display: none;
	}
	#how .how-step-badge {
		width: 160px;
		height: 40px;
		flex-direction: row;
		border-radius: 999px;
	}
	#how .how-step-card {
		grid-template-columns: 44px 1fr;
		padding: 16px;
		gap: 12px;
	}
	#how .how-step-icon {
		width: 44px;
		height: 44px;
		border-radius: 10px;
	}
	#how .how-step-icon img {
		width: 24px;
		height: 24px;
	}
}
@media (max-width: 640px) {
	#how .how-intro-card {
		padding: 20px 16px;
	}
	#how .how-step-title {
		font-size: 16px;
	}
}

/* ===== FAQ ===== */
#faq .section-label,
#faq .section-title {
	text-align: center;
}
.faq-list {
	margin-top: 52px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.faq-item {
	background: #fff;
	border: none;
	border-radius: 14px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: box-shadow 0.15s;
}
.faq-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.faq-item:last-child {
	border-bottom: none;
}
.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 26px;
	cursor: pointer;
	background: #fff;
	transition: background 0.15s;
}
.faq-q:hover {
	background: #fafafa;
}
.faq-q-text {
	font-size: 16px;
	font-weight: 600;
	color: #222;
	line-height: 1.5;
}
.faq-q-text::before {
	content: "Q.";
	color: #156fc6;
	font-weight: 700;
	margin-right: 8px;
}
.faq-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(21, 111, 198, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition:
		transform 0.2s,
		background 0.15s;
}
.faq-item.open .faq-icon {
	transform: rotate(45deg);
	background: rgba(21, 111, 198, 0.15);
}
.faq-icon svg {
	width: 12px;
	height: 12px;
}
.faq-icon svg line {
	stroke: #156fc6;
}
.faq-a {
	display: none;
	padding: 0 26px 22px;
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	background: #fff;
}
.faq-item.open .faq-a {
	display: block;
}

/* ===== EXAMPLES ===== */
#examples.problems {
	background:
		radial-gradient(
			circle at 10% 10%,
			rgba(21, 111, 198, 0.1) 0,
			transparent 34%
		),
		linear-gradient(180deg, #eef6f6 0%, #f7fbfc 100%);
}
#examples .section-inner {
	max-width: 1120px;
}
#examples .section-label,
#examples .section-title,
#examples .section-sub {
	text-align: center;
}
#examples .section-sub {
	max-width: 820px;
	margin: 0 auto;
}
#examples .case-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	max-width: 1120px;
	margin: 46px auto 0;
}
#examples .case-card {
	position: relative;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(21, 111, 198, 0.14);
	border-radius: 28px;
	padding: 24px;
	box-shadow: 0 18px 42px rgba(12, 68, 124, 0.08);
}
#examples .case-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border: 1px solid rgba(255, 255, 255, 0.75);
	pointer-events: none;
}
#examples .case-head {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 18px;
}
#examples .case-kicker {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(21, 111, 198, 0.08);
	color: #156fc6;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}
#examples .case-title {
	font-size: clamp(21px, 2.4vw, 30px);
	color: var(--gray-900);
	line-height: 1.45;
	letter-spacing: -0.01em;
}
#examples .case-image-frame {
	position: relative;
	border-radius: 22px;
	background: linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
	border: 1px solid rgba(21, 111, 198, 0.12);
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}
#examples .case-image {
	display: block;
	width: 100%;
	height: auto;
}
#examples .case-mobile-compare {
	display: none;
}
#examples .case-image-placeholder {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	min-height: 360px;
	padding: 34px;
	gap: 22px;
	background:
		linear-gradient(
			90deg,
			rgba(225, 25, 25, 0.08) 0 49.8%,
			rgba(21, 111, 198, 0.16) 49.8% 50.2%,
			rgba(8, 166, 59, 0.08) 50.2% 100%
		),
		linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
#examples .case-image-placeholder::before,
#examples .case-image-placeholder::after {
	content: "";
	display: block;
	min-height: 230px;
	border-radius: 18px;
	box-shadow: 0 14px 28px rgba(12, 68, 124, 0.08);
}
#examples .case-image-placeholder::before {
	border: 4px solid #e11919;
	background: linear-gradient(135deg, #f3f4f6 0%, #d6dde6 100%);
}
#examples .case-image-placeholder::after {
	border: 4px solid #08a63b;
	background: linear-gradient(135deg, #d9f3ff 0%, #fff 50%, #e7f8eb 100%);
}
#examples .case-image-placeholder span,
#examples .case-image-placeholder strong {
	position: absolute;
	top: 22px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	padding: 8px 18px;
	border-radius: 12px;
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
#examples .case-image-placeholder span {
	left: 34px;
	background: #e11919;
}
#examples .case-image-placeholder strong {
	left: calc(50% + 34px);
	background: #08a63b;
}
#examples .case-body {
	padding-top: 18px;
}
#examples .case-desc {
	margin-bottom: 18px;
	font-size: 16px;
	line-height: 1.75;
	color: #475467;
}
#examples .case-specs {
	display: grid;
	grid-template-columns: 0.8fr 0.8fr 1.4fr;
	gap: 10px;
	margin: 0;
}
#examples .case-specs div {
	padding: 13px 14px;
	border-radius: 14px;
	background: #f3f8fd;
	border: 1px solid rgba(21, 111, 198, 0.1);
}
#examples .case-specs dt {
	margin-bottom: 4px;
	color: #667085;
	font-size: 13px;
	font-weight: 700;
}
#examples .case-specs dd {
	margin: 0;
	color: #0c447c;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.45;
}
#examples .examples-note {
	max-width: 900px;
	margin: 30px auto 0;
	text-align: center;
	font-size: 16px;
	color: #667085;
	line-height: 1.8;
}
#examples .examples-cta {
	max-width: 820px;
}
#examples .examples-cta-copy {
	min-width: 0;
}
#examples .examples-cta-copy span {
	display: block;
	margin-top: 3px;
	font-size: 15px;
	line-height: 1.7;
	color: #667085;
}
@media (max-width: 760px) {
	#examples .case-grid {
		gap: 24px;
		margin-top: 36px;
	}
	#examples .case-card {
		padding: 16px;
		border-radius: 22px;
	}
	#examples .case-card:nth-child(n + 4) {
		display: none;
	}
	#examples .case-image-frame--desktop {
		display: none;
	}
	#examples .case-mobile-compare {
		display: grid;
		gap: 12px;
	}
	#examples .case-mobile-shot {
		position: relative;
		aspect-ratio: 836 / 941;
		border-radius: 18px;
		background: #fff;
		border: 1px solid rgba(21, 111, 198, 0.12);
		overflow: hidden;
		contain: paint;
		box-shadow: 0 10px 24px rgba(12, 68, 124, 0.08);
	}
	#examples .case-mobile-shot img {
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		max-width: none;
		height: auto;
		transform: scale(2);
		transform-origin: left top;
	}
	#examples .case-mobile-shot--after img {
		left: -100%;
	}
	#examples .case-image-placeholder {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 20px;
	}
	#examples .case-image-placeholder strong {
		left: 34px;
		top: calc(50% + 22px);
	}
	#examples .case-specs {
		grid-template-columns: 1fr;
	}
	#examples .examples-cta {
		align-items: stretch;
		flex-direction: column;
		text-align: center;
	}
	#examples .examples-cta a {
		width: 100%;
	}
}
@media (min-width: 1180px) {
	#examples .section-inner {
		max-width: 1320px;
	}
	#examples .case-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 1280px;
		gap: 24px;
	}
	#examples .case-card {
		padding: 20px;
	}
	#examples .case-title {
		font-size: clamp(20px, 1.55vw, 24px);
	}
	#examples .case-desc {
		font-size: 15px;
	}
	#examples .case-specs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	#examples .case-specs div:last-child {
		grid-column: 1 / -1;
	}
}

/* ===== CTA FINAL ===== */
.cta-final {
	background: linear-gradient(135deg, #0c447c 0%, #185fa5 60%, #2a7fd4 100%);
	padding: 80px 24px;
	position: relative;
}
.cta-final .section-inner {
	position: relative;
	max-width: 1040px;
}
.cta-card {
	position: relative;
	background: #fff;
	border-radius: 28px;
	padding: 64px 48px 56px;
	text-align: center;
	box-shadow: 0 24px 60px rgba(12, 68, 124, 0.25);
}
.cta-sub-label {
	margin: 0 0 14px;
	max-width: 100%;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--blue);
	display: inline-block;
	position: relative;
	padding-bottom: 10px;
}
.cta-sub-label::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 6px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='6' viewBox='0 0 80 6'><path d='M0 3 Q 10 0 20 3 T 40 3 T 60 3 T 80 3' stroke='%23185fa5' stroke-width='1.5' fill='none'/></svg>")
		repeat-x center / 80px 6px;
}
.cta-title-br {
	display: none;
}
.cta-title {
	margin: 0 0 90px;
	font-size: clamp(26px, 4.2vw, 40px);
	font-weight: 800;
	line-height: 1.45;
	color: var(--gray-900);
	letter-spacing: -0.01em;
}
.cta-title em {
	font-style: normal;
	color: var(--blue);
	border-bottom: 4px solid var(--blue);
	padding-bottom: 2px;
}
.cta-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
}
.cta-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 0;
	width: 100%;
	padding: 20px 18px;
	border-radius: 14px;
	text-decoration: none;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.4;
	text-align: center;
	transition:
		transform 0.15s,
		box-shadow 0.15s;
}
.cta-btn:hover {
	transform: translateY(-2px);
}
.cta-btn--primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 8px 20px rgba(12, 68, 124, 0.25);
}
.cta-btn--primary:hover,
.cta-btn--primary:focus-visible,
.cta-btn--primary:hover:visited {
	background: var(--blue-dark);
	color: #fff;
	box-shadow: 0 12px 26px rgba(12, 68, 124, 0.3);
}
.cta-btn--secondary {
	background: #ffd84d;
	color: var(--blue-dark);
	box-shadow: 0 8px 20px rgba(255, 196, 0, 0.3);
}
.cta-btn--secondary:hover {
	background: #ffcc2e;
	box-shadow: 0 12px 26px rgba(255, 196, 0, 0.4);
}
.cta-btn-balloon {
	position: absolute;
	bottom: calc(100% + 14px);
	left: 50%;
	transform: translateX(-50%);
	max-width: min(100%, calc(100vw - 72px));
	background: #fff;
	border: 2px solid currentColor;
	color: inherit;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	white-space: nowrap;
}
.cta-btn--primary .cta-btn-balloon {
	color: var(--blue);
}
.cta-btn--secondary .cta-btn-balloon {
	color: #b8860b;
}
.cta-btn-balloon::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 7px solid transparent;
	border-top-color: currentColor;
	margin-top: 0;
}
.cta-btn-balloon::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-2px);
	border: 6px solid transparent;
	border-top-color: #fff;
	z-index: 1;
	margin-top: 1px;
}
.cta-btn-tag {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	padding: 3px 9px;
	font-size: 16px;
	font-weight: 800;
	border-radius: 4px;
	background: #fff;
	color: var(--blue);
	letter-spacing: 0.06em;
}
.cta-btn--secondary .cta-btn-tag {
	background: var(--blue-dark);
	color: #ffd84d;
}
.cta-btn-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}
.cta-btn-text {
	min-width: 0;
}
.cta-btn-arrow {
	font-size: 16px;
	font-weight: 700;
	opacity: 0.85;
}
@media (max-width: 760px) {
	.cta-title {
		font-size: clamp(24px, 3.6vw, 36px);
		line-height: 1.8;
	}
	.cta-title-br {
		display: block;
	}
	.cta-final {
		padding: 60px 16px;
	}
	.cta-card {
		padding: 56px 20px 32px;
		border-radius: 22px;
	}
	.cta-title {
		margin-bottom: 68px;
	}
	.cta-buttons {
		grid-template-columns: 1fr;
		gap: 78px;
	}
	.cta-btn {
		font-size: 16px;
		padding: 18px 16px;
		white-space: normal;
	}
	.cta-btn-balloon {
		font-size: 16px;
		padding: 6px 12px;
	}
}
@media (max-width: 420px) {
	.cta-card {
		padding: 48px 14px 28px;
	}
	.cta-sub-label {
		font-size: 14px;
		white-space: normal;
	}
	.cta-btn {
		font-size: 16px;
		padding: 16px 12px;
		gap: 6px;
		white-space: normal;
	}
	.cta-btn-icon {
		width: 18px;
		height: 18px;
		flex-shrink: 0;
	}
	.cta-btn-tag {
		font-size: 16px;
		padding: 2px 7px;
	}
	.cta-btn-arrow {
		display: none;
	}
}

/* ===== FOOTER ===== */
.footer {
	background: #1a1a1a;
	padding: 56px 24px 40px;
	text-align: center;
}
.footer-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.footer-logo img {
	display: block;
	width: clamp(164px, 18vw, 196px);
	height: auto;
}
.footer-tagline {
	font-size: 16px;
	color: #888;
	margin-bottom: 28px;
}
.footer-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 28px;
	margin-bottom: 28px;
}
.footer-links a {
	font-size: 16px;
	color: #888;
	text-decoration: none;
	transition: color 0.15s;
}
.footer-links a:hover {
	color: #5ba3e0;
}
.footer-copy {
	font-size: 16px;
	color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
	.header-inner {
		padding-left: 16px;
	}
	.logo-tag {
		display: none;
	}
	.header-cta {
		min-width: 260px;
		min-height: 76px;
		font-size: 18px;
	}
	/* hero を1カラムに切り替えて重なりを防止 */
	.hero-inner {
		grid-template-columns: 1fr;
	}
	.hero-left {
		min-height: auto;
		padding: 80px 40px 32px;
	}
	.hero-form-card {
		display: none;
	}
	.hero-visual {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		width: 100%;
		height: auto;
		margin: 16px 0 12px;
		transform: none;
	}
	.hero-visual__image {
		position: relative;
		width: min(100%, 520px);
		height: auto;
		right: auto;
		bottom: auto;
		left: 50%;
		transform: translateX(-50%);
	}
	.hero-visual__image img {
		height: auto;
		object-fit: contain;
	}
	.hero-title-main::after {
		display: block;
	}
	.hero-stats {
		gap: 20px;
	}
}
@media (max-width: 1024px) {
	section {
		padding: 80px 24px;
	}
	.nav-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.header-cta {
		display: none;
	}
	/* ドロワー本体 */
	.nav {
		position: fixed;
		top: 0;
		right: -88vw;
		height: 100dvh;
		min-height: 100vh;
		width: min(320px, 88vw);
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0;
		box-shadow: -8px 0 40px rgba(12, 68, 124, 0.14);
		visibility: hidden;
		pointer-events: none;
		transition:
			right 0.28s cubic-bezier(0.4, 0, 0.2, 1),
			visibility 0s linear 0.28s;
		z-index: 120;
		overflow-y: auto;
	}
	.nav.is-open {
		right: 0;
		visibility: visible;
		pointer-events: auto;
		transition:
			right 0.28s cubic-bezier(0.4, 0, 0.2, 1),
			visibility 0s;
	}
	/* ドロワーヘッダー */
	.nav-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 20px;
		height: 68px;
		background: var(--blue-dark);
		flex-shrink: 0;
	}
	.nav-header-label {
		font-size: 16px;
		font-weight: 800;
		letter-spacing: 0.22em;
		color: rgba(255, 255, 255, 0.7);
	}
	/* 閉じるボタン */
	.nav-close {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		background: rgba(255, 255, 255, 0.12);
		border: 1.5px solid rgba(255, 255, 255, 0.2);
		border-radius: 8px;
		cursor: pointer;
		color: #fff;
		flex-shrink: 0;
		transition: background 0.15s;
	}
	.nav-close:hover {
		background: rgba(255, 255, 255, 0.22);
	}
	.nav-close svg {
		width: 16px;
		height: 16px;
	}
	/* リンクエリア */
	.nav-links {
		display: flex;
		flex-direction: column;
		padding: 12px 0;
		flex: 1;
	}
	.nav-links a {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 15px 24px;
		font-size: 16px;
		font-weight: 600;
		color: var(--gray-800);
		border-bottom: 1px solid var(--gray-100);
		text-decoration: none;
		transition:
			background 0.12s,
			color 0.12s;
	}
	.nav-links a::after {
		display: none;
	}
	.nav-links a:hover {
		background: var(--blue-light);
		color: var(--blue);
	}
	/* CTAボタン */
	.nav .nav-cta {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		margin: 20px 20px 32px;
		padding: 16px 20px;
		font-size: 16px;
		font-weight: 700;
		color: #fff;
		background: linear-gradient(135deg, #ff6e35 0%, #ff9c96 100%);
		border-radius: 12px;
		border: 0;
		box-shadow: 0 6px 18px rgba(255, 110, 53, 0.28);
		text-decoration: none;
		transition:
			background 0.15s,
			box-shadow 0.15s;
	}
	.nav .nav-cta::after {
		content: "→";
		font-size: 16px;
	}
	.nav .nav-cta:hover {
		background: linear-gradient(135deg, #ff7440 0%, #ffa59e 100%);
		box-shadow: 0 8px 22px rgba(255, 110, 53, 0.35);
	}
	.header-inner {
		padding-left: 12px;
		min-height: 68px;
	}
	.brand-wrap {
		gap: 10px;
	}
	.logo img {
		width: 160px;
	}
	.header-cta {
		min-width: 168px;
		min-height: 68px;
		border-radius: 0 0 0 14px;
		font-size: 15px;
		padding: 0 12px;
	}
	.hero-left {
		padding: 70px 16px 24px;
	}
	.hero-visual__image {
		width: min(100%, 420px);
	}
	.hero-fv--01 {
		left: -50px;
		top: -60px;
		width: 170px;
		height: 170px;
	}
	.hero-fv--02 {
		left: auto;
		right: -70px;
		top: -60px;
		width: 220px;
		height: 220px;
	}
	.hero-fv--03 {
		left: auto;
		right: -20px;
		top: auto;
		bottom: 32px;
		width: 120px;
		height: 108px;
	}
	.hero-fv--04 {
		left: -30px;
		top: auto;
		bottom: -20px;
		width: 150px;
		height: 150px;
	}
	.hero-note {
		font-size: 16px;
	}
	.hero-assurance {
		gap: 8px;
	}
	.hero-assurance li {
		font-size: 14px;
		padding: 7px 10px;
	}
	.hero-stats {
		gap: 14px;
		max-width: none;
	}
	.stat-item {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.header-cta {
		min-width: 140px;
		font-size: 16px;
		padding: 0 10px;
	}
	.logo img {
		width: 150px;
	}
	.hero-badge {
		font-size: 16px;
		padding: 10px 14px;
	}
	.hero-topic-text {
		font-size: 18px;
	}
	.hero-title {
		font-size: 34px;
	}
	.hero-title-accent {
		letter-spacing: 0.04em;
	}
	.hero-sub {
		font-size: 16px;
	}
	.hero-assurance {
		flex-direction: column;
		align-items: flex-start;
	}
	.hero-note {
		font-size: 16px;
	}
	.hero-stats {
		gap: 8px;
	}
	.stat-item {
		width: 100%;
		padding: 8px;
	}
	.stat-body {
		border-width: 3px;
		padding: 8px 6px;
		gap: 2px;
	}
	.stat-icon {
		width: 34px;
		height: 30px;
		margin-top: -18px;
		margin-bottom: 2px;
	}
	.stat-num {
		font-size: 20px;
	}
	.stat-label {
		font-size: 16px;
	}
	section:not(.hero):not(.cta-final) {
		padding: 40px 20px;
	}
	.cta-final {
		padding: 60px 20px;
	}
	#how .how-flow-list {
		max-width: 100%;
		gap: 20px;
	}
}
@media (max-width: 560px) {
	.hero-stats {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 28px;
	}
	.stat-item {
		aspect-ratio: auto;
		border-width: 3px;
		border-radius: 18px;
		padding: 4px;
	}
	.stat-body {
		min-height: 72px;
		display: grid;
		grid-template-columns: 44px minmax(0, 1fr);
		grid-template-areas:
			"icon num"
			"icon label";
		align-content: center;
		align-items: center;
		justify-content: stretch;
		column-gap: 12px;
		row-gap: 2px;
		border-radius: 14px;
		padding: 10px 14px;
		text-align: left;
	}
	.stat-icon {
		grid-area: icon;
		width: 40px;
		height: 36px;
		margin: 0;
	}
	.stat-num {
		grid-area: num;
		font-size: 20px;
		white-space: nowrap;
	}
	.stat-label {
		grid-area: label;
		font-size: 14px;
	}
}
@media (max-width: 480px) {
	.header-inner {
		min-height: 62px;
		padding-left: 8px;
	}
	.brand-wrap {
		gap: 6px;
	}
	.logo img {
		width: 142px;
	}
	.header-cta {
		min-width: 124px;
		min-height: 62px;
		font-size: 14px;
		padding: 0 8px;
	}
	.hero-left {
		padding: 58px 12px 20px;
	}
	.hero-topic {
		margin-bottom: 16px;
	}
	.hero-title {
		font-size: 30px;
		margin-bottom: 24px;
	}
	.hero-fv--01 {
		width: 110px;
		height: 110px;
		left: -30px;
		top: -30px;
	}
	.hero-fv--02 {
		width: 140px;
		height: 140px;
		right: -50px;
		top: -40px;
	}
	.hero-fv--03 {
		width: 86px;
		height: 76px;
		right: -10px;
		bottom: 24px;
	}
	.hero-fv--04 {
		width: 96px;
		height: 96px;
		left: -18px;
		bottom: -10px;
	}
	.hero-form-title {
		font-size: 26px;
	}
	.hero-form-submit__text {
		font-size: 18px;
	}
	.stat-item {
		width: 100%;
		padding: 4px;
	}
	.hero-stats {
		gap: 10px;
	}
	.stat-icon {
		width: 36px;
		height: 32px;
		margin: 0;
	}
	.stat-num {
		font-size: 19px;
	}
	.stat-label {
		font-size: 14px;
	}
	.reasons-grid {
		grid-template-columns: 1fr;
	}
}
