@charset "UTF-8";

/* 헤더 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    border-bottom: solid 1px #fff;
    padding: 20px 0;
}

header.white {
    background-color: #fff;
}

header.white .login_box {
    color: #272729;
}

header.white .login_box .go_booking {
    border: solid 1px #772510;
}

header.white .hamWrap .line {
    background-color: #000;
}

header.white .menu_btn p {
    color: #000;
}

header.scroll {
    background-color: #fff;
    border-bottom: solid 1px #272727;
}

h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header {
    display: flex;
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.menu_btn {
    display: flex;
    gap: 10px;
    font-family: "Pretendard";
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    align-items: center;
    cursor: pointer;
}

header.scroll .menu_btn {
    color: #272729;
}

.hamWrap {
    position: relative;
    width: 28px;
    height: 16px;
    cursor: pointer;
}

header.scroll .hamWrap .line {
    background-color: #272729;
    transition: all 0.6s;
}

.hamWrap .line {
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #FFF;
    left: 0;
}

.hamWrap .line:first-child {
    top: 0;
    transform-origin: 25% 50%;
    transition: .3s;
}

.hamWrap .line:nth-child(2) {
    top: calc(50% - 1px);
}

.hamWrap .line:last-child {
    bottom: 0;
    transform-origin: 25% 50%;
    transition: .3s;
}

/* .hamWrap ~ .sub_header{ 
    opacity: 1; 
    transform: translateY(0);
} */
.menu_btn.open .hamWrap .line:first-child {
    transform: rotate(45deg) translateX(10%);
}

.menu_btn.open .hamWrap .line:nth-child(2) {
    opacity: 0;
}

.menu_btn.open .hamWrap .line:last-child {
    transform: rotate(-45deg) translateX(10%);
}

.login_box {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 20px;
}

.login_box div ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

header.scroll .login_box {
    color: #272729;
}

.login_box li {
    cursor: pointer;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
}

.login_box .go_booking {
    display: inline-block;
    border-radius: 24px;
    padding: 8px 24px;
    border: solid 1px #fff;
    transition: all 0.6s;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
}

header.scroll .login_box .go_booking {
    border: solid 1px #272729;
}

.login_box .go_booking:hover {
    background-color: #772510;
    border: solid 1px #772510;
    color: #fff;
    transition: all 0.6s;
}

.sub_menu_box {
    position: absolute;
    top: 83px;
    width: 100%;
    background-image: url("/img/menu_bg.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: brightness(0);
    -webkit-backdrop-filter: brightness(0);
    display: none;
    transition: all 0.6s;
    height: 100vh;
    overflow-y: auto;
}

.sub_menu_box.open {
    display: block;
    transition: all 0.6s;
}

.sub_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    margin-top: 6%;
    row-gap: 80px;
    align-content: center;
    /* position: absolute;
    bottom: 0;
    left: 0; */
}

.sub_menu>li {
    position: relative;
    width: 25%;
    display: flex;
    align-items: stretch;
    gap: 30px;
    flex-direction: column;
    align-items: flex-start;
}

.sub_menu li {}

.sub_menu>li>p {
    font-family: "Pretendard";
    color: #fff;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    min-width: 150px;
}

.small_menu>li {
    margin-bottom: 15px;
    color: #fff;

}

.small_menu>li:last-child {
    margin-bottom: 0;
}

.small_menu>li a {
    font-size: 16px;
    line-height: 25px;
    font-family: "Pretendard";
    display: inline-block;
    font-weight: 500;
    color: #fff;
    opacity: 0.3;
}

.small_menu>li a:hover {
    opacity: 1;
    font-weight: 600;
}

/* 모바일헤더 */
.mo_hedader {
    display: none;
}

.mo_big_menu .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 16px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);

}

.mo_big_menu .title i {
    color: #fff;
    font-size: 24px;
    transform: rotate(0deg);
    transition: all 0.6s;
}

.mo_big_menu .title h3 {
    font-family: "Pretendard";
    font-size: 18px;
    line-height: 25px;
    font-style: normal;
    font-weight: 700;
    color: #fff;
}

