/* ============================================
   都道府県ページ専用CSS
============================================ */

.area-page {
	--c-primary: #1f5c45;
	--c-primary-dark: #15422f;
	--c-primary-light: #e8f3ee;
	--c-accent: #e8710a;
	--c-accent-dark: #c95f05;
	--c-accent-light: #fff3e6;
	--c-text: #2b2b2b;
	--c-text-sub: #666;
	--c-border: #dcdcd4;
	--c-bg: #faf9f5;
	--c-white: #fff;
	--c-danger: #c0392b;
	--shadow: 0 2px 10px rgba(0, 0, 0, .08);
	--radius: 10px;
	--maxw: 1080px;
}

/* ============================================
   一般業者
============================================ */
.area-page .plain-gyosha {
	padding: 28px 0;
	border-top: 1px solid var(--c-border);
}

.area-page .plain-gyosha:first-of-type {
	border-top: none;
}

.area-page .plain-gyosha h3 {
	margin-bottom: 14px;
	padding-left: 10px;
	border-left: 4px solid var(--c-border);
	color: var(--c-text);
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.5;
}

.area-page .plain-gyosha p {
	margin-bottom: 12px;
	color: var(--c-text);
	font-size: .95rem;
	line-height: 2;
}

.area-page .plain-gyosha p strong {
	font-weight: 700;
}


/* ============================================
   業者画像
============================================ */

.area-page .gyosha-shot {
	display: block;
	width: 100%;
	max-width: 640px;
	height: auto;
	margin: 0 auto 18px;
	border: 1px solid var(--c-border);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
}


/* ============================================
   出典元
============================================ */

.area-page .shot-source {
	max-width: 640px;
	margin: -12px auto 16px !important;
	color: var(--c-text-sub) !important;
	font-size: .72rem !important;
	line-height: 1.6 !important;
	text-align: center;
}

.area-page .shot-source a {
	color: var(--c-text-sub);
	text-decoration: underline;
	word-break: break-all;
}


/* ============================================
   業者スペック
============================================ */

.area-page .plain-spec {
	margin: 18px 0 6px;
	border-top: 1px solid var(--c-border);
	font-size: .92rem;
}

.area-page .plain-spec > div {
	display: grid;
	grid-template-columns: 9.5em 1fr;
	gap: 0 14px;
	padding: 9px 2px;
	border-bottom: 1px solid var(--c-border);
}

.area-page .plain-spec dt {
	color: var(--c-primary-dark);
	font-weight: 700;
}

.area-page .plain-spec dd {
	margin: 0;
	line-height: 1.85;
	word-break: break-word;
}

.area-page .plain-spec dd a {
	color: var(--c-primary);
	text-decoration: underline;
	word-break: break-all;
}


/* ============================================
   SP
============================================ */

@media (max-width: 640px) {

	.area-page .plain-gyosha h3 {
		font-size: 1.1rem;
	}

	.area-page .plain-gyosha p {
		font-size: .9rem;
		line-height: 1.9;
	}

	.area-page .plain-spec {
		font-size: .86rem;
	}

	.area-page .plain-spec > div {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 8px 2px;
	}

	.area-page .plain-spec dt {
		font-size: .78rem;
	}

}

/* ============================================
   一休堂 強調エリア
============================================ */

