@charset "utf-8";

/*-----------------------
アニメーション低減（アクセシビリティ対応）
-----------------------*/
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/*-----------------------
スクリーンリーダー専用（視覚非表示）
-----------------------*/
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* スキップリンク */
.fc-wrapper .ec-skip-link {
	position: absolute; left: -9999px; top: auto;
	z-index: 9999; padding: 8px 16px;
	background: var(--ec-navy); color: #fff;
	font-size: 14px; text-decoration: none; white-space: nowrap;
}
.fc-wrapper .ec-skip-link:focus { left: 0; top: 0; }

/* アンカーリンクのscroll-margin-top（sticky nav分オフセット: SP約56px）*/
.fc-wrapper section[id] {
	scroll-margin-top: 56px;
}

/*========================
▼ルール▼
・記述するCSSのセレクタの一番前に必ず「.fc-wrapper」をつける。
「.fc-wrapper」をつけないとリセットの記述に上書きされるため。
==========================*/
.fc-wrapper {
	font-family: 'Noto Sans JP', sans-serif;
	box-sizing: border-box;
}

/* フォーカススタイル */
.fc-wrapper a:focus-visible,
.fc-wrapper button:focus-visible {
	outline: 2px solid #c0392b;
	outline-offset: 2px;
}

.fc-wrapper img {
	width: 100%;
}

.fc-wrapper main {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
}

.fc-wrapper h2 {
	margin-bottom: 10px;
	font-family: 'PT Sans', sans-serif;
	font-weight: bold;
	font-size: 34px;
	line-height: 1.0;
}

.fc-wrapper h3 {
	margin-bottom: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.0;
}

.fc-wrapper hr {
	width: 72px;
	border-top: 1px solid #333333;
	margin-bottom: 30px;
	display: inline-block;
}



/*-----------------------
フェードイン
-----------------------*/
.fadein {
	opacity: 0;
	transform: translate(0, 50px);
	transition: opacity 1500ms, transform 1500ms;
}

.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

.fc-wrapper .fadeouttxt {
	color: #FF8C00;
	background: linear-gradient(0deg, #000000, #666666, #FFF);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.fadein-main {
	opacity: 0;
	transform: translate(0, 50px);
	transition: opacity 400ms, transform 400ms;
}

.fadein-main.scrollin-main {
	opacity: 1;
	transform: translate(0, 0);
}



/*-----------------------
ヘッダー
-----------------------*/
.fc-wrapper header {
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	box-sizing: border-box;
	line-height: 0;
}

.fc-wrapper .header-logo img {
	width: 100%;
	max-width: 119px;
}

.fc-wrapper .header-right {
	display: none;
}

.fc-wrapper .header-right2 {
	width: 17%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	font-size: 14px;
}

.fc-wrapper .dl-top-sp {
	width: 30%;
}

.fc-wrapper .dl-top-sp img {
	margin-left: 25px;
}

.fc-wrapper .header-right-contact img {
	width: 100%;
}

.fc-wrapper .header-right-contact img:hover {
	opacity: 0.7;
}


.fc-wrapper .header-right a {
	color: #333333;
	text-decoration: none;
}

/*-----------------------
フッター
-----------------------*/
.p-copyright {
	background: #4c4c58;
}



/*-----------------------
main
-----------------------*/
/* 旧ヒーロー画像用ルール削除済み（新LPでは <main id="main"> が全コンテンツのラッパー）*/

.fc-wrapper .main-catchcopy {
	text-align: left;
	position: absolute;
	width: 100%;
	padding: 167px 13px 0;
	box-sizing: border-box;
	z-index: 2;
}

.fc-wrapper .main-catchcopy .main-ttl {
	margin-bottom: 30px;
	font-size: 33px;
	font-weight: bold;
	color: #fff;
	text-shadow: 0px 1px 4px rgba(108, 112, 123, 0.4);
	letter-spacing: -0.6px;
	line-height: 1.3;
}

.fc-wrapper .main-catchcopy .main-column {
	display: inline-block;
	margin-bottom: 30px;
}

.fc-wrapper .main-catchcopy .main-subttl {
	display: inline-table;
	background: #242424;
	font-size: 13px;
	color: #fff;
	line-height: 1.4;
	padding: 3px 5px;
}

.fc-wrapper .main-catchcopy .ajt-main-subttl {
	padding: 3px 7px 3px 5px;
}

.fc-wrapper .main-catchcopy .main-dl-btn {
	width: 211px;
	height: auto;
}


/*-----------------------
block1
-----------------------*/
.fc-wrapper #block1 {
	max-width: 1100px;
	margin: 0 20px 70px;
}

.fc-wrapper .block1-flex {
	display: flex;
	flex-wrap: wrap;
}

.fc-wrapper .block1-flex>li {
	width: 50%;
}

