@charset "utf-8";

@font-face {
    font-family: "Pretendard";
    src: url("//cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("//cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("//cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("//cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("//cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("//cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("//cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 100;
    src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.woff2) format("woff2"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.woff) format("woff"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.otf) format("opentype");
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 300;
    src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff2) format("woff2"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff) format("woff"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.otf) format("opentype");
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 400;
    src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2) format("woff2"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff) format("woff"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.otf) format("opentype");
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 500;
    src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff2) format("woff2"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff) format("woff"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.otf) format("opentype");
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 700;
    src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2) format("woff2"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff) format("woff"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.otf) format("opentype");
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 900;
    src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff2) format("woff2"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff) format("woff"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.otf) format("opentype");
}

/*
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    word-break: break-all;
}
*/

html,
body {
    font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo",
        "Malgun Gothic", Sans-serif;
}

body {
    overflow-y: visible;
    overflow-x: auto;
    min-height: 100%;
}

#doc {
    position: relative;
    background: var(--white);
    min-width: 360px;
    overflow: hidden;
    z-index: 2999;
    opacity: 0;
    -webkit-transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}

#doc.show {
    transition-delay: 0s;
    opacity: 1;
}

@media only screen and (max-width: 1260px) {}

@media only screen and (max-width: 999px) {}

@media only screen and (min-width: 681px) {}

@media only screen and (max-width: 680px) {}

@media only screen and (max-width: 480px) {}

/*=======================================================
    css default
=========================================================*/
.div-cont {
    position: relative;
    text-align: left;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.div-cont:after {
    clear: both;
    content: "";
    display: block;
}

.layer-slider-ovclick {
    position: fixed;
    z-index: 3000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--overlay-color);
    cursor: pointer;
    display: none;
}

.layer-slider-ovclick2 {
    position: fixed;
    z-index: 6000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--overlay-color);
    cursor: pointer;
    display: none;
}

.layer-slider-ovclick3 {
    position: fixed;
    z-index: 6000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent !important;
    cursor: pointer;
    display: none;
}

/*=======================================================
    flex style
=========================================================*/
.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-between {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex-center {
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-end {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.flex-start {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

/*=======================================================
    z-index default
=========================================================*/
#container-wrap {
    position: relative;
    z-index: 1004;
}

#footer-wrap {
    position: relative;
    z-index: 1005;
    height: auto !important;
}

#doc.show {
    transition-delay: 0.3s;
    opacity: 1;
}

@media only screen and (max-width: 1260px) {}

@media only screen and (max-width: 999px) {}

@media only screen and (max-width: 680px) {}

@media only screen and (max-width: 480px) {}

/*=======================================================
    #header
=========================================================*/
#header {
    position: relative;
    box-shadow: 0 1px 10px rgb(48 48 48 / 5%);
    z-index: 3000;
    width: 100%;
    background-color: #fff;
}

#header a {
    display: inline-block;
    color: #222;
    font-size: 16px;
    text-decoration: none;
    word-break: break-all;
    vertical-align: middle;
    cursor: pointer;
}

#header .inner {
    max-width: 1100px;
    margin: 0 auto;
}

#header .inner .btn-prev {
    width: 30px;
    height: 30px;
    background: url(/static/booking/img/layout/bt-prev.jpg) no-repeat left center;
}
#header .inner .btn-prev.mo {
    display: none;
}

#header .inner .flex {
    height: 100px;
}

#header .logo a {
    display: block;
    background-size: 100%;
    width: 161px;
    height: 53px;
    background: url(/static/booking/img/layout/himom-logo.png) no-repeat left 45px center;
    /*background-size: auto 100%;*/
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

#header .nav-left {}
#header .nav-title {
    font-size: 20px;
    font-weight: 400;
    color: #222;
}
#header .nav-menu {}
#header .nav-menu a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    transition: all ease 0.2s;
    margin: 0 35px;
}

/*
#header .nav-menu .btn-check {
    height: 32px;
    min-width: 80px;
    border-radius: 5px;
    background-color: var(--white);
    color: var(--brand-main-color);
    border: 1px solid var(--brand-main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-size: 16px;
}
*/

/*
#header .nav-menu a.btn-user {
    display: none;
}
*/

#header .nav-menu .btn-menu {
    display: none;
}

#header .nav-right {
    text-align: right;
}

#header .nav-right a {
    display: inline-block;
    color: #929292;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    transition: all ease 0.2s;
}

#header .nav-right img {
    width: 20px;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 5px;
}

#header .nav-right .bar {
    color: #929292;
    margin: 0 8px;
}

#header .ico {
    display: inline-block;
    text-indent: -9999px;
    overflow: hidden;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
}