.mo_small_menu {

    max-height: 0;
    transition: all 0.6s;
    overflow: hidden;
    background: rgba(49, 31, 11, 0.80);
}

.mo_small_menu.on {
    max-height: 350px;

}

.mo_small_menu li {
    padding: 14px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.mo_big_menu.on i {
    transform: rotate(180deg);

}

.mo_small_menu li a {
    display: block;
    width: 100%;
    color: #fff;
    font-family: "Pretendard";
    font-size: 16px;
    line-height: 20px;
    font-style: normal;
    font-weight: 400;
}

.logo_img_box_m {
    display: none;
}

@media screen and (max-width: 1680px) {
    .header {
        width: 90%;
    }

}

@media screen and (max-width: 1350px) {
    .login_box {
        flex-direction: column;
        gap: 10px;
    }

    .login_box li {
        font-size: 16px;
        line-height: 25px;
    }

    .login_box .go_booking {
        font-size: 16px;
        line-height: 25px;
    }

    .sub_menu_box {
        top: 119px;
    }

    .sub_menu {
        width: 95%;
    }
}

@media screen and (max-width: 1280px) {
    .sub_menu>li>p {
        font-size: 16px;
        line-height: 25px;
    }

    .small_menu>li a {
        font-size: 14px;
        line-height: 20px;
    }
}

@media screen and (max-width: 1180px) {
    .sub_menu>li {
        flex-direction: column;
    }

    .sub_menu>li>p {
        text-align: left;
    }
}

@media screen and (max-width: 768px) {
    header {
        background-color: #fff;

    }

    header .hamWrap .line {
        background-color: #333;
    }

    header .login_box {
        color: #272729;
    }

    .header {
        width: 95%;
    }

    .sub_menu_box {
        top: 57px;
    }

    .sub_menu {
        display: none;
    }

    .mo_hedader {
        display: block;
        padding-bottom: 100px;
        overflow: scroll;
        height: 100vh;
    }

    .login_box {
        gap: 0;
        display: none;
    }

    .logo_img_box_m {
        width: 75%;
        display: inline-block;
    }

    .m_login_box {
        display: block;
        padding: 16px 20px;
        box-sizing: border-box;
        border-bottom: solid 1px rgba(255, 255, 255, 0.20);
        ;
    }

    .m_login_box>ul {
        display: flex;
        color: #fff;
        font-family: "Pretendard";
        gap: 15px;
        font-size: 14px;
        line-height: 25px;
        justify-content: flex-end;
    }

    h1 {
        text-align: center;
    }

    header .login_box .go_booking,
    header.scroll .login_box .go_booking {
        display: none;
    }

    .menu_btn {
        font-size: 16px;
        line-height: 20px;
    }

    .menu_btn p {
        display: none;
    }

    .login_box div ul {
        gap: 5px;
        flex-direction: column;
    }

    .login_box div ul li:nth-child(2) {
        display: none;
    }

    .login_box li {
        font-size: 14px;
        line-height: 25px;
    }
}

/* 풋터상담폼 */
.bg_ej {
    position: relative;
    background-image: url(/img/main/bg01_back.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    box-sizing: border-box;
}

.set_comm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.set_comm .line {
    width: 2px;
    height: 580px;
    opacity: 0.2;
    background: #FFF;
}

.set_comm .set_l {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.set_comm .set_l .time >h3 {
    margin-bottom: 16px;
    color: #DDBF9C;
    font-family: "Noto Serif";
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    letter-spacing: 4.8px;
    text-transform: uppercase;
}

.set_comm h2 {
    color: #FFF;
    font-family: "Pretendard";
    font-size: 32px;
    font-weight: 400;
    line-height: 38.4px;
}

.set_comm .set_r {
    width: 50%;
}

.set_comm .set_l .box {
    margin-top: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(0, 0, 0, 0.30);
}

.set_comm .set_l .time_bot .time_bot_wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.set_comm .set_l .time_bot {
    padding: 16px 24px;
}

.set_comm .set_l .time_bot .time_bot_inner li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.set_comm .set_l .time_bot .time_bot_inner li:last-child {
    margin-bottom: 0px;
}

.set_comm .set_l .time_bot h3 {
    width: 20%;
    text-align: left;
    color: #FFF;
    font-family: "Pretendard";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.set_comm .set_l .time_bot h3 span {
    color: #FFF;
    font-family: "Pretendard";
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.set_comm .set_l .time_bot p {
    color: #FFF;
    font-family: "Pretendard";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.set_comm .set_l .reserve {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.set_comm .set_l .reserve h2 {
    color: #FFF;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.link_reservation {
    position: relative;
    display: flex;
    padding: 15px 24px;
    align-items: center;
    gap: 4px;
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    border-radius: 9999px;
    background: #17B75E;
}

.link_reservation:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin-left: 4px;
    position: relative;
    background: url(/img/arrow_right_alt.svg) center center/100% 100% no-repeat;
}

.set_comm .set_r .map .map_top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    margin-bottom: 30px;
}

.set_comm .set_r .map .root_daum_roughmap {
    width: 100%;
}

.set_comm .set_r .map .map_top p {
    color: #FFF;
    font-family: "Pretendard";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.set_comm .set_r .map .map_bot {
    height: 240px;
    padding: 24px;
    color: #FFF;
    opacity: 0.5;
}


@media screen and (max-width:1200px) {
    .set_comm .set_l .reserve {
        flex-direction: column;
        gap: 32px;
        align-items: start;
    }
}

@media screen and (max-width:768px) {
    .set_comm .set_l .time_bot {
        margin-top: 24px;
    }
    .set_comm .set_l .reserve {
        align-items: center;
        gap: 24px;
    }

}

/* ======== form ======== */
#reservation {
    margin-top: 40px;
}

.online {
    /* max-width: 660px; */
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.online li {
    width: 48%;
}

.online label {
    color: #FFF;
    font-family: "Pretendard";
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.online input[type="text"] {
    width: 100%;
    margin-top: 16px;
    padding: 15px;
    font-size: 16px;
    line-height: 25px;
    border-radius: 8px;
    box-sizing: border-box;
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(0, 0, 0, 0.30);
}

.online input[type="text"]::placeholder {
    color: #FFF;
    opacity: 0.3;
    font-family: "Pretendard";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.online select {
    width: 100%;
    margin-top: 16px;
    padding: 15px;
    border-radius: 8px;
    color: #FFF;
    opacity: 0.3;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    box-sizing: border-box;
    font-family: "Pretendard";
    /* border: 1px solid rgba(255, 255, 255, 0.20); */
    background: rgba(0, 0, 0, 0.30);
}

/* 문의내용 */
.content_box {
    margin-bottom: 30px;
    color: #000;
    background: rgba(0, 0, 0, 0.30);
}

.content_box label {
    color: #FFF;
    font-family: "Pretendard";
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.content_box textarea {
    width: 100%;
    padding: 18px;
    margin-top: 16px;
    box-sizing: border-box;
    line-height: 25px;
    resize: none;
    min-height: 100px;
    font-size: 16px;
    font-family: "Pretendard";
    font-weight: 400;
    border-radius: 5px;
    color: #FFF;
    background: rgba(0, 0, 0, 0.30);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.content_box textarea::placeholder {
    color: #FFF;
    opacity: 0.3;
}


/* 개인정보 수집 및 활용 동의 */
.consulting_check {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    cursor: pointer;
}

.consulting_check label {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.consulting_check input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(0, 0, 0, 0.30);
}

.consulting_check input[type="checkbox"]:checked+label::after {
    content: '✔';
    font-size: 18px;
    width: 15px;
    height: 15px;
    text-align: center;
    position: absolute;
    left: 8px;
    top: 3px;
}

.consulting_check .more_btn {
    padding: 3px 8px;
    color: #FFF;
    text-align: center;
    font-family: "Pretendard";
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.20);
}



/* 문의하기 버튼 */
.submit_layout .submit_btn {
    margin-top: 30px;
}

.submit_layout .submit_btn input[type="submit"] {
    /* max-width: 400px; */
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: 15px 0;
    border-radius: 5px;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    color: #FFF;
    font-family: "Pretendard";
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(0, 0, 0, 0.30);
}

.submit_layout .submit_btn input[type="submit"]:hover {
    background-color: rgba(255, 255, 255, 0.20);
    color: #DDBF9C;
}


@media screen and (max-width: 1380px) {
    .set_comm {
        gap: 45px;
    }

}

@media screen and (max-width: 1280px) {
    .w_1280 {
        width: 90%;
    }

    .online {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .online li {
        width: 100%;
    }

    .set_comm .set_r .time_bot h3 {
        width: 30%;
    }
}

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

    .online li,
    .online input[type="text"],
    .online input[type="date"],
    .online select {
        font-size: 18px;
        line-height: 25px;
    }
}

@media screen and (max-width: 900px) {
    .set_comm .set_r .time_bot .time_bot_inner li {
        flex-direction: column;
        align-items: flex-start;
    }

    .set_comm .set_r .time_bot h3 {
        width: 100%;
    }

    .set_comm .set_r .map .map_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {
    .bg_ej {
        padding: 50px 0;
    }

    .online li,
    .online input[type="text"],
    .online input[type="date"],
    .online select {
        font-size: 16px;
        line-height: 20px;
    }

    .set_comm .set_l .time_bot .time_bot_inner li {
        flex-direction: row;
        gap: 12px;
    }

    .set_comm .set_l .time_bot h3 {
        width: 35%;
    }

    .set_comm .set_r .map .map_top {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 32px;
    }

    .set_comm {
        flex-direction: column;
    }

    .set_comm .line {
        display: none;
    }

    .set_comm .set_l,
    .set_comm .set_r {
        width: 100%;
    }

    .set_comm .set_l h3 {
        text-align: center;
    }

    .set_comm h2 {
        text-align: center;
        /* font-size: 24px; */
        line-height: 28.8px;
    }

    .set_comm .set_r .time_bot .time_ju_c {
        display: flex;
        justify-content: center;
    }

    .set_comm .set_r .map .map_bot {}

    .set_comm .set_r .map .map_top {
        flex-direction: column;
        gap: 15px;
    }
}

/* 풋터 */
footer {
    background-color: #4F543C;
    padding: 80px 0;
    box-sizing: border-box;
}

.sub_footer_bg footer {
    background-color: #6F4517;
}

.footer {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.footer>.left {
    width: 50%;
}

.footer>.right {
    width: 50%;
    border-left: solid 2px #ffffff31;
    padding-left: 10%;
    box-sizing: border-box;
}

.ft_link_list {
    display: flex;
    gap: 40px;
}

.ft_link_list li {}

.ft_link_list li a {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
}

.ft_info_text {
    margin-top: 24px;
    padding-top: 24px;
    box-sizing: border-box;
    border-top: solid 1px #ffffff7c;
}

.ft_info_text p {
    color: #ffffff7c;
    font-size: 16px;
    line-height: 25px;
}

@media (max-width: 1350px) {
    .footer {
        padding: 0 20px;
        box-sizing: border-box;
    }
}

@media (max-width: 1200px) {
    .ft_link_list {
        flex-wrap: wrap;
        row-gap: 20px;
    }
}

@media (max-width: 900px) {
    .footer>.right {
        padding-left: 3%;
    }

    .ft_link_list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 20px;
    }

    .footer {
        flex-direction: column;
        row-gap: 20px;
        padding: 0;
    }

    .ft_link_list {
        gap: 0;
        row-gap: 20px;
    }

    .ft_link_list li {
        width: 50%;
        text-align: center;
    }

    .footer>.left {
        width: 100%;
    }

    .footer>.left a {
        display: block;
        width: 100%;
        text-align: center;
    }

    .footer>.left a svg {
        width: 100%;
    }

    .footer>.right {
        border-top: solid 1px #ffffff7c;
        width: 100%;
        border-left: 0;
        padding-left: 0;
        padding-top: 24px;
        box-sizing: border-box;
    }

    .ft_info_text p {
        text-align: center;
    }
}