.sitemapArea {
    margin-top: 30px;
}

.sitemap {
    border-bottom: 1px #b5b5b5 dashed;
    margin-bottom: 30px;
}

.sitemapTit {
    font-weight: bolder;
    font-size: clamp( .9375rem, 2.2667vw, 1.0625rem ) /* 15px 17px */
    font-family: var(--mandarin_font2);
}

.sitemapTit a {
    color: #7d6c64;
    text-decoration: none;
}

.sitemapBottom {
    padding: 10px 0;
}

.sitemapList {
    float: left;
    width: 20%;
    box-sizing: border-box;
    margin-right:30px;
    padding: 10px 0px;
}

.sitemapList a {
    color: #424242;
    font-size: clamp( .75rem, 2vw, .9375rem ); /* 12px 15px */
    display: block;
    text-decoration: none;
}

.sitemapList a:hover {
    opacity: 0.5;
}


@media (max-width: 990px) {
    .sitemapList {
        width: 24.9%;
    }
}

@media (max-width:768px) {
    .sitemapList {
        width: 33.3%;
    }
}

@media (max-width:510px) {
    .sitemapList {
        width: 49.9%;
    }
}

@media (max-width:320px) {
    .sitemapList {
        float: none;
        width: 100%;
    }
}