@charset "utf-8";
/* CSS Document */

.sitemap {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	margin: 10px -40px 0 0;
}
.sitemap > ul {
	width:calc(100% / 3 - 40px);
	margin-right:40px;
	margin-bottom:40px;
	border-top:#EAEAEA solid 1px;
}
.sitemap > ul:nth-child(3n) {
	margin-right: 0;
}
.sitemap li{
	border-bottom:#EAEAEA solid 1px;
	padding:.5em 0;
}
.sitemap li li{
	border-bottom:none;
	margin-left:1em;
}
.sitemap li li:before{
	content:"\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-left:1rem;
}
.sitemap li a{
	padding-left:1rem;
}
@media screen and (max-width: 420px) {
	.sitemap {
		margin: 10px -40px 20px 0;
	}
	.sitemap > ul {
		width:calc(100% / 1 - 40px);
		margin-right:0;
		margin-bottom:0;
		border-top:none;
	}
	.sitemap > ul:first-child {
		border-top:#EAEAEA solid 1px;
	}
}