:root {
	--color-navy: #0f2a44;
	--color-navy-2: #12385a;
	--color-blue: #1f5f8b;
	--color-blue-soft: #e8f1f8;
	--color-blue-pale: #f3f8fc;
	--color-white: #ffffff;
	--color-text: #1f2933;
	--color-muted: #627386;
	--color-border: #d9e5ee;
	--color-orange: #f97316;
	--color-orange-2: #f59e0b;
	--color-gold: #d9902f;
	--color-bg: #ffffff;
	--shadow-soft: 0 18px 45px rgba(15, 42, 68, 0.12);
	--shadow-card: 0 12px 30px rgba(15, 42, 68, 0.08);
	--radius-sm: 12px;
	--radius-md: 18px;
	--radius-lg: 28px;
	--container: 1120px;
	--header-height: 72px;
	--font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "Noto Sans JP", Meiryo, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-text);
	background: var(--color-bg);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.02em;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

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

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

p {
	margin: 0 0 1.1em;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

button {
	font: inherit;
}

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

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	color: var(--color-white);
	background: var(--color-navy);
	border-radius: 8px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(217, 229, 238, 0.8);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-height);
	width: min(100% - 32px, var(--container));
	margin: 0 auto;
}

.site-brand__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	color: var(--color-navy);
}

.site-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: var(--color-white);
	background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
	border-radius: 14px;
	font-size: 13px;
	letter-spacing: 0.08em;
}

.site-brand__text {
	font-size: 15px;
	letter-spacing: 0.05em;
}

.custom-logo {
	max-width: 180px;
	height: auto;
}

.site-brand__image {
	display: block;
	width: auto;
	max-width: 220px;
	max-height: 54px;
	object-fit: contain;
}


.nav-toggle {
	display: inline-flex;
	flex-direction: column;
	gap: 5px;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	cursor: pointer;
}

.nav-toggle__line {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--color-navy);
	border-radius: 999px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active .nav-toggle__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__line:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-active .nav-toggle__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
	position: fixed;
	top: var(--header-height);
	right: 16px;
	left: 16px;
	display: none;
	flex-direction: column;
	gap: 4px;
	padding: 18px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 20px;
	box-shadow: var(--shadow-soft);
}

.site-nav.is-open {
	display: flex;
}

.site-nav a {
	display: block;
	padding: 12px 14px;
	color: var(--color-navy);
	font-size: 14px;
	font-weight: 700;
	border-radius: 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	background: var(--color-blue-pale);
}

.site-nav__cta {
	color: var(--color-white) !important;
	background: linear-gradient(135deg, var(--color-orange), var(--color-orange-2));
	text-align: center;
}

.container {
	width: min(100% - 32px, var(--container));
	margin: 0 auto;
}

.section {
	position: relative;
	padding: 72px 0;
	overflow: hidden;
}

.section--tint {
	background: var(--color-blue-pale);
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	color: var(--color-blue);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.section-label::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
}

.section-label--light,
.section-heading--light .section-label {
	color: #a9d7ff;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.section-heading h1,
.section-heading h2 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(28px, 8vw, 44px);
	line-height: 1.35;
	letter-spacing: 0.01em;
}

.section-heading--light h2 {
	color: var(--color-white);
}

.text-block {
	max-width: 760px;
}

.text-block--center {
	margin: 0 auto 32px;
	text-align: center;
}

.text-block p {
	color: var(--color-text);
}

.fv {
	--fv-bg-image-sp: none;
	--fv-bg-image-pc: var(--fv-bg-image-sp);
	--fv-active-bg-image: var(--fv-bg-image-sp);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: calc(100svh - var(--header-height));
	padding: 54px 0 44px;
	color: var(--color-white);
	background-color: #081a2b;
	background: var(--fv-active-bg-image);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	isolation: isolate;
}

.fv--no-bg {
	background:
		radial-gradient(circle at 14% 18%, rgba(249, 115, 22, 0.20), transparent 30%),
		linear-gradient(135deg, #071422 0%, #0f2a44 55%, #12385a 100%);
}

.fv::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: none;
	pointer-events: none;
}

.fv__container {
	position: relative;
	z-index: 1;
	display: block;
}

.fv__content {
	max-width: 680px;
	padding: 26px 22px 24px;
	background:
		linear-gradient(180deg, rgba(7, 20, 34, 0.58) 0%, rgba(7, 20, 34, 0.46) 100%);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 28px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.20);
	backdrop-filter: blur(8px);
}

.fv .section-label {
	color: #a9d7ff;
}

.fv__label {
	margin-bottom: 16px;
	color: #dbeafe;
	font-size: clamp(13px, 3.4vw, 16px);
	font-weight: 900;
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.fv__label::before {
	width: 24px;
	background: linear-gradient(90deg, #ffb35a 0%, #ff7a00 100%);
}


.fv__title {
	margin: 0;
	color: var(--color-white);
	font-size: clamp(36px, 10.4vw, 60px);
	line-height: 1.08;
	letter-spacing: -0.045em;
	font-weight: 900;
	text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.fv__title-line {
	display: block;
}

.fv__title-accent {
	color: #ffb24c;
	text-shadow: 0 8px 24px rgba(249, 115, 22, 0.22);
}

.fv__copy {
	display: grid;
	gap: 10px;
	margin-top: 20px;
}

.fv__lead {
	margin: 0;
	color: rgba(255, 255, 255, 0.96);
	font-size: clamp(16px, 4.35vw, 22px);
	font-weight: 800;
	line-height: 1.72;
	text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.fv__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(14px, 3.8vw, 17px);
	font-weight: 700;
	line-height: 1.78;
}

.fv .cta-note {
	color: rgba(255, 255, 255, 0.82);
}

.fv__cta {
	margin-top: 24px;
	text-align: center;
}

.fv__cta .cta-button {
	width: 100%;
	min-height: 60px;
	font-size: 16px;
	box-shadow: 0 18px 34px rgba(249, 115, 22, 0.28);
}

.image-slot {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 260px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(15, 42, 68, 0.08), rgba(31, 95, 139, 0.14)),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 8px, rgba(255, 255, 255, 0.15) 8px, rgba(255, 255, 255, 0.15) 16px);
	border: 1px dashed rgba(31, 95, 139, 0.38);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
}

.image-slot span {
	padding: 12px 16px;
	color: var(--color-navy);
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(217, 229, 238, 0.9);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.image-slot img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.image-slot.has-image {
	border: 0;
	background: transparent;
}


.feature-badges {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: 28px;
}

.feature-badges li {
	position: relative;
	padding: 12px 14px 12px 36px;
	color: var(--color-white);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
	font-size: 13px;
	font-weight: 800;
	backdrop-filter: blur(8px);
}

.feature-badges li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 15px;
	width: 10px;
	height: 10px;
	background: var(--color-orange);
	border-radius: 50%;
	transform: translateY(-50%);
}
.fv__features-container {
	position: relative;
	z-index: 1;
}

.feature-badges--fv {
	gap: 14px;
	margin-top: 28px;
}

.feature-badges--fv .feature-badge {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
	align-items: center;
	min-height: 66px;
	padding: 17px 14px 17px 22px;
	color: var(--color-white);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%),
		linear-gradient(180deg, rgba(10, 28, 46, 0.72) 0%, rgba(10, 28, 46, 0.50) 100%);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 20px;
	box-shadow:
		0 18px 38px rgba(0, 0, 0, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.24);
	backdrop-filter: blur(12px) saturate(130%);
	overflow: hidden;
}

