@charset "utf-8";

/*
 * File       : common.css
 * Author     : YONG
 *
 * 최종수정일 : 25/00/00
 *
 * SUMMARY:
 * 서브페이지.CSS
 */

/* 
■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■ PC ■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■
*/

.main {
    width: 100%;
    height: auto;
}

.bg__wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.bg {
    width: 100%;
    height: 100%;
    background-image: url(../img/bg03.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.bg .title {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 5rem 0 0;
}

.bg .title>h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 10px;
}

.bg .title>p {
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
}


/*  */
.content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.content>.inner {
    width: 100%;
    height: auto;
}

.content .items {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.content .item {
    width: calc(50% - 16px);
    height: auto;
}

.content .item .img {
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.content .item .img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content .item .img:hover img {
    transform: scale(1.1);
}

.content .item .txt {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.content .item .txt > h3 {
    font-size: 1.1rem;
    color: #394250;

}
.content .item .txt > ul > li {
    font-size: 1rem;
    color: #595959;
}





@media screen and (min-width: 768px) and (max-width: 1200px) {

    /* 
    ■■■■■■■■■■■■■■■■■■■■■
    ■■■■■■■■ 태블릿 ■■■■■■■■
    ■■■■■■■■■■■■■■■■■■■■■
    */

    body {
        padding-top: 140px;
    }

    /*  */
    .bg__wrap {
        height: 200px;
    }

    .bg .title {
        padding: 0;
    }

    /*  */
    .content {
        padding: 2rem 1rem;
    }

}






@media screen and (max-width: 767px) {

    /* 
    ■■■■■■■■■■■■■■■■■■■■■
    ■■■■■■■■ 모바일 ■■■■■■■■
    ■■■■■■■■■■■■■■■■■■■■■
    */

    body {
        padding-top: 70px;
    }

    /*  */
    .bg__wrap {
        height: 200px;
    }

    .bg {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }

    .bg .title {
        position: static;
        transform: none;
        padding: 0;
    }

    .bg .title > h2 {
        font-size: 1.2rem;
    }

    .bg .title > p {
        font-size: 0.95rem;
        word-break: keep-all;
    }

    /*  */
    .content {
        padding: 1rem 1rem 2rem;
    }
    
    .content .items {
        gap: 2rem 0;
    }

    .content .item {
        width: 100%;
    }

}