@charset "utf-8";
/* =========================================================
   健診センター向け OEM・BPOサービス (oem-bpo.css)
========================================================= */

/* --- メインビジュアル --- */
.oemMainVisual {
	text-align: center;
	margin-bottom: 64px;
}
.oemMainVisual img {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: block;
}

/* --- セクション共通 --- */
.oemSection {
	padding: clamp(40px, 8vw, 80px) 5%;
}

.oemContainer {
	margin: 0 auto;
	max-width: 1000px;
}

.oemSecTit {
	text-align: center;
	font-size: var(--fs-c-24-40);
	font-weight: 900;
	margin-bottom: 24px;
}

/* --- ソリューションエリア --- */
.oemSolutions {
	background-color: var(--c-white);
}

.oemSolutions .oemSecTit {
	color: var(--c-orange);
}

.oemSecLead {
	text-align: center;
	font-size: var(--fs-c-14-20);
	line-height: 1.6;
	margin-bottom: 40px;
}

.oemSolutionsGrid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 40px;
}

.oemSolutionCard {
	background-color: var(--c-bg-gray);
	border-radius: 8px;
	padding: 24px 16px;
}

.oemSolTit {
	background-color: var(--c-orange);
	color: var(--c-white);
	border-radius: 8px;
	text-align: center;
	padding: 12px;
	font-weight: bold;
	font-size: var(--fs-c-18-24);
	margin-bottom: 16px;
}

.oemSolList li {
	font-size: var(--fs-c-14-16);
	color: var(--c-primary);
	line-height: 1.6;
	margin-bottom: 8px;
	padding-left: 1.5em;
	background-image: url(/wp-content/themes/wk_altpaper/sc/img/oembpo/solutions-list.png);
	background-repeat: no-repeat;
	background-size: 1em;
	background-position: left 0.3em;
}

/* --- 選ばれる理由エリア --- */
.oemReasons {
	background-color: var(--c-bg-light);
}

.oemReasons .oemSecTit {
	color: var(--c-primary);
	margin-bottom: 48px;
	line-height: 1.4;
}

.oemReasons .oemSecTit span {
	font-size: 60%;
	display: block;
	margin-bottom: 8px;
}

.oemReasonCard {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 48px;
	align-items: center;
}

.oemReasonImg {
	width: 100%;
	max-width: 260px;
	flex-shrink: 0;
}

.oemReasonImg img {
	width: 100%;
	height: auto;
	display: block;
}

.oemReasonTxt {
	width: 100%;
}

.reasonBadge {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-weight: bold;
	margin-bottom: 16px;
}

.reasonBadge .stepTxt {
	color: var(--c-primary);
	font-size: var(--fs-c-14-18);
}

.reasonBadge .badgeOrange {
	background-color: var(--c-orange);
	color: var(--c-white);
	border-radius: 20px;
	padding: 4px 12px;
	font-size: var(--fs-c-14-16);
}

.reasonBadge .reasonMain {
	color: var(--c-orange);
	font-size: var(--fs-c-18-24);
}

.reasonSubTit {
	font-size: var(--fs-c-18-24);
	color: var(--c-primary);
	font-weight: bold;
	margin-bottom: 16px;
	line-height: 1.4;
}

.reasonDesc {
	font-size: var(--fs-c-14-16);
	line-height: 1.6;
}

.oemConclusion {
	text-align: center;
	color: var(--c-orange);
	font-weight: bold;
	font-size: var(--fs-c-16-24);
	margin-bottom: 40px;
	font-feature-settings: "palt";
}

/* --- 共通ボタン（無料相談） --- */
.mt40 {
	margin-top: 40px;
}

.oemBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	max-width: 400px;
	padding: 16px 24px;
	border: 2px solid var(--c-orange);
	border-radius: 40px;
	background-color: var(--c-white);
	color: var(--c-orange);
	font-size: var(--fs-c-18-24);
	font-weight: bold;
	text-decoration: none;
	transition: background-color 0.3s;
}

.oemBtn img {
	width: 1em;
	height: auto;
}

.oemBtn:hover {
	background-color: var(--c-pale-orange);
	opacity: 1;
}

/* =========================================================
   メディアクエリ: PC・タブレット向け (768px以上)
========================================================= */
@media (min-width: 768px) {
	/* ソリューションエリアの3カラム化 */
	.oemSolutionsGrid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	/* 選ばれる理由エリアの横並び（画像を右、テキストを左に配置） */
	.oemReasonCard {
		flex-direction: row-reverse;
		justify-content: space-between;
		gap: 48px;
	}
	
	.oemReasonImg {
		width: 30%;
	}
	
	.oemReasonTxt {
		width: 65%;
	}
}