.area-page .featured-gyosha {
	border: 3px solid var(--c-accent);
	border-radius: 12px;
	background: linear-gradient(180deg, #fffaf3, #fff);
	padding: 26px 24px 28px;
	margin: 4px 0 32px;
	box-shadow: 0 4px 18px rgba(232, 113, 10, .16);
}

.area-page .featured-gyosha.plain-gyosha {
	border-top: 3px solid var(--c-accent);
}


/* ============================================
   一休堂 タイトル
============================================ */

.area-page .featured-ttl {
	border-left: none !important;
	padding-left: 0 !important;
	font-size: 1.45rem !important;
	color: var(--c-primary-dark) !important;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;

	margin-bottom: 16px !important;
}


/* ============================================
   No.1 リボン
============================================ */

.area-page .featured-ribbon {
	display: inline-block;

	background: linear-gradient(
		90deg,
		#f5851f,
		var(--c-accent)
	);

	color: #fff;

	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .04em;

	padding: 5px 18px;
	border-radius: 999px;

	line-height: 1.5;

	box-shadow:
		0 2px 8px rgba(232, 113, 10, .4);
}

.area-page .featured-ribbon i {
	color: #ffe27a;
	margin-right: 5px;
}


/* ============================================
   特徴タグ
============================================ */

.area-page .featured-tags {
	display: flex;
	flex-wrap: wrap;

	gap: 8px;

	margin-bottom: 18px;
}

.area-page .featured-tags span {
	background: var(--c-primary-light);
	color: var(--c-primary-dark);

	border: 1px solid var(--c-primary);
	border-radius: 4px;

	font-size: .76rem;
	font-weight: 700;

	padding: 4px 10px;

	line-height: 1.5;

	white-space: nowrap;
}


/* ============================================
   一休堂 スペック表
============================================ */

.area-page .featured-gyosha .plain-spec > div {
	border-bottom-color: #efe0c8;
}

.area-page .featured-gyosha .plain-spec {
	border-top-color: #efe0c8;
}


/* ============================================
   口コミ
============================================ */

.area-page .plain-review {
	background: var(--c-white);

	border: 1px solid #efe0c8;
	border-radius: 8px;

	padding: 16px 18px;
	margin: 18px 0 16px;
}

.area-page .plain-review-head {
	display: flex;
	align-items: center;
	flex-wrap: wrap;

	gap: 10px;

	margin-bottom: 8px !important;
}

.area-page .plain-review-tag {
	background: var(--c-primary);
	color: #fff;

	font-size: .72rem;
	font-weight: 800;

	padding: 2px 12px;
	border-radius: 999px;

	line-height: 1.7;
}

.area-page .plain-review-stars {
	color: #f6b93b;

	font-size: .85rem;
	font-weight: 700;
}

.area-page .plain-review blockquote {
	font-size: .92rem;
	line-height: 1.95;

	margin: 0 0 6px;
}

.area-page .plain-review blockquote::before {
	content: "｢";
	color: var(--c-primary);
	font-weight: 800;
}

.area-page .plain-review blockquote::after {
	content: "｣";
	color: var(--c-primary);
	font-weight: 800;
}

.area-page .plain-review-meta {
	font-size: .78rem !important;
	color: var(--c-text-sub) !important;

	text-align: right;

	margin: 0 !important;
	line-height: 1.6 !important;
}


/* ============================================
   一休堂 詳細ボタン
============================================ */

.area-page .simple-btn-wrap {
	text-align: center;
	margin: 4px 0 8px !important;
}

.area-page .simple-btn {
	display: inline-block;

	background: var(--c-white);
	color: var(--c-primary-dark);

	border: 2px solid var(--c-primary);
	border-radius: 999px;

	text-decoration: none;

	font-size: .92rem;
	font-weight: 700;

	padding: 11px 28px;

	transition:
		background .2s,
		color .2s;
}

.area-page .simple-btn:hover {
	background: var(--c-primary);
	color: #fff;
}

.area-page .simple-btn i {
	font-size: .78em;
	margin-left: 4px;
}


/* ============================================
   SP
============================================ */

@media (max-width: 640px) {

	.area-page .featured-gyosha {
		padding: 18px 14px 22px;
		border-width: 2px;
	}

	.area-page .featured-ttl {
		font-size: 1.2rem !important;
	}

	.area-page .featured-ribbon {
		font-size: .72rem;
		padding: 4px 14px;
	}

	.area-page .featured-tags {
		gap: 6px;
	}

	.area-page .featured-tags span {
		font-size: .68rem;
		padding: 3px 8px;
	}

	.area-page .plain-review {
		padding: 13px;
	}

	.area-page .plain-review blockquote {
		font-size: .86rem;
	}

	.area-page .simple-btn {
		display: block;
		max-width: 420px;
		margin: 0 auto;
	}

}

/* ============================================
   一休堂 CTA画像エリア
============================================ */

.area-page .cta-img-area {
	max-width: 560px;
	margin: 26px auto 4px;
	text-align: center;
}

.area-page .cta-img-catch {
	margin-bottom: 14px;
	color: var(--c-text);
	font-size: .98rem;
	font-weight: 700;
	line-height: 1.9;
}

.area-page .cta-img-note {
	margin: 2px 0 12px;
	color: var(--c-text-sub);
	font-size: .82rem;
	line-height: 1.8;
}

.area-page .cta-img-btn {
	display: block;
	max-width: 520px;
	margin: 0 auto 14px;
}

.area-page .cta-img-btn img {
	display: block;
	width: 100%;
	height: auto;

	border-radius: 12px;

	transition:
		transform .15s,
		opacity .15s;
}

.area-page .cta-img-btn:hover img {
	transform: translateY(-2px);
	opacity: .92;
}


/* ============================================
   SP
============================================ */

@media (max-width: 640px) {

	.area-page .cta-img-catch {
		font-size: .9rem;
	}

	.area-page .cta-img-area {
		margin-top: 22px;
	}

	.area-page .cta-img-btn {
		margin-bottom: 12px;
	}

}
/* ============================================
   都道府県ページ HERO
============================================ */

.area-page .plain-hero {
	position: relative;
	overflow: hidden;

	/* SWELLのコンテンツ幅を突破して全幅表示 */
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

.area-page .plain-hero-img {
	display: block;
	width: 100%;
	height: clamp(220px, 32vw, 380px);
	object-fit: cover;
}

.area-page .plain-hero-text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;

	padding: 46px 20px 22px;

	background:
		linear-gradient(
			transparent,
			rgba(0, 0, 0, .62)
		);

	color: #fff;
	text-align: center;
}

.area-page .plain-hero-text h1 {
	margin-bottom: 4px;

	color: #fff;

	font-size:
		clamp(
			1.25rem,
			3.4vw,
			1.85rem
		);

	font-weight: 800;
	line-height: 1.5;

	text-shadow:
		0 2px 8px rgba(0, 0, 0, .5);
}

.area-page .plain-hero-text p {
	margin: 0;

	color: #fff;

	font-size:
		clamp(
			.82rem,
			1.8vw,
			.98rem
		);

	text-shadow:
		0 1px 6px rgba(0, 0, 0, .55);
}


/* ============================================
   SP
============================================ */
@media (max-width: 640px) {

	.area-page .plain-hero-text {
		padding: 36px 14px 16px;
	}

}

/* ============================================
   パンくず
============================================ */

.area-page .area-breadcrumb-wrap {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 ;
}

.area-page .breadcrumb {
	padding: 10px 0 0;
	color: var(--c-text-sub);
	font-size: 12px;
}

.area-page .breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.area-page .breadcrumb li + li::before {
	content: "›";
	margin: 0 6px;
	color: #aaa;
}

.area-page .breadcrumb a {
	color: #1f5c45;
}
.area-page .breadcrumb a:hover {
	text-decoration: underline;
}
@media screen and (max-width: 410px) {
	.area-page .breadcrumb {
		font-size: 11px;
	}
}

/* ============================================
   本文幅
============================================ */

.area-page .plain-container {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
/* 	padding-left: 20px;
	padding-right: 20px; */
}
/* ============================================
   導入セクション
============================================ */

.area-page .section {
	padding: 56px 0;
}

.area-page .plain-intro {
	padding: 32px 0 8px;
}

.area-page .plain-lead-title {
	margin-bottom: 12px;

	color: var(--c-text);

	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.6;
}

.area-page .plain-lead {
	margin: 0;

	color: var(--c-text);

	font-size: .95rem;
	line-height: 2;
}
.area-page .area-company-lead {
	margin-bottom: 32px;
}

/* ============================================
   SP
============================================ */

@media (max-width: 640px) {

	.area-page .plain-lead {
		font-size: .9rem;
		line-height: 1.9;
	}
	.area-page .area-company-lead {
		margin-bottom: 24px;
	}

}

/* ============================================
   業者選びのポイント
============================================ */

.area-page .area-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;

	margin: 30px 0 32px;
}

