﻿
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}


body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    color: #333;
    font-size: 16px;
    line-height:1.5;
}

.loading-wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}
    .loading-wrap .loading-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .3;
        z-index: 999;
    }
    .loading-wrap lottie-player {
        position: absolute;
        width: 300px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 999;
    }

/* 폰트사이즈 */
.font17 {
    font-size: 17px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font22 {
    font-size: 22px;
}

.font25 {
    font-size: 25px;
}

.font28 {
    font-size: 28px;
}
.font32 {
    font-size: 32px;
}

.font36 {
    font-size: 36px;
}

.font37 {
    font-size: 37px;
}

.font40 {
    font-size: 44px;
}

.font44 {
    font-size: 44px;
}

.font48 {
    font-size: 48px;
}
.font60 {
    font-size: 60px;
}
.font80 {
    font-size: 80px;
}


/* 폰트사이즈 */

/* 폰트컬러 */
.color333 {
    color: #333333;
}

.color888 {
    color: #888888;
}

.color999 {
    color: #999999;
}

.txt-pink {
    color: #ff495e;
}
.txt-blue {
    color: #2f8aff;
}
/* 폰트컬러 */

/* 폰트굵기 */
.weight-lighter {
    font-weight: lighter;
}

.weight-bold, .bold {
    font-weight: bold;
}
/* 폰트컬러 */

.hidden{
    display: none;
}

.reservation {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #0000009e;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    z-index: 3;
    transition: .5s;
}

.reservation .book_box {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.reservation .book_close,
.reservation .book_open {
    display: none;
}

    .reservation .username input,
    .reservation .cell_num input,
    .reservation .select_sur select {
        width: 200px;
        height: 40px;
        font-size: 0.9rem;
        font-weight: 500;
        border: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }

        .reservation .username input:focus,
        .reservation .cell_num input:focus,
        .reservation .select_sur select:focus {
            outline: none;
            box-shadow: 0px 0px 3px 2px #c6e9e6;
            transition: .2s;
        }

    .reservation .check {
        color: #fff;
        font-size: 1.1rem;
        margin: 0 20px;
    }

        .reservation .check input[type="checkbox"] {
            display: none;
        }

            .reservation .check input[type="checkbox"] + input + label {
                display: inline-block;
                width: 20px;
                height: 20px;
                border: 2px solid #85bbbf;
                position: relative;
                vertical-align: middle;
                margin-right: 10px;
            }

        .reservation .check input:checked + input + label::after {
            content: '';
            font-size: 25px;
            width: 20px;
            height: 20px;
            text-align: center;
            position: absolute;
            left: -2px;
            top: -2px;
            background: url(/UploadFile/Main/check.jpg);
            /*background-color: #85bbbf;*/
            background-position: 50% 50%;
            background-size: 100%;
        }

        .reservation .check label {
            cursor: pointer;
            vertical-align:middle;
        }

    .reservation .reser_btn button {
        display: block;
        padding: 10px 25px;
        border: 2px solid #88d4da;
        border-radius: 50px;
        background: transparent;
        text-align: center;
        color: #88d4da;
        font-size: 1.5rem;
        font-weight: 600;
        cursor: pointer;
    }

        .reservation .reser_btn button:hover {
            background: #88d4da;
            color: #fff;
            transition: .2s;
        }

        .reservation .reser_btn button[disabled] {
            border: #869495;
            background: #adbebf;
            color: #869495;
            cursor: default;
        }

        .reservation .reser_btn button[disabled]:hover {
            background: #adbebf;
            color: #869495;
        }

.mo_main_header {
    display: none;
}

.gnb_wrap {
    position: absolute;
    top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap:8%;
    align-items: center;
    z-index: 5;
}

    .gnb_wrap .mo_header {
        display: none;
    }

    .gnb_wrap .left_menu_box {
        display: flex;
        align-items: center;
        padding-left: 3%;
    }

        .gnb_wrap .left_menu_box .logo a.basic {
            display: block;
            margin-right: 50px;
        }

        .gnb_wrap .left_menu_box .logo a.scroll_logo {
            display: none;
        }

    .gnb_wrap.scroll {
        position: fixed;
        top: 0;
        padding: 15px 0;
        background: #ffffffa3;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid #0000000f;
    }

        .gnb_wrap.scroll .left_menu_box .logo a.basic {
            display: none;
        }

        .gnb_wrap.scroll .left_menu_box .logo a.scroll_logo {
            display: block;
            margin-right: 40px;
        }


            .gnb_wrap.scroll .left_menu_box .logo a.scroll_logo img {
                width:80%;
            }


            .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep {
                display: flex;
                align-items: center;
                flex-wrap: wrap;
            }

        .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list {
            position: relative;
        }

            .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list .nav_tit {
            }

                .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list .nav_tit a {
                    display: block;
                    padding: 20px 15px;
                    font-size: 1.1rem;
                    font-weight: 500;
                    cursor: pointer;
                }

                .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list .nav_tit span {
                    display: none;
                }

                .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list:after {
                    content: '';
                    width: 0;
                    height: 3px;
                    background-color: #000;
                    position: absolute;
                    top: 95%;
                    left: 50%;
                    transform: translateX(-50%);
                    transition: 0.3s;
                }

                .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list:hover:after {
                    width: 100%;
                }

            .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list:hover .nav_tit + .sub_list {
                display: block;
                opacity: 0;
                animation: fadeIn ease-in 1;
                animation-fill-mode: forwards;
                animation-duration: 0.3s;
                box-shadow: 3px 3px 10px 0 #00000008;
            }


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


ul.gnb_1dep li.nav_list ul.sub_list {
    display: none;
    top: 66px;
    left: 0;
    position: absolute;
    background: #fff;
    width: 200px;
    z-index: 2;
}

    ul.gnb_1dep li.nav_list ul.sub_list:hover {
        display: block;
    }

    ul.gnb_1dep li.nav_list ul.sub_list li a {
        display: block;
        padding: 15px 20px;
    }

        ul.gnb_1dep li.nav_list ul.sub_list li a:hover {
            background: #c6e0e2;
            transition: 0.2s;
        }

        ul.gnb_1dep li.nav_list ul.sub_list li a.select {
            background: #c6e0e2;
        }



.right_menu_box {
    display: flex;
    align-items: center;
    padding-right: 3%;
}

    .right_menu_box .sign_box {
        display: flex;
        align-items: center;
    }

        .right_menu_box .sign_box div {
            padding: 0 20px;
        }

        .right_menu_box .sign_box .join {
            position: relative;
        }

            .right_menu_box .sign_box .join::after {
                content: '';
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                width: 1px;
                height: 100%;
                background-color: #333;
            }

        .right_menu_box .sign_box .language {
            width: 100%;
            position: relative;
        }

            .right_menu_box .sign_box .language img {
                cursor: pointer;
            }

            .right_menu_box .sign_box .language .language_list {
                display: none;
                top: 35px;
                left: 0;
                position: absolute;
                background: #fff;
                width: 100%;
                box-shadow: 3px 3px 10px 0 #00000008;
            }

                .right_menu_box .sign_box .language .language_list.show {
                    display: block;
                }

                .right_menu_box .sign_box .language .language_list li {
                    padding: 10px;
                    cursor: pointer;
                }

                    .right_menu_box .sign_box .language .language_list li:hover {
                        background-color: #c6e0e2;
                    }

                    .right_menu_box .sign_box .language .language_list li a img {
                        width: 35%;
                    }

                .right_menu_box .sign_box .language .language_list.open {
                    display: block;
                }


.footer_wrap {
    width: 100%;
    padding: 80px 0;
    background: #f1f1f1;
}

    .footer_wrap .footer_box {
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }

        .footer_wrap .footer_box .txt_box {
            width: 48%;
            display: flex;
            flex-direction: column;
        }

.footer_box .txt_box .contact_ctn,
.footer_box .txt_box .location_ctn {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer_box .txt_box .footer_tit {
    font-size: 1.8rem;
}

.footer_box .txt_box .contact_ctn .cont_ctn,
.footer_box .txt_box .contact_ctn .cont_ctn .call_box,
.footer_box .txt_box .contact_ctn .cont_ctn .time_box,
.footer_box .txt_box .location_ctn .loca_ctn,
.footer_box .txt_box .location_ctn .loca_ctn .add_box,
.footer_box .txt_box .location_ctn .loca_ctn .road_box {
    display: flex;
    gap: 30px;
}

    .footer_box .txt_box .contact_ctn .cont_ctn .tit,
    .footer_box .txt_box .location_ctn .loca_ctn .tit {
        font-size: 0.9rem;
        width: 20%;
    }

    .footer_box .txt_box .contact_ctn .cont_ctn .tit {
        /*padding-top: 7px;*/
    }

    .footer_box .txt_box .contact_ctn .cont_ctn .call_box,
    .footer_box .txt_box .location_ctn .loca_ctn .add_box {
        width: 55%;
    }

        .footer_box .txt_box .contact_ctn .cont_ctn .call_box .txt.cont {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }

    .footer_box .txt_box .contact_ctn .cont_ctn .time_box,
    .footer_box .txt_box .location_ctn .loca_ctn .road_box {
        width: 65%;
    }

.footer_box .txt_box .txt {
    width: 79%;
    line-height: 1.5;
    font-weight: 500;
}

.footer_box .txt_box .contact_ctn .cont_ctn .time_box .txt p {
    margin-bottom: 10px;
}

.footer_box .txt_box .contact_ctn .cont_ctn .time_box .txt span {
    display: inline-block;
    width: 30%;
}

.footer_box .txt_box .location_ctn .loca_ctn .txt .road_btn a {
    display: block;
    padding: 10px 20px;
    background: #a9c8cb;
    border-radius: 50px;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    margin-top: 20px;
}

.footer_box .txt_box .location_ctn .loca_ctn .add_box .txt .copy {
    cursor: pointer;
}

.footer_wrap .footer_box .map_box {
    width: 50%;
}

    .footer_wrap .footer_box .map_box .map {
        width: 100%;
        height: 100%;
    }

.copy_wrap {
    width: 100%;
    padding: 50px 0 120px 0;
    background: #333;
    color: #fff;
}

    .copy_wrap .copy_box {
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

        .copy_wrap .copy_box .sitemap_box {
            display: flex;
            justify-content: space-between;
        }

            .copy_wrap .copy_box .sitemap_box .sitemap ul.sitemap_list,
            .copy_wrap .copy_box .sitemap_box .sns_box ul.sns_icon {
                display: flex;
                gap: 25px;
            }

                .copy_wrap .copy_box .sitemap_box .sitemap ul.sitemap_list a {
                    color: #fff;
                    font-weight: 600;
                    font-size: 0.85rem;
                }

                .copy_wrap .copy_box .sitemap_box .sns_box ul.sns_icon a {
                    color: #fff;
                    font-weight: 600;
                    display: flex;
                    font-size: 24px;
                }

                    .copy_wrap .copy_box .sitemap_box .sns_box ul.sns_icon a img {
                        width: 24px;
                    }

        .copy_wrap .copy_box .copyright {
            margin-top: 20px;
            font-weight: 100;
            line-height: 1.7;
            font-size: 0.8rem;
            color: #f1f1f1;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .copy_wrap .copy_box .copyright span {
                color: #f1f1f1;
                padding: 0 15px;
            }



.quick_side {
    position: fixed;
    right: 20px;
    bottom: 180px;
    z-index: 4;
    display: flex;
    gap: 8px;
    flex-direction: column;
}

    .quick_side .call,
    .quick_side .kakao,
    .quick_side .price,
    .quick_side .top_btn {
        width: 55px;
        height: 55px;
        background: #65b6bc;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        color: #fff;
        font-weight: 500;
    }
        .quick_side .call .icon,
        .quick_side .price .icon {
            font-size: 1rem;
        }

    .quick_side .price {
        background: #9b6cb2;
        cursor: pointer;
    }
    .quick_side .top_btn {
        background: #000;
        cursor: pointer;
    }

        .quick_side .kakao {
            background: #f5d230;
            color: #333;
        }
        .quick_side .kakao svg {
            width: 23px;
        }



        /*미디어쿼리 시작*/
@media (min-width: 768px) and (max-width: 1024px) {
    /* 폰트사이즈 */

    .font18 {
        font-size: 16px;
    }

    .font20 {
        font-size: 17px;
    }

    .font22 {
        font-size: 19px;
    }

    .font25 {
        font-size: 22px;
    }

    .font28 {
        font-size: 20px;
    }

    .font32 {
        font-size: 24px;
    }
    .font36 {
        font-size: 28px;
    }

    .font40 {
        font-size: 32px;
    }

    .font44 {
        font-size: 36px;
    }

    .font48 {
        font-size: 40px;
    }
    .font60 {
        font-size: 50px;
    }

    .font80 {
        font-size: 60px;
    }

    /* 폰트사이즈 */

    .mo_main_header {
        display: none;
    }


    .gnb_wrap.scroll .left_menu_box .logo a.scroll_logo {
        margin-right: 10px;
    }

    .gnb_wrap {
        top: 0;
        gap: unset;
    }

        .gnb_wrap .left_menu_box {
            padding-left: 2%;
        }

            .gnb_wrap .left_menu_box .logo a.basic {
                margin-right: 10px;
            }

            .gnb_wrap .left_menu_box .logo a img {
                width: 100%;
            }

            .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list .nav_tit {
            }

                .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list .nav_tit a {
                    padding: 15px 12px;
                    font-size: 0.9rem;
                }

    ul.gnb_1dep li.nav_list ul.sub_list {
        z-index: 4;
        top: 52px;
    }

        ul.gnb_1dep li.nav_list ul.sub_list li a {
            padding: 10px 15px;
            font-size: 0.9rem;
        }

    .gnb_wrap .right_menu_box {
        padding-right: 2%;
    }

    .right_menu_box .sign_box {
        font-size: 0.9rem;
    }


    .footer_wrap .footer_box {
        flex-direction: column;
    }

        .footer_wrap .footer_box .txt_box {
            width: unset;
            margin: 0 20px;
        }

        .footer_wrap .footer_box .map_box {
            width: unset;
            height: 400px;
            margin: 20px 20px;
        }

    .copy_wrap .copy_box .sitemap_box .sitemap ul.sitemap_list li {
        padding: 0 20px 20px 20px;
    }

    .copy_wrap .copy_box .sitemap_box {
        flex-direction: column;
    }

        .copy_wrap .copy_box .sitemap_box .sitemap ul.sitemap_list {
            flex-wrap: wrap;
            gap: unset;
        }

        .copy_wrap .copy_box .sitemap_box .sns_box {
            padding: 20px;
        }

    .copy_wrap .copy_box .copyright {
        padding: 0 20px;
        margin-top: 10px;
    }

    .copy_wrap {
        padding-bottom: 170px;
    }

    .quick_side {
        right: 3%;
    }
}



@media screen and (max-width: 767px) {

    /* 폰트사이즈 */

    .font18 {
        font-size: 14px;
    }

    .font20 {
        font-size: 15px;
    }
    .font22 {
        font-size: 17px;
    }

    .font25 {
        font-size: 19px;
    }

    .font28 {
        font-size: 20px;
    }

    .font32 {
        font-size: 21px;
    }
    .font36 {
        font-size: 22px;
    }

    .font40 {
        font-size: 24px;
    }

    .font44 {
        font-size: 26px;
    }

    .font48 {
        font-size: 36px;
    }
    .font60 {
        font-size: 50px;
    }

    .font80 {
        font-size: 50px;
    }
    /* 폰트사이즈 */


    ul.gnb_1dep li.nav_list ul.sub_list li a:hover {
        background: unset;
        transition: unset;
    }

    .mo_main_header {
        display: flex;
        position: fixed;
        z-index: 5;
        justify-content: space-between;
        width: 100%;
        padding: 20px 0;
    }
        .mo_main_header.scroll {
            background: #ffffffde;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid #0000000f;
        }

        .mo_main_header .logo {
            display:flex;
        }
            .mo_main_header .logo a {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
            }

            .mo_main_header .logo a img {
                width: 80px;
                padding-left: 4vw;
            }

        .mo_main_header .mo_quick {
            padding-right: 4vw;
            font-size: 1.8rem;
        }

    .reservation {
        display: flex;
        width: unset;
        padding: 10px;
    }
        .reservation.close {
            bottom: -106px;
        }
            .reservation.close .book_close {
                display:none;
            }
            .reservation.close .book_open {
                display:block;
            }

        .reservation .book_box {
            justify-content: space-between;
            padding: 0;
            gap: 7px;
        }

        .reservation .book_close {
            display: block;
            position: absolute;
            top: -38px;
            right: 0;
            padding: 10px 15px;
            background: #0000009e;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 10px 10px 0 0;
            color: #fff;
            font-size: 0.8rem;
        }

        .reservation .book_open {
            position: absolute;
            top: -38px;
            right: 0;
            padding: 10px 15px;
            background: #0000009e;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 10px 10px 0 0;
            color: #fff;
            font-size: 0.8rem;
        }

        .reservation .username,
        .reservation .select_sur {
            width: 26%;
        }

        .reservation .cell_num {
            width: 40%;
        }



            .reservation .username input,
            .reservation .cell_num input,
            .reservation .select_sur select {
                width: 100%;
            }

        .reservation .check {
            margin: 0;
            font-size: 0.7rem;
        }

            .reservation .check input[type="checkbox"] + input + label {
                width: 12px;
                height: 12px;
                margin-right: 5px;
            }

            .reservation .check input[type="checkbox"]:checked + input + label::after {
                width: 12px;
                height: 12px;
            }

        .reservation .reser_btn {
            width: 44%;
        }

            .reservation .reser_btn button {
                padding: 8px 5%;
                font-size: 0.9rem;
                background: #88d4da;
                color: #fff;
                width: 100%;
            }


    .gnb_wrap {
        position: fixed;
        display: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow: scroll;
    }
        .gnb_wrap.scroll {
            padding: 0;
            backdrop-filter: unset;
            background: unset;
        }

        .gnb_wrap .gnb_bg {
            position: fixed;
            width: 100%;
            height: 100%;
        }

        .gnb_wrap .left_menu_box {
            flex-direction: column;
            width: 70vw;
            height: calc(100% - 137px);
            padding-bottom: 100px;
            overflow: auto;
            float: right;
            z-index: 2;
            position: relative;
            background: #fff;
        }

            .gnb_wrap .left_menu_box .logo {
                display: none;
            }

            .gnb_wrap .left_menu_box .menu_list {
                width: 100%;
            }

                .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep {
                    flex-direction: column;
                    align-items: flex-start;
                }

                    .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list {
                        width: 100%;
                    }

                        .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list .nav_tit {
                            position: relative;
                        }

                        .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list:hover:after {
                            width: 0;
                        }

                            .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list .nav_tit span {
                                position: absolute;
                                top: 20px;
                                right: 20px;
                                font-size: 0.8rem;
                            }

                            .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list .nav_tit .plus {
                                display: block;
                            }

                            .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list .nav_tit .minus {
                                display: none;
                            }

                            .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list .nav_tit.select .plus {
                                display: none;
                            }

                            .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list .nav_tit.select .minus {
                                display: block;
                            }

                            .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list .nav_tit.select a {
                                font-weight: 700;
                                color: #749092;
                            }

                    .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li .sub_list {
                        display: none;
                        position: unset;
                        width: 100%;
                        box-shadow: unset;
                    }

                        .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li:last-child .sub_list {
                            padding-bottom:100px;
                        }



                        .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li .sub_list.open {
                            display: block !important;
                        }

                    .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list:hover .nav_tit + .sub_list {
                        display: none;
                        box-shadow: unset;
                    }
                    .gnb_wrap .left_menu_box .menu_list ul.gnb_1dep li.nav_list ul.sub_list li a {
                        padding-left: 35px;
                        font-size: 0.9rem;
                    }

        .gnb_wrap .right_menu_box {
            display: none;
        }

        .gnb_wrap .mo_header {
            display: block;
            width: 70vw;
            float: right;
            z-index: 3;
            position: relative;
            background: #fff;
        }

            .gnb_wrap .mo_header .language_box {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px;
                background: #f1f1f1;
            }

                .gnb_wrap .mo_header .language_box .language {
                    position: relative;
                }

                .gnb_wrap .mo_header .language_box .language_list {
                    display: none;
                    position: absolute;
                    background: #fff;
                    border: 1px solid #999;
                    position: absolute;
                    right: 0;
                    width: 100%;
                    top: 30px;
                }

                    .gnb_wrap .mo_header .language_box .language_list.show {
                        display: block;
                    }


                    .gnb_wrap .mo_header .language_box .language_list li {
                        padding: 10px;
                    }

                        .gnb_wrap .mo_header .language_box .language_list li a img {
                            width: 20px;
                        }

                        .gnb_wrap .mo_header .language_box .language_list li a span {
                            font-size: 0.9rem;
                        }

                    .gnb_wrap .mo_header .language_box .language_list.show {
                        display: block;
                    }

                .gnb_wrap .mo_header .language_box .language a img {
                    vertical-align: middle;
                }

                .gnb_wrap .mo_header .language_box .menu_close {
                    font-size: 2rem;
                    cursor: pointer;
                }

            .gnb_wrap .mo_header .join_box {
                display: flex;
                font-size: 1.5rem;
                font-weight: 700;
                padding: 13px;
            }

                .gnb_wrap .mo_header .join_box span {
                    padding: 0 15px;
                    font-weight: 400;
                }

    .footer_wrap {
        padding: 40px 0;
    }

    .footer_wrap .footer_box {
        flex-direction: column;
        width: unset;
        margin: 0 3vw;
    }

        .footer_wrap .footer_box .txt_box {
            width: unset;
            gap: 20px;
        }

    .footer_box .txt_box .contact_ctn .cont_ctn .time_box .txt span {
        display: block;
    }

    .footer_box .txt_box .contact_ctn, .footer_box .txt_box .location_ctn {
        gap: 20px;
    }

        .footer_wrap .footer_box .txt_box .contact_ctn .cont_ctn,
        .footer_box .txt_box .location_ctn .loca_ctn {
            flex-direction: column;
        }

    .footer_box .txt_box .contact_ctn .cont_ctn .call_box, 
    .footer_box .txt_box .location_ctn .loca_ctn .add_box,
    .footer_box .txt_box .contact_ctn .cont_ctn .time_box,
    .footer_box .txt_box .location_ctn .loca_ctn .road_box {
        width:unset;
    }

            .footer_box .txt_box .location_ctn .loca_ctn .txt .road_btn a {
                margin-top: 10px;
            }

    .footer_wrap .footer_box .map_box {
        width:unset;
        height: 300px;
        margin-top:20px;
    }


    .copy_wrap {
        padding: 40px 0 120px 0;
    }

    .copy_wrap .copy_box .sitemap_box .sitemap ul.sitemap_list li {
        padding: 0 20px 20px 20px;
    }

    .copy_wrap .copy_box .sitemap_box {
        flex-direction: column;
    }
        .copy_wrap .copy_box .sitemap_box .sitemap ul.sitemap_list {
            flex-wrap: wrap;
            gap: unset;
        }
        .copy_wrap .copy_box .sitemap_box .sns_box {
            padding: 20px;
        }
    .copy_wrap .copy_box .copyright {
        padding: 0 20px;
        margin-top: 10px;
    }
    .quick_side {
        position: fixed;
        right: 2%;
    }


    .footer_box .txt_box .footer_tit {
        font-size: 1.4rem;
    }

    }

 


@media screen and (max-width: 360px) {
    .reservation .reser_btn {
        width:100%;
    }

    .reservation.close {
        bottom: -133px;
    }
    .reservation .username input,
    .reservation .cell_num input,
    .reservation .select_sur select {
        height: 32px;
    }

    .reservation .reser_btn button {
        padding: 2%;
    }



}