@charset "UTF-8";

/* ===== sitemap organized layout ===== */

/* イントロ文 */
.sitemap .sitemap-intro {
	margin: 0 0 36px;
	line-height: 1.9;
	font-size: 14px;
	color: #444;
	padding: 20px 24px;
	background: #f7f8fa;
	border-left: 4px solid #1a3558;
	border-radius: 0 6px 6px 0;
}

/* グリッド全体 */
.sitemap .sitemap-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px 28px;
	align-items: start;
}

/* 各ブロック（カード化） */
.sitemap .sitemap-block {
	margin: 0;
	padding: 0;
	list-style: none;
	background: #fff;
	border: 1px solid #e4e7ef;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* ブロック見出し（1番目のli） */
.sitemap .sitemap-block > li:first-child {
	margin: 0;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(90deg, #1a3558 0%, #1f4878 100%);
	letter-spacing: .04em;
	line-height: 1.5;
}

/* 各リストアイテム */
.sitemap .sitemap-block li {
	margin: 0;
	padding: 0;
	line-height: 1.7;
	border-bottom: 1px solid #f0f1f5;
}
.sitemap .sitemap-block li:last-child {
	border-bottom: none;
}

/* リンク */
.sitemap .sitemap-block a,
.sitemap .sitemap-block b.text-grey {
	display: block;
	padding: 9px 18px 9px 36px;
	font-size: 13.5px;
	text-decoration: none;
	color: #1a5abf;
	position: relative;
	transition: background .15s, color .15s, padding-left .15s;
}
.sitemap .sitemap-block a::before {
	content: '';
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #f7a240;
}
.sitemap .sitemap-block a:hover {
	background: #f5f7fc;
	color: #e8530a;
	padding-left: 40px;
	text-decoration: none;
}

/* 現在ページ（グレーテキスト） */
.sitemap .sitemap-block b.text-grey {
	color: #999;
	cursor: default;
	font-weight: 400;
}
.sitemap .sitemap-block b.text-grey::before {
	content: '';
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #ccc;
}

/* サブリスト */
.sitemap .sitemap-sublist {
	margin: 0;
	padding: 0 0 4px 0;
	list-style: none;
	background: #fafbfd;
	border-top: 1px dashed #e4e7ef;
}
.sitemap .sitemap-sublist li {
	border-bottom: 1px solid #f0f1f5;
	padding-left: 0;
}
.sitemap .sitemap-sublist li::before {
	display: none;
}
.sitemap .sitemap-sublist li a {
	padding-left: 48px;
	font-size: 12.5px;
	color: #4a6ea8;
}
.sitemap .sitemap-sublist li a::before {
	content: '└';
	position: absolute;
	left: 28px;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	height: auto;
	border-radius: 0;
	background: none;
	font-size: 11px;
	color: #aab;
}
.sitemap .sitemap-sublist li a:hover {
	padding-left: 52px;
	color: #e8530a;
}

/* 全幅ブロック */
.sitemap .sitemap-full {
	grid-column: 1 / -1;
}

@media screen and (max-width: 768px) {
	.sitemap .sitemap-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}