@charset "UTF-8";
/*-----------------------サイトマップ*/
.sitemap .list_link {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.sitemap .list_link li {
	width: 31%;
	border-bottom: 1px dashed #bc9c80;
}
.sitemap .list_link li a {
	display: flex;
	align-items: center;
	padding: 1.5em 30px 1.5em 0;
	transition: .3s;
	position: relative;
}
.sitemap .list_link li a::after {
	content: "";
	display: block;
	width: 9px;
	height: 15px;
	background-image: url("../img/common/arrow_b_r.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s;
}
.sitemap .list_link li a:hover {
	padding: 1.5em 30px 1.5em 8px;
	background-color: #fffcee;
}
.sitemap .list_link li a:hover::after {
	right: 5px;
}
@media screen and (max-width: 768px) {
	.sitemap .list_link li {
		width: 48%;
	}
	.sitemap .list_link li a::after {
		width: 6px;
		height: 10px;
	}
}
@media screen and (max-width: 480px) {
	.sitemap .list_link {
		flex-direction: column;
	}
	.sitemap .list_link li {
		width: 100%;
	}
}



