/* ============================================================
   北九州・山口訪問ページ
   ============================================================ */

/* 全体背景と余白 */
.direct-visit {
	background: #f2f0e6;
	padding: 100px 0;
	color: #333;
}

/* 中央寄せのコンテナ */
.direct-visit .main-inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* タイトル：中央寄せ＋ピンクの線 */
.section-title {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 20px;
	border: none;
}

.sub-lead {
	font-size: 18px;
	color: #666;
	line-height: 1.8;
	margin: 0 auto;
	text-align: center;
	margin-top: 20px;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 8px;
	background: #f77e7e;
	/* アクセントピンク */
}

/* サブリード文 */
.section-lead {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 60px;
	line-height: 1.6;
}

/* 横並び設定 */
.visit-flex-container {
	display: flex;
	align-items: flex-start;
	gap: 50px;
	/* 画像とテキストの間隔 */
}

/* 左側：画像 */
.visit-image {
	flex: 1;
}

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

/* 右側：テキスト */
.visit-text {
	flex: 1;
}

.visit-text p {
	font-size: 16px;
	line-height: 2;
	/* 行間を広げて読みやすく */
	margin-bottom: 25px;
	text-align: justify;
}

/* レスポンシブ：スマホでは縦並び */
@media (max-width: 850px) {
	.visit-flex-container {
		flex-direction: column;
	}

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

	.direct-visit .section-title {
		font-size: 24px;
	}
}

/* ============================================================
   訪問エリアマップセクション
   ============================================================ */

.visit-area-map {
	padding: 100px 0;
	background: #fff;
	/* 背景は白 */
}

/* タイトルとリードは direct-visit のスタイルを継承 */

.map-flex-container {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.map-text-content {
	flex: 1.2;
}

.map-image-content {
	flex: 1;
}

.map-image-content img {
	width: 100%;
	height: auto;
	display: block;
}

/* テキスト詳細部分 */
.map-desc {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 20px;
}

.area-sub-title {
	font-size: 18px;
	color: #f77e7e;
	/* ピンクのアクセントカラー */
	margin-bottom: 10px;
	font-weight: 700;
}

.area-group h4 {
	font-size: 16px;
	color: #666;
	margin-bottom: 6px;
	font-weight: 700;
}

/* エリアリスト：flexboxに変更して隙間を最小限に */
.area-list-grid {
	display: flex;
	flex-wrap: wrap;
	/* 折り返しを許可 */
	gap: 10px 18px;
	/* 上下10px、左右18pxの余白で詰める */
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.area-list-grid li {
	font-size: 16px;
	color: #666;
	padding-left: 16px;
	/* ドットのスペース */
	position: relative;
	white-space: nowrap;
	/* 1つの項目が途中で改行されないように */
}

/* リストのピンクの丸ドット */
.area-list-grid li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: #f7a6a6;
	border-radius: 50%;
}

/* レスポンシブ */
@media (max-width: 900px) {
	.map-flex-container {
		flex-direction: column;
	}

	.map-text-content,
	.map-image-content {
		width: 100%;
	}

	.area-list-grid {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	}
}

/* ============================================================
   こんなお客様にご利用いただいておりますセクション
   ============================================================ */

.visit-customers {
	background: #f2f0e6;
	/* 直接訪問セクションと同じベージュ */
	padding: 100px 0;
}

/* タイトル、リード、フレックスコンテナ、画像スタイルは
   .direct-visit の共通スタイルを継承または流用 */

.customers-desc {
	font-size: 15px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 30px;
}

.customers-sub-title {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
}

/* チェックリストのスタイル */
.check-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.check-list li {
	font-size: 16px;
	font-weight: 700;
	color: #333;
	margin-bottom: 12px;
	padding-left: 35px;
	position: relative;
	line-height: 1.5;
}

/* チェックボックスの外枠 */
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 22px;
	height: 22px;
	border: 2px solid #f77e7e;
	/* ピンクの枠 */
	border-radius: 3px;
	background: #fff;
}

/* チェックの「レ」の字 */
.check-list li::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 6px;
	width: 10px;
	height: 6px;
	border-left: 3px solid #f77e7e;
	border-bottom: 3px solid #f77e7e;
	transform: rotate(-45deg);
	/* 傾けてチェックマークにする */
}

/* ============================================================
   お客様の声セクション（カード型）
   ============================================================ */

.visit-voices {
	padding: 100px 0;
	background: #fff;
}

/* 2カラムグリッド */
.voice-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 50px;
}

/* 個別カード */
.voice-card {
	border: 3px solid #ccc;
	/* グレーの太枠 */
	padding: 25px;
	background: #fff;
	display: flex;
	flex-direction: column;
}

