@charset "utf-8";

:root {
    --main-color: #213982;
    --main-color2: #079FDC;
    --sub-color: #9F2323;
    --font-en: "Nanum Myeongjo", serif;

    /*font-size*/
    --f10: 0.63rem;
    --f12: 0.75rem;
    --f14: 0.88rem;
    --f16: 1rem;
    --f18: 1.13rem;
    --f20: 1.25rem;
    --f22: 1.38rem;
    --f24: 1.5rem;
    --f28: 1.75rem;
    --f32: 2rem;
    --f36: 2.25rem;
    --f40: 2.5rem;
    --f48: 3rem;
}

html {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

body {
    color: var(--black);
    min-width: 1200px;
    font-size: 1rem;
}

.btn {
    cursor: pointer;
}

.bold {
    font-weight: 700 !important;
}

.strong {
    font-weight: 600 !important;
}

table {
    table-layout: fixed;
}

input[type="text"], input[type="number"], input[type="password"] {
    width: 100%;
    height: 60px;
    background-color: #FAFAFA;
    border: 0;
    padding: 0 16px;
}

input::placeholder {
    color: #cbcbcb;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

*:focus {
    outline: none;
}

textarea {
    resize: none;
}

.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
}

body.overflow-y {
    overflow: hidden;
}

/* header */
.header#mobile {
    display: none;
}

.header {
    position: fixed;
    inset: 0;
    height: 100px;
    z-index: 90;
    background: #fff;
}

.header#pc .header-in {
    height: 100%;
    padding: 20px 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #cbcbcb;
    position: absolute;
    width: 100%;
}

.header#pc .header-in .logo {
    margin-left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.header .header-in .logo a {
    display: block;
    width: 268px;
    height: 58px;
    background: url("/images/logo.svg") no-repeat;
    background-size: 100%;
}

/* // header */


/* header - member */
.member-content .header {
    display: none;
}
/* // header - member */


/* menu */
.header .gnb-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 1100px;
}

.header .gnb-wrap .gnb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 88px;
    transition: all .1s ease-in-out;
}

.header .gnb-wrap .gnb li a {
    color: #222;
    font-size: 18px;
}


.header .gnb-wrap .gnb li:hover .header .lnb-wrap ul {
    background: #F6F6F6;
}

.header .gnb-wrap .gnb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 85px;
    transition: all .1s ease-in-out;
}

.header .lnb-wrap {
    width: 100%;
    height: 0;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: height 0.4s ease-in-out,
    opacity 0.4s ease-in-out,
    visibility 0.4s ease-in-out;
}

.header .lnb-wrap.active {
    visibility: visible;
    opacity: 1;
    height: 350px;
}

.header .lnb-wrap .lnb {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 1133px;
    margin: 0 auto;
}

.header .lnb-wrap ul {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px 0;
    width: 13%;
    height: 100%;
}

.header .lnb-wrap ul.bg {
    background: #f6f6f6;
}

.header .lnb-wrap ul li:hover {
    color: var(--main-color2);
}

.header .lnb-wrap ul li {
    font-size: 16px;
}

/* header - loginBox */
.header#pc .login-wrapper {
    display: flex;
    gap: 0 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.header#pc .login-wrapper .login-box {
    display: flex;
    align-items: center;
    gap: 0 5px;
    transition: all .1s ease-in-out;
}

.header#pc .login-box span {
    color: #fff;
    font-size: 16px;
}

.header#pc .login-box .reservation {
    border-radius: 18px;
    background: #222433;
    padding: 8px 15px;
    margin-right: 10px;
}
/* // menu */

/* footer */

footer {
    position: relative;
}

.footer-top {
    background: #001848;
    padding: 32px 0;
}

.footer-top-in {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px 0;
    height: 220px;
}

.footer-top-in .logo a {
    display: block;
}

.footer-top-in ul {
    display: flex;
    align-items: center;
}

.footer-top-in ul li {
    position: relative;
}

.footer-top-in ul.info01 {
    gap: 0 32px;
}

.footer-top-in ul.info01 li {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.footer-top-in ul.info01 li span {
    color: var(--main-color2);
    display: inline-block;
    margin-right: 10px;
}

.footer-top-in ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: #aaa;
    width: 1px;
    height: 14px;
}

.footer-top-in ul.info01 li:not(:last-child)::after {
    right: -15px;
}

.footer-top-in ul.info02 {
    gap: 0 16px;
}

.footer-top-in ul.info02 li {
    font-size: 16px;
    font-weight: 500;
    color: #aaa;
}

