﻿@charset "utf-8";

/* background fixed 사용시 버그 대응용 * 한 번 스크롤로 페이지 전체 넘김을 할 때는 html스타일에서 height속성 제거하기 */
/* html {overflow: hidden; height: 100%;} */
/* body {overflow: auto; height: 100%;} */

/* ******************** 공용 ******************** */
a:link {
    color: #666;
}

a:visited {
    color: #666;
}

a:hover {
    color: #000;
    transition-duration: .3s;
}

a:active {
    color: #000;
}

#gotop {
    z-index: 900;
    position: fixed;
    width: 35px;
    height: 35px;
    border-radius: 3px;
    bottom: 40px;
    right: 20px;
    background: url(/image/arrow-up.png) no-repeat 50% #fff;
    box-shadow: 0 0 3px rgba(0,0,0,.3) !important;
}

body {
    font-family: 'NotoSansKR' !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    word-break: keep-all;
}

.new {
    display: inline-block;
    margin: 0 0 0 5px;
    padding: 2px 4px;
    color: #ff0000 !important;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.popupWrap {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.3);
    z-index: 10;
    overflow-y: auto;
}
.popupWrap.open{
    display: flex;
}
.popupWrap .popupBox {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}
.popupWrap .popupBox .popup{
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.popupWrap .popupBox .popup a{
    display: block;
}
.popupWrap .popupBox .popup a img{
    display: block;
    width: 100%;
}
.popupWrap .popupBox .popup .closeBtn{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 26px;
    height: 26px;
    border: none;
    cursor: pointer;
    text-indent: -9999px;
    background: url(../Image/Popup/ico_close.png) no-repeat center / cover;
    filter: invert(1) grayscale(1);
}
.popupWrap .popupBox .popup div{
    background-color: rgba(255,255,255,0.7);
    padding: 5px 10px;
    box-sizing: border-box;
}
.popupWrap .popupBox .popup div #popCheck{
    vertical-align: baseline;
}


