@charset "UTF-8";
/*---------------サイトマップ*/
.sitemap {
	position: relative;
}
.sitemap .sitemap_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.sitemap .sitemap_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.sitemap .sitemap_wrap .col4 {
	width: 24%;
}
.sitemap .sitemap_wrap .col4 ul li {
	margin-bottom: 1.2em;
}
.sitemap .sitemap_wrap .col4 ul li a {
	display: block;
	color: #565656;
	font-size: 1.5rem;
	font-weight: 600;
	padding-left: 1em;
	position: relative;
	transition: .3s;
}
.sitemap .sitemap_wrap .col4 ul li a::before {
	content: "";
	display: block;
	width: 0.5em;
	height: 0.5em;
	border-right: 2px solid #1e73be;
	border-bottom: 2px solid #0f64c8;
	transform: rotate(-45deg);
	position: absolute;
	left: 0;
	top: 0.75em;
}
.sitemap .sitemap_wrap .col4 ul li a:hover {
	color: #0f64c8;
}
.sitemap .sitemap_wrap .col4 ul li ul.link_child {
	padding-left: 1em;
}
.sitemap .sitemap_wrap .col4 ul li ul.link_child li {
	padding: 0;
	margin-top: 0.7em;
	margin-bottom: 0.7em;
}
.sitemap .sitemap_wrap .col4 ul li ul.link_child li a {
	font-weight: 400;
	padding-left: 1.2em;
}
.sitemap .sitemap_wrap .col4 ul li ul.link_child li a::before {
	content: "";
	display: block;
	width: 0.7em;
	height: 1px;
	background-color: #1e73be;
	border-right: none;
	border-bottom: none;
	transform: none;
	position: absolute;
	left: 0;
	top: 1em;
}
@media screen and (max-width: 768px) {
	.sitemap .sitemap_wrap .col4 {
		width: 48%;
	}
	.sitemap .sitemap_wrap .col4 ul li a {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 480px) {
	.sitemap .sitemap_wrap {
		flex-direction: column;
	}
	.sitemap .sitemap_wrap .col4 {
		width: 100%;
	}
}


