@charset "UTF-8";

/* サイトマップ */
#sitemap-block {
	margin: 80px auto;
}

#sitemap-block .content {
	max-width: 640px;
	margin: 0 auto;
}

#sitemap-block .list > li {
	padding: 30px 0;
	border-bottom: 1px solid var(--color_gray02);
	display: flex;
	justify-content: space-between;
	gap: 10px 0;
}

#sitemap-block .list .item {
	font-size: 18px;
	line-height: 1.5;
	font-weight: var(--fw_jp_bold);
	width: 55%;
}

#sitemap-block .list-child {
	line-height: 1.5;
	font-weight: var(--fw_jp_bold);
	width: 45%;
	padding-left: 1em;
}

#sitemap-block .list-child > li {
	padding: 5px 0;
}

#sitemap-block .list a {
	color: var(--color_black);
	text-decoration: none;
	display: block;
	position: relative;
	padding-left: 1em;
}

#sitemap-block .list a:hover {
	color: var(--color01);
}

#sitemap-block .list a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(45deg);
	-webkit-transform: translateY(-50%) rotate(45deg);
	-moz-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	-o-transform: translateY(-50%) rotate(45deg);
	width: 0.4em;
	height: 0.4em;
	border: 1px solid currentColor;
	border-bottom: none;
	border-left: none;
}



/* スマートフォン用 - ブレイクポイント768 */
@media screen and (max-width: 768px) {

	/* サイトマップ */
	#sitemap-block {
		margin: 60px auto;
	}

	#sitemap-block .content {
		max-width: 480px;
	}

	#sitemap-block .list > li {
		padding: 20px 0;
		flex-direction: column;
	}

	#sitemap-block .list .item {
		font-size: 16px;
		width: 100%;
	}

	#sitemap-block .list-child {
		width: 100%;
	}

}