@charset "UTF-8";
.fc-mv {
	background: linear-gradient(130deg, #1e5aa8 0%, #2e82e8 55%, #4db8f5 100%);
	padding: 4rem 2rem 4rem;
	position: relative;
	overflow: hidden;
}
.fc-mv::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		-55deg, transparent, transparent 12px,
		rgba(255,255,255,.04) 12px, rgba(255,255,255,.04) 13px
	);
	pointer-events: none;
}
@media only screen and (max-width: 1023px) {
	.fc-mv { padding: 3rem 2rem 3rem; }
}
.fc-mv-inner {
	max-width: 116rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 4rem;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 1023px) {
	.fc-mv-inner {
		gap: 2.4rem;
		align-items: center;
	}
}
@media only screen and (max-width: 767px) {
	.fc-mv-inner {
		flex-direction: column;
		gap: 2rem;
		align-items: center;
	}
}
.fc-mv-body {
	flex: 1;
	min-width: 0;
}
@media only screen and (max-width: 767px) {
	.fc-mv-body {
		text-align: center;
		width: 100%;
	}
}
.fc-mv-eyebrow {
	font-size: 4.8rem;
	font-weight: 900;
	color: #f5a623;
	letter-spacing: -.01em;
	margin-bottom: 2.8rem;
	line-height: 1.3;
}
.fc-mv-ttl {
	font-size: 2rem;
	font-weight: 700;
	color: var(--c_white);
	line-height: 1.7;
	margin-bottom: 3.2rem;
	letter-spacing: 0;
}
.fc-mv-ttl em { font-style: normal; color: #f5a623; }
@media only screen and (max-width: 1200px) {
	.fc-mv-eyebrow { font-size: 4.2rem; margin-bottom: 2.4rem; }
	.fc-mv-ttl { font-size: 1.8rem; }
}
@media only screen and (max-width: 1023px) {
	.fc-mv-eyebrow { font-size: 4.4rem; margin-bottom: 2rem; }
	.fc-mv-ttl { font-size: 1.8rem; margin-bottom: 2.4rem; }
}
@media only screen and (max-width: 767px) {
	.fc-mv-eyebrow { font-size: 2.8rem; margin-bottom: 1.6rem; }
	.fc-mv-ttl { font-size: 1.5rem; }
}
.fc-mv-btns {
	display: flex;
	flex-wrap: nowrap;
	gap: 1.2rem;
}
.fc-mv-btn {
	display: inline-flex;
	align-items: center;
	gap: .8rem;
	padding: 1.6rem 5.6rem;
	border-radius: .6rem;
	font-size: 1.7rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background .25s, transform .2s, box-shadow .2s;
}
@media only screen and (max-width: 1023px) {
	.fc-mv-btn {
		padding: 1.4rem 3.2rem;
		font-size: 1.6rem;
	}
}
.fc-mv-btn:hover { transform: translateY(-.2rem); }
.fc-mv-btn--primary { background: #f5a623; color: var(--c_white); }
.fc-mv-btn--primary:hover { background: var(--c_white); color: #f5a623; box-shadow: 0 4px 16px rgba(243,107,33,.3); }
.fc-mv-btn--outline {
	background: var(--c_white);
	color: #f5a623;
	border: .2rem solid #f5a623;
}
.fc-mv-btn--outline:hover { background: #f5a623; color: var(--c_white); border-color: #f5a623; }
.fc-mv-btn .btn-free {
	background: var(--c_white);
	color: #f5a623;
	font-size: 1.1rem;
	font-weight: 700;
	padding: .15em .6em;
	border-radius: .3rem;
	line-height: 1.4;
}
/* スマホ：画像を上・テキストを下・ボタン横並び */
@media only screen and (max-width: 767px) {
	.fc-mv-inner {
		flex-direction: column-reverse;
		gap: 2rem;
		align-items: center;
	}
	.fc-mv-body {
		text-align: center;
		width: 100%;
	}
	.fc-mv-eyebrow {
		text-align: center;
		display: block;
	}
	.fc-mv-ttl {
		text-align: center;
	}
	.fc-mv-btns {
		flex-direction: row;
		align-items: stretch;
		gap: 1rem;
		justify-content: center;
	}
	.fc-mv-btn {
		justify-content: center;
		padding: 1.4rem 1.2rem;
		border-radius: 10rem;
		font-size: 1.5rem;
		white-space: normal;
		flex: 1;
	}
}

.fc-mv-img,
.kv-construction-img {
	flex: none;
	width: 54rem;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}
@media only screen and (max-width: 1200px) {
	.fc-mv-img,
	.kv-construction-img { width: 44rem; }
}
@media only screen and (max-width: 1023px) {
	.fc-mv-img,
	.kv-construction-img { width: 42rem; flex: none; margin: 0; }
}
@media only screen and (max-width: 767px) {
	.fc-mv-img,
	.kv-construction-img { width: 100%; max-width: 38rem; margin: 0 auto; }
}
.fc-mv-img img,
.kv-construction-img img {
	width: 100%;
	height: auto;
	border-radius: 1.6rem;
	/* 四方向3%フェード */
	-webkit-mask-image: radial-gradient(
		ellipse 94% 94% at 50% 50%,
		black 60%, transparent 100%
	);
	mask-image: radial-gradient(
		ellipse 94% 94% at 50% 50%,
		black 60%, transparent 100%
	);
}
/* スマホ：より強めの四方向フェード */
@media only screen and (max-width: 767px) {
	.fc-mv-img img,
	.kv-construction-img img {
		border-radius: 1.2rem;
		-webkit-mask-image: radial-gradient(
			ellipse 90% 80% at 50% 45%,
			black 40%, transparent 100%
		);
		mask-image: radial-gradient(
			ellipse 90% 80% at 50% 45%,
			black 40%, transparent 100%
		);
	}
}


/* ============================================================
   資料DLバナー（MV直下）
   ============================================================ */
.fc-dl-banner {
	background: var(--bg_primary_pale);
	border-bottom: .1rem solid #c5d8f5;
	padding: 3.2rem 2rem;
}
.fc-dl-banner-inner {
	max-width: 116rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 3.2rem;
}
@media only screen and (max-width: 1023px) {
	.fc-dl-banner-inner { flex-direction: column; gap: 1.6rem; text-align: center; }
}
.fc-dl-banner-icon {
	flex: none;
	width: 7.2rem;
	height: 7.2rem;
	background: var(--c_primary_dark);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.2rem;
}
.fc-dl-banner-body { flex: 1; }
.fc-dl-banner-ttl {
	font-size: 2rem;
	font-weight: 700;
	color: var(--c_primary_dark);
	margin-bottom: .5rem;
}
.fc-dl-banner-desc {
	font-size: 1.4rem;
	color: var(--c_txt_pale);
	line-height: 1.7;
}
.fc-dl-banner-btn {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: .8rem;
	padding: 1.3rem 2.8rem;
	background: var(--c_primary_dark);
	color: var(--c_white);
	border-radius: .6rem;
	font-size: 1.5rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background .25s, transform .2s;
}
.fc-dl-banner-btn:hover { background: var(--c_primary); transform: translateY(-.2rem); }
.fc-dl-banner-btn::before { content: "📄"; font-size: 1.6rem; }


/* ============================================================
   アンカーナビ（TeamSpirit風：横3列カード）
   ============================================================ */
.fc-anchor-section {
	background: var(--bg_base);
	padding: 6rem 2rem 5rem;
	border-bottom: .1rem solid var(--bdr_gray);
}
.fc-anchor-inner { max-width: 116rem; margin: 0 auto; }
.fc-anchor-header {
	text-align: center;
	margin-bottom: 3.2rem;
}
.fc-anchor-kicker {
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--c_white);
	background: var(--c_primary_dark);
	letter-spacing: .14em;
	padding: .3em 1.2em;
	border-radius: .4rem;
	margin-bottom: 1.2rem;
}
.fc-anchor-ttl {
	font-size: 4.8rem;
	font-weight: 800;
	color: var(--c_primary_dark);
	line-height: 1.4;
}
@media only screen and (max-width: 1023px) { .fc-anchor-ttl { font-size: 3.2rem; } }
@media only screen and (max-width: 767px)  { .fc-anchor-ttl { font-size: 2.6rem; } }

/* 横3列グリッド */
.fc-anchor-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
@media only screen and (max-width: 767px) {
	.fc-anchor-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

/* カード本体 */
.fc-anchor-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.6rem;
	padding: 3.2rem 2rem 2.4rem;
	background: var(--c_white);
	border: .1rem solid var(--bdr_gray);
	border-radius: .8rem;
	text-decoration: none;
	color: var(--c_primary_dark);
	transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
}
.fc-anchor-card:hover {
	background: var(--c_primary_dark);
	border-color: var(--c_primary_dark);
	transform: translateY(-.3rem);
	box-shadow: 0 8px 24px rgba(11,42,92,.2);
}

/* スマホ：横並び・コンパクトに */
@media only screen and (max-width: 767px) {
	.fc-anchor-card {
		flex-direction: row;
		align-items: center;
		text-align: left;
		gap: 1.2rem;
		padding: 1.4rem 1.6rem;
	}
	.fc-anchor-card-text {
		font-size: 1.4rem;
		line-height: 1.5;
		text-align: left;
	}
	.fc-anchor-card-arrow {
		margin-left: auto;
		flex: none;
	}
	.fc-anchor-section {
		padding: 3rem 1.6rem 2.4rem;
	}
	.fc-anchor-ttl {
		font-size: 2.4rem;
	}
	.fc-anchor-header {
		margin-bottom: 2rem;
	}
}

/* 番号バッジ */
.fc-anchor-card-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	background: var(--c_primary_dark);
	color: var(--c_white);
	font-family: var(--f_rubik);
	font-size: 1.4rem;
	font-weight: 700;
	border-radius: .4rem;
	transition: background .25s;
}
.fc-anchor-card:hover .fc-anchor-card-num {
	background: #f5a623;
}

/* テキスト — 中央揃え・改行位置はHTMLのbrで制御 */
.fc-anchor-card-text {
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.7;
	flex: 1;
	text-align: center;
	transition: color .25s;
}
.fc-anchor-card:hover .fc-anchor-card-text {
	color: var(--c_white);
}

/* 矢印 */
.fc-anchor-card-arrow {
	font-size: 1.8rem;
	color: var(--c_primary_dark);
	transition: color .25s;
}
.fc-anchor-card:hover .fc-anchor-card-arrow {
	color: rgba(255,255,255,.7);
}


/* ============================================================
   課題ポイント見出し
   ============================================================ */
.fc-issues-header {
	background: var(--c_white);
	padding: 4rem 2rem 2rem;
	text-align: center;
	border-bottom: .1rem solid var(--bdr_gray);
}
.fc-issues-header h2 {
	font-size: 3.2rem;
	font-weight: 900;
	color: var(--c_primary_dark);
	line-height: 1.5;
}
@media only screen and (max-width: 1023px) { .fc-issues-header h2 { font-size: 2.2rem; } }


/* ============================================================
   課題ブロック
   ============================================================ */
.fc-issue-block {
	padding: 8rem 2rem;
	border-bottom: .1rem solid var(--bdr_gray);
	scroll-margin-top: 6rem;
}
.fc-issue-block:nth-child(even) { background: var(--bg_base); }
.fc-issue-block:nth-child(odd)  { background: var(--c_white); }
@media only screen and (max-width: 1023px) { .fc-issue-block { padding: 5rem 2rem; } }
.fc-issue-inner { max-width: 116rem; margin: 0 auto; }

/* 課題番号＋タイトル */
.fc-issue-head { margin-bottom: 3.2rem; }
.fc-issue-num {
	display: inline-flex;
	align-items: center;
	gap: .8rem;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--c_primary);
	letter-spacing: .12em;
	margin-bottom: 1.2rem;
}
.fc-issue-num::before {
	content: "";
	display: block;
	width: 2rem;
	height: .2rem;
	background: var(--c_primary);
	border-radius: .2rem;
}
.fc-issue-ttl {
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--c_primary_dark);
	line-height: 1.5;
	margin-bottom: 1.2rem;
}
@media only screen and (max-width: 1023px) { .fc-issue-ttl { font-size: 2rem; } }
.fc-issue-desc {
	font-size: 1.7rem;
	font-weight: 500;
	color: var(--c_txt);
	line-height: 2;
	max-width: 82rem;
}
.fc-issue-desc strong { color: var(--c_txt); font-weight: 700; }
@media only screen and (max-width: 1023px) { .fc-issue-desc { font-size: 1.5rem; } }

