@charset "UTF-8";

@font-face {
    font-family: 'nanum';
    src: url("../webfonts/NanumMyeongjo-Bold.woff") format("woff");
    font-weight: 600;
}

@font-face {
    font-family: 'nanum';
    src: url("../webfonts/NanumMyeongjo-ExtraBold.woff") format("woff");
    font-weight: 800;
}

/*root*/
:root {
    --normal: 'spoqa';
    --serif: 'nanum';
    --red: #AF1818;
    --blue: #2B529C;
}

body {
    font-family: var(--normal);
    color: #000;
    font-weight: 400;
}

.pb40 {
    padding-bottom: 40px;
}

.reser-enter-area {
    background-color: #fafafa;
}

.reser-enter-box {
    display: -webkit-box;
    position: relative;
    padding: 80px;
    min-width: 1460px;
    max-width: 1620px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.reser-enter-inner {
    width: 100%;
    display: flex;
    gap: 30px;
    align-items: flex-end;
}

/* --------- 지역 선택 - select --------- */
.select-area {
    width: 340px;
}

.select-wrap {
    width: 100%;
}

.select-label {
    /*margin-bottom: 8px;*/
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
}

.area-select {
    position: relative;
    width: 100%;
}

.area-select .select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #000;
    cursor: pointer;
    font-size: 20px;
}

.area-select .select-trigger::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #505050;
}

.area-select.active .select-trigger::after {
    transform: rotate(180deg);
}

.area-select .select-options {
    position: absolute;
    width: 100%;
    overflow-y: auto;
    max-height: 270px;
    border: 1px solid #ddd;
    border-top: 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}

.area-select.active .select-options {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}

.area-select .select-options li {
    height: 54px;
    padding: 0 20px;
    line-height: 53px;
    font-size: 14px;
}

.area-select .select-options li:hover {
    background-color: #f4f7fa;
}

.area-select .select-options li.selected {
    background-color: #f0f0f0;
    font-weight: 500;
}

.area-select .select-trigger.placeholder {
    font-family: var(--serif);
    font-size: 20px;
}

.select-day {
    flex: 1;
}

/* --------- 예약일자 --------- */
.date-range-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    border-bottom: 1px solid #000;
    cursor: pointer;
    font-size: 20px;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--serif);
}

.date-label.check-in {
    color: var(--blue);
}

.date-label.check-out {
    color: var(--red);
}

.date-separator {
    color: #999;
    margin: 0 4px;
}

.date-value {
    font-weight: 600;
}

/* 인원 */
.counter-team-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid #000;
    width: 245px;
}

.counter-team-value {
    font-size: 20px;
    font-family: var(--serif);
}

.counter-team-buttons {
    display: flex;
    gap: 8px;
}

.search-area {
    width: 220px;
}

.search-area button {
    width: 100%;
    background-color: #000;
    color: #fff;
    line-height: 63px;
    font-family: var(--serif);
}

/* 달력 팝업 */
.box-layer-pop {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;
}

.box-layer-pop.active {
    display: flex;
    justify-content: center;
    align-items: safe center;
    overflow-y: auto;
    padding: 40px 0;
}

body.popup-open {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
}

.pop-calendar-inner {
    position: relative;
    width: 1180px;
    background-color: #fff;
    padding: 80px;
    z-index: 1;
}

.pop-calendar-close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 39px;
    height: 39px;
    background: none;
    border: none;
    cursor: pointer;
}

.pop-calendar-close::before,
.pop-calendar-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 39px;
    height: 1px;
    background: #666;
}

.pop-calendar-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.pop-calendar-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pop-calendar-area {
    position: relative;
    background-color: #fff;
}

.pop-calendar-area h2.title {
    font-size: 32px;
    font-family: var(--serif);
    margin-bottom: 50px;
    text-align: center;
}