/* ******************** 데스크탑 (768~) ******************** */
@media screen and (min-width: 768px), print {
    .popupWrap .popupBox .popup {
        /*width: calc((100% - 80px) / 5);*/
        width: 360px;
    }

    .mobile {
        display: none !important;
    }

    /*header::*/
    header .top_bar {
        background: rgb(245, 245, 245);
        border-bottom: 1px solid rgb(214, 213, 213);
        width: 100%;
        padding-right: 8px;
        padding-bottom: 3px;
    }

    header .login_info {
        width: 1200px;
        height: auto;
        margin: 0 auto;
        padding-top: 3px;
        text-align: right;
        font-size: 13px;
    }

        header .login_info .top_notice {
            float: left;
            color: red;
            font-weight: bold;
            margin-right: 20px;
            font-size: 12px;
        }

            header .login_info .top_notice i,
            header .login_info .top_notice a {
                color: red;
                font-weight: bold;
            }

        header .login_info .divide {
            width: 2px;
            color: #999;
            font-weight: bold;
            margin: 0px 10px 0px 10px;
        }

    header .wrap {
        width: 1200px;
        height: 80px;
        margin: 0 auto;
        display: table;
    }

        header .wrap > div {
            display: table-cell;
            width: 33.3%;
            vertical-align: middle;
        }

    header .head h1 {
    }

        header .head h1 a {
            display: inline-block;
            height: 50px;
        }

            header .head h1 a img {
                display: block;
                height: 100%;
            }

    header .searchBox {
        padding: 0px 0px 0px 70px;
    }

        header .searchBox .search {
            position: relative;
            background: #fff;
        }

            header .searchBox .search > div {
                float: left;
                display: inline-block;
            }

                header .searchBox .search > div.search_input {
                    width: calc(100% - 50px);
                }

                    header .searchBox .search > div.search_input > input {
                        width: 100%;
                        height: 50px;
                        padding: 10px 15px;
                        border: 1px solid #ddd;
                    }

                header .searchBox .search > div.search_button {
                    position: absolute;
                    top: 0;
                    right: 0;
                    display: inline-block;
                    width: 50px;
                    height: 50px;
                }

                    header .searchBox .search > div.search_button > input {
                        background: #4065be url(/image/icon_search_fff.png)no-repeat center;
                        width: 100%;
                        height: 100%;
                        border: none;
                        cursor: pointer;
                    }

                        header .searchBox .search > div.search_button > input:focus {
                            border: 1px solid #4065be !important;
                            background: #4065be url(/image/icon_search_fff.png)no-repeat center !important;
                        }

    header .wrap > div.side {
        float: right;
        width: 100%;
        text-align: right;
        padding: 15px 3px 3px 3px;
    }

        header .wrap > div.side img {
            width: 30px;
        }

    .headerH {
        height: 7px;
    }

    /*gnb*/
    .home {
        background-color: #0e3879;
    }

    nav.pc {
        width: 100%;
        min-width: 1200px;
        z-index: 98;
        height: 44px;
        background-color: #2962b1;
        font-weight: bold;
    }

        nav.pc .nav_header {
            position: relative;
            width: 1200px;
            margin: 0 auto;
            padding: 0 0px;
            color: white;
        }

        nav.pc .header_menu .menu_box:hover {
            background-color: #0e3879;
        }

        nav.pc .header_menu .menu_box {
            display: flex;
            justify-content: center;
            align-items: center;
            width: auto;
            padding-left: 30px;
            padding-right: 30px;
            height: 44px;
            float: left;
            font-size: 14px;
            color: #fff;
        }

        nav.pc .header_menu .menu_box_last {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 1px;
            height: 44px;
            float: left;
        }

        nav.pc .header_menu a {
        }

            nav.pc .header_menu a i {
                margin-right: 3px;
            }



    nav.mobile {
        z-index: 9999;
        position: fixed;
        top: 0;
        width: 400px;
        height: 100%;
        overflow: hidden;
        box-shadow: 0 !important;
        background-color: #fff;
    }

        nav.mobile .closeWrap {
            position: relative;
            height: 55px;
            color: #fff;
            background-color: #486dcf;
        }

            nav.mobile .closeWrap .gnbClose {
                display: block;
                width: 55px;
                height: 55px;
                background: url(/image/icon_x.png) no-repeat center;
                background-size: 20px;
                border-left: 1px solid rgba(255,255,255,.1);
                float: right;
            }

            nav.mobile .closeWrap aside a {
                float: left;
                display: inline-block;
                padding: 0 20px;
                color: #fff;
                font-size: 12px;
                letter-spacing: 0;
                height: 55px;
                line-height: 55px;
            }

    .gnbCover {
        z-index: 9998;
        position: fixed;
        left: 0;
        top: 0;
        display: none;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.5);
    }


    /*lnb::*/
    .contents-wrap {
        width: 1200px;
        margin: 0 auto;
        //border-left: 1px solid #eee;
    }

        .contents-wrap > section {
            display: inline-block;
            float: left;
        }

        .contents-wrap .lnb {
            width: 230px;
            min-height: 100%;
        }

            .contents-wrap .lnb h2 {
                padding: 7px 0;
                text-align: center;
                font-size: 16px;
                color: #fff;
                font-weight: 500;
            }

            .contents-wrap .lnb .wrap {
                font-size: 14px;
                border: 2px solid #d2dad4;
                border-radius: 3px;
                margin-bottom: 5px;
                padding: 2px;
            }

                .contents-wrap .lnb .wrap h2 {
                    border-top-left-radius: 3px;
                    border-top-right-radius: 3px;
                    margin-bottom: 3px;
                }

                .contents-wrap .lnb .wrap div {
                    display: inline-block;
                    border-bottom: 1px dotted #c8c8c8;
                    width: 100%;
                    padding: 1px 1px 3px 1px;
                }

                    .contents-wrap .lnb .wrap div:last-child {
                        border-bottom: 0px;
                    }

                .contents-wrap .lnb .wrap span {
                    margin: 1px 5px 1px 2px;
                    padding: 2px;
                    height: 100%;
                }

                    .contents-wrap .lnb .wrap span:hover {
                        border-radius: 3px;
                        background-color: #666;
                        color: #fff;
                        cursor: pointer;
                        font-weight: bold;
                        padding-left: 20px;
                        padding-right: 20px;
                    }

                    .contents-wrap .lnb .wrap span.region {
                        font-weight: bold;
                    }

                    .contents-wrap .lnb .wrap span.info {
                        border-radius: 3px;
                        padding: 1px 5px 1px 5px;
                        border: 1px solid #cfcfcf;
                    }

                    .contents-wrap .lnb .wrap span.review {
                        border-radius: 3px;
                        padding: 1px 5px 1px 5px;
                        border: 1px solid #cfcfcf;
                    }

        /*컨텐츠::*/
        .contents-wrap .contents {
            width: 968px;
            /*border-left: 1px solid #e5e5e5;*/
            padding-left: 30px;
            min-height: 700px;
            margin-bottom: 30px;
        }


    /* footer:: */
    footer {
        clear: both;
        position: relative;
        border-top: 1px solid #000;
    }

        footer .address {
            position: relative;
            overflow: hidden;
            max-width: 1180px;
            margin: 0 auto;
            padding: 40px 0;
            font-size: 14px;
            display: table;
            width: 100%;
        }

            footer .address > * {
                display: table-cell;
                vertical-align: top;
            }

            footer .address > div {
                width: calc(100% - 200px);
            }

                footer .address > div > * {
                    display: inline-block;
                    float: left;
                }

                footer .address > div img {
                    padding-left: 0px;
                    padding-right: 0px;
                }

            footer .address address {
                padding-left: 50px;
                color: #666;
                font-weight: 300;
                line-height: 1.8;
            }

                footer .address address span {
                    margin: 0 25px;
                }

                footer .address address p {
                    letter-spacing: 0;
                    margin: 0 25px;
                }

            footer .address aside {
                width: 200px;
                text-align: right;
            }

                footer .address aside > ul li a {
                    padding: 12px 0;
                    display: inline-block;
                    line-height: 1;
                    color: #000;
                }

                footer .address aside > ul li.include-i a {
                    padding-left: 50px;
                    position: relative;
                    background: #fff;
                }

                    footer .address aside > ul li.include-i a:before {
                        position: absolute;
                        top: 1px;
                        left: 0;
                        display: block;
                        content: "";
                        width: 37px;
                        height: 37px;
                        background-color: #fff;
                        background-position: center;
                        background-repeat: no-repeat;
                        border-radius: 50%;
                        border: 1px solid #e5e5e5;
                    }

                    footer .address aside > ul li.include-i a.facebook:before {
                        background-image: url(/image/i-facebook.png);
                        background-size: cover;
                    }
}