.area-page .area-point {
	position: relative;

	padding: 24px 20px;

	background: var(--c-white);

	border: 1px solid var(--c-border);
	border-top: 4px solid var(--c-primary);
	border-radius: 8px;

	box-shadow: var(--shadow);
}

.area-page .area-point__num {
	margin: 0 0 8px;

	color: var(--c-primary);

	font-size: .75rem;
	font-weight: 800;
	letter-spacing: .06em;
}

.area-page .area-point__title {
	margin: 0 0 10px;

	color: var(--c-primary-dark);

	font-size: 1rem;
	font-weight: 800;
	line-height: 1.6;
}

.area-page .area-point__text {
	margin: 0;

	color: var(--c-text);

	font-size: .88rem;
	line-height: 1.85;
}


/* ============================================
   SP
============================================ */

@media (max-width: 767px) {

	.area-page .area-points {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.area-page .area-point {
		padding: 20px 18px;
	}

	.area-page .area-point__title {
		font-size: .95rem;
	}

	.area-page .area-point__text {
		font-size: .86rem;
	}

}
/* ============================================
   おすすめ業者一覧
============================================ */

.area-page .area-company-section {
	padding: 28px 0 0;
}

.area-page .plain-page-title {
	margin: 0 0 24px;
	padding-bottom: 10px;

	border-bottom: 2px solid var(--c-border);

	color: var(--c-text);

	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.5;
}


/* SP */
@media (max-width: 640px) {

	.area-page .plain-page-title {
		font-size: 1.25rem;
	}

}

/* ============================================
   改葬手続き
============================================ */

.area-page .plain-outro {
	padding: 28px 0 48px;
	border-top: 1px solid var(--c-border);
}

.area-page .plain-outro > p {
	margin-bottom: 10px;

	color: var(--c-text);

	font-size: .92rem;
	line-height: 2;
}


/* セクションタイトル */
.area-page .plain-matome-title {
	margin-bottom: 14px;
	padding-left: 10px;

	border-left: 4px solid var(--c-primary);

	color: var(--c-text);

	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.6;
}


/* 小見出し */
.area-page .plain-hojo-title {
	margin: 26px 0 10px;
	padding-bottom: 6px;

	border-bottom: 2px solid var(--c-primary-light);

	color: var(--c-primary-dark);

	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.6;
}


/* 手続きの流れ */
.area-page .area-procedure-list {
	margin: 18px 0 30px;
	padding-left: 2em;

	list-style: decimal;
}

.area-page .area-procedure-list li {
	display: list-item;

	margin-bottom: 10px;

	color: var(--c-text);

	font-size: .92rem;
	line-height: 1.9;

	list-style: decimal;
}

.area-page .area-procedure-list li:last-child {
	margin-bottom: 0;
}
.area-page .area-procedure-list li::marker {
	color: var(--c-primary);
	font-weight: 700;
}

/* ============================================
   SP
============================================ */

@media (max-width: 640px) {

	.area-page .plain-matome-title {
		font-size: 1.1rem;
	}

	.area-page .plain-hojo-title {
		font-size: .98rem;
	}

	.area-page .plain-outro > p,
	.area-page .area-procedure-list li {
		font-size: .88rem;
	}

}

/* ============================================
   自治体相談窓口
============================================ */

.area-page .area-municipality-list {
	margin-top: 18px;
}

.area-page .hojo-item {
	margin-bottom: 14px;
	padding: 16px 18px;

	background: var(--c-white);

	border: 1px solid var(--c-border);
	border-radius: 8px;
}

.area-page .hojo-item h4 {
	margin-bottom: 6px;

	color: var(--c-primary-dark);

	font-size: .98rem;
	font-weight: 800;
	line-height: 1.6;
}

.area-page .hojo-list {
	margin: 0;
	padding: 0;

	list-style: none;

	font-size: .88rem;
}

.area-page .hojo-list li {
	position: relative;

	padding: 5px 0 5px 1.2em;

	border-bottom: 1px dashed var(--c-border);

	line-height: 1.7;
}

.area-page .hojo-list li:last-child {
	border-bottom: none;
}

.area-page .hojo-list li::before {
	content: "・";

	position: absolute;
	left: 0;

	color: var(--c-primary);
	font-weight: 700;
}

.area-page .hojo-list strong {
	color: var(--c-primary-dark);
	font-weight: 700;
}

.area-page .hojo-list a {
	color: var(--c-primary);
	text-decoration: underline;
}


/* SP */
@media (max-width: 640px) {

	.area-page .hojo-item {
		padding: 13px;
	}

	.area-page .hojo-item h4 {
		font-size: .9rem;
	}

	.area-page .hojo-list {
		font-size: .84rem;
	}

}

/* ============================================
   補助金・助成制度
============================================ */

.area-page .area-subsidy-item {
	margin-top: 16px;
}

.area-page .area-subsidy-item > p {
	margin-bottom: 12px;

	color: var(--c-text);

	font-size: .9rem;
	line-height: 1.9;
}

.area-page .hojo-note {
	margin: 14px 0 18px !important;

	color: var(--c-text-sub) !important;

	font-size: .8rem !important;
	line-height: 1.9 !important;
}
/* 補助金・助成金 導入文と支援制度カードの余白 */
.area-page .area-subsidy-intro {
	margin-bottom: 28px;
}

/* 支援制度カード同士の余白 */
.area-page .area-subsidy .hojo-item {
	margin-bottom: 24px;
}

.area-page .area-subsidy .hojo-item:last-child {
	margin-bottom: 0;
}
@media (max-width: 640px) {

	.area-page .area-subsidy-intro {
		margin-bottom: 22px;
	}

	.area-page .area-subsidy .hojo-item {
		margin-bottom: 20px;
	}

}
/* ============================================
   まとめ
============================================ */

.area-page .area-summary {
	margin-top: 42px;
	padding: 28px 24px;

	background: var(--c-primary-light);

	border-radius: 10px;
}

.area-page .area-summary .plain-matome-title {
	margin-bottom: 16px;
}

.area-page .area-summary p {
	margin: 0 0 14px;

	color: var(--c-text);

	font-size: .92rem;
	line-height: 2;
}

.area-page .area-summary p:last-child {
	margin-bottom: 0;
}


/* SP */
@media (max-width: 640px) {

	.area-page .area-summary {
		margin-top: 32px;
		padding: 22px 18px;
	}

	.area-page .area-summary p {
		font-size: .88rem;
		line-height: 1.9;
	}

}
/* ============================================
   都道府県一覧
============================================ */

.area-page .pref-list-section {
	margin-top: 42px;
	padding: 26px 0 48px;

	border-top: 1px solid var(--c-border);
}

.area-page .pref-list-title {
	margin-bottom: 16px;
	padding-left: 10px;

	border-left: 4px solid var(--c-border);

	color: var(--c-text);

	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.6;
}

.area-page .pref-list-group {
	margin-bottom: 12px;
}

.area-page .pref-list-group h3 {
	margin-bottom: 2px;

	color: var(--c-primary-dark);

	font-size: .92rem;
	font-weight: 700;
	line-height: 1.6;
}

.area-page .pref-list-group p {
	margin: 0;

	color: var(--c-text-sub);

	font-size: .88rem;
	line-height: 2;
}

.area-page .pref-list-group a {
	color: var(--c-primary);

	font-weight: 700;
	text-decoration: underline;
}

.area-page .pref-list-group .is-preparing {
	color: var(--c-text-sub);
}

.area-page .pref-list-note {
	margin-top: 14px;

	color: var(--c-text-sub);

	font-size: .78rem;
	line-height: 1.8;
}

.area-page .pref-list-note a {
	color: var(--c-primary);
	text-decoration: underline;
}


/* SP */
@media (max-width: 640px) {

	.area-page .pref-list-group p {
		font-size: .82rem;
	}

}

/* =========================================
   都道府県一覧ページ
   /area/
========================================= */

.area-page.area-index-page {
	padding: 56px 0 80px;
}


/* -------------------------
   タイトル
------------------------- */

.area-page .area-index-title {
	margin: 0 0 12px;
	text-align: center;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	line-height: 1.5;
	color: #15422f;
}


/* -------------------------
   リード文
------------------------- */

.area-page .area-index-lead {
	margin: 0 auto 48px;
	text-align: center;
	font-size: 15px;
	line-height: 1.9;
	color: #666;
}


/* -------------------------
   地域グループ
------------------------- */

.area-page .area-index-groups {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.area-page .area-index-group {
	margin: 0;
}


/* -------------------------
   地域タイトル
------------------------- */

.area-page .area-index-group-title {
	margin: 0 0 16px;
	padding: 0 0 8px 14px;
	border-left: 5px solid #1f5c45;
	border-bottom: 1px solid #e8e8e3;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	color: #15422f;
}


/* -------------------------
   都道府県グリッド
------------------------- */
/* 都道府県一覧ページのみ横幅を拡張 */
.area-page.area-index-page .plain-container {
	max-width: 1080px;
	box-sizing: border-box;
}
.area-page.area-index-page .plain-container {
	padding-left: 0;
	padding-right: 0;
}
.area-page .area-index-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}


/* -------------------------
   都道府県リンク
------------------------- */

.area-page .area-index-link {
	min-height: 48px;
	padding: 10px 14px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;

	background: #fff;
	border: 1px solid #dcdcd4;
	border-radius: 8px;

	color: #2b2b2b;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;

	transition:
		border-color .2s,
		background-color .2s,
		color .2s,
		transform .2s;
}


/* ホバー */

.area-page a.area-index-link:hover {
	background: #e8f3ee;
	border-color: #1f5c45;
	color: #1f5c45;
	transform: translateY(-1px);
}


/* -------------------------
   矢印
------------------------- */

.area-page .area-index-arrow {
	flex-shrink: 0;
	font-size: 20px;
	line-height: 1;
	color: #1f5c45;
}


/* -------------------------
   準備中
------------------------- */

.area-page .area-index-link.is-preparing {
	background: #f7f7f5;
	color: #999;
	opacity: .65;
	cursor: default;
}

.area-page .area-index-link.is-preparing small {
	font-size: 11px;
	font-weight: 500;
}


/* -------------------------
   下部注釈
------------------------- */

.area-page .area-index-note {
	margin: 28px 0 0;
	font-size: 13px;
	line-height: 1.8;
	color: #666;
}


/* =========================================
   SP
========================================= */

@media (max-width: 640px) {

	.area-page.area-index-page {
		padding: 36px 0 56px;
	}

	.area-page .area-index-title {
		font-size: 22px;
		text-align: left;
	}

	.area-page .area-index-lead {
		margin-bottom: 36px;
		text-align: left;
		font-size: 14px;
	}

	.area-page .area-index-lead br {
		display: none;
	}

	.area-page .area-index-groups {
		gap: 32px;
	}

	.area-page .area-index-group-title {
		margin-bottom: 12px;
		padding-left: 11px;
		font-size: 18px;
	}

	.area-page .area-index-grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.area-page .area-index-link {
		min-height: 46px;
		padding: 9px 11px;
		font-size: 13px;
	}

	.area-page .area-index-link.is-preparing {
		padding-right: 8px;
	}

	.area-page .area-index-link.is-preparing small {
		display: block;
		font-size: 10px;
	}

	.area-page .area-index-arrow {
		font-size: 18px;
	}

	.area-page .area-index-note {
		margin-top: 24px;
		font-size: 12px;
	}

}

/* =========================================
   都道府県一覧ページ CTA
   クライアントカンプ準拠
========================================= */

.area-page .area-index-cta {
	width: 100%;
	max-width: 820px;
	margin: 56px auto 0;

	background: #fff;
	border-radius: 16px;
	overflow: hidden;

	box-shadow: 0 8px 30px rgba(0, 0, 0, .22);
}


/* =========================================
   CTA ヘッダー
========================================= */

.area-page .area-index-cta-head {
	padding: 14px 18px;

	background:
		linear-gradient(
			90deg,
			#b7402c,
			#c0392b
		);

	color: #fff;
	text-align: center;
}


.area-page .area-index-cta-catch {
	display: inline-block;

	margin: 0 0 6px;
	padding: 2px 14px;

	background: #ffd764;
	border-radius: 999px;

	color: #8a2f1e;

	font-size: .78rem;
	font-weight: 800;
	line-height: 1.6;
}


.area-page .area-index-cta-title {
	margin: 0;

	color: #fff;

	font-size: clamp(
		1.05rem,
		2.6vw,
		1.35rem
	);

	font-weight: 800;
	line-height: 1.5;
}


/* =========================================
   CTA 本体
========================================= */

.area-page .area-index-cta-body {
	padding: 20px 20px 24px;
}


/* =========================================
   電話CTA
========================================= */

.area-page .area-index-cta-tel {
	position: relative;

	padding: 20px 20px 18px;

	background:
		linear-gradient(
			180deg,
			#ff9a2e,
			#e8710a
		);

	border-radius: 14px;

	color: #fff;
	text-align: center;

	box-shadow:
		0 6px 20px rgba(232, 113, 10, .5),
		inset 0 -4px 0 rgba(0, 0, 0, .15);
}


/* 電話ラベル */

.area-page .area-index-cta-tel-label {
	display: inline-block;

	margin: 0 0 8px;
	padding: 4px 18px;

	background: #fff;
	border-radius: 999px;

	color: #c95f05;

	font-size: .84rem;
	font-weight: 800;
	line-height: 1.5;

	box-shadow:
		0 2px 6px rgba(0, 0, 0, .15);
}


/* 電話番号 */

.area-page .area-index-cta-tel-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	margin: 0;

	color: #fff;

	font-size: clamp(
		2.1rem,
		7vw,
		3rem
	);

	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .02em;

	text-decoration: none;

	text-shadow:
		0 2px 6px rgba(0, 0, 0, .2);
}


