@charset "utf-8";

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

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

.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;
    font-size: 0.5rem;
    color: #fff;
}

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

.color--purple {
    color: #e31f8f !important;
}

.color--gray {
    color: #555 !important;
}

.mb-1 {
    margin-bottom: 1rem;
}

.pc__br {
    display: block;
}

.m__br {
    display: none;
}



/*  */
.header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


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


/*  */
.nav {
    width: calc(100% - 250px - 2rem);
    height: auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.nav>.inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.nav>.inner>li {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    cursor: pointer;
}

.drop__nav {
    width: 100%;
    height: auto;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #e6e6e6;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    position: absolute;
    top: 79px;
    z-index: 9;
}

.drop__nav.active {
    display: flex;
}

.drop__nav>.inner {
    width: 100%;
    height: auto;
    display: flex;
    padding-left: 282px;
}

.drop__nav ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.drop__nav ul>li {
    width: 100%;
    font-size: 0.95rem;
    font-weight: 500;
}

.drop__nav ul>li.m--b {
    display: none;
}

.drop__nav ul>li>a {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.drop__nav ul>li>a:hover {
    background-color: #eceef3;
    border-radius: 5px;
}

/*  */
.m__menu {
    display: none;
    width: 24px;
    height: 20px;
}

.m__menu ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.m__menu ul li {
    width: 100%;
    height: 3px;
    background-color: #444;
    border-radius: 2rem;
    transition: all 0.3s ease;
    position: absolute;
}

.m__menu ul li:nth-of-type(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.m__menu ul li:nth-of-type(2) {
    top: 8px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.m__menu ul li:nth-of-type(3) {
    top: 16px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}


/* 웹킷 기반 브라우저 */
.modal__scrollbar ::-webkit-scrollbar {
    width: 6px;
}

.modal__scrollbar ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

.modal__scrollbar ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

.modal__scrollbar ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

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

.notice__modal.active {
    display: flex;
}

.notice__modal>.inner {
    width: 50%;
    height: 80%;
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 4rem 1rem 2rem 2rem;
    position: relative;
}

.notice__close {
    width: 22px;
    height: 22px;
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
}

.notice__close img {
    width: 100%;
    height: 100%;
}

.notice__txt {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    line-height: normal;
    overflow-y: auto;
    padding-right: 1rem;
}

.notice__txt .box>h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.notice__txt .box>ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notice__txt .box>ul>li {
    font-size: 0.9rem;
    text-indent: -10px;
    padding-left: 10px;
}

.notice__txt .box>h5 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.notice__txt .box>p {
    font-size: 0.9rem;
    color: #444;
}

/*  */
.fixed__stuff {
    width: 80px;
    height: auto;
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 10%);
    border-radius: 0.5rem;
    position: fixed;
    right: 1rem;
    bottom: 2rem;
    padding: 1rem;
}

.fixed__stuff.active {
    display: flex;
}

.fixed__call,
.fixed__cs,
.fixed__top,
.fixed__m {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.fixed__call img,
.fixed__cs img,
.fixed__top img,
.fixed__m img {
    width: 30px;
    height: auto;
    object-fit: contain;
}

.fixed__call span,
.fixed__cs span,
.fixed__top span,
.fixed__m span {
    font-weight: 600;
    color: #444;
    line-height: normal;
}

/*  */
.ft__btn {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #f6f7fb;
    padding: 1rem 0;
}

.ft__btn.sub {
    background-color: #fff;
}

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

.ft__btn button {
    font-size: 0.9rem;
    cursor: pointer;
}

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

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

.footer>.inner>ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

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

.essential__modal.active {
    display: flex;
}

.essential__modal>.inner {
    width: 50%;
    height: 80%;
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 4rem 1rem 2rem 2rem;
    position: relative;
}

.essential__close {
    width: 22px;
    height: 22px;
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
}

.essential__close img {
    width: 100%;
    height: 100%;
}

.essential__txt {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    line-height: normal;
    overflow-y: auto;
    padding-right: 1rem;
}

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

.essential__txt .box>ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.essential__txt .box>h5 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.essential__txt .box>p {
    font-size: 0.9rem;
    color: #444;
}

/*  */
.depositor__modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background-color: rgba(0, 0, 0, 70%);
}

.depositor__modal.active {
    display: flex;
}

.depositor__modal>.inner {
    width: 50%;
    height: auto;
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 4rem 1rem 2rem 2rem;
    position: relative;
}

.depositor__close {
    width: 22px;
    height: 22px;
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
}

.depositor__close img {
    width: 100%;
    height: 100%;
}

.depositor__txt {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    line-height: normal;
    overflow-y: auto;
    padding-right: 1rem;
}

.depositor__txt>h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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





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

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

    .pc__br {
        display: none;
    }

    .m__br {
        display: block;
    }

    .header>.inner {
        align-items: center;
        padding: 0 1rem;
    }

    .logo h1>img {
        width: 200px;
    }

    .m__menu {
        display: block;
    }

    /*  */
    .nav {
        display: none;
    }

    .drop__nav>.inner {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .drop__nav ul {
        gap: 10px;
        padding: 0;
    }

    .drop__nav ul>li.m--b {
        display: block;
        font-size: 1.1rem;
        font-weight: 700;
        color: #321471;
    }

    .drop__nav ul>li>a {
        font-size: 1rem;
        justify-content: flex-start;
        padding: 0;
    }


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

    /*  */
    .footer {
        padding: 1rem;
    }

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

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

    .depositor__modal>.inner {
        width: 80%;
        height: auto;
    }
}






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

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

    .pc__br {
        display: none;
    }

    .m__br {
        display: block;
    }

    .header {
        padding: 0 1rem;
    }

    .header>.inner {
        align-items: center;
    }

    .logo img {
        width: 210px;
    }

    .m__menu {
        display: block;
    }

    /*  */
    .nav {
        display: none;
    }

    .drop__nav>.inner {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .drop__nav ul {
        gap: 10px;
        padding: 0;
    }

    .drop__nav ul>li.m--b {
        display: block;
        font-size: 1rem;
        font-weight: 700;
        color: #321471;
    }

    .drop__nav ul>li>a {
        font-size: 0.9rem;
        justify-content: flex-start;
        padding: 0;
    }

    /*  */
    .fixed__stuff {
        width: 70px;
        right: 10px;
        bottom: 1rem;
        gap: 20px;
    }

    .fixed__call img,
    .fixed__cs img,
    .fixed__top img,
    .fixed__m img {
        width: 36px;
    }

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

    .footer {
        padding: 1rem;
    }

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

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

    .depositor__modal>.inner {
        width: 90%;
        height: auto;
    }
}