@charset "utf-8";

#sitemap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
#sitemap ul {
	list-style: none;
	position: relative;
}

#sitemap ul li a {
	font-weight: 500;
	font-size: 1.2em;
	position: relative;
}
#sitemap ul li ul:first-of-type {
	padding-top: 0.5em;
}
#sitemap ul li ul:first-of-type a {
	font-size: 1em;
}
#sitemap ul li ul:first-of-type a::before {
    content: "";
    display: block;
    width: 1em;
    height: 2px;
    border-radius: 2px;
    background-color: #3a8ecb;
    position: absolute;
    left: -1.2em;
    top: 0.75em;
}

@media screen and (max-width: 768px){
	#sitemap ul {
		width: 100%;
		padding-left: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	#sitemap ul li ul:first-of-type {
		padding-left: 2em;
		width: calc( 100% - 2em );
	}
}