.footer-btm {
    background: var(--main-color);
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-btm .copy {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-btm ul {
    display: flex;
    align-items: center;
    gap: 0 32px;
}

.footer-btm ul li {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.footer-btm ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 1px;
    height: 14px;
}

.scroll-top {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
}

.scroll-top a {
    width: 64px;
    height: 64px;
    display: block;
}

.scroll-top a img {
    width: 100%;
    height: 100%;
}


@media (min-width: 1200px) and (max-width: 1600px) {
    .header .header-in .logo {
        left: 40px;
    }

    .header .header-in .logo a {
        width: 200px;
        height: 43px;
    }

    .header .login-wrapper {
        right: 20px;
    }
}

@media (min-width: 1601px) {
    .header .header-in .logo {
        left: 65px;
    }


    .header#pc .login-wrapper {
        right: 65px;
    }
}


/* 1200px 이하일 때 적용되는 스타일 */
@media (max-width: 1200px) {
    body {
        min-width: 320px;
    }

    .header#pc {
        display: none;
    }

    .header#mobile {
        display: block;
        height: 68px;
        border-bottom: 1px solid #CBCBCB;
    }

    .header#mobile .header-in {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding: 16px;
        height: 100%;
        box-sizing: border-box;
    }

    .header#mobile .header-in .logo {
        max-width: 130px;
        transition: all .1s ease-in-out;
    }

    .header#mobile .header-in .logo a {
        width: 130px;
        height: 28px;
    }

    .header#mobile .header-in .login-box {
        position: absolute;
        top: 17px;
        right: 55px;
        display: flex;
        align-items: center;
        gap: 0 5px;
    }

    .header#mobile .header-in .login-box a {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
    }

    .header#mobile .header-in .menu {
        display: flex;
        flex-direction: column;
        gap: 6px 0;
        z-index: 101;
    }

    .header#mobile .header-in .menu span {
        display: block;
        background: #000;
        width: 22px;
        height: 2px;
        border-radius: 10px;
        transition: 0.25s margin 0.25s, 0.25s transform;
    }

    .header#mobile .header-in .menu.open span {
        background-color: #000;
        transition: 0.25s margin, 0.25s transform 0.25s;
    }

    .header#mobile .header-in .menu.open span:nth-of-type(1) {
        margin-bottom: -4px;
        transform: rotate(44deg);
    }

    .header#mobile .header-in .menu.open span:nth-of-type(2) {
        transform: rotate(45deg);
        display: none;
    }

    .header#mobile .header-in .menu.open span:nth-of-type(3) {
        margin-top: -4px;
        transform: rotate(135deg);
    }

    /* menu */
    .header#mobile .menu-wrap {
        background: #fff;
        position: fixed;
        right: 0;
        top: 68px;
        bottom: 0;
        width: 100%;
        /*height: 100%;*/
        z-index: 100;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease-in-out;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .header#mobile .menu-wrap.visible {
        visibility: visible;
        opacity: 1;
    }

    .header#mobile .menu-list-wrap {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .header#mobile .menu-list-wrap .menu-list {
        width: 100%;
    }

    .header#mobile .menu-list-wrap .menu-list .title {
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 60px;
        border-bottom: 1px solid #ECECEC;
        padding: 0 25px;
        position: relative;
    }

    .header#mobile .menu-list-wrap .menu-list .title b {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #cbcbcb;
    }

    .header#mobile .menu-list-wrap .menu-list .title b.icon {
        background: url("/images/icon_plus_mo.svg") no-repeat center center;
        width: 22px;
        height: 22px;
    }

    .header#mobile .menu-list-wrap .menu-list .title b.icon.active {
        background: url("/images/icon_minus_mo.svg") no-repeat center center;
    }

    .header#mobile .menu-list ul {
        display: none;
    }

    .header#mobile .menu-list ul li {
        width: 100%;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 24px;
    }

    .header#mobile .menu-list ul li a {
        font-size: 16px;
        line-height: 20px;
        color: #707070;
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
    }

    .header#mobile .menu-list-wrap .menu-list ul.open {
        background: #f8f8f8;
    }

    .login-wrap-mo {
        display: flex;
        gap: 0 10px;
        position: absolute;
        bottom: 35px;
        left: 24px;
    }

    .login-wrap-mo a {
        font-size: 16px;
        font-weight: 500;
        color: #707070;
        position: relative;
    }

    .login-wrap-mo a:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: -5px;
        width: 1px;
        height: 14px;
        background: #cbcbcb;
    }


    /* footer */
    .footer-top {
        padding: 0 10px;
    }

    .footer-top-in .logo a {
        width: 187px;
        height: 42px;
        margin: 0 auto;
    }

    .footer-top-in .logo a img {
        width: 100%;
        height: 100%;
    }

    .footer-top-in ul.info01 {
        gap: 0 8px;
    }

    .footer-top-in ul.info01 li {
        font-size: 18px;
    }

    .footer-top-in ul.info01 li span {
        margin-right: 3px;
    }

    .footer-top-in ul li:not(:last-child)::after {
        right: -5px;
    }

    .footer-top-in ul.info01 li:not(:last-child)::after {
        right: -5px;
    }

    .footer-top-in ul.info02 {
        gap: 8px 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-top-in ul.info02 li {
        font-size: 14px;
    }

    .footer-btm {
        height: 92px;
        flex-direction: column;
        justify-content: center;
        gap: 16px 0;
        padding: 20px 8px;
    }

    .footer-btm .copy {
        font-size: 12px;
        text-align: center;
        letter-spacing: -0.4px;
    }

    .footer-btm ul li {
        font-size: 12px;
    }

    .scroll-top {
        position: absolute;
        top: 158px;
        transform: unset;
        right: 5px;
    }

    .scroll-top a {
        width: 46px;
        height: 46px;
    }


}

/*
@keyframes scaleUp {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

@keyframes scaleDown {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}



@media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    [data-aos]{ transition:none !important; animation:none !important; }
}*/