.pop-calendar-area .color_info_ul {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.calendar-area {
    width: 100%;
    display: flex;
    gap: 90px;
    margin: 0 15px;
    margin-top: 50px;
}

.calendar-box {
    width: 100%;
    position: relative;
}

.calendar-top {
    width: 100%;
    position: relative;
}

.calendar-top button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.calendar-top button.left {
    left: 0;
}

.calendar-top button.right {
    right: 0;
}

.calendar-top button.disabled {
    opacity: 0.2;
    pointer-events: none;
}

.calendar-tit {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.tbl-calendar {
    position: relative;
    width: 100%;
    min-height: 270px;
    margin-top: 40px;
    z-index: 0;
}

.tbl-calendar thead th {
    font-weight: 400;
    padding: 0 0 12px;
    font-size: 14px;
    color: #b2aab2;
}

.tbl-calendar tbody td {
    padding: 5px 0;
    text-align: center;
    font-weight: 600;
    line-height: 1.5em;
    position: relative;
    vertical-align: middle;
    height: 56px;
}

.tbl-calendar tbody td.possible {
    color: #0079D9;
    background-color: #FAFAFA;
    cursor: pointer;
}

.tbl-calendar tbody td.impossible {
    color: #C5CACF;
    background-color: #EFEFEF;
}

.tbl-calendar tbody td.possible.choice,
.tbl-calendar tbody td.possible.range-start {
    background-color: #5E7282;
    color: #fff;
}

.tbl-calendar tbody td.possible.range-end {
    background-color: var(--red);
    color: #fff;
}

.tbl-calendar tbody td.possible.range-middle {
    background-color: #989898;
    color: #fff;
}

.tbl-calendar tbody td.possible:hover {
    background-color: #989898;
    color: #fff;
}

.tbl-calendar tbody td.finish {
    color: #c4c4c4;
}

.tbl-calendar tbody td.today:before {
    content: '';
    display: block;
    position: absolute;
    right: 4px;
    top: 4px;
    width: 4px;
    height: 4px;
    background: #738390;
    border-radius: 50%;
}

/* 조회전 */
.empty-area {
    width: 100%;
    padding: 200px 0;
    text-align: center;
    color: #A9A9A9;
}

/* 객실 리스트 */
.room-list-wrap {
    position: relative;
    padding: 80px;
    min-width: 1460px;
    max-width: 1620px;
    margin: 0 auto;
    box-sizing: border-box;
}

.room-wrap {
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px dashed #d2d2d2;
}

.room-box {
    display: flex;
    align-items: center;
    gap: 42px;
}

.img-room-box {
    position: relative;
    width: 500px;
    height: 290px;
}


.img-room-box figure {
    width: 100%;
    height: 100%;
}

.img-room-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-room-box .detail {
    position: absolute;
    display: block;
    bottom: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
    background: url(../images/reservation/ico_detail.png) rgba(0, 0, 0, 0.6313725490196078) center no-repeat;
    font-size: 0px;
    text-indent: -99999px;
}

.img-room-box .detail:hover {
    background: url(../images/reservation/ico_detail.png) #000000 center no-repeat !important;
}

.offer-info {
    flex: 1;
}

.offer-info h2 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 16px;
}

.offer-info p {
    font-size: 14px;
    padding-bottom: 26px;
}

.offer-info ul li {
    position: relative;
    padding-left: 10px;
    color: #5E5E5E;
    line-height: 2em;
    font-size: 14px;
}

.offer-info ul li::before {
    content: '·';
    position: absolute;
    left: 0;
}

.offer-info ul li.etc {
    padding-left: 0;
}

.offer-info ul li.etc::before {
    content: '';
}

.offer-price {
    width: 170px;
}

.offer-price h1 {
    color: #D72727;
    font-size: 28px;
    font-family: var(--serif);
}

.offer-price p {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--serif);
    text-align: right;
    color: #8f8f8f;
}

.btn-goods-select {
    margin-top: 8px;
    width: 100%;
    line-height: 45px;
    border: 1px solid #3D3D3D;
    font-size: 14px;
}

.btn-goods-select.active {
    background-color: #5e7282;
    border-color: #5e7282;
    color: #fff;
}

.enter-info-area {
    position: relative;
    max-height: 0;
    overflow: hidden;
}

.enter-info-area.active {
    position: relative;
    margin-top: 40px;
    overflow: visible;
    max-height: 2000px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-inner-area {
    background-color: #FAFAFA;
    padding: 76px 55px 30px;
}

.btn-x {
    border: none;
    position: absolute;
    top: 30px;
    right: 30px;
}

.enter-info-inner h2 {
    position: relative;
    font-size: 20px;
    font-family: var(--serif);
}

.enter-info-inner h2::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
}