/* 受付時間 */

.area-page .area-index-cta-hours {
	margin: 4px 0 0;

	color: #fff;

	font-size: .9rem;
	font-weight: 800;
}


.area-page .area-index-cta-hours strong {
	color: #ffe9a8;
	font-size: 1.05em;
}


/* SPタップ案内 */

.area-page .area-index-cta-tap {
	display: none;

	margin: 2px 0 0;

	color: #fff;

	font-size: .78rem;
	font-weight: 700;

	opacity: .95;
}


/* =========================================
   Web CTA 区切り
========================================= */

.area-page .area-index-cta-divider {
	display: flex;
	align-items: center;
	gap: 14px;

	margin: 20px 0;

	color: #666;

	font-size: .82rem;
	font-weight: 700;
	text-align: center;
}


.area-page .area-index-cta-divider::before,
.area-page .area-index-cta-divider::after {
	content: "";

	flex: 1;

	height: 1px;

	background: #dcdcd4;
}


/* =========================================
   Web CTA 2ボタン
========================================= */

.area-page .area-index-cta-buttons {
	display: grid;

	grid-template-columns:
		1.2fr 1fr;

	gap: 14px;
}


.area-page .area-index-cta-button {
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	gap: 2px;

	min-height: 0;

	padding: 18px 32px 18px 14px;

	border-radius: 12px;
	border: none;

	color: #fff;

	font-size: clamp(
		.95rem,
		2.2vw,
		1.1rem
	);

	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;

	transition:
		transform .15s,
		box-shadow .15s;
}


