@charset "utf-8";

:root {
    --main-color: #00023e;
    --font-en: 'Montserrat', sans-serif;
    --font-num: 'Pretendard', sans-serif;
}

html {
    font-family: 'Noto Sans KR', sans-serif, 'Pretendard', sans-serif;
    font-weight: 400;
}

body {
    min-width: 1280px;
    color: var(--black);
}

.btn {
    cursor: pointer;
}

.bold {
    font-weight: 700 !important;
}

.strong {
    font-weight: 600 !important;
}

table {
    table-layout: fixed;
}

/*----------------------------------hills-common----------------------------------*/
/* hills-input */
input[type="text"], input[type="number"], input[type="password"] {
    width: 100%;
    height: 46px;
    background-color: #f9f9f9;
    border-radius: 24px;
    text-indent: 20px;
}

input[type="text"].center::-webkit-input-placeholder {
    text-align: center;
    text-indent: 0;
    color: #999;
}

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;
}

/*//hills-common*/


header {
    position: fixed;
    background-color: rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    width: 100%;
    min-height: 80px;
    z-index: 100;
    transition: .3s all ease;
}

header .h-notice {
    width: 100%;
    height: 40px;
    position: fixed;
    top: 0;
    text-align: center;
    background-color: var(--main-color);
    transition: .3s all ease;
    min-width: 1200px;
    overflow: hidden;
    line-height: 40px;
}

header .h-notice a {
    display: inline-block;
    font-size: 15px;
    color: #eee;
}

header .h-notice a::before {
    content: '알림';
    color: #696a8d;
    margin-right: 10px;
    display: inline-block;
    font-weight: 700;
}

header .h-notice .top-close {
    font-size: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    right: 0;
    top: 0;
}

header .h-notice .top-close::before, header .h-notice .top-close::after {
    content: '';
    background-color: #fff;
    display: block;
    height: 2px;
    position: absolute;
    top: 20px;
    left: 10px;
    transform: translate(-50%, -50%);
}

header .h-notice .top-close::before {
    width: 24px;
    transform: rotate3d(0, 0, 1, -45deg);
}

header .h-notice .top-close::after {
    width: 24px;
    transform: rotate3d(0, 0, 1, 45deg);
}

.h-top {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    min-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: .3s all ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    z-index: 5;
}

.h-top .logo a {
    background: url('/pc/images/hills/logo.svg') center center no-repeat;
    display: block;
    font-size: 0;
    width: 215px;
    height: 40px;
    margin-left: 46px;
}

.h-top ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 80px;
}

.h-top ul li {
    font-size: 14px;
    color: #fff;
    /*font-weight: 400;*/
}

.h-top ul li .btn-reservation {
    width: 120px;
    line-height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border: solid 1px #fff;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    margin: 0 15px 0 32px;
}

.h-top ul li .translate {
    border: 0;
    color: #fff;
    font-size: 17px;
    /*height: 25px;*/
    width: 70px;
    padding: 5px 10px;
    margin-right: 25px;
    background: url('/pc/images/hills/ic_select_w.svg') center right 8px no-repeat;
    background-size: 10px 20px;
}

.h-top ul li.weather {
    display: flex;
    align-items: center;
}

.h-top ul li.weather img {
    filter: brightness(0) invert(1);
}

.h-top ul li.weather span {
    margin-left: 4px;
}

.h-top ul li img {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 4px;
}

.h-top ul li > ul {
    justify-content: center;
    margin-right: 0;
}

.h-top ul li > ul li {
    position: relative;
}

.h-top ul li > ul li::before {
    content: '·';
    display: inline-block;
    margin: 0 16px;
}

.h-top ul li > ul .btn-mypage img {
    filter: brightness(0) invert(1);
}

header.move-up .h-notice, header.move-up .h-top, header.move-up .slide-login.open {
    transform: translateY(-40px);
}

header.move-up .h-notice {
    display: none;
}

/*----------------------------------header-hover----------------------------------*/
.h-top:hover {
    background-color: #fff;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
}

.h-top:hover .logo a {
    background: url('/pc/images/hills/logo_on.svg') center center no-repeat;
    display: block;
    font-size: 0;
    width: 215px;
    height: 40px;
    margin-left: 46px;
}

.h-top:hover ul li {
    color: var(--black);
}

.h-top:hover ul li.weather img {
    filter: invert(0);
}

.h-top:hover ul li .translate {
    color: var(--black);
    background: url('/pc/images/hills/ic_select_b.svg') center right 8px no-repeat;
    background-size: 10px 20px;
}

