@charset "utf-8";

#sitemap {
    .wrap {
        padding-bottom:120px;
        .contents {
            display:grid;
            justify-content:center;
            ul {
                font-size:1.8rem;
                ul {
                    padding-left:2em;
                    padding-right:2em;
                    padding-top:1.5em;
                    display:grid;
                    grid-template-columns:repeat(2,auto);
                    grid-gap:1em 3em;
                    li {
                        &:nth-child(1) {
                            order:0;
                        }
                        &:nth-child(2) {
                            order:2;
                        }
                        &:nth-child(3) {
                            order:4;
                        }
                        &:nth-child(4) {
                            order:1;
                        }
                        &:nth-child(5) {
                            order:3;
                        }
                        &:nth-child(6) {
                            order:5;
                        }
                    }
                }
                li {
                    line-height:1.33;
                }
            }
        }
    }
}

@media screen and (max-width:1200px){

}

@media screen and (max-width:1024px){
}

@media screen and (max-width:768px){
    
    #sitemap {
        .wrap {
            padding-bottom:90px;
            .contents {
                ul {
                    font-size:1.5rem;
                    ul {
                        padding-left:1em;
                        padding-right:1em;
                        grid-gap:1em 2em;
                    }
                }
            }
        }
    }
    
}