.area-page .area-index-cta-button:hover {
	color: #fff;
	transform: translateY(-2px);
}


/* 矢印 */

/* .area-page .area-index-cta-button::after {
	content: "›";

	position: absolute;

	top: 50%;
	right: 14px;

	transform:
		translateY(-50%);

	font-size: 20px;
	line-height: 1;
} */


/* メインテキスト */

.area-page .area-index-cta-button-main {
	font-size: inherit;
	font-weight: 800;
}


/* サブテキスト */

.area-page .area-index-cta-button-sub {
	margin: 0;

	font-size: .72rem;
	font-weight: 700;

	opacity: .95;
}


/* =========================================
   無料見積もり
========================================= */

.area-page .area-index-cta-estimate {
	background:
		linear-gradient(
			180deg,
			#f5851f,
			#e8710a
		);

	box-shadow:
		0 4px 14px rgba(232, 113, 10, .45),
		inset 0 -3px 0 rgba(0, 0, 0, .15);
}


.area-page .area-index-cta-estimate:hover {
	box-shadow:
		0 6px 18px rgba(232, 113, 10, .55),
		inset 0 -3px 0 rgba(0, 0, 0, .15);
}


/* =========================================
   資料請求
========================================= */

.area-page .area-index-cta-document {
	background:
		linear-gradient(
			180deg,
			#2e7d5b,
			#1f5c45
		);

	box-shadow:
		0 4px 14px rgba(31, 92, 69, .4),
		inset 0 -3px 0 rgba(0, 0, 0, .18);
}