.feature-badges--fv .feature-badge::before {
	content: "";
	position: absolute;
	top: 14px;
	bottom: 14px;
	left: 0;
	display: block;
	width: 4px;
	height: auto;
	background: linear-gradient(180deg, #ffd28a 0%, #ff8a1f 100%);
	border-radius: 0 999px 999px 0;
	box-shadow:
		0 0 18px rgba(249, 115, 22, 0.34),
		0 0 0 1px rgba(255, 255, 255, 0.08);
	transform: none;
}


.feature-badge__label {
	display: none;
}

.feature-badge__text {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	color: #ffffff;
	font-size: clamp(13px, 3.55vw, 14.5px);
	font-weight: 900;
	line-height: 1.48;
	text-shadow: 0 4px 14px rgba(0, 0, 0, 0.26);
}

.cta-block {
	margin-top: 28px;
	text-align: center;
}

.fv__cta {
	text-align: center;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 420px);
	min-height: 58px;
	padding: 15px 24px;
	color: var(--color-white);
	background: linear-gradient(135deg, var(--color-orange), var(--color-orange-2));
	border: 0;
	border-radius: 999px;
	box-shadow: 0 16px 32px rgba(249, 115, 22, 0.26);
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px rgba(249, 115, 22, 0.32);
	filter: brightness(1.03);
}

.cta-button--light {
	background: var(--color-white);
	color: var(--color-navy);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.cta-note {
	margin: 12px 0 0;
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.75;
}

.cta-note--light {
	color: rgba(255, 255, 255, 0.86);
}

.card-grid {
	display: grid;
	gap: 16px;
}

.concern-card,
.simple-card,
.service-card,
.info-card,
.price-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

.concern-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: start;
	padding: 18px;
}

.concern-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: var(--color-white);
	background: var(--color-navy);
	border-radius: 14px;
	font-size: 12px;
	font-weight: 900;
}

.concern-card p,
.simple-card p,
.service-card p,
.info-card p,
.price-card p {
	margin: 0;
}