#header .ico.pc-logo {
    background: url(/static/booking/img/layout/himom-icon-logo.png);
    width: 41px;
    height: 51px;
}

.menu-dimd {
    display: none;
}

.menu-wrap {
    display: none;
}

@media (min-width:1024px) {
    /*
    #header .nav-menu a.btn-check:hover {
        color: var(--white);
        background-color: var(--brand-main-color);
    }
    */
    
    #header .nav-menu a:hover {
        color: var(--brand-main-color);
    }
}
@media (max-width:1024px) {
    #header .inner {
        padding: 0 30px;
    }

    #header .inner .flex {
        height: 60px;
    }

    #header .inner .btn-prev.mo {
        display: block;
    }

    #header .logo a {
        display: none;
        background-position: left center;
        width: 65px;
        height: 27px;
        background-size: 100%;
    }

    #header .ico {
        display: none;
    }

    #header .nav-left {
        flex: 1 0 0;
    }

    #header .nav-title {
        flex: 2 0 0;
        text-align: center;
    }

    #header .nav-menu {
    }

    #header .nav-menu a.menu-link {
        display: none;
    }

    #header .nav-menu a.btn-check {
        min-width: auto;
        border: none;
        padding: 0;
        background-image: url(/static/booking/img/layout/icon-reserv.png);
        background-size: 20px 21px;
        background-repeat: no-repeat;
        background-position: center;
        white-space: nowrap;
        overflow: hidden;
        text-indent: -999px;
        width: 25px;
        height: 25px;
        margin: 0 0 0 8px;
    }

    #header .nav-menu a.btn-check span {
        display: none;
    }

    #header .nav-menu .btn-menu {
        display: inline-block;
        background-image: url(/static/booking/img/layout/icon-menu.png);
        background-size: 23px 18px;
        white-space: nowrap;
        overflow: hidden;
        text-indent: -999px;
        background-repeat: no-repeat;
        background-position: center;
        width: 25px;
        height: 25px;
        margin-left: 8px;
        border: none;
        vertical-align: middle;
        font-size: 16px;
        cursor: pointer;
        background-color: transparent;
    }

    #header .nav-menu a.btn-user {
        display: inline-block;
        background-image: url(/static/booking/img/layout/icon-user.png);
        background-size: 18px 21px;
        white-space: nowrap;
        overflow: hidden;
        text-indent: -999px;
        background-repeat: no-repeat;
        background-position: center;
        width: 25px;
        height: 25px;
        margin: 0 0 0 8px;
    }

    #header .nav-menu a.btn-user span {
        display: none;
    }

    #header .nav-menu + .nav-right {
        display: none;
    }

    #header .nav-title + .nav-right {
        flex: 1 0 0;
    }

    /*모바일 메뉴*/
    .menu-dimd {
        display: none;
        position: fixed;
        z-index: 5001;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.54);
    }

    .menu-wrap {
        display: none;
        width: 250px;
        height: 100%;
        background: #fff;
        top: 0;
        right: -40%;
        position: fixed;
        z-index: 5002;
    }

    .menu-wrap .menu-inner {
        padding: 22px;
        height: 100%;
    }

    .menu-wrap .menu-inner .btn-ico {
        position: absolute;
        right: 27px;
        display: inline-block;
        text-indent: -9999px;
        overflow: hidden;
        background-repeat: no-repeat;
        background-size: auto 50%;
        background-position: center;
    }

    .menu-wrap .menu-inner .btn-ico.close {
        background-image: url(/static/booking/img/layout/icon-close.png);
        width: 20px;
        height: 20px;
    }

    .menu-wrap .menu-nav {
        margin-top: 25px;
    }

    .menu-wrap .menu-nav li a {
        padding: 13px 0;
        display: block
    }

    .menu-wrap .menu-nav li a:hover {
        color: var(--brand-main-color);
        font-weight: 500;
    }

    .menu-wrap .menu-nav li .sub {
        margin-left: 20px;
    }

    .menu-wrap .menu-nav li .member-info {
        display: flex;
        align-items: center;
        padding: 20px 0;
    }

    .menu-wrap .menu-nav li .member-info .text {
        margin-left: 10px;
        font-size: 18px;
        font-weight: 500;
    }

    .menu-wrap .menu-nav li .member-info .text .name {
        color: #742c7e;
        font-size: 18px;
        font-weight: 500;
    }

    .menu-wrap .member-menu-nav {
        position: absolute;
        right: 30px;
        bottom: 20px;
    }

    .menu-wrap .member-menu-nav .logout {
        position: relative;
    }

    .menu-wrap .member-menu-nav .logout:before {
        background: url(/static/booking/img/layout/logout.svg) no-repeat center center;
        background-size: 20px 20px;
        width: 18px;
        height: 18px;
        position: absolute;
        left: -20px;
        content: "";
    }

    .menu-dimd.is-active {
        display: block;
    }
}

