@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/bg01.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: 4rem 0;
}

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

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

.content .item {
    width: calc(50% - 32px);
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    position: relative;
}

.content .item::after {
    content: '';
    width: 300px;
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
}

.content .item>h5 {
    font-size: 1.2rem;
}

.content .item .img {
    width: 100%;
    height: 230px;
    background-color: #f3f3f3;
    overflow: hidden;
}

.content .item .img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

.content .item>ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.content .item>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;
    }
    
    .content .items {
        gap: 2rem 1rem;
    }

    .content .item {
        width: calc(50% - 8px);
    }

    .content .item .img {
        height: auto;
    }

}






@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;
    }

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

    .content .item {
        width: 100%;
        gap: 10px;
    }

    .content .item::after {
        width: 60px;
    }

    .content .item>h5 {
        font-size: 1.1rem;
    }

    .content .item .img {
        height: auto;
    }

}