.area-page .area-index-cta-document:hover {
	box-shadow:
		0 6px 18px rgba(31, 92, 69, .5),
		inset 0 -3px 0 rgba(0, 0, 0, .18);
}


/* =========================================
   SP
========================================= */

@media (max-width: 640px) {

	.area-page .area-index-cta {
		margin-top: 40px;

		border-radius: 12px;
	}


	.area-page .area-index-cta-head {
		padding: 12px 14px;
	}


	.area-page .area-index-cta-catch {
		font-size: .72rem;
	}


	.area-page .area-index-cta-title {
		font-size: 1rem;
	}


	.area-page .area-index-cta-body {
		padding: 20px 16px 24px;
	}


	.area-page .area-index-cta-tel {
		padding: 14px 10px;
	}


	.area-page .area-index-cta-tel-label {
		padding: 3px 12px;

		font-size: .72rem;
	}


	.area-page .area-index-cta-tel-number {
		font-size: clamp(
			1.55rem,
			8.5vw,
			1.8rem
		);
	}


	.area-page .area-index-cta-hours {
		font-size: .76rem;
	}


	.area-page .area-index-cta-tap {
		display: block;
	}


	.area-page .area-index-cta-divider {
		margin: 16px 0;

		font-size: .76rem;
	}


	.area-page .area-index-cta-buttons {
		grid-template-columns: 1fr;

		gap: 10px;
	}


	.area-page .area-index-cta-button {
		padding:
			15px 30px
			15px 14px;
	}

}

