@charset "utf-8";

#sitemap {
    .wrap {
        .contents {
            display:grid;
            justify-content:center;
            ul {
                ul {
                    padding-left:1.5em;
                    padding-top:.5em;
                }
                li {
                    line-height:1.33;
                    &:not(:last-child) {
                        margin-bottom:.75em;
                    }
                    &::before {
                        content:'・';
                        margin:0 .25em;
                        color:var(--color_main);
                    }
                }

                    a {
                        text-decoration: none!important;
                    }
            }
        }
    }
}

@media screen and (max-width:1200px){

}

@media screen and (max-width:1024px){
}

@media screen and (max-width:768px){
    
    #sitemap {
        .wrap {
            .contents {
                ul {
                    li {
                        font-size:1.4rem;
                    }
                } 
            }
        }
    }
    
}