/* Sitemap Page */
/* sitemap main */
main article .entry-content .sitemap-main {
    background-color: #EEEEEE;
    border: 1px solid #D0D4CA;
    padding: 0 20px;
}

/* margin page and post */
main article .entry-content .sitemap-main .sitemap-page,
main article .entry-content .sitemap-main .sitemap-post {
    margin: 20px 0 30px;
}

/* h2 page and post */
main article .entry-content .sitemap-main h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 30px 0 10px;
}

/* h3 page and post */
main article .entry-content .sitemap-main h3 {
    font-size: 16px;
    background-color: #5BB318;
    padding: 5px 10px;
    color: #F3F3F3;
    margin: 0 0 10px;
    border-radius: 3px;
    box-shadow: 6px 6px 3px 0px #D0D4CA;
}

main article .entry-content .sitemap-main h3 a {
    color: #F3F3F3;
    text-decoration: underline;
}

main article .entry-content .sitemap-main h3 a:hover {
    color: #222831;
}

/* ol page and post */
main article .entry-content .sitemap-main ol {
    margin: 0 0 1em 2.25em;
}

main article .entry-content .sitemap-main li {
    border-bottom: 1px dotted #D0D4CA;
    line-height: 1.4;
    padding: 5px 0;
}

main article .entry-content .sitemap-main li a {
    font-size: 14px;
}

/* margin for purpose and category */
.sitemap-main>.sitemap-page .page-by-purpose {
    margin: 20px 0 35px;
}

.sitemap-main>.sitemap-post .post-by-category {
    margin: 20px 0;
}

/* map body */
.sitemap-main>.sitemap-post .map-body-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sitemap-main>.sitemap-post .map-body-wrapper .map-body {
    width: 48%;
}

/*  responsive for 767px  */
@media (max-width: 767px) {

    /* Sitemap Page */
    /* sitemap main */
    main article .entry-content .sitemap-main {
        padding: 0 20px 20px;
    }

    /* ol page and post */
    main article .entry-content .sitemap-main ol {
        margin: 0 0 0 2.25em;
    }

    /* margin for purpose and category */
    .sitemap-main>.sitemap-page .page-by-purpose {
        margin: 20px 0;
    }

    /* map body */
    .sitemap-main>.sitemap-post .map-body-wrapper {
        flex-direction: column;
    }

    .sitemap-main>.sitemap-post .map-body-wrapper .map-body {
        width: 100%;
    }
}