.h-top:hover ul li .btn-reservation {
    color: var(--black);
    border: 1px solid var(--black);
}

.h-top:hover ul li > ul .btn-mypage img {
    filter: invert(0);
}

.h-top:hover .toggle-menu span, .h-top:hover .toggle-menu span:before, .h-top:hover .toggle-menu span:after {
    background-color: var(--main-color);
}

/*----------------------------------header-scrolling----------------------------------*/
.h-top.scrolling {
    background-color: #fff;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
}

.h-top.scrolling .logo a {
    background: url('/pc/images/hills/logo_on.svg') center center no-repeat;
    display: block;
    font-size: 0;
    width: 215px;
    height: 40px;
    margin-left: 46px;
}

.h-top.scrolling ul li {
    color: var(--black);
}

.h-top.scrolling ul li.weather img {
    filter: invert(0);
}

.h-top.scrolling ul li .translate {
    color: var(--black);
    background: url('/pc/images/hills/ic_select_b.svg') center right 8px no-repeat;
    background-size: 10px 20px;
}

.h-top.scrolling ul li .btn-reservation {
    color: var(--black);
    border: 1px solid var(--black);
}

.h-top.scrolling ul li > ul .btn-mypage img {
    filter: invert(0);
}

.h-top.scrolling .toggle-menu span, .h-top.scrolling .toggle-menu span:before, .h-top.scrolling .toggle-menu span:after {
    background-color: var(--main-color);
}

/*----------------------------------heder-mypage----------------------------------*/
.pop-mypage {
    visibility: hidden;
    position: absolute;
    top: 75px;
    right: 200px;
    width: 213px;
    padding: 22px 24px 40px 24px;
    background-color: #fff;
    border-radius: 10px;
    /*box-shadow: 0 0 1px 1px #ccc;*/
    border: 1px solid #ccc;
    z-index: 10;
    opacity: 0;
    transition: 0.2s all ease;
}

.pop-mypage::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    display: inline-block;;
    border-bottom: 9px solid;
    border-left: 6px solid rgba(255, 255, 255, 0);
    border-right: 6px solid rgba(255, 255, 255, 0);
    color: #fff;
    z-index: -1;
}

.pop-mypage::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    display: inline-block;;
    border-bottom: 9px solid;
    border-left: 7px solid rgba(255, 255, 255, 0);
    border-right: 7px solid rgba(255, 255, 255, 0);
    color: #ccc;
    z-index: -2;
}

.btn-mypage {
    cursor: pointer;
}

.pop-mypage.open {
    visibility: visible;
    opacity: 1;
}

.h-top ul li .pop-mypage {
    color: #231f20;
}

.h-top:hover ul li .pop-mypage {
    color: #231f20;
}

.close-mypage {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--main-color);
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.close-mypage::before, .close-mypage::after {
    content: '';
    background-color: #fff;
    display: block;
    height: 2px;
    position: absolute;
}

.close-mypage::before {
    width: 18px;
    transform: rotate3d(0, 0, 1, -45deg);
}

.close-mypage::after {
    width: 18px;
    transform: rotate3d(0, 0, 1, 45deg);
}

