@charset "utf-8";
.sitemap_home{margin-bottom: 0;}
.sitemap_home a{color: #333 !important;}
.sitemap_col{
	display: grid;
	grid-template-columns:repeat(auto-fit, calc((100% - 35px) / 2));
	gap: 0 35px;
}
.sitemap_list{
	padding: 0;
	margin: 0;
}
.sitemap_item{
	list-style: none;
	line-height: 2.4rem;
}
.sitemap_item:last-child{margin-bottom: 0;}
.sitemap_link{
	display: inline-block;
	color: #333 !important;
	position: relative;
	overflow: hidden;
	padding-left: 15px;
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: 0.8px;
}
.sitemap_link::before {
	position: absolute;
	content: '';
	width: 6px;
	height: 1px;
	background: #333;
	top: 12px;
	left: 0;
}

@media screen and (max-width:767px){
.sitemap_col{
	grid-template-columns:repeat(1, 1fr);
}
.sitemap_item{
	line-height: 2rem;
	margin-bottom: 8px;
}
.sitemap_link{
	font-size: 1.4rem;
	letter-spacing: 0.7px;
}
.sitemap_link::before{top: 10px;}
}