@charset "utf-8";

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

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

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

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

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

.hide {
    font-size: 0.5rem;
    color: #fff;
}

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

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

.pc__br {
    display: block;
}

.m__br {
    display: none;
}

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

/*  */
.header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

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

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

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

.call img {
    width: 36px;
    height: auto;
    object-fit: contain;
}

.call span {
    font-size: 1.2rem;
    font-weight: 700;
}


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

.nav {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ccc;
}

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

.nav>ul {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.nav>ul>li {
    width: fit-content;
    height: auto;
}

.nav>ul>li>a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav>ul>li>a:hover {
    color: #39a1f4;
}

.nav>ul>li>a.active {
    font-weight: 600;
    color: #39a1f4;
}

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

.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) {
    width: 100%;
    background-color: #444;
    top: 0px;
    right: 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) {
    background-color: #444;
    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) {
    background-color: #444;
    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;
}

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

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

.banner .title {
    width: 100%;
    height: auto;
    background-color: #f3f3f3;
    text-align: center;
    padding: 2rem;
}

.banner .title>h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

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

.banner .item>h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.banner .item>ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner .item>ul>li {
    width: calc(20% - 13px);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.banner .item .img {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 1rem;
}

.banner .item .img img {
    max-width: 120px;
    max-height: 30px;
    object-fit: contain;
}

.banner .item>ul>li>span {
    font-size: 1rem;
    font-weight: 500;
}

/*  */
.warning {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.warning>.inner {
    width: 100%;
    height: auto;
    display: flex;
    gap: 2rem;
    border-top: 1px solid #ccc;
    padding: 2rem 0;
}

.warning .item1,
.warning .item2 {
    width: 100%;
    height: auto;
    background-color: #f3f3f3;
}

.warning .item1 {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.warning .item1 img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.warning .item1 p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #5e5e5e;
}

/*  */
.warning .item2>a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.warning .item2>a>img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.warning .item2 .txt span {
    font-size: 1.2rem;
    font-weight: 500;
}

.warning .item2 .txt p {
    font-size: 2rem;
    font-weight: 700;
}

.fixed__stuff {
    width: 70px;
    height: auto;
    position: fixed;
    right: 1rem;
    bottom: 2rem;
}

.go__cs {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border-radius: 50%;
    font-size: 0.9rem;
    color: #fff;
    line-height: normal;
    cursor: pointer;
}

/*  */
.footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    border-top: 1px solid #ccc;
    padding: 2rem 0;
}

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

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

.footer>.inner>ul>li>b {
    text-decoration: underline;
}


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

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

    .header {
        padding: 0 1rem;
    }

    .call img {
        width: 34px;
    }

    .call span {
        display: none;
    }

    /*  */
    .nav {
        flex-direction: column;
        justify-content: flex-start;
        border-bottom: none;
        padding: 0;
    }

    .m__nav {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.9rem;
        font-weight: 500;
        border-bottom: 1px solid #ccc;
        padding: 0 1rem;
        cursor: pointer;
    }

    .m__nav>img {
        width: 12px;
    }

    .nav>.inner {
        display: none;
        flex-wrap: wrap;
        gap: 1rem 10px;
        position: absolute;
        top: 140px;
        background-color: #fff;
        padding: 1rem;
    }

    .nav>.inner.active {
        display: flex;
    }

    .nav>.inner>li {
        width: calc(33.33% - 7px);
    }

    .nav>.inner>li>a {
        font-size: 0.9rem;
    }

    /*  */
    .banner .title {
        padding: 2rem 4rem;
    }

    .banner .title>p {
        word-break: keep-all;
    }

    .banner .item {
        padding: 0 1rem;
    }

    .banner .item>ul>li {
        width: calc(33.33% - 11px);
    }

    /*  */
    .warning>.inner {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 2rem 1rem;
    }

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

    /*  */
    .notice__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: 200px;
    }

    .call img {
        width: 34px;
    }

    .call span {
        display: none;
    }

    /*  */
    .nav {
        flex-direction: column;
        justify-content: flex-start;
        border-bottom: none;
        padding: 0;
    }

    .m__nav {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.9rem;
        font-weight: 500;
        border-bottom: 1px solid #ccc;
        padding: 0 1rem;
        cursor: pointer;
    }

    .m__nav>img {
        width: 12px;
    }

    .nav>.inner {
        display: none;
        flex-wrap: wrap;
        gap: 1rem 10px;
        position: absolute;
        top: 130px;
        background-color: #fff;
        padding: 1rem;
    }

    .nav>.inner.active {
        display: flex;
    }

    .nav>.inner>li {
        width: calc(50% - 5px);
    }

    .nav>.inner>li>a {
        font-size: 0.9rem;
    }

    /*  */
    .banner .title {
        padding: 2rem;
    }

    .banner .title>h4 {
        font-size: 1.4rem;
    }

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


    .banner .item {
        padding: 0 1rem;
    }

    .banner .item>ul {
        gap: 1rem 10px;
    }

    .banner .item>ul>li {
        width: calc(50% - 5px);
    }

    .banner .item .img img {
        max-height: 28px;
    }

    /*  */
    .warning>.inner {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .warning .item1 {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .warning .item1 img {
        width: 90px;
    }

    .warning .item2>a {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .warning .item2>a>img {
        width: 86px;
    }

    .warning .item2 .txt span {
        font-size: 1.1rem;
    }

    .warning .item2 .txt p {
        font-size: 1.6rem;
    }

    /*  */
    .fixed__stuff {
        width: 60px;
        right: 10px;
        bottom: 1rem;
    }

    .go__cs {
        height: 60px;
    }

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

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

}