.fc-wrapper .block1-flex>li:nth-child(1) {
	padding-right: 5px;
	margin-bottom: 30px;
}

.fc-wrapper .block1-flex>li:nth-child(2) {
	padding-left: 5px;
	margin-bottom: 30px;
}

.fc-wrapper .block1-flex>li:nth-child(3) {
	padding-right: 5px;
}

.fc-wrapper .block1-flex>li:nth-child(4) {
	padding-left: 5px;
}

.fc-wrapper .block1-flex-img {
	margin-bottom: 10px;
}

.fc-wrapper .block1-flex-img img {
	width: 100%;
}

.fc-wrapper .block1-flex-icon {
	display: inline-block;
	background-color: #D70312;
	padding: 3px 10px;
	font-size: 10px;
	color: #fff;
	margin-bottom: 10px;
}

.fc-wrapper .block1-flex-ttl {
	font-size: 12px;
	line-height: 1.7;
	color: #333333;
	margin-bottom: 10px;
}

.fc-wrapper .block1-flex-date {
	font-family: 'din-2014', sans-serif;
	font-size: 13px;
	color: #B6B6B6;
}


/*-----------------------
column
-----------------------*/
.fc-wrapper #column {
	max-width: 1100px;
	margin: 0 20px;
	padding: 70px 0;
}

.fc-wrapper .column-flex {
	display: flex;
	flex-wrap: wrap;
}

.fc-wrapper .column-flex>li {
	width: 50%;
}

.fc-wrapper .column-flex>li:nth-child(1) {
	padding-right: 5px;
	margin-bottom: 30px;
}

.fc-wrapper .column-flex>li:nth-child(2) {
	padding-left: 5px;
	margin-bottom: 30px;
}

.fc-wrapper .column-flex>li:nth-child(3) {
	padding-right: 5px;
}

.fc-wrapper .column-flex>li:nth-child(4) {
	padding-left: 5px;
}

.fc-wrapper .column-flex-img {
	margin-bottom: 10px;
}

.fc-wrapper .column-flex-img img {
	width: 100%;
}

.fc-wrapper .column-flex-icon {
	display: inline-block;
	background-color: #D70312;
	padding: 3px 10px;
	font-size: 10px;
	color: #fff;
	margin-bottom: 10px;
}

.fc-wrapper .column-flex-ttl {
	font-size: 12px;
	line-height: 1.7;
	color: #333333;
	margin-bottom: 10px;
}

.fc-wrapper .column-flex-date {
	font-family: 'din-2014', sans-serif;
	font-size: 13px;
	color: #B6B6B6;
}


/*-----------------------
block2
-----------------------*/
.fc-wrapper #block2 {
	max-width: 1100px;
	margin: 0 20px;
	padding: 70px 0;
}

.fc-wrapper .block2-flex {
	display: flex;
	flex-wrap: wrap;
}

.fc-wrapper .block2-flex>li {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 50px 0;
	border-bottom: #B6B6B6 solid 1px;
	box-sizing: border-box;
}

.fc-wrapper .block2-flex2 {
	display: flex;
	flex-wrap: wrap;
}

.fc-wrapper .block2-flex2>li {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding-top: 50px;
	border-bottom: #B6B6B6 solid 1px;
	box-sizing: border-box;
}

.fc-wrapper .block2-flex2>li:last-child {
	border-bottom: none;
}

.fc-wrapper .block2-flex-ttl {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
}

.fc-wrapper .block2-flex-ttl2 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
}

.fc-wrapper .block2-flex-num {
	font-family: 'din-2014', sans-serif;
	font-size: 110px;
	font-weight: bold;
	color: #D70312;
	line-height: 1.0;
	margin-bottom: 15px;
}

.fc-wrapper .block2-flex-num2 {
	font-family: 'din-2014', sans-serif;
	font-size: 110px;
	font-weight: bold;
	color: #D70312;
	line-height: 1.0;
	margin-bottom: 25px;
}

.fc-wrapper .block2-flex-num span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	color: #333333;
	line-height: 1.0;
	letter-spacing: normal;
}

.fc-wrapper .block2-flex-num2 span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	color: #333333;
	line-height: 1.0;
	letter-spacing: normal;
}

.fc-wrapper .block2-flex-num3 {
	font-family: 'din-2014', sans-serif;
	font-size: 110px;
	font-weight: bold;
	color: #D70312;
	line-height: 1.0;
}

.fc-wrapper .block2-flex-num3 span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
	color: #333333;
	line-height: 1.0;
	letter-spacing: normal;
}

.fc-wrapper .block2-flex-img {
	margin: 0 auto 20px;
}

.fc-wrapper .block2-flex .img01 img {
	width: 60%;
}

.fc-wrapper .block2-flex2 .img02 img {
	width: 50%;
	margin-bottom: 60px;
}

