/* ============================================================
   sitemap.css  —  /sitemap/ ページ専用スタイル
   ============================================================ */

/* ---------- page-title 背景色 ---------- */
.sitemap-page .page-title {
	background: #D9EDF5;
}

/* ---------- グリッド: 2カラム ---------- */
.sitemap-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 60px;
	align-items: start;
}

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

/* ---------- セクション ---------- */
.sitemap-section {
	margin-bottom: 40px;
}

.sitemap-section__title {
	font-size: 18px;
	font-weight: 700;
	color: #222;
	margin: 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #008977;
}

/* h2 自体がリンクになるケース（NEWS / お気に入り / お問合せ） */
.sitemap-section__title--link a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: inherit;
	text-decoration: none;
}

.sitemap-section__title--link a::after {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	background-image: url(../images/common/circle-arrow-grn.png);
	background-repeat: no-repeat;
	background-size: 28px 28px;
	flex-shrink: 0;
}

.sitemap-section__title--link:hover {
	opacity: 0.75;
}

/* ---------- リンクリスト ---------- */
.sitemap-list {
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
}

.sitemap-list__item a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 4px;
	text-decoration: none;
	color: #333;
	font-size: 15px;
	transition: color 0.2s, background-color 0.2s;
}

.sitemap-list__item a:hover {
	color: var(--key-blue);
	background-color: var(--bg-light02);
}

/* ---------- リスト内テキスト ---------- */
.sitemap-list__item a > span:first-child {
	font-weight: 700;
}

/* ---------- 矢印アイコン「→」（内部リンク） ---------- */
.sitemap-arrow {
	display: inline-block;
	flex-shrink: 0;
	width: 18px;
	height: 10px;
	margin-left: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10' fill='none' stroke='%230077B1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='0' y1='5' x2='15' y2='5'/%3E%3Cpolyline points='11,1 17,5 11,9'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* ---------- 外部リンクアイコン（↗）---------- */
.sitemap-external {
	display: inline-block;
	flex-shrink: 0;
	width: 13px;
	height: 13px;
	margin-left: 10px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230077B1' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h9a1 1 0 0 0 1-1v-3'/%3E%3Cpath d='M10 2h4v4'/%3E%3Cline x1='14' y1='2' x2='7' y2='9'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}

/* ---------- SP 調整 ---------- */
@media (max-width: 768px) {
	.sitemap-section__title {
		font-size: 16px;
	}

	.sitemap-list__item a {
		font-size: 14px;
		padding: 11px 4px;
	}
}