.pop-mypage h2 {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.pop-mypage h2 img {
    margin-right: 25px;
}

.pop-mypage dl {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    width: 100%;
}

.pop-mypage dd {
    text-align: right;
}

.pop-mypage dd a {
    text-decoration: underline;
    color: var(--red);
    font-weight: 700;
}

.btn-top-modify {
    display: block;
    margin: 10px auto 0;
    width: 113px;
    line-height: 30px;
    border-radius: 20px;
    background-color: #666;
    text-align: center;
    color: #fff;
}

/*----------------------------------header-login----------------------------------*/
.h-top.border-none {
    border-bottom: rgba(238, 238, 238, 0) !important;
}

.slide-login {
    position: absolute;
    top: -100%;
    width: 100%;
    min-width: 1200px;
    /*height: 300px;*/
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.slide-login.open {
    top: 120px;
    opacity: 1;
    visibility: visible;
    transition: 0.2s all ease;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.h-login-tit {
    margin: 10px 0;
    border-top: 1px solid #eee;
    position: relative;
}

.h-login-tit span {
    position: absolute;
    top: -7px;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 0 35px;
    font-size: 16px;
    font-weight: 700;
    color: var(--main-color);
}

.close-login {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--main-color);
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.close-login::before, .close-login::after {
    content: '';
    background-color: #fff;
    display: block;
    height: 2px;
    position: absolute;
}

.close-login::before {
    width: 18px;
    transform: rotate3d(0, 0, 1, -45deg);
}

.close-login::after {
    width: 18px;
    transform: rotate3d(0, 0, 1, 45deg);
}

/*----------------------------------login-box----------------------------------*/
.login-wrap {
    width: 340px;
    margin: auto;
    padding: 34px 0;
}

#con2, #con3, #con4, #con5, #con6, #con7 {
    display: none;
}

.tab-login {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
}

.tab-login li {
    position: relative;
    color: #999;
    font-weight: 500;
    cursor: pointer;
    flex-shrink: 1;
}

.tab-login li.on {
    color: var(--main-color);
    font-weight: 700;
}

.tab-login li::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    transition: 0.2s all ease;
}

.tab-login li:hover::after {
    content: '';
    width: 100%;
}

.tab-login li.on::after {
    content: '';
    width: 100%;
}

.login-box {
    margin: 35px 0 7px;
}

.login-box input[type="text"], .login-box input[type="password"], .login-box input[type="number"] {
    text-indent: 16px;
    border: 0;
    color: #222;
    width: calc(100% - 44px);
}

.login-box .login {
    background-color: #f9f9f9;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    border: 1px solid #f9f9f9;
    border-radius: 24px;
}

.login-box .login span {
    position: relative;
    padding-left: 16px;
    width: 44px;
}

.login-box .login span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: #ccc;
}

.login-box .login.focus {
    border: 1px solid var(--main-color);
}

.login-box .login input::-webkit-input-placeholder {
    text-indent: 16px;
}

.idpw-row ul {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 18px 0;
    gap: 0 16px;
}

.idpw-row li {
    position: relative;
    font-size: 14px;
}

.idpw-row li a {
    color: #666;
    text-decoration: underline;
}

.check-id {
    min-width: 110px;
}

.check-id input[type=checkbox] {
    display: none;
}

.check-id input[type=checkbox] + label {
    cursor: pointer;
    background-repeat: no-repeat;
    background-image: url('/pc/images/hills/ic_login_check.svg');
    background-position: left center;
    background-size: 24px 24px;
    text-indent: 35px;
    transition: 0.2s all ease;
    display: inline-block;
    padding: 7px 0;
}

.check-id input[type=checkbox]:checked + label {
    background-image: url('/pc/images/hills/ic_login_checked.svg');
    background-size: 24px 24px;
}

.btn-slide-login {
    display: block;
    line-height: 48px;
    text-align: center;
    color: #fff;
    background-color: var(--main-color);
    margin-top: 30px;
    border-radius: 24px;
}

.btn-slide-join {
    display: block;
    line-height: 48px;
    text-align: center;
    color: #fff;
    background-color: #cbcbcb;
    margin: 0 0 25px;
    border-radius: 24px;
}

.search-idpw {
    font-size: 14px;
    margin: 20px auto 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    color: #666;
}

.sns-login {
    text-align: center;
    margin-bottom: 20px;
}

.sns-login p {
    font-size: 12px;
    color: #666;
    margin-bottom: 16px;
}

.sns-login ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/*----------------------------------all menu----------------------------------*/
/*navigation*/
.btn-navi {
    position: absolute;
    top: 0px;
    right: 16px;
}

/*.btn-close {
    position: absolute;
    right: 20px;
    top: 22px;
}*/

#menu {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    text-align: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    visibility: hidden;
    z-index: 1100;
    min-width: 1280px;
    min-height: 700px;
}

#menu.open {
    opacity: 1;
    background-color: #fff;
    visibility: visible;
}

/*----------------------------------btn_navi----------------------------------*/
.toggle-menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: inline-block;
    width: 32px;
    height: 32px;
    outline: none;
    padding: 0;
    pointer-events: initial;
    position: relative;
    top: 24px;
    right: 46px;
    z-index: 1110;
}

.toggle-menu span {
    background-color: #fff;
    height: 2px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: background-color 0.2s ease, top 0.2s ease;
    transition: background-color 0.2s ease, top 0.2s ease;
    width: 12px;
}

.toggle-menu span:before, .toggle-menu span:after {
    background-color: #fff;
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: 0.2s ease, top 0.2s ease;
    transition: 0.2s ease, top 0.2s ease;
}

.toggle-menu span:before {
    top: 9px;
    width: 24px;
    right: 0;
}

.toggle-menu span:after {
    top: -9px;
    width: 24px;
    right: 0;
}