/* ************************ 태블릿 이하(~767) ************************ */
@media screen and (max-width: 768px) {
    .popupWrap .popupBox .popup {
        width: 100%;
    }

    /* body {overflow-x:hidden;} */
    /* body.mainType {margin-top:55px;} */
    .pc {
        display: none !important;
    }

    header {
        width: 100%;
        height: 55px;
        margin-bottom: 10px;
    }

        header .head {
            z-index: 100;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 55px;
            overflow: hidden;
            line-height: 1;
            background-color: #fff;
            box-shadow: 0 3px 3px rgba(0,0,0,.1);
        }

            header .head a.mobile {
                position: absolute;
                top: 0;
                background-size: 30px;
                width: 55px;
                height: 55px;
                background-repeat: no-repeat;
                background-position: center;
                cursor: pointer;
            }

            header .head a.right {
                border-left: 1px solid #eee;
                right: 0;
            }

            header .head a.left {
                border-right: 1px solid #eee;
                left: 0;
            }

            header .head .gnbView {
                background-image: url(/image/gnb-icon.png);
            }

                header .head .gnbView img {
                    height: 15px;
                }

            header .head .search {
                right: 45px !important;
            }

            header .head .login {
            }

            header .head .logout {
            }

            header .head h1 {
                display: block;
                text-align: center;
            }

                header .head h1 a {
                    display: inline-block;
                    width: 100%;
                    padding-top: 15px;
                }

                    header .head h1 a img {
                        height: 35px;
                    }

    .headSearch {
        display: none;
    }

    .searchBox.pc,
    .lnb.pc,
    header .side.pc {
        display: none;
    }

    .searchBox.mobile {
        padding: 10px;
        background: #eee;
        overflow: hidden;
        border-bottom: 1px solid #ddd;
    }

        .searchBox.mobile input {
            -webkit-appearance: none; /*모바일에서 입체효과 없애기*/
            -moz-appearance: none;
            appearance: none;
            border-radius: 0 !important;
        }

        .searchBox.mobile .search {
            position: relative;
            background: #fff;
        }

            .searchBox.mobile .search > div {
                float: left;
                display: inline-block;
            }

                .searchBox.mobile .search > div.search_input {
                    width: calc(100% - 50px) !important;
                }

                    .searchBox.mobile .search > div.search_input > input {
                        width: 100% !important;
                        height: 50px;
                        padding: 10px 15px;
                        border: 1px solid #ddd;
                    }

                .searchBox.mobile .search > div.search_button {
                    position: absolute;
                    top: 0;
                    right: 0;
                    display: inline-block;
                    width: 55px !important;
                    height: 50px;
                }

                    .searchBox.mobile .search > div.search_button > input {
                        background: #4065be url(/image/icon_search_fff.png)no-repeat center;
                        width: 100% !important;
                        height: 100%;
                        border: none;
                    }

                        .searchBox.mobile .search > div.search_button > input:focus {
                            border: 1px solid #4065be !important;
                            background: #4065be url(/image/icon_search_fff.png)no-repeat center !important;
                        }

        .searchBox.mobile .login_box_mobile {
            display: inline-block;
            margin-top: 10px;
            width: 100%;
            padding: 10px;
            text-align: center;
            background: #fff;
            border: 1px solid #ddd;
        }

            .searchBox.mobile .login_box_mobile .point {
                display: inline-block;
                width: 100%;
                text-align: center;
                font-size: 13px;
            }

    /*gnb*/
    nav.mobile {
        z-index: 9999;
        position: fixed;
        top: 0;
        width: 250px;
        height: 100%;
        overflow: hidden;
        box-shadow: 0 !important;
        background-color: #fff;
    }

        nav.mobile .closeWrap {
            position: relative;
            height: 55px;
            color: #fff;
            background-color: #486dcf;
        }

            nav.mobile .closeWrap .gnbClose {
                display: block;
                width: 55px;
                height: 55px;
                background: url(/image/icon_x.png) no-repeat center;
                background-size: 20px;
                border-left: 1px solid rgba(255,255,255,.1);
                float: right;
            }

            nav.mobile .closeWrap aside a {
                float: left;
                display: inline-block;
                padding: 0 20px;
                color: #fff;
                font-size: 12px;
                letter-spacing: 0;
                height: 55px;
                line-height: 55px;
            }

                nav.mobile .closeWrap aside a + a {
                    padding-left: 0;
                }

    .gnbCover {
        z-index: 9998;
        position: fixed;
        left: 0;
        top: 0;
        display: none;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.5);
    }

    nav.mobile .gnb {
        position: relative;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        text-align: left !important;
        padding-bottom: 30px;
    }

        nav.mobile .gnb * {
            /*width: 100% !important;*/
        }

        nav.mobile .gnb > ul > li {
            clear: both;
            position: relative;
        }

            nav.mobile .gnb > ul > li.on > a {
                border-bottom: 2px solid #486dcf;
            }

            nav.mobile .gnb > ul > li > a {
                display: block;
                padding: 7px 20px;
                font-size: 16px;
                font-weight: 400;
                color: #486dcf;
                border-bottom: 1px solid #e5e5e5;
                background: #fff;
            }

                nav.mobile .gnb > ul > li > a:hover {
                }

            nav.mobile .gnb > ul > li > ul {
                display: none;
            }

                nav.mobile .gnb > ul > li > ul > li {
                    border-bottom: 1px solid #f1f1f1;
                    position: relative;
                }

                    nav.mobile .gnb > ul > li > ul > li div {
                        display: block;
                        padding: 7px 20px 7px 35px;
                        font-size: 14px;
                        color: #666;
                        letter-spacing: -.5px;
                        position: relative;
                    }

                    nav.mobile .gnb > ul > li > ul > li:last-child:after {
                        content: '';
                        display: block;
                        height: 1px;
                        background: #eee;
                        box-shadow: 1px 1px 1px #486dcf inset;
                    }


    /*lnb::*/
    .contents-wrap {
        display: block;
        width: 100%;
        max-width: 100%;
    }

        .contents-wrap > section {
            display: block;
        }

        .contents-wrap .lnb {
            display: none;
        }

        .contents-wrap .contents > .title {
            padding: 15px;
            background: #3ac49a;
        }

            .contents-wrap .contents > .title > h3 {
                font-size: 20px;
                color: #fff;
                font-weight: 500;
                letter-spacing: -1px;
            }

            .contents-wrap .contents > .title > .location {
                display: none;
            }

        .contents-wrap .contents > .inner {
            overflow: hidden;
            padding: 30px 15px 30px;
        }



    /* footer:: */
    footer {
        clear: both;
        position: relative;
        border-top: 1px solid #000;
    }

        footer .address {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding: 40px 20px;
            font-size: 14px;
        }

            footer .address div {
                text-align: center;
                width: 100%;
                padding-bottom: 10px;
            }

                footer .address div .logo {
                }

            footer .address address {
                width: 100%;
                margin: 0 auto;
                color: #666;
                font-weight: 300;
                line-height: 1.8;
                overflow: hidden;
                text-align: center;
            }

                footer .address address span {
                    display: inline-block;
                    padding: 0 10px;
                }

                footer .address address p {
                    float: left;
                    letter-spacing: 0;
                    width: 100%;
                }

            footer .address address {
                padding-left: 20px;
                color: #666;
                font-weight: 300;
                line-height: 1.8;
            }

                footer .address address span {
                    margin: 0;
                }

                footer .address address br {
                    display: none;
                }

                footer .address address p {
                    letter-spacing: 0;
                    margin: 0 10px;
                }

    .contents-wrap .contents {
        padding: 5px;
    }
}