.fc-wrapper .block2-flex2 .img03 img {
	width: 60%;
}

.fc-wrapper .block2-flex2 .img04 img {
	width: 70%;
	margin: 0 auto 10px;
}

.fc-wrapper .block2-flex-date {
	font-family: 'din-2014', sans-serif;
	font-size: 29px;
	color: #B6B6B6;
	margin-bottom: 20px;
}

.fc-wrapper .block2-flex-txt {
	font-size: 12px;
	color: #333333;
	line-height: 1.5;
}

.fc-wrapper .text01 {
	padding-bottom: 60px;
}


/*-----------------------
block3
-----------------------*/
.fc-wrapper #block3 {
	max-width: 1100px;
	margin: 0 auto;
	padding: 70px 20px;
}

.fc-wrapper .block3-box {
	padding: 35px 20px;
	background-color: #fff;
}

.fc-wrapper .block3-box-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

.fc-wrapper .block3-box-flex .ttl {
	line-height: 1.7;
	letter-spacing: -0.1px;
}

.fc-wrapper .block3-box-flex .img01 img {
	width: 50%;
	margin-bottom: 20px;
}

.fc-wrapper .block3-box-flex .img02 img {
	width: 50%;
	margin-bottom: 20px;
}

.fc-wrapper .block3-box-flex .img03 img {
	width: 50%;
}

.fc-wrapper .block3-box-txt {
	font-size: 12px;
	line-height: 1.7;
}

.fc-wrapper .block3-box-txt span {
	font-size: 10px;
}



/*-----------------------
block4
-----------------------*/
.fc-wrapper #block4 {
	max-width: 1100px;
	padding: 70px 0 0;
}

.fc-wrapper .h2-sp {
	margin-bottom: 10px;
	font-family: 'PT Sans', sans-serif;
	font-weight: bold;
	font-size: 34px;
	line-height: 1.0;
	padding: 0 20px;
}

.fc-wrapper .h3-sp {
	margin-bottom: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.0;
	padding: 0 20px;
}

.fc-wrapper .hr-sp {
	margin-left: 20px;
}

.fc-wrapper .block4-flex {
	display: flex;
	flex-direction: column;
}

.fc-wrapper .block4-flex>li {
	margin-bottom: 40px;
}

.fc-wrapper .block4-flex-img-pc {
	display: none;
}

.fc-wrapper .block4-flex-img-sp {
	width: 100%;
}

.fc-wrapper .block4-flex-img-sp img {
	width: 100%;
}

.fc-wrapper .block4-flex-ttl {
	padding: 0 20px;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.7;
	color: #333333;
	margin-bottom: 10px;
}

.fc-wrapper .block4-flex-txt {
	padding: 0 20px;
	font-size: 12px;
	color: #333333;
	line-height: 1.7;
}



/*-----------------------
block5
-----------------------*/
.fc-wrapper #block5 {
	max-width: 1100px;
	margin: 0 auto;
	padding: 70px 20px;
}

.fc-wrapper .block5-box {
	padding: 40px 30px;
	background-color: #fff;
	margin-bottom: 30px;
}

.fc-wrapper .block5-box2 {
	padding: 40px 30px;
	background-color: #fff;
}

.fc-wrapper .block5-box-ttl {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 13px;
}

.fc-wrapper .block5-box hr {
	display: block;
	width: 100%;
	max-width: 191px;
	margin: 0 auto 30px;
	border: 0 none;
	height: 2px;
	color: #D70312;
	background-color: #D70312;
}

.fc-wrapper .block5-box2 hr {
	display: block;
	width: 100%;
	max-width: 191px;
	margin: 0 auto 30px;
	border: 0 none;
	height: 2px;
	color: #D70312;
	background-color: #D70312;
}

.fc-wrapper .block5-box-flex {
	display: flex;
	flex-direction: column;
}

.fc-wrapper .block5-box-flex>li {
	display: flex;
	align-items: center;
	height: 75px;
}

.fc-wrapper .block5-box-flex>li>div:first-child {
	margin-right: 20px;
}

.fc-wrapper .block5-box-flex2 {
	display: flex;
	flex-direction: column;
}

.fc-wrapper .block5-box-flex2>li {
	display: flex;
	align-items: center;
	height: 75px;
}

.fc-wrapper .block5-box-flex2>li>div:first-child {
	margin-right: 20px;
}

.fc-wrapper .block5-box-flex-txt {
	display: none;
}

.fc-wrapper .block5-box-flex-txt-sp {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 10px;
	word-break: keep-all;
}

.fc-wrapper #block5 .img01 img {
	width: 100%;
	max-width: 52px;
}

.fc-wrapper #block5 .img02 img {
	width: 100%;
	max-width: 52px;
}

.fc-wrapper #block5 .img03 img {
	width: 100%;
	max-width: 52px;
}