.message-box {
	max-width: 860px;
	margin: 28px auto 0;
	padding: 22px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-left: 5px solid var(--color-orange);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

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

.two-column {
	display: grid;
	gap: 24px;
	align-items: center;
}

.two-column__text {
	padding: 0 2px;
}

.check-list-box {
	padding: 22px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

.check-list-box h3 {
	margin: 0 0 16px;
	color: var(--color-navy);
	font-size: 20px;
	line-height: 1.4;
}

.check-list {
	display: grid;
	gap: 10px;
}

.check-list li {
	position: relative;
	padding-left: 30px;
	color: var(--color-text);
	font-weight: 700;
}

.check-list li::before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 21px;
	color: var(--color-white);
	background: var(--color-blue);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.future-layout {
	display: grid;
	gap: 24px;
	align-items: center;
	margin-bottom: 24px;
}

.future__image {
	min-height: 260px;
}

.future-layout__content {
	padding: 4px;
}

.card-grid--future {
	margin-top: 18px;
}

.simple-card {
	position: relative;
	padding: 20px;
}

.simple-card::before {
	content: "";
	display: block;
	width: 34px;
	height: 4px;
	margin-bottom: 14px;
	background: linear-gradient(90deg, var(--color-orange), var(--color-gold));
	border-radius: 999px;
}

.service-intro {
	display: grid;
	gap: 22px;
	align-items: center;
	margin-bottom: 26px;
}

.service__image {
	min-height: 240px;
}

.card-grid--service {
	grid-template-columns: 1fr;
}

.service-card {
	position: relative;
	padding: 22px;
}

.card-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 14px;
	color: var(--color-white);
	background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
	border-radius: 16px;
	font-size: 13px;
	font-weight: 900;
}

.service-card h3,
.info-card h3,
.reason-card h3,
.flow-item h3,
.price-card h3 {
	margin: 0 0 10px;
	color: var(--color-navy);
	font-size: 19px;
	line-height: 1.5;
}

.area-job-grid {
	display: grid;
	gap: 18px;
}

.info-card {
	padding: 24px;
}

.info-card__label,
.price-card__label {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 5px 12px;
	color: var(--color-blue);
	background: var(--color-blue-pale);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.small-note {
	max-width: 860px;
	margin: 18px auto 0;
	color: var(--color-muted);
	font-size: 13px;
	text-align: center;
}

.reason-list {
	display: grid;
	gap: 14px;
	max-width: 940px;
	margin: 0 auto;
}

.reason-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 16px;
	padding: 20px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

.reason-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: var(--color-orange);
	background: #fff3e8;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 900;
}

.reason-card p {
	margin: 0;
}

.policy {
	color: var(--color-white);
	background:
		radial-gradient(circle at 12% 20%, rgba(249, 115, 22, 0.2), transparent 30%),
		linear-gradient(135deg, var(--color-navy), #081a2b);
}

.policy__container {
	max-width: 920px;
}

.policy__text {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.policy__text p {
	color: rgba(255, 255, 255, 0.88);
}

.policy-box {
	margin-top: 28px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-lg);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.policy-box p {
	color: var(--color-white);
	font-weight: 700;
}

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

.profile__container {
	display: grid;
	gap: 28px;
	align-items: center;
}

.profile__image {
	min-height: 320px;
}

.profile__content h2,
.mission__content h2,
.closing-cta h2 {
	margin: 0 0 22px;
	color: var(--color-navy);
	font-size: clamp(27px, 7vw, 42px);
	line-height: 1.38;
}

.profile-name {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 20px;
	padding: 16px 18px;
	background: var(--color-blue-pale);
	border-radius: var(--radius-md);
}

.profile-name strong {
	color: var(--color-navy);
	font-size: 22px;
	line-height: 1.3;
}

.profile-name span {
	color: var(--color-muted);
	font-size: 14px;
	font-weight: 700;
}

.profile-text p {
	color: var(--color-text);
}

.message-box--profile {
	margin-top: 20px;
}

.mission__container {
	display: grid;
	gap: 28px;
	align-items: center;
}

.mission__content h2 {
	color: var(--color-navy);
}

.mission__strong {
	padding: 18px;
	color: var(--color-navy);
	background: var(--color-white);
	border-left: 5px solid var(--color-orange);
	border-radius: var(--radius-md);
	font-weight: 800;
	box-shadow: var(--shadow-card);
}

.mission__image {
	min-height: 300px;
}

.flow-list {
	position: relative;
	display: grid;
	gap: 16px;
	max-width: 900px;
	margin: 0 auto;
}

.flow-item {
	position: relative;
	display: grid;
	gap: 10px;
	padding: 20px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

.flow-item__number {
	display: inline-flex;
	width: fit-content;
	padding: 5px 12px;
	color: var(--color-white);
	background: var(--color-navy);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.flow-item p {
	margin: 0;
}

.price-grid {
	display: grid;
	gap: 18px;
	max-width: 880px;
	margin: 0 auto;
}

.price-card {
	padding: 26px;
	text-align: center;
}

.price-card h3 {
	font-size: 27px;
}

.price-card--main {
	border: 2px solid rgba(249, 115, 22, 0.35);
}

.faq-list {
	display: grid;
	gap: 12px;
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	overflow: hidden;
}

.faq-item summary {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	padding: 18px;
	color: var(--color-navy);
	font-weight: 900;
	cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	justify-self: end;
	color: var(--color-blue);
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item__q,
.faq-item__a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
}

.faq-item__q {
	color: var(--color-white);
	background: var(--color-blue);
}

.faq-item__a {
	flex: 0 0 auto;
	color: var(--color-white);
	background: var(--color-orange);
}

.faq-item__answer {
	display: flex;
	gap: 12px;
	padding: 0 18px 20px;
	color: var(--color-text);
}

.faq-item__answer p {
	margin: 0;
}

.closing-cta {
	color: var(--color-white);
	background:
		radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.22), transparent 28%),
		linear-gradient(135deg, #081a2b, var(--color-navy));
	text-align: center;
}

.closing-cta__container {
	max-width: 860px;
}

.closing-cta h2 {
	color: var(--color-white);
}

.closing-cta p {
	color: rgba(255, 255, 255, 0.88);
}

.site-footer {
	padding: 46px 0 92px;
	color: rgba(255, 255, 255, 0.86);
	background: #071422;
}

.site-footer__inner {
	display: grid;
	gap: 24px;
	width: min(100% - 32px, var(--container));
	margin: 0 auto;
}

.site-footer__title {
	display: block;
	margin-bottom: 8px;
	color: var(--color-white);
	font-size: 18px;
	font-weight: 900;
}

.site-footer__text {
	display: block;
	font-size: 13px;
}

.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
}

.site-footer__nav a {
	font-size: 13px;
	font-weight: 800;
}

.site-footer__copy {
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.58);
}

.fixed-line-cta {
	position: fixed;
	right: 12px;
	bottom: 12px;
	left: 12px;
	z-index: 999;
	display: block;
}

.fixed-line-cta a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 56px;
	padding: 10px 18px;
	color: var(--color-white);
	background: linear-gradient(135deg, var(--color-orange), var(--color-orange-2));
	border-radius: 999px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
	font-weight: 900;
	text-align: center;
}

.fixed-line-cta__small {
	font-size: 12px;
	opacity: 0.9;
}

.fixed-line-cta__main {
	font-size: 16px;
}

.post-list {
	display: grid;
	gap: 18px;
}

.post-card {
	padding: 24px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

.post-card__title {
	margin: 0 0 12px;
	color: var(--color-navy);
	font-size: 26px;
	line-height: 1.4;
}

.post-card__excerpt {
	color: var(--color-muted);
}

.pagination {
	margin-top: 28px;
}

@media (min-width: 640px) {
	.feature-badges {
		grid-template-columns: repeat(2, 1fr);
	}

	.card-grid--concerns,
	.card-grid--future {
		grid-template-columns: repeat(2, 1fr);
	}

	.price-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.section {
		padding: 96px 0;
	}

	.fv {
		--fv-active-bg-image: var(--fv-bg-image-pc);
		min-height: calc(88svh - var(--header-height));
		padding: 86px 0 76px;
		background: var(--fv-active-bg-image);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
	}

	.fv__content {
		max-width: 720px;
		padding: 42px 38px 34px;
	}

	.fv__container {
		display: block;
	}

	.feature-badges {
		grid-template-columns: repeat(4, 1fr);
	}

	.feature-badges--fv {
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
		margin-top: 32px;
	}

	.feature-badges--fv .feature-badge {
		min-height: 88px;
		align-items: center;
		padding: 20px 18px 20px 22px;
	}

	.two-column,
	.future-layout,
	.service-intro,
	.profile__container,
	.mission__container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.card-grid--service {
		grid-template-columns: repeat(2, 1fr);
	}

	.area-job-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.flow-item {
		grid-template-columns: 120px 1fr;
		align-items: start;
	}

	.site-footer__inner {
		grid-template-columns: 1.5fr 1fr;
		align-items: start;
	}

	.site-footer__copy {
		grid-column: 1 / -1;
	}

	.fixed-line-cta {
		right: 22px;
		bottom: 22px;
		left: auto;
		width: 260px;
	}
}

@media (min-width: 960px) {
	.nav-toggle {
		display: none;
	}

	.site-nav {
		position: static;
		display: flex !important;
		flex-direction: row;
		align-items: center;
		gap: 2px;
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.site-nav a {
		padding: 9px 12px;
		font-size: 13px;
	}

	.site-nav__cta {
		margin-left: 8px;
		padding: 10px 16px !important;
		border-radius: 999px !important;
	}

	.card-grid--service {
		grid-template-columns: repeat(3, 1fr);
	}

	.reason-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.reason-card:last-child {
		grid-column: 1 / -1;
	}

	.fv__title {
		font-size: clamp(58px, 5.2vw, 76px);
		line-height: 1.02;
	}

	.fv__content {
		max-width: 780px;
	}
}

@media (max-width: 767px) {
	.fv {
		background-position: center top;
	}

	.fv__content {
		padding-left: 18px;
		padding-right: 18px;
	}

	.fv__title {
		font-size: clamp(30px, 8.2vw, 36px);
		line-height: 1.12;
		letter-spacing: -0.055em;
	}

	.fv__title-line {
		white-space: nowrap;
	}

	.fv__title-accent {
		letter-spacing: -0.04em;
	}

	.fv__cta .cta-button {
		width: 100%;
	}

	.fv__cta {
		text-align: center;
	}

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

	.text-block--center {
		text-align: left;
	}

	.cta-button {
		width: 100%;
	}

	.site-brand__text {
		font-size: 14px;
	}

	.profile__visual {
		order: -1;
	}
	.feature-badges--fv {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.feature-badges--fv .feature-badge {
		min-height: 64px;
		padding: 16px 12px 16px 22px;
		border-radius: 18px;
	}

	.feature-badges--fv .feature-badge::before {
		top: 13px;
		bottom: 13px;
	}

	.feature-badge__text {
		font-size: clamp(12.5px, 3.45vw, 14px);
		line-height: 1.45;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* =========================================================
   LP CRAFT final design polish
   参考サイトの青×白×赤CTAの方向性を取り入れつつ、
   既存テキストとHTML構造は維持して、見た目・余白・改行・動きを調整。
   ========================================================= */

:root {
	--color-navy: #082548;
	--color-navy-2: #0b3768;
	--color-blue: #0f6fd6;
	--color-blue-soft: #eaf5ff;
	--color-blue-pale: #f4f9ff;
	--color-text: #172638;
	--color-muted: #5a7088;
	--color-border: #d8e8f7;
	--color-orange: #e93535;
	--color-orange-2: #ff6b2c;
	--color-gold: #f5aa2a;
	--shadow-soft: 0 22px 60px rgba(6, 37, 72, 0.14);
	--shadow-card: 0 16px 42px rgba(6, 37, 72, 0.09);
	--shadow-card-hover: 0 24px 62px rgba(6, 37, 72, 0.15);
	--radius-sm: 14px;
	--radius-md: 22px;
	--radius-lg: 34px;
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
	overflow-x: hidden;
	scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
	overflow-x: hidden;
	background:
		radial-gradient(circle at 0% 0%, rgba(15, 111, 214, 0.08), transparent 34vw),
		linear-gradient(180deg, #ffffff 0%, #f8fbff 42%, #ffffff 100%);
	font-feature-settings: "palt";
	font-kerning: normal;
}

body.is-loaded .site-header {
	transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header {
	background: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(216, 232, 247, 0.72);
	box-shadow: 0 8px 30px rgba(6, 37, 72, 0.04);
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	border-color: rgba(179, 210, 238, 0.84);
	box-shadow: 0 12px 36px rgba(6, 37, 72, 0.1);
}

.site-brand__mark {
	background: linear-gradient(135deg, #073c86 0%, var(--color-blue) 100%);
	box-shadow: 0 10px 24px rgba(15, 111, 214, 0.24);
}

.site-nav a {
	position: relative;
	white-space: nowrap;
	transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.site-nav a:not(.site-nav__cta)::after {
	content: "";
	position: absolute;
	right: 12px;
	bottom: 6px;
	left: 12px;
	height: 2px;
	background: linear-gradient(90deg, var(--color-blue), #54b7ff);
	border-radius: 999px;
	opacity: 0;
	transform: scaleX(0.3);
	transform-origin: center;
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-nav a:not(.site-nav__cta):hover,
.site-nav a:not(.site-nav__cta):focus-visible {
	color: var(--color-blue);
	background: rgba(15, 111, 214, 0.07);
	transform: translateY(-1px);
}

.site-nav a:not(.site-nav__cta):hover::after,
.site-nav a:not(.site-nav__cta):focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.site-nav__cta,
.cta-button,
.fixed-line-cta a {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #e61f35 0%, #ff5b2e 100%);
	box-shadow:
		0 18px 38px rgba(230, 31, 53, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.cta-button::after,
.fixed-line-cta a::after,
.site-nav__cta::after {
	content: "";
	position: absolute;
	top: 0;
	left: -90%;
	width: 46%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
	transform: skewX(-18deg);
	transition: left 0.62s var(--ease-out);
	pointer-events: none;
}

.cta-button:hover::after,
.cta-button:focus-visible::after,
.fixed-line-cta a:hover::after,
.fixed-line-cta a:focus-visible::after,
.site-nav__cta:hover::after,
.site-nav__cta:focus-visible::after {
	left: 128%;
}

.cta-button:hover,
.cta-button:focus-visible,
.fixed-line-cta a:hover,
.fixed-line-cta a:focus-visible {
	transform: translateY(-3px);
	box-shadow:
		0 24px 50px rgba(230, 31, 53, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button--light {
	color: #0a2c54;
	background: #ffffff;
	box-shadow:
		0 18px 40px rgba(0, 0, 0, 0.2),
		inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.cta-button--light:hover,
.cta-button--light:focus-visible {
	box-shadow:
		0 24px 52px rgba(0, 0, 0, 0.24),
		inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.container {
	width: min(100% - 40px, var(--container));
}

.section {
	padding: clamp(70px, 8vw, 112px) 0;
}

.section::before {
	content: "";
	position: absolute;
	inset: auto -80px 0 auto;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(15, 111, 214, 0.08), transparent 68%);
	pointer-events: none;
}

.section--tint {
	background:
		radial-gradient(circle at 12% 12%, rgba(15, 111, 214, 0.1), transparent 28vw),
		linear-gradient(180deg, #f3f9ff 0%, #ffffff 100%);
}


.section-label--light,
.section-heading--light .section-label {
	color: #dff1ff;
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
}

.section-heading {
	margin-bottom: clamp(30px, 4.6vw, 54px);
}

.section-label {
	padding: 6px 12px;
	color: var(--color-blue);
	background: rgba(15, 111, 214, 0.09);
	border: 1px solid rgba(15, 111, 214, 0.14);
	border-radius: 999px;
	font-size: 12px;
	line-height: 1.2;
	text-transform: none;
}

.section-label::before {
	width: 8px;
	height: 8px;
	background: currentColor;
	border-radius: 50%;
}

.section-heading h1,
.section-heading h2,
.profile__content h2,
.mission__content h2,
.closing-cta h2 {
	text-wrap: balance;
	word-break: normal;
	line-break: strict;
	letter-spacing: 0.005em;
}

.section-heading h1,
.section-heading h2 {
	font-size: clamp(30px, 5.5vw, 46px);
	line-height: 1.32;
}

.text-block p,
.two-column__text p,
.future-layout__content p,
.service-intro__text p,
.policy__text p,
.profile-text p,
.mission__content p,
.closing-cta p,
.message-box p,
.info-card p,
.service-card p,
.reason-card p,
.flow-item p,
.price-card p,
.faq-item__answer p {
	line-height: 1.95;
	word-break: normal;
	line-break: strict;
	overflow-wrap: anywhere;
}

.fv {
	min-height: calc(100svh - var(--header-height));
	background-color: #082548;
}

.fv::before {
	background:
		linear-gradient(90deg, rgba(3, 16, 33, 0.86) 0%, rgba(3, 16, 33, 0.66) 42%, rgba(3, 16, 33, 0.2) 100%),
		radial-gradient(circle at 22% 14%, rgba(84, 183, 255, 0.34), transparent 24rem),
		radial-gradient(circle at 88% 86%, rgba(230, 31, 53, 0.2), transparent 22rem);
}

.fv::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 72%);
	pointer-events: none;
}

.fv__content {
	position: relative;
	max-width: min(100%, 720px);
	background:
		linear-gradient(180deg, rgba(5, 24, 48, 0.76) 0%, rgba(5, 24, 48, 0.58) 100%);
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow:
		0 28px 74px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(14px) saturate(120%);
}

.fv__content::before {
	content: "";
	position: absolute;
	inset: 14px 14px auto auto;
	width: 76px;
	height: 76px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.fv__label {
	color: #dff1ff;
	letter-spacing: 0.06em;
}

.fv__title {
	font-size: clamp(37px, 9vw, 62px);
	line-height: 1.08;
	letter-spacing: -0.032em;
}

.fv__title-accent {
	color: #ffd05f;
	text-shadow: 0 10px 28px rgba(255, 168, 44, 0.28);
}

.fv__lead {
	font-size: clamp(17px, 4.2vw, 23px);
	line-height: 1.78;
}

.fv__text {
	font-size: clamp(14px, 3.6vw, 17px);
	line-height: 1.86;
}

.fv__cta .cta-button {
	max-width: 430px;
}

.feature-badges--fv .feature-badge {
	transform: translateZ(0);
	transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.feature-badges--fv .feature-badge:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.38);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.1) 100%),
		linear-gradient(180deg, rgba(10, 46, 88, 0.78) 0%, rgba(10, 46, 88, 0.54) 100%);
}

.feature-badge__text {
	line-height: 1.58;
	letter-spacing: 0.01em;
}

.concern-card,
.simple-card,
.service-card,
.info-card,
.reason-card,
.flow-item,
.price-card,
.faq-item,
.message-box,
.check-list-box,
.policy-box,
.image-slot,
.profile-name,
.mission__strong {
	transform: translateZ(0);
	transition:
		transform 0.28s var(--ease-out),
		box-shadow 0.28s var(--ease-out),
		border-color 0.28s var(--ease-out),
		background 0.28s var(--ease-out);
}

.concern-card:hover,
.simple-card:hover,
.service-card:hover,
.info-card:hover,
.reason-card:hover,
.flow-item:hover,
.price-card:hover,
.faq-item:hover,
.message-box:hover,
.check-list-box:hover {
	transform: translateY(-4px);
	border-color: rgba(15, 111, 214, 0.25);
	box-shadow: var(--shadow-card-hover);
}

.concern-card,
.simple-card,
.service-card,
.info-card,
.reason-card,
.flow-item,
.price-card,
.faq-item,
.message-box,
.check-list-box {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
		linear-gradient(135deg, rgba(15, 111, 214, 0.12), rgba(230, 31, 53, 0.08));
}

.concern-card {
	border-left: 4px solid rgba(15, 111, 214, 0.72);
}

.concern-card__icon,
.card-number,
.flow-item__number {
	background: linear-gradient(135deg, #074386 0%, var(--color-blue) 100%);
	box-shadow: 0 12px 28px rgba(15, 111, 214, 0.2);
}

.simple-card::before {
	background: linear-gradient(90deg, #e61f35, #ff9b2f);
}

.service-card::after,
.info-card::after,
.price-card::after {
	content: "";
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: 54px;
	height: 54px;
	background:
		radial-gradient(circle at 30% 30%, rgba(15, 111, 214, 0.16), transparent 36%),
		radial-gradient(circle at 70% 70%, rgba(230, 31, 53, 0.14), transparent 38%);
	border-radius: 50%;
	pointer-events: none;
}

.service-card,
.info-card,
.price-card {
	position: relative;
	overflow: hidden;
}

.service-card h3,
.info-card h3,
.reason-card h3,
.flow-item h3,
.price-card h3,
.check-list-box h3 {
	text-wrap: balance;
	line-height: 1.48;
}

.info-card__label,
.price-card__label {
	color: #0c5dae;
	background: rgba(15, 111, 214, 0.1);
	border: 1px solid rgba(15, 111, 214, 0.14);
}

.reason-card {
	align-items: start;
}

.reason-card__number {
	color: #ffffff;
	background: linear-gradient(135deg, #e61f35 0%, #ff6b2c 100%);
	box-shadow: 0 12px 26px rgba(230, 31, 53, 0.18);
}

.policy,
.closing-cta {
	background:
		radial-gradient(circle at 14% 18%, rgba(84, 183, 255, 0.18), transparent 24rem),
		radial-gradient(circle at 86% 12%, rgba(230, 31, 53, 0.18), transparent 22rem),
		linear-gradient(135deg, #061a34 0%, #073c73 54%, #041222 100%);
}

.policy-box {
	backdrop-filter: blur(12px);
}

.image-slot {
	background:
		radial-gradient(circle at 30% 28%, rgba(84, 183, 255, 0.2), transparent 26%),
		radial-gradient(circle at 76% 72%, rgba(230, 31, 53, 0.14), transparent 28%),
		linear-gradient(135deg, #ecf6ff 0%, #ffffff 100%);
	border: 1px solid rgba(15, 111, 214, 0.2);
	border-style: solid;
}

.image-slot::before,
.image-slot::after {
	content: "";
	position: absolute;
	border-radius: 28px;
	pointer-events: none;
}

.image-slot::before {
	width: 48%;
	height: 48%;
	background: rgba(15, 111, 214, 0.08);
	transform: rotate(-8deg);
}

.image-slot::after {
	right: 12%;
	bottom: 16%;
	width: 30%;
	height: 24%;
	background: rgba(230, 31, 53, 0.08);
	transform: rotate(8deg);
}

.image-slot span {
	position: relative;
	z-index: 1;
	color: #0a3769;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 28px rgba(6, 37, 72, 0.08);
}

.image-slot.has-image::before,
.image-slot.has-image::after {
	display: none;
}

.flow-list {
	gap: 18px;
}

.flow-list::before {
	content: "";
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 23px;
	width: 2px;
	background: linear-gradient(180deg, rgba(15, 111, 214, 0.18), rgba(230, 31, 53, 0.22));
	border-radius: 999px;
}

.flow-item {
	margin-left: 18px;
}

.flow-item__number {
	justify-content: center;
	min-width: 94px;
}

.price-card--main {
	border-color: rgba(230, 31, 53, 0.4);
	box-shadow:
		0 18px 52px rgba(230, 31, 53, 0.12),
		var(--shadow-card);
}

.faq-item summary {
	grid-template-columns: auto minmax(0, 1fr) auto;
	line-height: 1.65;
}

.faq-item summary::after {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: var(--color-blue);
	background: rgba(15, 111, 214, 0.08);
	border-radius: 50%;
}

.faq-item[open] {
	border-color: rgba(15, 111, 214, 0.22);
	box-shadow: var(--shadow-card-hover);
}

.fixed-line-cta a {
	animation: ctaPulse 3.2s ease-in-out infinite;
}

.site-footer {
	background:
		radial-gradient(circle at 12% 16%, rgba(84, 183, 255, 0.1), transparent 20rem),
		#041222;
}

.site-footer__nav a {
	position: relative;
	color: rgba(255, 255, 255, 0.86);
}

.site-footer__nav a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -3px;
	left: 0;
	height: 1px;
	background: currentColor;
	opacity: 0.35;
}

.lp-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 0.72s var(--ease-out),
		transform 0.72s var(--ease-out);
	transition-delay: calc(var(--reveal-delay, 0) * 65ms);
	will-change: opacity, transform;
}

.lp-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.fv .lp-reveal {
	transform: translateY(16px);
}

.fv .lp-reveal.is-visible {
	transform: translateY(0);
}

@keyframes ctaPulse {
	0%,
	100% {
		box-shadow:
			0 18px 38px rgba(230, 31, 53, 0.24),
			inset 0 1px 0 rgba(255, 255, 255, 0.28);
	}
	50% {
		box-shadow:
			0 22px 48px rgba(230, 31, 53, 0.34),
			0 0 0 8px rgba(230, 31, 53, 0.08),
			inset 0 1px 0 rgba(255, 255, 255, 0.28);
	}
}

@media (min-width: 768px) {
	.fv {
		min-height: calc(92svh - var(--header-height));
		padding: 92px 0 80px;
		background-position: center center;
	}

	.fv__content {
		padding: 46px 44px 38px;
	}

	.fv__cta {
		text-align: left;
	}

	.fv__cta .cta-button {
		width: min(100%, 430px);
	}

	.feature-badges--fv {
		align-items: stretch;
	}

	.feature-badges--fv .feature-badge {
		min-height: 96px;
	}

	.flow-list::before {
		left: 60px;
	}

	.flow-item {
		margin-left: 0;
	}
}

@media (min-width: 960px) {
	.section-heading h1,
	.section-heading h2 {
		font-size: clamp(36px, 3.4vw, 48px);
	}

	.fv__title {
		font-size: clamp(58px, 4.8vw, 72px);
		line-height: 1.05;
		letter-spacing: -0.028em;
	}

	.fv__content {
		max-width: 760px;
	}

	.card-grid {
		gap: 20px;
	}

	.card-grid--service {
		gap: 22px;
	}
}

@media (max-width: 959px) {
	.site-nav a:not(.site-nav__cta)::after {
		display: none;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 15.5px;
		line-height: 1.86;
	}

	.container {
		width: min(100% - 28px, var(--container));
	}

	.site-header__inner {
		width: min(100% - 28px, var(--container));
	}

	.section {
		padding: 66px 0;
	}

	.section::before {
		width: 150px;
		height: 150px;
	}

	.section-label {
		font-size: 11px;
		letter-spacing: 0.1em;
	}

	.section-heading {
		margin-bottom: 28px;
	}

	.section-heading h1,
	.section-heading h2 {
		font-size: clamp(26px, 7.2vw, 32px);
		line-height: 1.38;
		letter-spacing: 0;
	}

	.fv {
		min-height: calc(100svh - var(--header-height));
		padding: 38px 0 36px;
		background-position: center top;
	}

	.fv::before {
		background:
			linear-gradient(180deg, rgba(3, 16, 33, 0.58) 0%, rgba(3, 16, 33, 0.74) 52%, rgba(3, 16, 33, 0.86) 100%),
			radial-gradient(circle at 24% 16%, rgba(84, 183, 255, 0.22), transparent 18rem);
	}

	.fv::after {
		background-size: 36px 36px;
		mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 80%);
	}

	.fv__content {
		padding: 24px 18px 22px;
		border-radius: 24px;
	}

	.fv__title {
		font-size: clamp(32px, 8.45vw, 38px);
		line-height: 1.15;
		letter-spacing: -0.038em;
	}

	.fv__lead {
		font-size: clamp(16px, 4.25vw, 18px);
		line-height: 1.82;
	}

	.fv__text {
		font-size: 14px;
		line-height: 1.85;
	}

	.fv__cta .cta-button,
	.cta-button {
		min-height: 56px;
		padding-inline: 18px;
		font-size: 15px;
		line-height: 1.42;
	}

	.feature-badges {
		margin-top: 22px;
	}

	.feature-badges--fv .feature-badge {
		min-height: auto;
		padding: 15px 14px 15px 22px;
	}

	.feature-badge__text {
		font-size: 13.5px;
		line-height: 1.58;
	}

	.concern-card,
	.simple-card,
	.service-card,
	.info-card,
	.reason-card,
	.flow-item,
	.price-card,
	.message-box,
	.check-list-box,
	.policy-box {
		border-radius: 20px;
	}

	.reason-card {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.reason-card__number {
		width: fit-content;
		min-width: 48px;
		padding-inline: 12px;
		border-radius: 999px;
	}

	.service-card h3,
	.info-card h3,
	.reason-card h3,
	.flow-item h3,
	.price-card h3 {
		font-size: 18px;
		line-height: 1.5;
	}

	.profile__content h2,
	.mission__content h2,
	.closing-cta h2 {
		font-size: clamp(26px, 7vw, 32px);
		line-height: 1.38;
	}

	.flow-list::before {
		left: 13px;
	}

	.flow-item {
		margin-left: 14px;
		padding: 18px;
	}

	.faq-item summary {
		gap: 10px;
		padding: 16px 14px;
		font-size: 15px;
		line-height: 1.58;
	}

	.faq-item__answer {
		padding: 0 14px 18px;
	}

	.faq-item__q,
	.faq-item__a {
		width: 29px;
		height: 29px;
		font-size: 13px;
	}

	.fixed-line-cta {
		right: 10px;
		bottom: 10px;
		left: 10px;
	}

	.fixed-line-cta a {
		min-height: 54px;
	}

	.site-footer {
		padding-bottom: 106px;
	}
}

@media (max-width: 374px) {
	.fv__title {
		font-size: clamp(29px, 8.1vw, 32px);
		letter-spacing: -0.045em;
	}

	.fv__title-line {
		white-space: normal;
	}

	.site-brand__text {
		font-size: 13px;
	}

	.site-brand__mark {
		width: 38px;
		height: 38px;
		border-radius: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fixed-line-cta a {
		animation: none;
	}

	.lp-reveal,
	.lp-reveal.is-visible {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}


/* =========================================================
   LP CRAFT finishing adjustments v1.2.0
   指定差分：スクロールCTA、FV下カード、各セクションの見栄え、改行、プロフィール配置
========================================================= */

/* 下部固定CTA：初期非表示 → スクロール後だけ表示 */
.fixed-line-cta {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(18px) scale(0.98);
	transition:
		opacity 0.28s ease,
		visibility 0.28s ease,
		transform 0.28s ease;
}

.fixed-line-cta.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.fixed-line-cta a {
	background: linear-gradient(135deg, #ef233c 0%, #ff5a2d 100%);
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow:
		0 18px 40px rgba(230, 31, 53, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* 2枚目：ファーストビュー下の訴求カード強化 */
.fv__features-container {
	margin-top: -10px;
}

.feature-badges--fv {
	display: grid;
	grid-template-columns: 1fr;
	gap: 13px;
	margin-top: 26px;
}

.feature-badges--fv .feature-badge {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 7px;
	min-height: 82px;
	padding: 18px 18px 18px 22px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.21), rgba(255, 255, 255, 0.07)),
		linear-gradient(135deg, rgba(4, 18, 34, 0.82), rgba(14, 58, 99, 0.66));
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 22px;
	box-shadow:
		0 18px 44px rgba(0, 0, 0, 0.26),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(14px) saturate(145%);
}

.feature-badges--fv .feature-badge::before {
	top: 16px;
	bottom: 16px;
	width: 5px;
	background: linear-gradient(180deg, #5bc7ff 0%, #ff5a2d 100%);
}

.feature-badges--fv .feature-badge::after {
	content: "";
	position: absolute;
	right: -30px;
	top: -34px;
	width: 92px;
	height: 92px;
	background: radial-gradient(circle, rgba(84, 183, 255, 0.26), transparent 68%);
	border-radius: 50%;
}

.feature-badge__label {
	position: relative;
	z-index: 1;
	display: inline-flex;
	width: fit-content;
	padding: 3px 9px;
	color: #bfe7ff;
	background: rgba(84, 183, 255, 0.14);
	border: 1px solid rgba(169, 215, 255, 0.2);
	border-radius: 999px;
	font-size: 10px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.feature-badge__text {
	position: relative;
	z-index: 1;
	color: #ffffff;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.55;
	letter-spacing: 0.01em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

/* 3〜5枚目：共感・整理・未来セクションの質感強化 */
.empathy,
.future {
	background:
		radial-gradient(circle at 8% 8%, rgba(84, 183, 255, 0.12), transparent 22rem),
		radial-gradient(circle at 92% 36%, rgba(230, 31, 53, 0.08), transparent 20rem),
		linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.problem {
	background:
		radial-gradient(circle at 12% 14%, rgba(15, 111, 214, 0.12), transparent 20rem),
		linear-gradient(180deg, #f3f9ff 0%, #ffffff 100%);
}

.message-box {
	position: relative;
	overflow: hidden;
	padding: 26px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
	border: 1px solid rgba(15, 111, 214, 0.16);
	border-left: 0;
	box-shadow:
		0 24px 58px rgba(6, 37, 72, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.message-box::before {
	content: "";
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 0;
	width: 6px;
	background: linear-gradient(180deg, #ef233c, #ff7a2f);
	border-radius: 0 999px 999px 0;
}

.message-box::after {
	content: "";
	position: absolute;
	right: -42px;
	bottom: -46px;
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(84, 183, 255, 0.16), transparent 68%);
	border-radius: 50%;
}

.message-box p {
	position: relative;
	z-index: 1;
	color: #25364a;
	font-weight: 700;
}

.two-column {
	gap: 30px;
}

.check-list-box {
	position: relative;
	overflow: hidden;
	padding: 28px;
	background:
		linear-gradient(135deg, #ffffff 0%, #f2f8ff 100%);
	border: 1px solid rgba(15, 111, 214, 0.18);
	box-shadow:
		0 26px 66px rgba(6, 37, 72, 0.13),
		inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.check-list-box::before {
	content: "";
	position: absolute;
	top: -54px;
	right: -54px;
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(15, 111, 214, 0.16), transparent 70%);
	border-radius: 50%;
}

.check-list-box h3 {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	font-size: 22px;
}

.check-list-box h3::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background: linear-gradient(135deg, #0f6fd6, #54b7ff);
	border-radius: 50%;
	box-shadow: 0 0 0 7px rgba(15, 111, 214, 0.1);
}

.check-list li {
	padding: 12px 12px 12px 42px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(15, 111, 214, 0.08);
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(6, 37, 72, 0.04);
}

.check-list li::before {
	top: 12px;
	left: 12px;
	background: linear-gradient(135deg, #0f6fd6, #54b7ff);
}

.card-grid--future {
	gap: 16px;
}

.simple-card {
	overflow: hidden;
	padding: 24px 22px;
	background:
		linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
	border: 1px solid rgba(15, 111, 214, 0.14);
	box-shadow:
		0 18px 46px rgba(6, 37, 72, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.simple-card::before {
	width: 42px;
	height: 5px;
	background: linear-gradient(90deg, #ef233c 0%, #ff7a2f 100%);
	box-shadow: 0 8px 18px rgba(239, 35, 60, 0.16);
}

.simple-card::after {
	content: "";
	position: absolute;
	right: -28px;
	bottom: -30px;
	width: 92px;
	height: 92px;
	background: radial-gradient(circle, rgba(15, 111, 214, 0.12), transparent 70%);
	border-radius: 50%;
}

.simple-card p {
	position: relative;
	z-index: 1;
	color: #29384b;
	font-weight: 800;
	line-height: 1.75;
}

/* 6〜7枚目：カテゴリー・理由セクションの高級感と改行調整 */
.area-job {
	background:
		radial-gradient(circle at 8% 20%, rgba(84, 183, 255, 0.12), transparent 22rem),
		linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}

.area-job .section-heading,
.reason .section-heading {
	max-width: 820px;
}

.area-job .section-heading h2,
.reason .section-heading h2 {
	text-wrap: balance;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.area-job-grid {
	gap: 22px;
}

.info-card {
	position: relative;
	overflow: hidden;
	padding: 30px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 248, 255, 0.98) 100%);
	border: 1px solid rgba(15, 111, 214, 0.17);
	box-shadow:
		0 24px 62px rgba(6, 37, 72, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.info-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #0f6fd6, #54b7ff, #ff5a2d);
}

.info-card::after {
	content: "";
	position: absolute;
	right: -34px;
	top: -44px;
	width: 142px;
	height: 142px;
	background: radial-gradient(circle, rgba(84, 183, 255, 0.16), transparent 68%);
	border-radius: 50%;
}

.info-card__label {
	position: relative;
	z-index: 1;
	margin-bottom: 16px;
	color: #084f9d;
	background: rgba(84, 183, 255, 0.14);
	border-color: rgba(15, 111, 214, 0.16);
}

.info-card h3,
.info-card p {
	position: relative;
	z-index: 1;
}

.info-card h3 {
	font-size: 21px;
}

.reason {
	background:
		radial-gradient(circle at 82% 14%, rgba(230, 31, 53, 0.08), transparent 20rem),
		linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.reason-list {
	gap: 18px;
}

.reason-card {
	position: relative;
	overflow: hidden;
	grid-template-columns: auto 1fr;
	align-items: start;
	padding: 26px;
	background:
		linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid rgba(15, 111, 214, 0.14);
	box-shadow:
		0 22px 56px rgba(6, 37, 72, 0.11),
		inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.reason-card::after {
	content: "";
	position: absolute;
	right: -44px;
	bottom: -48px;
	width: 128px;
	height: 128px;
	background: radial-gradient(circle, rgba(239, 35, 60, 0.09), transparent 70%);
	border-radius: 50%;
}

.reason-card__number {
	position: relative;
	z-index: 1;
	width: 54px;
	height: 54px;
	background: linear-gradient(135deg, #ef233c 0%, #ff6b2c 100%);
	box-shadow:
		0 16px 30px rgba(239, 35, 60, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.reason-card h3,
.reason-card p {
	position: relative;
	z-index: 1;
}

/* 8枚目：プロフィール写真を名前枠の左へ */
.profile {
	background:
		radial-gradient(circle at 8% 18%, rgba(84, 183, 255, 0.11), transparent 22rem),
		radial-gradient(circle at 90% 70%, rgba(230, 31, 53, 0.06), transparent 20rem),
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.profile__container {
	display: block;
	max-width: 900px;
}

.profile__content {
	max-width: 820px;
	margin: 0 auto;
}

.profile-name {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	padding: 18px;
	background:
		linear-gradient(135deg, #eef7ff 0%, #ffffff 100%);
	border: 1px solid rgba(15, 111, 214, 0.13);
	box-shadow: 0 18px 44px rgba(6, 37, 72, 0.08);
}

.profile-name::after {
	content: "";
	position: absolute;
	right: -34px;
	bottom: -42px;
	width: 130px;
	height: 130px;
	background: radial-gradient(circle, rgba(84, 183, 255, 0.16), transparent 68%);
	border-radius: 50%;
}

.profile-name__photo {
	position: relative;
	z-index: 1;
	width: 92px;
	height: 92px;
	flex: 0 0 auto;
}

.profile-name__photo .image-slot,
.profile-name__photo .profile__image {
	width: 92px;
	height: 92px;
	min-height: 92px;
	border-radius: 24px;
	box-shadow: 0 16px 32px rgba(6, 37, 72, 0.13);
}

.profile-name__photo .image-slot span {
	padding: 8px;
	font-size: 10px;
	line-height: 1.45;
	border-radius: 14px;
}

.profile-name__text {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.profile-name__text strong {
	color: var(--color-navy);
	font-size: 24px;
	line-height: 1.25;
}

.profile-name__text span {
	color: var(--color-muted);
	font-size: 14px;
	font-weight: 800;
}

.profile__visual {
	display: none;
}

/* FAQ：不要項目削除後の表示整え */
.faq-list {
	gap: 14px;
}

@media (min-width: 640px) {
	.feature-badges--fv {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.feature-badges--fv .feature-badge {
		min-height: 126px;
	}
}

@media (min-width: 768px) {
	.profile-name__photo,
	.profile-name__photo .image-slot,
	.profile-name__photo .profile__image {
		width: 112px;
		height: 112px;
		min-height: 112px;
	}

	.profile-name {
		gap: 22px;
		padding: 20px 24px;
	}
}

@media (min-width: 960px) {
	.area-job-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.info-card {
		min-height: 360px;
	}
}

@media (max-width: 767px) {
	.feature-badges--fv {
		margin-top: 22px;
	}

	.feature-badges--fv .feature-badge {
		min-height: 84px;
	}

	.feature-badge__text {
		font-size: 14.5px;
	}

	.message-box,
	.check-list-box,
	.simple-card,
	.info-card,
	.reason-card {
		padding: 22px;
	}

	.check-list li {
		padding: 11px 10px 11px 40px;
		font-size: 14.5px;
		line-height: 1.62;
	}

	.check-list li::before {
		top: 11px;
	}

	.area-job .section-heading h2,
	.reason .section-heading h2 {
		font-size: clamp(25px, 6.6vw, 30px);
		line-height: 1.48;
		letter-spacing: -0.01em;
	}

	.info-card h3,
	.reason-card h3 {
		font-size: 17px;
		line-height: 1.58;
		word-break: keep-all;
		overflow-wrap: anywhere;
	}

	.reason-card {
		grid-template-columns: 1fr;
	}

	.reason-card__number {
		width: fit-content;
		min-width: 54px;
		height: 42px;
		border-radius: 999px;
	}

	.profile-name {
		grid-template-columns: 82px minmax(0, 1fr);
		gap: 14px;
		padding: 15px;
	}

	.profile-name__photo,
	.profile-name__photo .image-slot,
	.profile-name__photo .profile__image {
		width: 82px;
		height: 82px;
		min-height: 82px;
		border-radius: 20px;
	}

	.profile-name__text strong {
		font-size: 21px;
	}

	.profile-name__text span {
		font-size: 12.5px;
		line-height: 1.55;
	}
}

@media (max-width: 374px) {
	.area-job .section-heading h2,
	.reason .section-heading h2 {
		font-size: 24px;
		line-height: 1.5;
	}

	.profile-name {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.profile-name__photo,
	.profile-name__photo .image-slot,
	.profile-name__photo .profile__image {
		width: 72px;
		height: 72px;
		min-height: 72px;
	}
}
