/*와이드 모니터*/
@media only screen and (min-width: 795px) and (max-width: 1336px) {
    .sitemap {
        width: 795px;
    }
    .infoWrap > ul > li:first-of-type~li {
        font-size: 14px;
        line-height: 60px;
        border: 1px solid #ddd;
        margin: 20px 5px 20px 5px;
    }
}

/*태블릿*/
@media only screen and (min-width: 496px) and (max-width: 794px) {
    .sitemap {
        width: calc(100% - 30px);
    }
    .sitemap > h2 {
        font-size: 24px;
        line-height: 50px;
    }
    .infoWrap {
        width: 100%;
        overflow: hidden;
    }
    .infoWrap > ul {
        width: 100%;
        overflow: hidden;
    }
    .infoWrap > ul > li:first-of-type {
        font-size: 20px;
        border: none;
        float: left;
        width: 30%;
    }
    .infoWrap > ul > li:first-of-type~li {
        float: left;
        width: 60%;
    }
    
    .infoWrap > ul:nth-of-type(2) > li:first-of-type{
        height: 204px;
    }
    .infoWrap > ul:nth-of-type(3) > li:first-of-type{
        height: 408px;
    }
    .infoWrap > ul:nth-of-type(4) > li:first-of-type{
        height: 408px;
    }
    .infoWrap > ul:nth-of-type(5) > li:first-of-type{
        height: 204px;
    }
}

/*모바일*/
@media only screen and (max-width: 495px) {
    .sitemap {
        width: calc(100% - 30px);
    }
    .sitemap > h2 {
        font-size: 24px;
        line-height: 50px;
    }
    .infoWrap {
        width: 100%;
        overflow: hidden;
    }
    .infoWrap > ul {
        width: 100%;
        overflow: hidden;
    }
    .infoWrap > ul > li:first-of-type {
        font-size: 20px;
        border: none;
        float: left;
        width: 39%;
    }
    .infoWrap > ul > li:first-of-type~li {
        float: left;
        width: 50%;
        margin: 20px 10px 10px 10px;
        font-size: 14px;
    }
    
    .infoWrap > ul:nth-of-type(2) > li:first-of-type{
        height: 204px;
    }
    .infoWrap > ul:nth-of-type(3) > li:first-of-type{
        height: 408px;
    }
    .infoWrap > ul:nth-of-type(4) > li:first-of-type{
        height: 408px;
    }
    .infoWrap > ul:nth-of-type(5) > li:first-of-type{
        height: 204px;
    }
}