@charset "utf-8";

/*
 * File       : common.css
 * Author     : YONG
 *
 * 최종수정일 : 25/00/00
 *
 * SUMMARY:
 * 통합.CSS
 */

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

.sc_ins .title {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 700;
}

.sc_ins .inner {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
}

.sc_ins.title {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
}

.sc_ins {
    width: 100%;
    height: auto;
    padding: 50px 0;
    padding-top: 50px;
    padding-right: 0px;
    padding-bottom: 50px;
    padding-left: 0px;
    display: none;
}

.mw-1200 {
    max-width: 1200px;
}

.blind {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

.hide {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.5rem;
    color: #fff;
}

.color--red {
    color: #ed3722 !important;
}

.pc__br {
    display: block;
}

.m__br {
    display: none;
}

/*  */
.header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    background-color: #fff;
    border-bottom: 2px solid #18a2a5;
}

.header>.inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 230px;
    height: auto;
    object-fit: contain;
}

.nav {
    width: 180px;
    height: auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.nav > p {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.nav > p > img {
    width: 12px;
    height: auto;
    object-fit: contain;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.nav > p.active > img {
    transform: rotate(-180deg);
    margin-bottom: 0;
}

.drop__nav {
    width: 100%;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 35px;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    overflow: hidden;
    padding: 1rem;
    z-index: 99;
}

.drop__nav.active {
    display: flex;
}

.drop__nav > li {
    width: 100%;
    height: auto;
}

.drop__nav > li > a {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    border-radius: 0.5rem;
    padding: 10px 1rem;
}

.drop__nav > li > a:hover {
    background-color: #d8f1f1;

}


.call>a {
    font-size: 1rem;
    font-weight: 600;
}

.call>a>span {
    color: #555;
}



/*  */
.notice__open {
    font-weight: 400;
    color: cornflowerblue;
    text-decoration: underline;
    cursor: pointer;
}

.notice__modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 70%);
    display: none;
}

.notice__modal.active {
    display: block;
}

.notice__modal>.inner {
    width: 40%;
    height: 80%;
    background-color: #fff;
    border-radius: 0.2rem;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 10%);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
}

.notice__close {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
    padding: 1.5rem;
}

.notice__close img {
    width: 20px;
    height: 20px;
}

.notice__txt {
    width: 100%;
    height: calc(100% - 90px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: scroll;
    padding: 0 2rem 3rem 2rem;
}

.notice__txt>h4 {
    font-size: 1rem;
}

.notice__txt>p {
    font-size: 0.9rem;
}

.notice__txt>ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notice__txt>ul>li {
    font-size: 0.9rem;
}

.notice__txt>ul>li>h5 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.notice__txt>ul>li>p {
    font-size: 0.9rem;
}



/*  */
.fixed__stuff {
    width: 70px;
    height: auto;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 998;
    display: none;
}

.fixed__stuff.active {
    display: block;
}

.cs__btn {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    margin-bottom: 5px;
    background-color: #18a2a5;
    color: #fff;
    border-radius: 0.2rem;
    cursor: pointer;
}

.top__btn {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #444;
    border-radius: 0.2rem;
    cursor: pointer;
}

.top__btn img {
    width: 14px;
    height: auto;
    object-fit: contain;
}

/*  */
.footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
}

.ft__btn {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    padding: 0 0 1rem;
}

.ft__btn>.inner {
    width: 100%;
    height: auto;
    display: flex;
}

/*  */
.footer>.inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
}

.ft__logo {
    width: 130px;
    height: auto;
}

.footer ul li {
    font-size: 0.9rem;
}

/*  */
.essential__open {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    border: 1px solid #555;
    border-radius: 0.5rem;
    padding: 10px 1rem;
    cursor: pointer;
}

.essential__modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 70%);
    display: none;
}

.essential__modal.active {
    display: block;
}

.essential__modal>.inner {
    width: 40%;
    height: 80%;
    background-color: #fff;
    border-radius: 0.2rem;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 10%);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.essential__close {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
    padding: 1.5rem;
}

.essential__close img {
    width: 20px;
    height: 20px;
}

.essential__txt {
    width: 100%;
    height: calc(100% - 90px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: scroll;
    padding: 0 2rem 3rem 2rem;
}

.essential__txt>h4 {
    font-size: 1rem;
}

.essential__list.list1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.essential__list.list1 li {
    font-size: 0.9rem
}

.essential__list.list2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.essential__list.list2 li>h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.essential__list.list2 li>p {
    font-size: 0.9rem;
}

.essential__list.list2 li>.bold {
    font-weight: 500;
    margin-bottom: 10px;
}

.essential__list.list2 li>ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.essential__list.list2 li>ul>p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.essential__list.list2 li>ul>li {
    font-size: 0.9rem;
    color: #444;
}

.essential__warning {
    background-color: #eee;
    padding: 1rem;
}

.essential__warning ul li {
    font-weight: 500;
}


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

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

    .pc__br {
        display: block;
    }

    .m__br {
        display: none;
    }

    .header {
        padding: 0 1rem;
    }

    /*  */
    .ft__btn {
        padding: 0 1rem 1rem;
    }

    .footer>.inner {
        padding: 2rem 1rem;
    }

    /*  */
    .notice__modal>.inner {
        width: 80%;
        height: 80%;
    }

    .essential__modal>.inner {
        width: 80%;
        height: 80%;
    }

}






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

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

    .pc__br {
        display: none;
    }

    .m__br {
        display: block;
    }

    .header {
        height: 70px;
        padding: 0 1rem;
    }

    .logo img {
        width: 172px;
    }

    .nav {
        width: fit-content;
        position: static;
    }

    .nav > p {
        font-size: 1rem;
    }

    .drop__nav {
        top: 70px;
        border-radius: 0;
    }

    .call {
        display: none;
    }

    /*  */
    .fixed__stuff {
        width: 50px;
        right: 10px;
    }


    /*  */
    .ft__btn {
        padding: 0 1rem 1rem;
    }

    .footer>.inner {
        padding: 2rem 1rem;
    }

    /*  */
    .notice__modal>.inner {
        width: 90%;
        height: 90%;
    }

    .essential__modal>.inner {
        width: 90%;
        height: 90%;
    }

}