@charset "UTF-8";

/* 20260115 エリアページの作成 */
/* ヒーローイメージ */
.scn-site-header {
	display: flex;
	justify-content: center;
	max-width: 100%;
	margin-top: 68px;
}

.scn-site-header img {
	height: 100%;
	display: block;
}

.scn-section-title {
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 50px;
}

/* 選ばれる理由 */
.scn-reason-list {
	display: grid;
	gap: 34px;
}

.scn-reason-item {
	display: grid;
	grid-template-columns: 340px minmax(0, 560px);
	gap: 28px;
	margin: 0 auto;
}

.scn-reason-img {
	width: 100%;
}

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

.scn-reason-body__heading {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}

.scn-reason-body__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
}

/* 料金プラン */
.scn-price-table__table th,
.scn-price-table__table td {
	text-align: right;
}

.scn-price-table__table tbody tr td:first-child {
	text-align: left;
}

/* 対応エリア */
.scn-coverage-area__lead {
	text-align: center;
	font-size: 15px;
	line-height: 1.8;
	margin: 0 0 18px;
}

.scn-coverage-area__list {
	max-width: 960px;
	margin: 0 auto;
	font-size: 15px;
	line-height: 2;
}

/* 人口と世帯数 */
.scn-population-households__table th,
.scn-population-households__table td {
	text-align: right;
}

.scn-population-households__table tbody tr td:first-child {
	text-align: left;
}

/* お客様の声 */
.scn-voice-box {
	max-width: 700px;
	margin: 0 auto;
	padding: 8px;
	border: 3px solid #004FA3;
	font-size: 16px;
	font-weight: 600;
}

.scn-voice-box p {
	margin: 0;
}

.scn-voice-box p:not(:last-child) {
	margin-bottom: 18px;
}

/* ご利用の流れ */
.scn-flow__list {
	max-width: 960px;
	margin: 0 auto;
}

.scn-flow__item {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 28px;
	padding: 12px 0;
}

.scn-flow__img {
	width: 100%;
}

.scn-flow__img img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.scn-flow__head {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin: 0 0 8px;
}

.scn-flow__step {
	font-size: 15px;
	font-weight: 700;
}

.scn-flow__heading {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}

.scn-flow__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
}

/* お問い合わせ */
.scn-contact {
	padding: 100px 0;
}

.scn-contact__text {
	margin: 0 0 24px;
	font-size: 16px;
	font-weight: 700;
}

.scn-contact__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 400px;
	height: 60px;
	padding: 0 24px;
	background: #004FA3;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: opacity .2s, transform .2s ease;
}

.scn-contact__btn:hover {
	opacity: 0.9;
}

/* 共通 */
/* 共通テーブル */
.scn-table__wrap {
	max-width: 960px;
	margin: 0 auto;
	max-height: 400px;
	overflow-y: auto;
	border: 1px solid #ccc;
}

.scn-table__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}

.scn-table__table th,
.scn-table__table td {
	padding: 12px 14px;
	font-size: 14px;
	line-height: 1.4;
	border: 1px solid #ccc;
	white-space: nowrap;
}

.scn-table__table thead th {
	position: sticky;
	top: 0;
	z-index: 1;
	background: #1E57B6;
	color: #fff;
	text-align: left;
	font-weight: 700;
}

.scn-sp-only {
	display: none;
}

.scn-pc-only {
	display: block;
}

@media (max-width: 768px) {

	/* 選ばれる理由 */
	.scn-reason-item {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.scn-reason-img {
		max-width: 100%;
	}

	/* ご利用の流れ */
	.scn-flow__item {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 30px 0;
	}

	.scn-flow__img {
		width: 100%;
	}

	.scn-flow__head {
		gap: 10px;
	}

	/* お問い合わせ */
	.scn-contact__btn {
		width: 300px;
	}

	/* 共通 */
	.scn-section-title {
		margin: 0 0 30px;
	}

	.scn-table__table th,
	.scn-table__table td {
		font-size: 12px;
		white-space: wrap;
	}

	.scn-sp-only {
		display: block;
	}

	.scn-pc-only {
		display: none;
	}
}