/* よくあるケース */
.fc-case-box {
	background: #fdf6ee;
	border: none;
	border-left: .3rem solid #f5a623;
	border-radius: 0 .6rem .6rem 0;
	padding: 2.8rem 3.2rem;
	margin-bottom: 3.2rem;
}
@media only screen and (max-width: 1023px) { .fc-case-box { padding: 2rem; } }
.fc-case-box-ttl {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--c_primary_dark);
	margin-bottom: 1.6rem;
	display: flex;
	align-items: center;
	gap: .8rem;
}
.fc-case-box-ttl::before {
	content: "";
	flex: none;
	width: 2.2rem;
	height: 2.2rem;
	background: url(../img/solution_icons/solution_icon_case.svg) center / contain no-repeat;
}
.fc-case-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: .8rem;
	counter-reset: case-counter;
}
.fc-case-list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--c_txt);
	line-height: 1.7;
	counter-increment: case-counter;
}
.fc-case-list li::before {
	content: counter(case-counter);
	flex: none;
	width: 2.2rem;
	height: 2.2rem;
	background: var(--c_accent);
	color: var(--c_white);
	border-radius: 100vw;
	font-size: 1.1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: .15em;
}

/* 解決策パネル */
.fc-sol-panel {
	display: flex;
	gap: 4rem;
	align-items: flex-start;
	margin-bottom: 3.2rem;
}
@media only screen and (max-width: 1023px) { .fc-sol-panel { flex-direction: column; gap: 2.4rem; } }
.fc-sol-text { flex: 1; min-width: 0; }
.fc-sol-label {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--c_primary);
	letter-spacing: .12em;
	margin-bottom: 1.2rem;
}
.fc-sol-label::before {
	content: "";
	display: block;
	width: 1.6rem;
	height: .2rem;
	background: var(--c_primary);
	border-radius: .2rem;
}
.fc-sol-ttl {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--c_primary_dark);
	line-height: 1.5;
	margin-bottom: 1.6rem;
	padding-bottom: 1.2rem;
	border-bottom: .2rem solid var(--bdr_gray);
}
@media only screen and (max-width: 1023px) { .fc-sol-ttl { font-size: 1.8rem; } }
.fc-sol-body {
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--c_txt);
	line-height: 2;
	margin-bottom: 2rem;
}
.fc-sol-body strong { color: var(--c_primary_dark); font-weight: 700; }
.fc-sol-checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	display: flex;
	flex-direction: column;
	gap: .8rem;
}
.fc-sol-checklist li {
	display: flex;
	align-items: flex-start;
	gap: .8rem;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--c_txt);
	line-height: 1.7;
	background: var(--bg_primary_pale);
	border-left: .3rem solid var(--c_primary);
	border-radius: 0 .6rem .6rem 0;
	padding: .8rem 1.2rem;
}
.fc-sol-checklist li::before {
	content: "✓";
	flex: none;
	color: var(--c_primary);
	font-weight: 700;
	font-size: 1.4rem;
}

