@charset "UTF-8";
/*-----------------------サイトマップ*/
.section_mv #sitemap.mv_inner {
	background-image: url("../img/sitemap/main_v.jpg");
}
.sitemap {
	overflow: hidden;
}
.sitemap .box_wrap {
	display: flex;
	justify-content: space-between;
}
.sitemap .box_wrap .box {
	width: 31%;
}
.sitemap .box_wrap .box ul li {
	border-bottom: 1px dashed #cccccc;
}
.sitemap .box_wrap .box ul li a {
	display: block;
	padding: 2em 1.5em;
	position: relative;
	transition: .3s;
}
.sitemap .box_wrap .box ul li a::before {
	font-family: 'Material Icons';
  content: "east";
	position: absolute;
	right: 1.5em;
	transition: .3s;
}
.sitemap .box_wrap .box ul li a:hover {
	color: #007850;
}
.sitemap .box_wrap .box ul li a:hover::before {
	right: 1em;
	color: #007850;
}
@media screen and (max-width: 768px) {
	.sitemap .box_wrap {
		flex-direction: column;
	}
	.sitemap .box_wrap .box {
		width: 100%;
	}
	.sitemap .box_wrap .box ul li a {
		padding: 1.5em;
		position: relative;
	}
}

