@charset "UTF-8";
/*-----------------------------------

	sitemap_block

-----------------------------------*/
#sitemap_block {
	padding: 100px 0 120px;
}
#sitemap_block .sitemap_wrapper li {
	width: calc((100% - 20px) / 2);
}
#sitemap_block .sitemap_wrapper li:not(:last-of-type) {
	margin-bottom: 18px;
}
#sitemap_block .sitemap_wrapper li a {
	font-size: 18px;
	font-weight: 500;
	padding-left: 26px;
	position: relative;
}
#sitemap_block .sitemap_wrapper li a::before {
	content: '';
	display: block;
	background: url(../img/common/icon_arw_rt_bk.svg) no-repeat center center / contain;
	width: 14px;
	height: 16px;
	margin: auto;
	position: absolute;
	top: 11px;
	left: 0;
	z-index: 1;
	transition: 0.3s;
}
#sitemap_block .sitemap_wrapper li a:hover::before {
	left: 8px;
}
@media screen and (max-width: 640px) {
	#sitemap_block {
		padding: 40px 0 60px;
	}
	#sitemap_block .sitemap_wrapper li {
		width: 100%;
	}
	#sitemap_block .sitemap_wrapper li:not(:last-of-type) {
		margin-bottom: 15px;
	}
	#sitemap_block .sitemap_wrapper li a {
		font-size: 15px;
		padding-left: 20px;
	}
	#sitemap_block .sitemap_wrapper li a::before {
		width: 11px;
		height: 13px;
		top: 7px;
	}
}