.fc-wrapper #block5 .img04 img {
	width: 100%;
	max-width: 52px;
}

.fc-wrapper #block5 .img05 img {
	width: 100%;
	max-width: 52px;
}

.fc-wrapper #block5 .img06 img {
	width: 100%;
	max-width: 52px;
}

.fc-wrapper #block5 .img07 img {
	width: 100%;
	max-width: 52px;
}

.fc-wrapper #block5 .img08 img {
	width: 100%;
	max-width: 52px;
}

.fc-wrapper #block5 .img09 img {
	width: 100%;
	max-width: 52px;
}

.fc-wrapper #block5 .img10 img {
	width: 100%;
	max-width: 52px;
}

.fc-wrapper #block5 .img11 img {
	width: 100%;
	max-width: 52px;
}



/*-----------------------
contact
-----------------------*/
.fc-wrapper #contact {
	width: 95%;
	max-width: 1100px;
	margin: 0 auto 60px;
	padding-top: 70px;
}

.fc-wrapper .contact-ttl {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}

.fc-wrapper .contact-btn-pc {
	display: none;
}

.fc-wrapper .contact-btn-sp {
	text-align: center;
}

.fc-wrapper .contact-btn-sp img {
	width: 70%;
}

.fc-wrapper .contact-btn-sp img:hover {
	opacity: 0.7;
}



/*==============================================
 LP 新セクション（Phase 5）— SP版
================================================*/

/* ---- CSS 変数 ---- */
.fc-wrapper {
	--ec-navy: #1a2e5a;
	--ec-red: #c0392b;
	--ec-bg: #faf8ff;
	--ec-gray: #F2F2F2;
}

.fc-wrapper .ec-bg-gray {
	background-color: var(--ec-gray);
}

.fc-wrapper .ec-bg-navy {
	background-color: var(--ec-navy);
}

/* ---- セクション共通 ---- */
.fc-wrapper .ec-section-inner {
	padding: 60px 20px;
	box-sizing: border-box;
}

.fc-wrapper .ec-section-en {
	display: block;
	font-family: 'PT Sans', sans-serif;
	font-size: 34px;
	font-weight: bold;
	line-height: 1.0;
	margin: 0 0 8px;
	color: #333;
}

.fc-wrapper .ec-section-ttl {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	font-weight: bold;
	margin: 0 0 16px;
	letter-spacing: 0.1em;
}

.fc-wrapper .ec-section-hr {
	display: inline-block;
	width: 72px;
	border-top: 1px solid #333;
	margin-bottom: 36px;
}

.fc-wrapper .ec-en-white {
	color: #fff;
}

.fc-wrapper .ec-ttl-white {
	color: #fff;
}

.fc-wrapper .ec-hr-white {
	border-color: rgba(255,255,255,0.5);
}


/* ---- Sticky Nav ---- */
.fc-wrapper header.ec-sticky-nav {
	position: sticky;
	top: 0;
	z-index: 200;
	width: 100%;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px 10px 8px;
	margin: 0;
	box-sizing: border-box;
}

.fc-wrapper .ec-nav-links {
	display: none;
}

.fc-wrapper .ec-nav-cta {
	display: none;
}

.fc-wrapper .ec-nav-cta-sp {
	display: flex;
	gap: 8px;
	align-items: center;
}

