@charset "utf-8";

/*===============================================================

sitemap

=================================================================*/

#sitemap {
	width:90%;
	max-width:800px;
	margin:0 auto;
	margin-top:4rem;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	-moz-justify-content:space-between;
	-ms-justify-content:space-between;
	justify-content:space-between;
}

#sitemap ul > li {
	position:relative;
	padding-left:1.2em;
}

#sitemap ul > li:before {
	display:inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f061";
	position:absolute;
	top:0.3em;
	left:0;
	color:#4E4E4E;
}

#sitemap ul > li + li {
	margin-top:2rem;
}

#sitemap ul.child li {
	margin-top:0.2em;
	position:relative;
	padding-left:1em;
}

#sitemap ul.child li:before {
	display:block;
	content:'・';
	position:absolute;
	top:0;
	left:0;
}



#sitemap a {
	color:#004DA0;
	text-decoration:underline;
}

#sitemap a:hover {
	opacity:0.8;
}

@media screen and (max-width:680px){
	#sitemap ul {
		width:100%;
	}
	
	#sitemap > ul + ul {
		margin-top:2rem;
	}
}