/* section1 */

.s1{
    width: 100%;
    height: 60vh;
    background: url(../images/sitemap_main.png) no-repeat;
    position: relative;
}

.s1 h1{
    position: absolute;
    top: 70%;
    left: 5%;
    color: white;
    font-family: 'S-CoreDream-6Bold';
    font-size: 5rem;
}

/* section2 */

.s2{
    margin-top: 10rem;
}

.s2_content{
    display: flex;
    margin-bottom: 10rem;
}

.s2_4dot{
    flex: 1;
    padding-top: 10px;
}

.s2_text{
    flex: 8;
    font-size: 3rem;
    font-family: 'S-CoreDream-5Medium';
}

/* section3 */
.s3{
    padding: 5rem 0px;
}

.sitemap{
    margin-bottom: 5rem;
    border-top: 3px solid rgba(1, 1, 1, 0.5);
    padding-top: 3rem;
}

.sitemap .sitemap_title{
    font-family: 'S-CoreDream-5Medium';
    font-size: 3rem;
}

.sitemap .sitemap_title .sitemap_content li{
    font-family: 'S-CoreDream-4Regular';
    font-size: 2rem;
    padding-top: 3rem;
    padding-left: 5rem;
}

/* 반응형 */

@media (max-width: 768px){
    .s2_4dot{
        display: none;
    }

    .s2_text{
        text-align: center;
    }
}

@media (max-width: 480px){
    .s3{
        padding: 0px 10px;
        box-sizing: border-box;
    }
}