/* クライアント情報エリア */
.voice-client-info {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

/* 赤いアイコンボックス */
.voice-icon {
	background: #f77e7e;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.voice-icon img {
	width: 35px;
	height: auto;
}

.voice-client-name {
	font-size: 18px;
	font-weight: 700;
	color: #333;
}

.voice-text {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin: 0;
}

/* ボタン周り */
.voice-btn-wrap {
	text-align: center;
}

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

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

/* レスポンシブ */
@media (max-width: 768px) {
	.voice-grid {
		grid-template-columns: 1fr;
		/* スマホでは1カラム */
	}

	.voice-client-name {
		font-size: 16px;
	}
}

/* ============================================================
   選ばれる理由：訪問ページ移植版
   ============================================================ */
/* ============================================================
   選ばれる理由セクション（北九州・山口訪問ページ用）
   ============================================================ */

/* 1. セクション全体の骨組み */
.reason-section {
	background-color: #efefe5;
	padding: 60px 40px;
	margin-bottom: 80px;
	position: relative;
	/* バッジ固定の基準 */
}

/* 2. 理由バッジ（メダル画像）の配置 */
.reason-badge {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	/* バッジのサイズ */
	z-index: 10;
}

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

/* 3. ヘッダーエリア（バッジを避ける設定） */
.flex-header {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 40px;
	padding-left: 280px;
	/* バッジと重ならないための余白 */
}

.reason-main-copy {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.4;
	color: #caa530;
	/* 理由1の色 */
	margin: 0 0 10px 0;
}

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

/* 各理由ごとのカラーバリエーション */
.is-reason2 .reason-main-copy {
	color: #eb933f;
}

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

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

.reason-text-side,
.reason-image-side {
	flex: 1;
	width: 50%;
}

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

/* 5. 価格リスト（黒い実線の装飾） */
.reason-price-list {
	border-top: 2px solid #333;
}

.price-row {
	border-bottom: 2px solid #333;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

.price-amount {
	font-size: 42px;
	font-weight: 700;
	color: #e87a7a;
	display: flex;
	align-items: baseline;
	margin: 0;
	flex-wrap: wrap;

}


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

/* 6. 画像の装飾 */
.reason-image-side img {
	width: 100%;
	height: auto;
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}

/* 7. レスポンシブ（スマホ対応） */
@media (max-width: 768px) {
	.reason-section {
		padding: 80px 20px 40px;
	}

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

	.reason-badge {
		width: 120px;
	}

	.reason-main-copy {
		font-size: 24px;
	}

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

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

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

/* ============================================================
   最適プランご提案セクション
   ============================================================ */

.visit-plan {
	padding: 100px 0;
	background: #fff;
}

.plan-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.plan-card {
	border: 3px solid #ccc;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	background: #fff;
}

.plan-img {
	flex: 0 0 40%;
	/* 画像の幅を固定 */
}

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

.plan-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 80%;
}

.plan-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 15px;
	color: #333;
}

/* ピンクのボタン（右寄せ） */
.btn-pink {
	align-self: flex-end;
	/* 親のflexに対して右寄せ */
	background: #f77e7e;
	color: #fff;
	padding: 8px 15px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	white-space: nowrap;
	transition: opacity 0.3s;
	width: 100%;

}

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

/* スマホ対応 */
@media (max-width: 768px) {
	.plan-grid {
		grid-template-columns: 1fr;
	}

	.plan-card {
		flex-direction: column;
		/* スマホでは縦並び */
		text-align: center;
	}

	.plan-img {
		width: 80%;
	}

	.btn-pink {
		align-self: center;
		width: 100%;
		text-align: center;
	}
}


/* ============================================================
   制作の流れセクション
   ============================================================ */

.flow-section {
	background-color: #f1f0e8;
	/* 薄いベージュ背景 */
	padding: 100px 0;
	margin-bottom: 80px;
}

.flow-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	/* 4カラム */
	gap: 20px;
	margin-bottom: 50px;
}

.flow-item {
	display: flex;
	flex-direction: column;
}

/* 画像が入る白いボックス */
.flow-img-box {
	background: #fff;
	border: 2px solid #999;
	aspect-ratio: 4 / 3;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	margin-bottom: 15px;
}

.flow-img-box img {
	max-width: 100%;
	height: 140px;
	filter: grayscale(1);
	/* アイコンをグレーにする場合 */
	opacity: 0.6;
}

/* 番号とタイトルの並び */
.flow-text-content {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.flow-number {
	font-size: 28px;
	font-weight: 700;
	color: #f77e7e;
	/* ピンク赤 */
	line-height: 1;
}

.flow-step-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #333;
	margin: 0;
}

.flow-step-title .small-text {
	font-size: 12px;
	font-weight: normal;
}

/* 下部の中央ボタン */
.flow-btn-area {
	text-align: center;
}

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

.btn-black-center:hover {
	background: #444;
}

/* スマホ対応 */
@media (max-width: 768px) {
	.flow-grid {
		grid-template-columns: 1fr 1fr;
		/* スマホは2列 */
		gap: 15px;
	}

	.flow-img-box {
		padding: 10px;
	}

	.flow-number {
		font-size: 22px;
	}

	.flow-step-title {
		font-size: 14px;
	}
}