.enter-info-inner h3 {
    font-size: 14px;
    color: #5E5E5E;
}

.selct-enter-wrap {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid #E9E9E9;
    gap: 55px;
}

.selct-enter-wrap .select-label {
    color: #5e5e5e;
    font-size: 14px;
    margin-bottom: 8px;
}

.select-enter-box,
.welcome-food-box {
    flex: 1;
}

.select-enter-box .counter-team-value {
    font-size: 14px;
    font-family: var(--normal);
}

.select-enter-inner .counter-team-wrap {
    border: 1px solid #ddd;
    font-size: 15px;
    padding: 13px 25px;
    background-color: #fff;
}

.select-enter-inner,
.welcome-food-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.select-enter-inner p,
.welcome-food-inner p {
    font-size: 14px;
    color: #5e5e5e;
}

.welcome-food-inner p em {
    display: inline-block;
    width: 67px;
}

.welcome-food-inner .custom-select {
    width: 245px;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select .select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.custom-select .select-trigger::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #505050;
}

.custom-select.active .select-trigger {
    border: 1px solid #000;
}

.custom-select.active .select-trigger::after {
    transform: rotate(180deg);
}

.custom-select .select-options {
    position: absolute;
    width: 100%;
    overflow-y: auto;
    max-height: 100px;
    border: 1px solid #ddd;
    border-top: 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}

.custom-select.active .select-options {
    max-height: 160px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}

.custom-select .select-options li {
    height: 54px;
    padding: 0 20px;
    line-height: 53px;
    font-size: 14px;
}

.custom-select .select-options li:hover {
    background-color: #f4f7fa;
}

.custom-select .select-options li.selected {
    background-color: #f0f0f0;
    font-weight: 500;
}

.custom-select .select-options ul {
    display: block;
    width: 100%;
}

.custom-select .select-trigger.placeholder {
    font-size: 14px;
}

.enter-info-flex {
    padding-top: 40px;
    display: flex;
    gap: 114px;
}

.enter-info-flex li {
    flex: 0 1 50%;
}

.enter-info-flex h2 {
    position: relative;
    font-size: 20px;
    font-family: var(--serif);
}

.enter-info-flex h2::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
}

.enter-info-flex h3 {
    font-size: 14px;
    color: #5E5E5E;
    min-height: 40px;
}

