@charset "UTF-8";
/*-------------------------------------サイトマップ*/
.section_kv #sitemap.kv_inner {
	background-image: url("../img/sitemap/img_kv.jpg");
	background-position: left center;
}
.sitemap {
	overflow: hidden;
}
.sitemap .sitemap_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 800px;
	margin: 0 auto;
}
.sitemap .sitemap_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.sitemap .sitemap_wrap .col2 {
	width: 48%;
}
.sitemap .sitemap_wrap .col2 ul li {
	padding: 1.5em 1em;
	border-bottom: 1px solid #cccccc;
}
.sitemap .sitemap_wrap .col2 ul li:first-child {
	border-top: 1px solid #cccccc;
}
.sitemap .sitemap_wrap .col2 ul li a {
	display: block;
	color: #333333;
	font-size: 1.3rem;
	font-weight: 700;
	transition: .3s;
}
.sitemap .sitemap_wrap .col2 ul li a:hover {
	color: #b41e00;
}
@media screen and (max-width: 767px) {
	.sitemap .sitemap_wrap {
		flex-direction: column;
	}
	.sitemap .sitemap_wrap .col2 {
		width: 100%;
	}
	.sitemap .sitemap_wrap .col2:nth-child(2) ul li:first-child {
		border-top: none;
	}
	.sitemap .sitemap_wrap .col2 ul li a {
		font-size: 1.2rem;
	}
}