/* =========================================
   CTA アイコン
========================================= */

/* 電話番号 */
.area-page .area-index-cta-tel-number {
	gap: 10px;
}


/* 電話アイコン */
.area-page .area-index-cta-tel-number i {
	color: #fff;
	font-size: .72em;

	animation:
		area-tel-shake
		2.4s
		ease-in-out
		infinite;
}


/* 電話アイコン振動 */
@keyframes area-tel-shake {

	0%,
	84%,
	100% {
		transform: rotate(0);
	}

	86% {
		transform: rotate(-14deg);
	}

	88% {
		transform: rotate(12deg);
	}

	90% {
		transform: rotate(-10deg);
	}

	92% {
		transform: rotate(8deg);
	}

	94% {
		transform: rotate(-4deg);
	}

	96% {
		transform: rotate(0);
	}

}


/* 電話ラベルアイコン */
.area-page .area-index-cta-tel-label i {
	margin-right: 5px;
}


/* タップアイコン */
.area-page .area-index-cta-tap i {
	margin-right: 4px;
}


/* 見積もり・資料請求アイコン */
.area-page .area-index-cta-button-main i {
	margin-right: 5px;
}


/* CTA右矢印 */
.area-page .area-index-cta-button-arrow {
	position: absolute;

	top: 50%;
	right: 14px;

	transform:
		translateY(-50%);

	font-size: .85rem;
}

.area-page .area-index-cta-tel {
	display: block;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

.area-page .area-index-cta-tel:hover {
	color: #fff;
}

/* =========================================
   都道府県一覧 パンくず
========================================= */

.area-page .area-index-breadcrumb-wrap {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto 20px;
	padding: 20px 0;
	box-sizing: border-box;
}

.area-page .area-index-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
	color: #777;
}

.area-page .area-index-breadcrumb li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.area-page .area-index-breadcrumb li:not(:last-child)::after {
	content: "›";
	color: #aaa;
}

.area-page .area-index-breadcrumb a {
	color: #1f5c45;
	text-decoration: none;
}

.area-page .area-index-breadcrumb a:hover {
	text-decoration: underline;
}


@media (max-width: 640px) {

	.area-page .area-index-breadcrumb-wrap {
		margin-bottom: 14px;
/* 		padding: 16px 20px 0; */
		padding: 16px 0 0;
	}

	.area-page .area-index-breadcrumb ol {
		font-size: 11px;
	}

}