/* 画像エリア */
.fc-sol-img {
	flex: none;
	width: 37rem;
	max-width: 100%;
}
@media only screen and (max-width: 1023px) {
	.fc-sol-img {
		width: 100%;
		max-width: 37rem;
		margin: 0 auto;
	}
}

/* 横長画像用：パネルを縦並びにして画像を大きく */
.fc-sol-img--wide {
	width: 100%;
	max-width: 100%;
}
/* 正方形画像用：パネルを縦並びにして画像を大きく */
.fc-sol-img--mid {
	width: 80rem;
	max-width: 100%;
	margin: 0 auto;
}
.fc-sol-panel--vertical {
	flex-direction: column;
	gap: 2.4rem;
}
.fc-sol-panel--vertical .fc-sol-text {
	width: 100%;
}
.fc-sol-panel--vertical .fc-sol-checklist {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .8rem;
}
@media only screen and (max-width: 767px) {
	.fc-sol-panel--vertical .fc-sol-checklist {
		grid-template-columns: 1fr;
	}
}

/* モーダル対応：common.cssのjs-modalに任せる */
.fc-sol-img a.js-modal {
	display: block;
	border-radius: 1.2rem;
	overflow: hidden;
}
.fc-sol-img img {
	width: 100%;
	height: auto;
	border-radius: 1.2rem;
	box-shadow: 0 4px 24px rgba(0,0,0,.1);
	display: block;
}
.fc-sol-screen {
	background: var(--c_white);
	border: .1rem solid var(--bdr_gray);
	border-radius: 1.2rem;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.fc-sol-screen-bar {
	background: var(--bg_base);
	border-bottom: .1rem solid var(--bdr_gray);
	padding: .8rem 1.4rem;
	display: flex;
	align-items: center;
	gap: .5rem;
}
.fc-sol-screen-bar span {
	display: block;
	width: 1rem;
	height: 1rem;
	border-radius: 100vw;
}
.fc-sol-screen-bar span:nth-child(1) { background: #ff6058; }
.fc-sol-screen-bar span:nth-child(2) { background: #ffbd2e; }
.fc-sol-screen-bar span:nth-child(3) { background: #28c840; }
.fc-sol-screen-body {
	padding: 2rem;
	min-height: 22rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* UIモック */
.fc-ui-card {
	background: var(--bg_primary_pale);
	border: .1rem solid #c5d8f5;
	border-radius: .8rem;
	padding: 1.2rem 1.4rem;
}
.fc-ui-card-label {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--c_primary);
	letter-spacing: .1em;
	margin-bottom: .5rem;
}
.fc-ui-card-val {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--c_primary_dark);
}
.fc-ui-row { display: flex; gap: .8rem; }
.fc-ui-row .fc-ui-card { flex: 1; }
.fc-ui-alert {
	background: #FEF3C7;
	border: .1rem solid #F59E0B;
	border-radius: .6rem;
	padding: .8rem 1.2rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: #92400E;
	display: flex;
	align-items: center;
	gap: .6rem;
}
.fc-ui-alert::before { content: "⚠️"; font-size: 1.4rem; }
.fc-ui-ok {
	background: #D1FAE5;
	border: .1rem solid #10B981;
	border-radius: .6rem;
	padding: .8rem 1.2rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: #065F46;
	display: flex;
	align-items: center;
	gap: .6rem;
}
.fc-ui-ok::before { content: "✅"; font-size: 1.4rem; }
.fc-ui-bar-wrap { margin-top: .4rem; }
.fc-ui-bar-label {
	font-size: 1.1rem;
	color: var(--c_txt_pale);
	margin-bottom: .4rem;
	display: flex;
	justify-content: space-between;
}
.fc-ui-bar { height: .8rem; background: var(--bdr_gray); border-radius: .4rem; overflow: hidden; }
.fc-ui-bar-fill { height: 100%; border-radius: .4rem; background: var(--c_primary); }
.fc-ui-bar-fill--warn  { background: #F59E0B; }
.fc-ui-bar-fill--danger { background: #EF4444; }
.fc-ui-gps {
	background: var(--bg_base);
	border: .1rem solid var(--bdr_gray);
	border-radius: .6rem;
	padding: .8rem 1.2rem;
	font-size: 1.2rem;
	color: var(--c_txt_pale);
	display: flex;
	align-items: center;
	gap: .6rem;
}
.fc-ui-gps::before { content: "📍"; font-size: 1.4rem; }
.fc-ui-map-placeholder {
	flex: 1;
	min-height: 10rem;
	background: linear-gradient(135deg, #cce5d4 0%, #e8f5ec 100%);
	border-radius: .6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: rgba(0,0,0,.2);
	border: .1rem solid var(--bdr_gray);
	position: relative;
	overflow: hidden;
}
.fc-ui-map-placeholder::after {
	content: "現場";
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.2rem;
	font-weight: 700;
	color: rgba(0,0,0,.4);
	background: var(--c_white);
	padding: .2em .8em;
	border-radius: .4rem;
}

/* 中間資料DLバナー */
.fc-mid-dl {
	background: var(--bg_primary_pale);
	border: .1rem solid #c5d8f5;
	border-radius: 1rem;
	padding: 2.4rem 3.2rem;
	display: flex;
	align-items: center;
	gap: 2.4rem;
}
@media only screen and (max-width: 767px) {
	.fc-mid-dl { flex-direction: column; gap: 1.6rem; text-align: center; padding: 2rem; }
	.fc-mid-dl-ttl,
	.fc-mid-dl-desc { text-align: center; }
}
.fc-mid-dl-icon { flex: none; }
.fc-mid-dl-icon img {
	width: 12rem;
	height: auto;
	display: block;
	border-radius: .4rem;
	box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.fc-mid-dl-body { flex: 1; }
.fc-mid-dl-ttl {
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--c_primary_dark);
	margin-bottom: .5rem;
}
.fc-mid-dl-desc { font-size: 1.4rem; color: var(--c_txt_pale); line-height: 1.7; }
.fc-mid-dl-btn {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	padding: 1.1rem 2.2rem;
	background: var(--c_primary_dark);
	color: var(--c_white);
	border-radius: .5rem;
	font-size: 1.4rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background .25s;
}
.fc-mid-dl-btn:hover { background: var(--c_primary); }
.fc-mid-dl-btn::before { content: "⬇"; }


/* ============================================================
   最終CTA
   ============================================================ */
.fc-final-cta {
	background: linear-gradient(130deg, #1e5aa8 0%, #2e82e8 55%, #4db8f5 100%);
	padding: 8rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}
@media only screen and (max-width: 1023px) { .fc-final-cta { padding: 5rem 2rem; } }
.fc-final-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 120%, rgba(243,107,33,.2) 0%, transparent 60%);
	pointer-events: none;
}
.fc-final-cta-inner {
	max-width: 72rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.fc-final-cta-ttl {
	font-size: 3.6rem;
	font-weight: 900;
	color: var(--c_white);
	line-height: 1.5;
	margin-bottom: 1.2rem;
}
@media only screen and (max-width: 1023px) { .fc-final-cta-ttl { font-size: 2.4rem; } }
.fc-final-cta-sub {
	font-size: 1.7rem;
	color: rgba(255,255,255,.8);
	line-height: 2;
	margin-bottom: 3.6rem;
}
.fc-final-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
.fc-final-btn {
	display: inline-flex;
	align-items: center;
	gap: .8rem;
	padding: 1.5rem 3.6rem;
	border-radius: .7rem;
	font-size: 1.7rem;
	font-weight: 700;
	text-decoration: none;
	transition: background .25s, transform .2s, box-shadow .2s;
}
.fc-final-btn:hover { transform: translateY(-.3rem); }
.fc-final-btn--orange { background: #f5a623; color: var(--c_white); }
.fc-final-btn--orange:hover { background: #e09210; box-shadow: 0 6px 20px rgba(243,107,33,.4); }
.fc-final-btn--white { background: var(--c_white); color: var(--c_primary_dark); }
.fc-final-btn--white:hover { box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.fc-final-btn .btn-free {
	background: var(--c_primary_dark);
	color: var(--c_white);
	font-size: 1.1rem;
	font-weight: 700;
	padding: .2em .6em;
	border-radius: .3rem;
}
.fc-final-btn--orange .btn-free {
	background: var(--c_white);
	color: #f5a623;
}

/* ============================================================
   サポートセクション（SVGアイコン統一）
   ============================================================ */
.ob-support-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6rem;
	height: 6rem;
	margin: 0 auto 1.6rem;
}
.ob-support-icon svg {
	width: 6rem;
	height: 6rem;
	flex: none;
}

/* ============================================================
   業種別LP共通：サポート・FAQ
   ※ solution.css を読まないため、必要な指定を移設
   ============================================================ */

/* サポート */
.ob-support {
	padding: 8rem 1rem;
	background: var(--bg_base);
}

@media only screen and (max-width: 1023px) {
	.ob-support {
		padding: 5rem 1rem;
	}
}

.ob-support .wrapper {
	max-width: 116rem;
	margin: auto;
}

.ob-support-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.4rem;
}

@media only screen and (max-width: 1023px) {
	.ob-support-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.6rem;
	}
}

@media only screen and (max-width: 480px) {
	.ob-support-grid {
		grid-template-columns: 1fr;
	}
}

.ob-support-card {
	background: var(--c_white);
	border: .1rem solid var(--bdr_gray);
	border-radius: 1.2rem;
	padding: 2.8rem 2rem;
	text-align: center;
	transition: box-shadow .25s, transform .25s;
}

.ob-support-card:hover {
	box-shadow: 0 0 2rem rgba(0,0,0,.1);
	transform: translateY(-.3rem);
}

.ob-support-icon {
	font-size: 3.2rem;
	display: block;
	margin-bottom: 1.2rem;
}

.ob-support-icon img {
	width: 6rem;
	height: 6rem;
	object-fit: contain;
}

.ob-support-ttl {
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--c_primary_dark);
	margin-bottom: .8rem;
}

.ob-support-desc {
	font-size: 1.4rem;
	color: var(--c_txt);
	line-height: 1.9;
}

/* FAQ */
#solution-faq {
	padding: 8rem 1rem;
	background: var(--bg_primary_pale);
}

@media only screen and (max-width: 1023px) {
	#solution-faq {
		padding: 5rem 1rem;
	}
}

#solution-faq .wrapper {
	max-width: 116rem;
	margin: auto;
}
/* ============================================================
   業種別LP共通：セクション見出し
   ============================================================ */
.ob-section-eyebrow {
	display: block;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--c_primary);
	margin-bottom: 1rem;
}

.ob-section-ttl {
	font-size: 3.6rem;
	font-weight: 800;
	color: var(--c_primary_dark);
	text-align: center;
	line-height: 1.5;
	margin-bottom: 4rem;
}

.ob-section-ttl em {
	font-style: normal;
	color: var(--c_accent);
}

@media only screen and (max-width: 1023px) {
	.ob-section-eyebrow {
		font-size: 1.2rem;
		text-align: center;
	}

	.ob-section-ttl {
		font-size: 2.4rem;
		text-align: center;
		margin-bottom: 2.4rem;
	}
}