/* ======================================================
    #container-wrap
=========================================================*/
#container-wrap {
    position: relative;
}

#container-wrap #contents {
    min-height: 700px;
}

#container-wrap #contents:after {
    display: block;
    content: "";
    clear: both;
}

.main #container-wrap #contents {
    padding-top: 0;
}

.sub #container-wrap #contents {
    padding-top: 50px;
    padding-bottom: 30px;
}

.preview #container-wrap #contents {
    padding-top: 0;
}

@media only screen and (max-width: 1260px) {}

@media only screen and (max-width: 999px) {
    #container-wrap {
        margin-top: 0;
    }
    #container-wrap .pen-wrap .info {
        display: none;
    }
    .no-top #container-wrap {
        margin-top: 0;
    }

    .main #container-wrap {
        margin-top: 0;
    }

    .sub #container-wrap #contents {
        padding-top: 0;
    }
}

@media only screen and (max-width: 680px) {}

@media only screen and (max-width: 480px) {}

/* ======================================================
    #footer
=========================================================*/
#footer {
    position: relative;
    background-color: #f6f6f6;
    margin-top: 100px;
}

#footer .inner {
    padding: 65px 70px;
    height: 242px;
    max-width: 1100px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    word-break: break-all;
}

#footer .ft-info {
    position: relative;
    background: url(/static/booking/img/layout/himom-footer-logo.png) no-repeat left center;
    padding-left: 160px;
    font-size: 12px;
    color: #7f7f7f;
    line-height: 1.2;
}

#footer .ft-info p {
    margin-bottom: 8px;
}

#footer .ft-info .ft-menu {
    margin: 25px 0;
}

#footer .ft-info .ft-menu li {
    position: relative;
}

#footer .ft-info .ft-menu li~li {
    margin-left: 12px;
    padding-left: 12px
}

#footer .ft-info .ft-menu li~li::before {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    left: 0;
    width: 1px;
    height: 12px;
    background: #a3a3a3;
}

#footer .ft-info .ft-menu li a {
    color: #7f7f7f;
    font-size: 12px;
}

#footer .ft-num {
    color: #7f7f7f;
    font-size: 12px;
    font-weight: 400;
}

#footer .ft-num .tit {
    font-size: 24px;
}

#footer .ft-num .flex {
    gap: 15px;
}

#footer .ft-num .flex~.flex {
    margin-top: 13px;
}

#footer .ft-num .btn-line {
    min-width: 111px;
    font-size: 12px;
}

#footer .ft-bot.mo {
    display: none
}

#footer .bar {
    position: relative;
}

#footer .bar~.bar {
    margin-left: 12px;
    padding-left: 12px
}

#footer .bar~.bar::before {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    left: 0;
    width: 1px;
    height: 12px;
    background: #a3a3a3;
}

#footer .btn-line {
    border: 1px solid #ddd;
    color: #555;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}

@media (max-width: 1024px) {
    #footer {
        margin-top: 35px;
    }

    #footer .inner {
        padding: 28px 30px 22px;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    #footer .ft-info {
        padding-left: 0;
        padding-top: 70px;
        background-position: 0 0;
        font-size: 12px;
    }

    #footer .ft-info .ft-menu li a {
        font-size: 12px;
    }

    #footer .ft-info .ft-menu {
        margin-top: 6px;
    }

    #footer .ft-info .ft-menu li~li {
        margin-left: 4px;
        padding-left: 4px;
    }

    #footer .ft-bot {
        color: #555;
        font-size: 12px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #ddd;
        font-weight: 400;
    }

    #footer .ft-num.pc {
        display: none;
    }

    #footer .ft-bot.mo {
        display: block
    }

    #footer .bar~.bar {
        margin-left: 6px;
        padding-left: 6px;
    }

    #footer .ft-bot .btn-line {
        font-size: 12px;
        min-width: 104px;
    }

    #footer .ft-bot .tit {
        font-size: 14px;
        font-weight: 400;
    }

    #footer .ft-bot .flex+.flex {
        margin-top: 3px;
    }

    #footer .ft-bot .flex .btn-line {
        margin-right: 10px;
    }
}

@media (max-width:990px) {}

@media (min-width:881px) {}

@media (max-width:880px) {}

@media (max-width:800px) {}

@media (max-width:768px) {}

@media only screen and (max-width:680px) {}

@media (max-width:640px) {}

@media (max-width:485px) {
    #footer .ft-bot .flex .btn-line {
        padding: 8px 4px;
    }
}