@charset "UTF-8";


/* -------------------------------------------
   ヘッダーエリア（数字アイコンとタイトル）
------------------------------------------- */
/* セクション全体 */
.reason-section {
	background-color: #efefe5;
	padding: 60px 40px;
	margin-bottom: 80px;
	position: relative;
}

/* ヘッダーの横並び設定 */
.flex-header {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 40px;
	padding-left: 280px;
}

/* メダル部分（画像） */
.reason-badge {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 300px;
	z-index: 10;
}

.reason-badge img {
	width: 100%;
	height: auto;
	display: block;
}

/* テキスト見出し */
.reason-main-copy {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.4;
	color: #caa530;
	margin: 0 0 10px 0;
}

.reason-sub-copy {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
}

/* メインコンテンツ（横並び） */
.reason-flex-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
}

/* 左側テキスト・価格エリア */
.reason-text-side {
	flex: 1;
	width: 50%;
}

.reason-lead-text {
	line-height: 1.8;
	margin-bottom: 30px;
}

/* 価格リストの装飾（画像通りの実線） */
.reason-price-list {
	border-top: 2px solid #333;
	/* 一番上の線 */
}

.price-row {
	border-bottom: 2px solid #333;
	/* 項目ごとの線 */
	padding: 5px 10px;
}

.price-item-name {
	font-weight: 700;
	font-size: 16px;
}

.price-amount {
	font-size: 42px;
	/* 価格を大きく強調 */
	font-weight: 700;
	color: #e87a7a;
	/* 画像に近いピンクがかった赤 */
	display: flex;
	align-items: baseline;
	margin: 0;
}

.is-reason2 .reason-main-copy {
	color: #eb933f;
}

.is-reason3 .reason-main-copy {
	color: #6ab589;
}



.price-tax {
	font-size: 16px;
	font-weight: normal;
	color: #333;
	margin-left: 10px;
}

/* 右側画像エリア */
.reason-image-side {
	flex: 1;
	width: 50%;
}

.reason-image-side img {
	width: 100%;
	height: auto;
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
	/* 画像にある影を再現 */
}

/* スマホ対応 */
@media (max-width: 768px) {
	.reason-section {
		padding: 80px 20px 40px;
	}

	.reason-badge {
		width: 120px;
	}

	.reason-header {
		padding-left: 0;
		margin-top: 20px;
	}

	.reason-flex-content {
		flex-direction: column;
	}

	.reason-image-side {
		flex-basis: auto;
		width: 100%;
	}

	.price-amount {
		font-size: 32px;
	}
}


/* セクション全体 */
.value-added-section {
	padding-bottom: 80px;
	background-color: #fff;

}

/* ピンクの帯 */
.value-added-header {
	background-color: #f77e7e;
	/* 画像に近いピンク */
	padding: 30px 20px;
	text-align: center;
	position: relative;
	margin-bottom: 60px;
	border-bottom-left-radius: 60px;
	border-bottom-right-radius: 60px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	font-family: "Noto Serif JP", serif;

}

.value-added-title {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	margin: 0;
}

/* 下矢印 */
.down-arrow {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 30px solid #f77e7e;
}

/* 解決策提案エリア */
.solution-container {
	margin: 0 0 60px 0;
	text-align: center;
	padding: 0 20px;
}

.solution-main-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

/* タイトル下の赤い短い線 */
.solution-main-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background-color: #f77e7e;
	margin: 10px auto 0;
}

.solution-sub-lead {
	font-weight: 700;
	margin-bottom: 25px;
}

.solution-description {
	text-align: left;
	line-height: 1.8;
	color: #444;
}

/* 取引先一覧 */
.client-list-container {
	margin: 0 auto;
	padding: 0 20px;
}

.client-list-title {
	text-align: center;
	color: #f77e7e;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
}

/* 4カラムグリッド */
.client-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px 20px;
	list-style: none;
	padding: 0;
	margin-bottom: 40px;
}

.client-grid li {
	font-size: 14px;
	line-height: 1.4;
	position: relative;
	padding-left: 15px;
}

.client-grid li::before {
	content: '・';
	position: absolute;
	left: 0;
}

/* 黒いボタン */
.client-btn-area {
	text-align: center;
}

.btn-black {
	display: inline-block;
	background-color: #000;
	color: #fff;
	padding: 15px 60px;
	text-decoration: none;
	font-weight: 700;
	border-radius: 4px;
	transition: opacity 0.3s;
}

.btn-black:hover {
	opacity: 0.8;
}

/* スマホ対応 */
@media (max-width: 768px) {
	.value-added-title {
		font-size: 20px;
	}

	.solution-main-title {
		font-size: 22px;
	}

	.client-grid {
		grid-template-columns: repeat(2, 1fr);
		/* スマホは2列 */
	}
}


/* 共通のベーススタイルは維持 */
.expert-section {
	padding: 80px 0;
}

/* 会社案内セクションなどは背景色あり */
.expert-section:not(.recruit-section) {
	background-color: #f1f0e8;
}

.expert-inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* 中央見出し */
.expert-header {
	text-align: center;
	margin-bottom: 50px;
}

.expert-main-title {
	font-size: 36px;
	font-weight: 700;
	color: #000;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

/* 見出し下の赤いアクセント線 */
.expert-main-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background-color: #e87a7a;
	/* 付加価値セクションと同じピンク赤 */
	margin: 15px auto 0;
}

.expert-sub-title {
	font-size: 20px;
	font-weight: 700;
	color: #333;
}

/* 左右1対1のレイアウト */
.expert-flex-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 50px;
}

.expert-image-side {
	flex: 1;
	width: 50%;
}

.expert-image-side img {
	width: 100%;
	height: auto;
	display: block;
}

.expert-text-side {
	flex: 1;
	width: 50%;
}

.expert-description {
	line-height: 1.75;
	font-size: 16px;
	color: #333;
	margin-bottom: 40px;
	text-align: justify;
}

/* 横いっぱいの黒ボタン */
.expert-btn-area {
	width: 100%;
}

.btn-guide-black {
	display: block;
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 20px;
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	transition: background-color 0.3s;
}

.btn-guide-black:hover {
	background-color: #333;
}

/* スマホ対応 */
@media (max-width: 768px) {
	.expert-flex-content {
		flex-direction: column;
	}

	.expert-image-side,
	.expert-text-side {
		width: 100%;
	}

	.expert-main-title {
		font-size: 24px;
	}

	.btn-guide-black {
		font-size: 16px;
	}
}

/* 本文テキストの行送り調整 */
.expert-description {
	font-size: 16px;
	/* 指定のサイズ */
	line-height: 1.75;
	/* 28pt / 16px = 1.75 */
	color: #333;
	margin-bottom: 40px;
	text-align: justify;
}

/* 左右反転レイアウト用の設定 */
.expert-flex-content.reverse-layout {
	flex-direction: row;
	/* HTMLの並び順通り（テキスト左・画像右） */
}


/* スマホ対応：スマホでは常に画像を上にする場合 */
@media (max-width: 768px) {
	.expert-flex-content.reverse-layout {
		display: flex;
		flex-direction: column;
		/* 画像が下、テキストが上の順に */
	}

	/* もしスマホでも画像を先に（上に）出したい場合は：
    .expert-flex-content.reverse-layout {
        flex-direction: column-reverse;
    }
    */

	.expert-description {
		font-size: 14px;
		/* スマホでは少し小さく調整 */
	}
}