/* ---- ハンバーガーボタン ---- */
.fc-wrapper .ec-hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
.fc-wrapper .ec-hamburger-line {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--ec-navy);
	transition: transform 0.3s, opacity 0.3s;
	transform-origin: center;
}
.fc-wrapper .ec-hamburger.is-open .ec-hamburger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.fc-wrapper .ec-hamburger.is-open .ec-hamburger-line:nth-child(2) {
	opacity: 0;
}
.fc-wrapper .ec-hamburger.is-open .ec-hamburger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---- SPオーバーレイメニュー ---- */
.fc-wrapper .ec-sp-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	height: 60px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	flex-shrink: 0;
}
.fc-wrapper .ec-sp-menu-logo img {
	height: 28px;
	width: auto;
	display: block;
}
.fc-wrapper .ec-sp-menu-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	width: 36px;
	height: 36px;
	position: relative;
}
.fc-wrapper .ec-sp-menu-close span {
	display: block;
	width: 20px;
	height: 2px;
	background: #222;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}
.fc-wrapper .ec-sp-menu-close span:first-child { transform: rotate(45deg); }
.fc-wrapper .ec-sp-menu-close span:last-child  { transform: rotate(-45deg); }
.fc-wrapper .ec-sp-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 201;
	background: #fff;
	padding-top: 58px;
	flex-direction: column;
	overflow-y: auto;
}
.fc-wrapper .ec-sp-menu.is-open {
	display: flex;
}
.fc-wrapper .ec-sp-menu-nav {
	flex: 1;
	padding: 16px 0;
}
.fc-wrapper .ec-sp-menu-nav a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 24px;
	border-bottom: 1px solid rgba(0,0,0,0.08);
	color: #222;
	font-size: 16px;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
}
.fc-wrapper .ec-sp-menu-nav a::after {
	content: '›';
	font-size: 22px;
	color: rgba(0,0,0,0.3);
}
.fc-wrapper .ec-sp-menu-cta {
	padding: 24px 20px 48px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.fc-wrapper .ec-sp-menu-btn {
	display: block;
	text-align: center;
	padding: 16px 20px;
	border: 1px solid rgba(0,0,0,0.2);
	color: #333;
	font-size: 15px;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
}
.fc-wrapper .ec-sp-menu-btn-primary {
	background: var(--ec-red);
	border-color: var(--ec-red);
	color: #fff;
}
body.ec-menu-open {
	overflow: hidden;
}

.fc-wrapper .ec-btn-dl {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 12px;
	border: 1px solid var(--ec-navy);
	color: var(--ec-navy);
	font-size: 12px;
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-btn-contact {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 12px;
	background: var(--ec-red);
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
}


/* ---- S1: Hero ---- */
.fc-wrapper #ec-hero {
	position: relative;
	height: 500px;
	overflow: hidden;
	background: url('../images/hero_banner.webp') center/cover no-repeat;
	background-image: -webkit-image-set(url('../images/hero_banner.webp') 1x);
	background-image: image-set(url('../images/hero_banner.webp') type('image/webp'), url('../images/hero_banner.png') type('image/png'));
	display: flex;
	align-items: center;
}

.fc-wrapper #ec-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(26,46,90,0.80);
}

.fc-wrapper .ec-hero-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 80px;
	z-index: 2;
}

.fc-wrapper .ec-hero-badge img {
	width: 100%;
}

.fc-wrapper .ec-hero-body {
	position: relative;
	z-index: 2;
	padding: 0 20px;
	box-sizing: border-box;
}

.fc-wrapper .ec-hero-title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
	margin-bottom: 14px;
}

.fc-wrapper .ec-hero-title br {
	display: none;
}

.fc-wrapper .ec-hero-sub {
	font-size: 13px;
	color: rgba(255,255,255,0.9);
	margin-bottom: 6px;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-hero-cta {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fc-wrapper .ec-btn-primary {
	display: block;
	padding: 14px 24px;
	background: var(--ec-red);
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
	text-align: center;
}

.fc-wrapper .ec-btn-secondary {
	display: block;
	padding: 14px 24px;
	border: 2px solid #fff;
	color: #fff;
	font-size: 15px;
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
	text-align: center;
}


/* ---- S2: Stats ---- */
.fc-wrapper #ec-stats {
	background: #fff;
	border-bottom: 1px solid #e0e0e0;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 16px 20px;
}

.fc-wrapper .ec-stats-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	padding: 0;
	width: 100%;
	box-sizing: border-box;
}

.fc-wrapper .ec-stat-sep {
	display: none;
}

.fc-wrapper .ec-stat-item {
	text-align: center;
	padding: 16px 0;
	border-right: 1px solid #e0e0e0;
}

.fc-wrapper .ec-stat-item:last-child {
	border-right: none;
}

.fc-wrapper .ec-stat-label {
	font-size: 12px;
	color: var(--ec-navy);
	font-weight: bold;
	margin-bottom: 6px;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.04em;
}

.fc-wrapper .ec-stat-num {
	font-family: 'din-2014', sans-serif;
	font-size: 48px;
	font-weight: bold;
	color: var(--ec-red);
	line-height: 1.0;
	letter-spacing: -1px;
}

.fc-wrapper .ec-stat-num span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: var(--ec-navy);
	letter-spacing: normal;
	margin-left: 2px;
}

.fc-wrapper .ec-stat-year {
	font-size: 11px;
	color: #767676;
	font-family: 'Noto Sans JP', sans-serif;
	margin-top: 6px;
}


/* ---- S3: 成功事例 ---- */
.fc-wrapper .ec-cases-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.fc-wrapper .ec-case-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	position: relative;
	padding: 24px 20px 32px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.fc-wrapper .ec-case-card::before {
	display: none;
}

.fc-wrapper .ec-case-status-done {
	display: inline-block;
	background: #767676;
	color: #fff;
	font-size: 11px;
	padding: 2px 10px;
	font-family: 'Noto Sans JP', sans-serif;
	margin-bottom: 6px;
	border-radius: 2px;
}