.toggle-menu.active span {
    background-color: transparent !important;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}

.toggle-menu.active span:before, .toggle-menu.active span:after {
    -webkit-transition: top 0.2s ease;
    transition: top 0.2s ease;
    width: 28px;
    background-color: var(--main-color);
}

.toggle-menu.active span:before {
    top: 0px;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.toggle-menu.active span:after {
    top: 0px;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

/*----------------------------------nav----------------------------------*/
.navigation {
    width: 1200px;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.navi-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.navi-logo {
    background: url('/pc/images/hills/logo_on.svg') center center no-repeat;
    background-size: 272px 50px;
    width: 272px;
    height: 50px;
    margin-bottom: 120px;
}

.navi-wrap .navi-menu {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: flex-start;
    margin-right: 0;
}

.navi-wrap .navi-menu .border {
    width: 100%;
    height: 2px;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background-color: #eee;
}

.navi-wrap .navi-menu .navi-gnb {
    flex: 1;
    min-width: 180px;
    width: 100%;
    position: relative;
}

.navi-wrap .navi-menu .navi-gnb h2 {
    color: var(--main-color);
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 82px;
    text-transform: uppercase;
}

.navi-wrap .navi-menu .navi-gnb .navi-lnb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
}

.navi-wrap .navi-menu .navi-gnb .navi-lnb li::before {
    content: '';
    margin: 0;
}

.navi-wrap .navi-menu .navi-gnb .navi-lnb a {
    font-size: 18px;
    line-height: 1em;
    padding: 14px 0;
    text-align: center;
    display: inline-block;
    color: #333;
    transition: .2s all ease-in-out;
}

.navi-wrap .navi-menu .navi-gnb:hover .navi-lnb a {
    position: relative;
}

.navi-wrap .navi-menu .navi-gnb .navi-lnb a:hover {
    color: var(--main-color);
    font-weight: 700;
}

.navi-wrap .navi-menu .navi-gnb .navi-lnb a span {
    display: block;
    font-size: 16px;
    padding-top: 4px;
}

.navi-wrap .navi-menu .navi-gnb::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
    background-color: var(--main-color);
}

.navi-wrap .navi-menu .navi-gnb:hover::before {
    width: 100%;
}

/*----------------------------------footer----------------------------------*/
footer {
    position: relative;
    width: 100%;
    height: 340px;
    color: #fff;
    padding: 64px 45px 0;
    background-color: #000;
    display: flex;
    align-items: flex-start;
    gap: 0 clamp(3.4375rem, -3.4375rem + 8.5938vw, 6.875rem);
    min-width: 1280px;
}

footer h1 {
    background: url('/pc/images/hills/logo.svg') center center no-repeat;
    background-size: clamp(12.5rem, 3.5rem + 11.25vw, 17rem) 50px;
    width: clamp(12.5rem, 3.5rem + 11.25vw, 17rem);
    height: 50px;
    font-size: 0;
}

footer ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px 0;
    width: max(58.9583vw, 956px);
}

footer li h2 {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 14px;
    border-bottom: 1px solid #434343;
}

footer .footer-page {
    display: flex;
    gap: 0 20px;
}

footer li p {
    font-size: 16px;
    color: #919191;
    line-height: 1.5em;
    font-weight: 300;
    padding-top: 10px;
}

/*----------------------------------aside----------------------------------*/
aside {
    position: fixed;
    top: 55%;
    right: 0;
    transform: translateY(-50%);
    color: #a5a5a5;
    text-align: right;
    z-index: 50;
}

aside ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px 0;
}

aside ul li {
    position: relative;
    transition: .2s all ease-in-out;
}

aside ul li a {
    display: block;
}

aside ul li a span {
    visibility: hidden;
    opacity: 0;
    font-size: 12px;
    padding-top: 3px;
    transition: .2s all ease-in-out;
}

aside ul li:hover {
    color: #fff;
    transition: .2s all ease-in-out;
    font-weight: 700;
}

aside ul li:hover a span {
    visibility: visible;
    opacity: 1;
    font-weight: 400;
    padding-right: 50px;
}

aside ul li a p {
    font-size: 20px;
    position: relative;
    padding-right: 50px;
}

aside ul li:hover a p::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 1px;
    background-color: #fff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/*change color*/
aside.on ul li:hover, aside.on ul li:hover a span {
    color: var(--black);
}

aside.on ul li:hover a p::after {
    background-color: var(--black);
}

/*popup-bg*/
.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
}