@charset "utf-8";

.sitemap-content{
    margin: 0 auto;
    max-width: 1080px;
}

.sitemap-item{
    margin: 10px;
    padding: 10px 0 10px 15px;
    width: 250px;
    border: 2px solid #333;
    border-radius: 10px;
    box-shadow: 0 0 8px gray;
}

.sitemap-header{
    margin-bottom: 5px;
    padding-left: 5px;
    border-left: 4px solid #00A556;
    font-size: 1.4rem;
    font-weight: 600;
}

.sitemap-body-list{
    margin-left: 10px;
}

.sitemap-body-item{
    font-weight: 500;
}

.sitemap-header>a:hover,.sitemap-body-item>a:hover{
    opacity: 0.5;
}

@media screen and (max-width: 586px) {
    .sitemap-content{
        max-width: 270px;
    }
}