.fc-wrapper .ec-case-tag {
	display: inline-block;
	background: var(--ec-red);
	color: #fff;
	font-size: 12px;
	padding: 4px 12px;
	margin-bottom: 10px;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-case-company {
	font-size: 15px;
	font-weight: bold;
	color: var(--ec-navy);
	margin-bottom: 10px;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-case-header .ec-case-company {
	margin-bottom: 0;
}

.fc-wrapper .ec-case-desc {
	font-size: 13px;
	color: #333;
	line-height: 1.7;
	margin-bottom: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-case-link {
	display: inline-block;
	color: var(--ec-navy);
	font-size: 12px;
	border-bottom: 1px solid var(--ec-navy);
	padding-bottom: 2px;
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-cases-note {
	font-size: 13px;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	margin-top: 28px;
	margin-bottom: 20px;
	text-align: center;
	line-height: 2.0;
}

.fc-wrapper .ec-cases-more {
	text-align: center;
}

.fc-wrapper .ec-cases-grid-2 {
	margin-top: 16px;
}

/* 事例カード：ロゴ左・社名右の横並びヘッダー */
.fc-wrapper .ec-case-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
	min-height: 40px;
}

/* ロゴ */
.fc-wrapper .ec-case-logo {
	display: block;
	height: 40px;
	width: 80px;
	flex-shrink: 0;
	object-fit: contain;
	object-position: left center;
	opacity: 0.9;
}


/* ---- S4: 提供サービス ---- */
.fc-wrapper #ec-services {
	background: #f5f5f5;
}

.fc-wrapper .ec-services-grid {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fc-wrapper .ec-service-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	box-sizing: border-box;
}

.fc-wrapper .ec-service-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.fc-wrapper .ec-service-icon-img {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fc-wrapper .ec-service-icon-img svg {
	display: block;
	width: 48px;
	height: 48px;
}

.fc-wrapper .ec-service-name br {
	display: none;
}

.fc-wrapper .ec-service-icon-img img {
	width: 100%;
	height: auto;
}

.fc-wrapper .ec-service-name {
	font-size: 15px;
	font-weight: bold;
	color: var(--ec-navy);
	line-height: 1.5;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-service-desc {
	font-size: 12px;
	color: #333;
	line-height: 1.7;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
}


/* ---- プラットフォーム一覧 ---- */
.fc-wrapper .ec-platforms {
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid #ddd;
}

.fc-wrapper .ec-platforms-label {
	font-size: 11px;
	color: #767676;
	font-family: 'Noto Sans JP', sans-serif;
	margin-bottom: 12px;
}

.fc-wrapper .ec-platforms-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fc-wrapper .ec-platform-item {
	display: inline-block;
	border: 1px solid #bbb;
	color: #444;
	font-size: 12px;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 5px 12px;
}

.fc-wrapper .ec-platform-main {
	border-color: var(--ec-red);
	color: var(--ec-red);
	background: rgba(192,57,43,0.06);
	font-weight: bold;
}

.fc-wrapper .ec-platform-consult {
	opacity: 0.55;
}

.fc-wrapper .ec-platform-consult small {
	font-size: 10px;
}

/* ---- S5: 比較表 ---- */
.fc-wrapper .ec-compare-scroll-hint {
	font-size: 11px;
	color: #767676;
	text-align: center;
	margin-bottom: 8px;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-compare-scroll {
	overflow-x: auto;
}

.fc-wrapper .ec-compare-table {
	width: 100%;
	min-width: 480px;
	border-collapse: collapse;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-compare-table th,
.fc-wrapper .ec-compare-table td {
	padding: 12px 14px;
	border: 1px solid #e0e0e0;
	font-size: 12px;
	line-height: 1.5;
}

.fc-wrapper .ec-compare-th-highlight {
	background: var(--ec-navy);
	color: #fff;
	font-weight: bold;
	text-align: center;
}

.fc-wrapper .ec-compare-th {
	background: #f8f8f8;
	font-weight: bold;
	text-align: center;
}

.fc-wrapper .ec-compare-th-label {
	background: #f8f8f8;
}

.fc-wrapper .ec-recommend-badge {
	display: block;
	background: var(--ec-red);
	color: #fff;
	font-size: 10px;
	padding: 2px 6px;
	margin-top: 4px;
}

.fc-wrapper .ec-compare-row-label {
	background: #f8f8f8;
	font-weight: bold;
}

.fc-wrapper .ec-compare-td-highlight {
	background: rgba(26,46,90,0.05);
	text-align: center;
	font-weight: bold;
}

.fc-wrapper .ec-compare-td {
	text-align: center;
	color: #333;
}

.fc-wrapper .ec-compare-lead {
	font-size: 14px;
	line-height: 1.9;
	color: #333;
	margin-bottom: 24px;
	font-weight: bold;
}

.fc-wrapper .ec-compare-note {
	font-size: 11px;
	color: #767676;
	font-family: 'Noto Sans JP', sans-serif;
}


/* ---- S2.5: 選ばれる理由 ---- */
.fc-wrapper .ec-reasons-lead {
	font-size: 15px;
	line-height: 1.9;
	color: #333;
	margin-bottom: 28px;
	font-weight: bold;
}
.fc-wrapper .ec-reasons-lead-intro {
	margin-bottom: 0;
}
.fc-wrapper .ec-reasons-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.fc-wrapper .ec-reason-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.fc-wrapper .ec-reason-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
}
.fc-wrapper .ec-reason-ttl {
	font-size: 14px;
	font-weight: 700;
	color: var(--ec-navy);
	margin-bottom: 4px;
}
.fc-wrapper .ec-reason-desc {
	font-size: 13px;
	color: #333;
	line-height: 1.7;
	font-weight: bold;
}


/* ---- S6: 料金目安 ---- */
.fc-wrapper .ec-pricing-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

.fc-wrapper .ec-pricing-card {
	background: #fff;
	padding: 32px 20px;
	text-align: center;
	box-sizing: border-box;
}

.fc-wrapper .ec-pricing-label {
	font-size: 13px;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	margin-bottom: 10px;
}

.fc-wrapper .ec-pricing-num {
	font-family: 'din-2014', sans-serif;
	font-size: 60px;
	font-weight: bold;
	color: var(--ec-red);
	line-height: 1.0;
	min-height: 64px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.fc-wrapper .ec-pricing-num span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	color: #333;
	align-self: flex-end;
	padding-bottom: 5px;
}

.fc-wrapper .ec-pricing-num-consult {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 40px;
	align-items: center;
}

.fc-wrapper .ec-pricing-desc {
	font-size: 12px;
	color: #333;
	line-height: 1.7;
	margin-top: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
}

.fc-wrapper .ec-pricing-cta {
	text-align: center;
}

.fc-wrapper .ec-pricing-cta p {
	font-size: 13px;
	color: #333;
	margin-bottom: 16px;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-pricing-cta .ec-btn-primary {
	display: inline-block;
	padding: 14px 32px;
}


/* ---- S7: 段階的CTA ---- */
.fc-wrapper .ec-steps-grid {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.fc-wrapper .ec-step-item {
	padding: 32px 20px;
	background: var(--ec-bg);
	text-align: center;
	margin-bottom: 2px;
	box-sizing: border-box;
}

.fc-wrapper .ec-step-arrow {
	text-align: center;
	height: 30px;
	line-height: 30px;
}

.fc-wrapper .ec-step-arrow::after {
	content: '↓';
	font-size: 24px;
	color: #bbb;
}

.fc-wrapper .ec-step-num {
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	color: var(--ec-red);
	font-weight: bold;
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.fc-wrapper .ec-step-ttl {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-step-desc {
	font-size: 12px;
	color: #333;
	line-height: 1.7;
	margin-bottom: 20px;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-btn-step {
	display: inline-block;
	padding: 10px 24px;
	border: 1px solid var(--ec-navy);
	color: var(--ec-navy);
	font-size: 13px;
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
}


/* ---- S8: コラム / ニュース ---- */
.fc-wrapper .ec-contents-grid {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.fc-wrapper .ec-contents-subttl {
	font-size: 15px;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
	border-left: 3px solid var(--ec-red);
	padding-left: 10px;
	margin-bottom: 16px;
	line-height: 1.0;
}

.fc-wrapper .ec-contents-list {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
}

.fc-wrapper .ec-content-item {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 6px;
	padding: 10px 0;
	border-bottom: 1px solid #e0e0e0;
}

.fc-wrapper .ec-content-date {
	font-family: 'din-2014', sans-serif;
	font-size: 12px;
	color: #595959;
	white-space: nowrap;
}

.fc-wrapper .ec-content-cat {
	display: inline-block;
	background: var(--ec-navy);
	color: #fff;
	font-size: 10px;
	padding: 2px 6px;
	font-family: 'Noto Sans JP', sans-serif;
	white-space: nowrap;
}

.fc-wrapper .ec-content-ttl {
	width: 100%;
	font-size: 12px;
	color: #333;
	line-height: 1.5;
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-contents-more {
	display: inline-block;
	font-size: 12px;
	color: var(--ec-navy);
	text-decoration: none;
	border-bottom: 1px solid var(--ec-navy);
	padding-bottom: 2px;
	font-family: 'Noto Sans JP', sans-serif;
}


/* ---- S9: フッターCTA ---- */
.fc-wrapper #ec-footer-cta .ec-section-inner {
	text-align: center;
	padding: 60px 20px;
}

.fc-wrapper .ec-footer-cta-sub {
	font-size: 13px;
	color: rgba(255,255,255,0.8);
	margin-bottom: 12px;
	font-family: 'Noto Sans JP', sans-serif;
}

.fc-wrapper .ec-footer-cta-ttl {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 26px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 28px;
}

.fc-wrapper .ec-footer-cta-btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.fc-wrapper .ec-btn-cta-primary {
	display: block;
	padding: 16px 40px;
	background: var(--ec-red);
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
	width: 100%;
	max-width: 300px;
	text-align: center;
	box-sizing: border-box;
}

.fc-wrapper .ec-btn-cta-secondary {
	display: block;
	padding: 16px 40px;
	border: 2px solid rgba(255,255,255,0.7);
	color: #fff;
	font-size: 15px;
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
	width: 100%;
	max-width: 300px;
	text-align: center;
	box-sizing: border-box;
}
/* TP切り替えブロック */
.fc-wrapper .ec-tp-switch {
	background: rgba(26,46,90,0.04);
	border-left: 4px solid var(--ec-navy);
	padding: 20px 18px;
	margin-top: 28px;
}
.fc-wrapper .ec-tp-switch-ttl {
	font-size: 15px;
	font-weight: bold;
	color: var(--ec-navy);
	margin-bottom: 8px;
	font-family: 'Noto Sans JP', sans-serif;
}
.fc-wrapper .ec-tp-switch-desc {
	font-size: 13px;
	color: #333;
	line-height: 1.8;
	margin-bottom: 16px;
	font-family: 'Noto Sans JP', sans-serif;
}

/* 代理店向けノート */
.fc-wrapper .ec-agency-note {
	font-size: 12px;
	color: #767676;
	font-family: 'Noto Sans JP', sans-serif;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px dashed #ddd;
}

/* Stats注記 */
.fc-wrapper .ec-stats-note {
	text-align: center;
	font-size: 13px;
	color: var(--ec-navy);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	margin-top: 14px;
	letter-spacing: 0.05em;
}

.fc-wrapper .ec-stats-note .ec-hero-note {
	display: block;
	color: #767676;
	font-weight: normal;
	font-size: 11px;
	margin-top: 4px;
}

.fc-wrapper .ec-hero-sub2 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: rgba(255,255,255,0.9);
	margin-bottom: 28px;
	display: block;
	padding: 2px 0;
}

.fc-wrapper .ec-hero-note {
	font-size: 11px;
	font-weight: normal;
	color: rgba(255,255,255,0.7);
}

/* FAQ */
.fc-wrapper #ec-faq {
	background: #fff;
}

.fc-wrapper .ec-faq-list {
	margin: 0;
}

/* FAQ: 常時展開（上位3問） */
.fc-wrapper .ec-faq-item {
	border-bottom: 1px solid #e8e8e8;
}

.fc-wrapper .ec-faq-item:first-child {
	border-top: 1px solid #e8e8e8;
}

.fc-wrapper .ec-faq-q {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: var(--ec-navy);
	margin-bottom: 0;
	padding: 20px 36px 10px 24px;
	position: relative;
}

.fc-wrapper .ec-faq-q::before {
	content: 'Q';
	position: absolute;
	left: 0;
	top: 20px;
	color: var(--ec-red);
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.1;
}

.fc-wrapper .ec-faq-a {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	color: #333;
	line-height: 1.8;
	padding: 0 36px 20px 24px;
	position: relative;
}

.fc-wrapper .ec-faq-a::before {
	content: 'A';
	position: absolute;
	left: 0;
	top: 0;
	color: #767676;
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.1;
}

/* FAQ: もっと見るラップ（アコーディオン） */
.fc-wrapper .ec-faq-more-wrap {
	display: none;
}

.fc-wrapper .ec-faq-more-wrap .ec-faq-q {
	padding: 20px 36px 20px 24px;
	cursor: pointer;
	user-select: none;
}

.fc-wrapper .ec-faq-more-wrap .ec-faq-q::after {
	content: '＋';
	position: absolute;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	font-weight: 300;
	color: var(--ec-navy);
	line-height: 1;
}

.fc-wrapper .ec-faq-more-wrap .ec-faq-item.is-open .ec-faq-q::after {
	content: '－';
}

.fc-wrapper .ec-faq-more-wrap .ec-faq-a {
	display: none;
}

.fc-wrapper .ec-faq-more-wrap .ec-faq-item.is-open .ec-faq-a {
	display: block;
}

/* もっと見るボタン */
.fc-wrapper .ec-faq-more-btn-wrap {
	text-align: center;
	padding: 28px 0 8px;
}

.fc-wrapper .ec-faq-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 1px solid var(--ec-navy);
	color: var(--ec-navy);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	font-weight: bold;
	padding: 12px 24px;
	cursor: pointer;
}

.fc-wrapper .ec-faq-more-icon {
	font-size: 16px;
	line-height: 1;
}

/* ===== prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
	.fc-wrapper *,
	.fc-wrapper *::before,
	.fc-wrapper *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
