.sitemapList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
}

.sitemapList .c-link {
    width: 25%;
    margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
    .sitemapList .c-link {
        width: 25%;
    }
}
/*
@media screen and (max-width: 1023px) and (min-width: 768px) {
    .sitemapList .c-link {
        width: 50%;
    }
}
*/
@media screen and (max-width: 767px) {
    .sitemapList .c-link {
        width: 100%;
    }
}

.sitemapList:after {
    content: '';
    display: block;
}

@media screen and (min-width: 768px) {
    .sitemapList:after {
        width: 25%;
    }
}
/*
@media screen and (max-width: 1023px) and (min-width: 768px) {
    .sitemapList:after {
        width: 50%;
    }
}
*/
@media screen and (max-width: 767px) {
    .sitemapList:after {
        width: 100%;
    }
}

.sitemapList:before {
    content: '';
    display: block;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

@media screen and (min-width: 768px) {
    .sitemapList:before {
        width: 25%;
    }
}
/*
@media screen and (max-width: 1023px) and (min-width: 768px) {
    .sitemapList:before {
        width: 33.3%;
    }
}
*/
@media screen and (max-width: 767px) {
    .sitemapList:before {
        width: 100%;
    }
}
