.sitemap ul {
    margin-left:0;
    gap:40px 60px;
}
.sitemap ul li {
	list-style:none;
	margin-left:0;
    padding-bottom:40px;
    border-bottom:solid 1px var(--color-gray);
}
.sitemap ul li:nth-of-type(odd) {
	text-align:right;
}

/** Media Query **/
@media (max-width : 920px) {

}
@media (max-width : 520px) {
    .sitemap ul li:nth-of-type(odd) {
        text-align:left;
    }
}