.enter-info-flex input[type="text"] {
    padding: 17px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.enter-info-flex input[type="text"]:disabled {
    background-color: #f5f5f5;
}

.reser-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reser-info-list {
    padding-top: 17px;
}

.reser-info-list .select-label {
    position: relative;
    color: #5e5e5e;
    font-size: 14px;
    margin-bottom: 8px;
    width: 100%;
}

.reser-info-list .select-label em {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.ratio-2x-long {
    display: flex;
    gap: 9px;
}

.ratio-2x-long .name {
    width: 140px
}

.ratio-2x-long .phone {
    flex: 1;
}

.btn-confirm {
    width: 130px;
    background-color: #fff;
    border: 1px solid #979797;
    text-align: center;
    line-height: 49px;
    font-size: 14px;
}

.ratio-3x {
    display: flex;
    gap: 9px;
}

.ratio-3x .email-wrapper,
.ratio-3x .email {
    flex: 0 0 30%;
}

.ratio-3x .custom-select {
    flex: 2;
}

.email-wrapper {
    position: relative;
    display: inline-block;
    width: 150px;
}

.email-wrapper::after {
    content: '@';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.email-wrapper input[type="text"] {
    padding-right: 50px;
    width: 100%;
}

.ratio-4x {
    display: flex;
    gap: 9px;
}

.ratio-4x input[type="text"] {
    width: 100%;
}

.ratio-2x {
    display: flex;
    gap: 9px;
}

.terms-area {
    margin: 47px 0 50px;
    background-color: #f4f7fa;
    width: 100%;
    padding: 34px 57px;
    color: #5E5E5E;
    font-size: 14px;
}

.terms-area-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.terms-box {
    flex: 1;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 30px;
}

.terms-box ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.terms-box ul li {
    display: flex;
    gap: 5px;
    align-items: center;
}

.terms-box ul li label,
.agree-all label {
    cursor: pointer;
}

.terms-box ul li a {
    display: block;
    color: #5e5e5e;
    text-decoration: underline;
    text-underline-offset: 0.5em;
}

.agree-all {
    padding-top: 20px;
    text-align: center;

}

.btn-basic-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.btn-basic-wrap a {
    display: block;
    width: 300px;
    line-height: 61px;
    border: 1px solid #979797;
    background-color: #fff;
    font-family: var(--serif);
    font-size: 15px;
    text-align: center;
}

.btn-basic-wrap a.on {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-basic-wrap a.hover,
.btn-basic-wrap a:hover {
    background-color: #5E7282;
    color: #fff;
    border: 1px solid #5E7282;
}

/*기본레이어팝업*/
.layer-basic-pop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.layer-basic-pop.bg-none {
    background-color: transparent;
}

.layer-basic-pop.active {
    display: flex;
    justify-content: center;
    align-items: safe center;
    overflow-y: auto;
    padding: 40px 0;
}

.popup-content {
    background: #fff;
    padding: 40px 30px;
    max-width: 800px;
    width: 100%;
    position: relative;
}

.popup-content.w800 {
    width: 800px;
}

.btn-popup-close {
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transform: translateY(-50%);
}

.btn-popup-close::before,
.btn-popup-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 1px;
    background: #666;
}

.btn-popup-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-popup-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pop-head-tit {
    position: relative;
    font-size: 32px;
    font-family: var(--serif);
}

.pop-gray-area {
    background-color: #f4f7fa;
    padding: 40px;
    margin: 32px 0;
}

.popup-content h3{
    font-size: 14px;
}

.popup-content h3.pop-sub-tit {
    font-size: 20px;
    font-family: var(--serif);
    padding-top: 16px;
    padding-bottom: 4px;
}

.pt0 {
    padding-top: 0;
}

.pop-gray-area.agree p {
    position: relative;
    padding-left: 16px;
    color: #5E5E5E;
    font-size: 14px;
    line-height: 1.8em;
}

.pop-gray-area.agree p::before {
    content: '•';
    position: absolute;
    left: 4px;
}

.btn-pop-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-pop-wrap a {
    display: block;
    width: 300px;
    line-height: 61px;
    border: 1px solid #979797;
    background-color: #fff;
    font-family: var(--serif);
    text-align: center;
    font-weight: 600;
}

.btn-pop-wrap a.on {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-pop-wrap a:hover {
    background-color: #5E7282;
    color: #fff;
    border: 1px solid #5E7282;
}

/* 예약확정 팝업 */
.confirm-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #D7D7D7;
}

.confirm-list ul {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.confirm-list ul li {
    flex: 1 0 50%;
}

.confirm-list ul li strong {
    color: #748491;
    font-size: 14px;
    padding-bottom: 8px;
}

.confirm-list ul li p {
    font-size: 15px;
}

.confirm-sum {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #D7D7D7;
}

.confirm-sum strong {
    color: #748491;
    font-size: 14px;
}

.confirm-sum span {
    color: #CC2929;
    font-size: 32px;
}

/*자동입력 방지*/
.captcha-img-area {
    padding: 20px 0 0;
}

.captcha-img-area p {
    color: #221E1F;
    margin-bottom: 10px;
}

.captcha-box {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.captcha-image {
    width: 280px;
    height: 80px;
    border: 1px solid #ddd;
}

.captcha-controls {
    /*flex: 1;*/
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 165px;
}

.button-group {
    display: flex;
    gap: 8px;
}

.btn-refresh,
.btn-audio {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    border-radius: 5px;
}

.btn-refresh:hover,
.btn-audio:hover {
    background: #f5f5f5;
}

.input-captcha {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    border-radius: 5px;
    box-sizing: border-box;
}

.input-captcha::placeholder {
    color: #999;
}

.input-captcha:focus {
    outline: none;
    border-color: #666;
}

/* golf 골프예약 */
.golf-wrap {
    position: relative;
    padding: 80px;
    min-width: 1460px;
    max-width: 1620px;
    margin: 0 auto;
    box-sizing: border-box;
}

.golf-con {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 40px;
    gap: 123px;
}


.golf-calendar-area {
    width: 410px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.golf-list-area {
    width: 900px;
    flex-shrink: 0;
}

.golf-course-tab {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    font-family: var(--serif);
    padding-right: 10px;
    margin-bottom: 10px;
}

.golf-course-tab li {
    cursor: pointer;
}

.golf-course-tab li.on {
    font-weight: 700;
}

.reservation-list-wrap {
    width: 100%;
    height: calc(100vh - 40px);
    min-height: 900px;
    max-height: 930px;
    overflow-y: auto;
    padding-right: 10px;
    margin-right: -10px;
    /*overscroll-behavior: contain;*/
}

.reservation-list-wrap::-webkit-scrollbar {
    width: 4px;
}

.reservation-list-wrap::-webkit-scrollbar-track {
    background: #f2f2f2;
}

.reservation-list-wrap::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.reservation-list-inner h2 {
    position: relative;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 800;
}

.reservation-list-inner h2 span {
    display: inline-block;
    background-color: #fff;
    width: 65px;
    position: relative;
    z-index: 2;
}

.reservation-list-inner h2::before {
    content: '';
    width: 100%;
    height: 0;
    border-top: 1px solid #9F9F9F;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-1px) translateZ(0);
}

.time-card-list {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    padding: 16px 40px 20px 92px;
    gap: 20px 26px;
}

.time-card-list li {
    border: 1px solid #ddd;
    width: 130px;
    height: 130px;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.time-card-list li p {
    font-size: 12px;
    color: #5E7282;
}

.time-card-list li h3 {
    font-size: 26px;
    color: #525252;
}

.time-card-list li strong {
    color: #CF6363;
    font-size: 15px;
}

.time-card-list li em {
    color: #5E7282;
    font-size: 14px;
}

.time-card-list li:is(:hover, .on),
.time-card-list li:is(:hover, .on) * {
    background-color: #5E7282;
    color: #fff !important;
}

.time-wait-area {
    padding: 40px 0;
    text-align: center;
}

.time-wait-area p {
    font-size: 12px;
    color: #747474;
    padding: 12px 0 16px;
}

.time-wait-area a {
    display: inline-block;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

.note {
    font-size: 14px;
    color: #5E5E5E;
}

.reservation-info-area {
    background-color: #f4f7fa;
    padding: 40px;
    margin: 60px 0 32px;
}

.reservation-info-area .title {
    font-size: 20px;
    font-family: var(--serif);
    padding-top: 30px;
    padding-bottom: 10px;
}

.reservation-info-area h4 {
    font-size: 14px;
    font-weight: 700;
    color: #474747;
    padding-top: 15px;
    padding-bottom: 5px;
}

.reservation-info-area h4:first-of-type {
    padding-top: 0;
}

.reservation-info-area b {
    font-size: 14px;
    color: #5E5E5E;
    font-weight: 400;
}

.reservation-info-area p {
    position: relative;
    padding-left: 16px;
    color: #5E5E5E;
    font-size: 14px;
    line-height: 1.8em;
}

.reservation-info-area p::before {
    content: '•';
    position: absolute;
    left: 4px;
}

/*예약확인팝업*/
.pop-info-area {
    width: 700px;
    padding: 27px 45px;
    margin: 35px 0 20px;
}

.bg-gray {
    background-color: #F4F7FA;
}

.pop-info-area .enter-info-inner {
    padding-bottom: 36px;
    border-bottom: 1px solid #D7D7D7;
    margin-bottom: 10px;
}

.enter-info-inner input[type="text"] {
    padding: 17px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pop-agree-area {
    background-color: #FAFAFA;
    padding: 24px;
    margin-bottom: 40px;
    color: #5E5E5E;
    width: 700px;
}

.pop-agree-area li {
    border-bottom: 1px dotted #ddd;
    padding: 15px 0;
}

.pop-agree-area li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.pop-agree-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #5E5E5E;
    font-size: 14px;
}

.pop-agree-header button {
    text-decoration: underline;
    font-size: 14px;
    color: #5E5E5E;
}

.enter-info-inner .select-label {
    color: #748491;
}

.pop-agree-con {
    max-height: 0;
    overflow: hidden;
}

.pop-agree-con.active {
    max-height: 500px;
}

.pop-agree-inner {
    padding: 15px;
    height: 80px;
    overflow-y: auto;
    border: 1px solid #ddd;
    margin: 20px 0 5px;
    font-size: 14px;
}

.pop-agree-inner b {
    font-weight: 600;
}

.reser-confirm-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.reser-confirm-list ul {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.reser-confirm-list ul li {
    flex: 1 0 calc(50% - 8px);
}

.reser-confirm-list ul li.w100 {
    flex-basis: 100%;
}

.reser-confirm-list ul li strong {
    color: #748491;
    font-size: 14px;
    padding-bottom: 8px;
    display: block;
}

.reser-confirm-list ul li p {
    font-size: 15px;
}

.counter-reser-area {
    display: flex;
    gap: 16px;
}

.counter-reser-area button img {
    width: 18px;
    height: 18px;
}

.counter-reser-value {
    font-size: 14px;
}

.caddy-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.self-caddy-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.self-caddy-area button {
    line-height: 32px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    width: 75px;
    text-align: center;
    font-size: 12px;
}

.overflow-scroll {
    max-height: 500px;
    overflow-y: auto;
}

.pop-complete {
    text-align: center;
    padding: 100px 0;
    font-family: var(--serif);
    margin-bottom: 35px;
}

.pop-complete p {
    font-size: 24px;
    line-height: 1.8em;
}

.pop-complete p b {
    font-weight: 600;
}

.pop-complete h2 {
    font-weight: 600;
    font-size: 26px;
    padding: 34px 0;
}

.pop-complete em {
    font-size: 18px;
    font-family: var(--normal);
}

.reser-confirm-list input[type="text"]:disabled {
    width: 100%;
    background-color: #f5f5f5;
}

.reser-confirm-list textarea {
    resize: none;
}

.pop-agree-area.wait li {
    border-bottom: none;
    padding: 5px 0 0;

}

.pop-agree-area.wait .pop-agree-con {
    max-height: fit-content;
}

.pop-info-area.wait .enter-info-inner {
    padding-bottom: 0;
    border-bottom: 0;
}


/* 패키지 */
.pkg-wrap {
    position: relative;
    padding: 80px;
    min-width: 1460px;
    max-width: 1620px;
    margin: 0 auto;
    box-sizing: border-box;
}

.pkg-list {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #B1B1B1;
}

.pkg-list .room-box.package h3 {
    font-size: 14px;
    line-height: 2em;
}

.pkg-etc {
    padding-top: 18px;
    font-size: 14px;
    color: #5e5e5e;
}

.offer-price.package h1 {
    color: #000;
}

.btn-room-select {
    margin-top: 8px;
    width: 100%;
    line-height: 45px;
    border: 1px solid #3D3D3D;
    font-size: 14px;
}

.btn-room-select.active {
    background-color: #5e7282;
    border-color: #5e7282;
    color: #fff;
}

/* 패키지 선택 후 객실리스트 */
.package-room-list {
    display: none;
    margin-top: 20px;
}

.package-room-list .room-wrap {
    padding-bottom: 16px;
    margin-bottom: 0;
    border-bottom: 0;
}

.package-room-list .room-wrap .room-box {
    padding: 40px 50px;
    border: 1px solid #e6e6e6;
}

.package-room-list .room-wrap .room-box .img-room-box {
    width: 330px;
    height: 166px;
}

.package-room-list .room-wrap .room-box .offer-price .btn-goods-select.active {
    background-color: #000;
}

/* 객실선택후 회원정보입력 */
.enter-info-flex.package {
    padding-top: 0;
}

.enter-info-flex.package li {
    flex: 1 0 100%;
}

.enter-info-flex.package .reser-info-wrap {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.enter-info-flex.package .reser-info-wrap li {
    flex: 1 0 calc(50% - 15%);
}

/* 패키지 - step1 */
.pkg-division-area {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.pkg-time-box {
    flex: 0 0 853px;
    max-width: 853px;
}

.pkg-title {
    font-size: 26px;
    font-family: var(--serif);
    color: #4D4D4D;
    margin-bottom: 30px;
}

.pkg-title b {
    font-weight: 600;
    display: inline-block;
    padding-right: 5px;
    color: #000;
}

.pkg-time-box .time-card-list {
    padding: 16px 10px 20px 75px;
}

.pkg-info-wrap {
    flex: 0 0 550px;
    max-width: 550px;
}

.pkg-info-box {
    margin-top: 30px;
    border: 1px solid #C7CBCE;
    padding: 26px 20px;
}

.pkg-info {
    padding-bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pkg-info dl {
    display: flex;
    gap: 5px;
}

.pkg-info dt {
    position: relative;
    width: 138px;
    padding-left: 15px;
}

.pkg-info dt::before {
    content: '·';
    position: absolute;
    left: 0;
}

.pkg-info dd {
    flex-shrink: 1;
}

.pkg-detail,
.pkg-all {
    padding: 20px 10px;
    border-top: 1px dotted #99AFC0;
}

.pkg-detail:last-child{
    border-bottom: 0;
}

.pkg-detail h2,
.pkg-all h2 {
    position: relative;
    font-size: 22px;
    margin-bottom: 22px;
}

.pkg-detail h2 button{
    position: absolute;
    right: 6px;
    top: 50%;
    width: 23px;
    height: 23px;
    cursor: pointer;
    transform: translateY(-50%);
}

.pkg-detail h2 button::before,
.pkg-detail h2 button::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 23px;
    height: 1px;
    background: #666;
}

.pkg-detail h2 button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.pkg-detail h2 button::after{
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pkg-detail dl,
.pkg-all dl {
    display: flex;
}

.pkg-detail dt,
.pkg-all dt {
    position: relative;
    width: 138px;
    padding-left: 15px;
}

.pkg-detail dt::before,
.pkg-all dt::before {
    content: '-';
    position: absolute;
    left: 0;
}

.pkg-detail dd,
.pkg-all dd{
    flex-shrink: 1;
}

.pkg-all .price {
    text-align: right;
    font-size: 18px;
}

.pkg-all .price span {
    font-size: 32px;
    color: #CE2D2D;
}
.pkg-all p {
    text-align: right;
    font-size: 12px;
}

.pkg-info-box .btn-basic-wrap {
    margin-bottom: 0;
}

.pkg-all {
    border-top: 1px solid #cecece;
}

.pkg-food ul {
    display: flex;
    gap: 36px;
}

.pkg-food ul li {
    flex: 1;
}

.pkg-food ul li figure {
    width: 100%;
    height: 220px;
}

.pkg-food ul li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkg-food ul li h3 {
    color: #363636;
    font-size: 18px;
    padding: 14px 0 10px;
}

.pkg-food ul li p {
    position: relative;
    color: #787878;
    font-size: 15px;
    padding: 0 0 6px 10px;
}

.pkg-food ul li p::before{
    content: '·';
    position: absolute;
    left: 0;
}

.pkg-food ul li button{
    margin-top: 20px;
    border: 1px solid #B7B7B7;
    width: 150px;
    line-height: 38px;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 14px;
}

.pkg-food ul li button:hover,
.pkg-food ul li button.choice{
    background-color: #5E7282;
    border: 1px solid #5E7282;
    color: #fff;
}

.pkg-etc-text{
    text-align: right;
    color: #787878;
    font-size: 13px;
    display: inline-block;
    padding-left: 8px;
    vertical-align: middle;
    padding-top: 15px;
}

.fruit-box{
    border: 1px solid #667C8E;
    width: 100%;
    padding: 32px 40px;
    color: #787878;
}

.fruit-box h3{
    font-size: 18px;
    color: #363636;
    font-weight: 600;
    padding-bottom: 10px;
}

.fruit-box h3 small{
    font-size: 12px;
    font-weight: 400;
    padding-left: 15px;
    color: #787878;
}

.fruit-box p {
    padding-top: 24px;
    font-size: 15px;
}

.confirm-sum span i{
    font-size: 12px;
    font-style: normal;
    color: #333;
    display: block;
    text-align: right;
}

input[type="text"]:disabled {
    background-color: #f5f5f5;
}
