@charset "UTF-8";
/*-----------------------サイトマップ*/
.section_mv.mv_sitemap {
	background-image: url("../img/sitemap/bg_mv.jpg");
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
#sitemap {
	position: relative;
}
#sitemap .section_inner.fadeIn {
	position: relative;
	top: 30px;
	opacity: 0;
	transition: 2s;
}
#sitemap .section_inner.fadeIn.active {
	top: 0;
	opacity: 1;
}
#sitemap .box_wrap {
	display: flex;
	justify-content: space-between;
}
#sitemap .box_wrap .box {
	width: 48%;
}
#sitemap .box_wrap .box ul li {
	border-bottom: 1px solid #ddc7c7;
}
#sitemap .box_wrap .box ul li:first-child {
	border-top: 1px solid #ddc7c7;
}
#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 {
	content: "";
	width: 10px;
	height: 10px;
	border-right: 2px solid #261a14;
	border-top: 2px solid #261a14;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s;
}
#sitemap .box_wrap .box ul li a:hover {
	color: #933228;
}
#sitemap .box_wrap .box ul li a:hover::before {
	right: 10px;
	border-right: 2px solid #933228;
	border-top: 2px solid #933228;
}
@media screen and (max-width: 768px) {
	#sitemap .box_wrap {
		flex-direction: column;
	}
	#sitemap .box_wrap .box {
		width: 100%;
	}
	#sitemap .box_wrap .box:nth-child(2) ul li:first-child {
		border-top: none;
	}
	#sitemap .box_wrap .box ul li a {
		padding: 1.5em;
		position: relative;
	}
}


