@charset "UTF-8";

:root {
    --color-primary: #FFCE0B;
    --color-font-primary: #FFA500;
    /* --color-primary-dark: #DFB304; */
    --color-primary-dark: #DAA520;
    --color-white: #ffffff;
    --color-bg-light: #f5f6f7;
    --color-line-light: #dddddd;
    --color-line-light2: #D3DBD9;
    --color-line-light3: #d1d6db;
    --color-line-light4: #e1e1e1;
    --color-line-normal: #8B95A1;
    --color-line-dark: #787878;
    --color-font-black: #000000;
    --color-font-red: #ff0000;
    --color-font-emp: #1a1a1a;
    --color-font-gray: #787878;
    --color-font-blue: #587A9E;
    --color-font-blue2: #4e5968;
    --color-font-blue3: #0089CF;
    --color-font-normal: #8B95A1;
    --size-title-sub: 24px;
}




/* ellipsis */
.ellipsis {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis02 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 100%;
    overflow: hidden;
}




/* 공통 스타일 */
input::placeholder,
textarea::placeholder {
    color: var(--color-font-normal);
    font-weight: 400;
}

ol>li {
    margin-left: 20px;
}

/* 브라우저 호환성을 위한 스타일 */
/* scroll */
*::-webkit-scrollbar {
    width: 12px;
    background-color: #f4f6f8;
    border-radius: 7px;
}

*::-webkit-scrollbar-thumb {
    background-color: #bdbdbd;
    border-radius: 7px;
    border: 2px solid var(--color-bg-light);
}

*::-webkit-scrollbar-corner {
    background: transparent;
}
.desc {
    color: var(--color-font-normal);
    font-size: 14px;
}



/* text desc */
.desc.dash {
    position: relative;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 400;
}

.desc.dash::after {
    display: block;
    content: '-';
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    text-align: center;
}

.desc.referen {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-font-normal);
    line-height: 1.2rem;
}

.desc.referen::after {
    display: block;
    content: '※';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    width: 16px;
    height: 16px;
    text-align: center;
    top: 0px;
    /* transform: translateY(-50%); */
    line-height: 14px;
}

.expansion-wrapper {
    margin-left: -16px;
    width: calc(100% + 32px);
}

.price .unit {
    margin-left: 2px;
}

.price .personnel {
    margin-left: 2px;
	color: var(--color-font-normal);
    font-size: 13px;
	display:inline-block;
	padding-right:8px;
	font-weight:400;
	font-family: "Pretendard Variable", Pretendard, "Noto Sans", sans-serif;
}

body {
    min-width: 320px;
    position: relative;
    font-size: 15px;
    color: #1a1a1a;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    font-family: Pretendard, "Noto Sans", sans-serif;
    letter-spacing: -0.025em;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.blind {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    margin: -1px;
}


.img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.img-box {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.img-box img {
    position: relative;
    width: 100%;
    height: 100%;
    /* height: auto; */
    object-fit: cover;
    object-position: center;
}

span.caution {
    display: block;
    color: #0089cf;
    font-size: 14px;
    margin-top: 8px;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.btn-area.inline {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.btn-area.inline button {
    width: 100%
}

.btn-area.inline .btn-select>span {
    white-space: nowrap;
    width: 100%;
    display: block;
    overflow: hidden;
    -webkit-overflow-scrolling: auto;
}

.btn-select {
    position: relative;
    border: 1px solid var(--color-font-normal);
    border-radius: 5px;
    font-size: 14px;
    color: #000;
    height: 40px;
    line-height: 1;
    padding: 0 36px 0 10px;
    text-align: left;
}

.btn-select::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    width: 14px;
    height: 8px;
    display: block;
    background: #fff url(../images/common/arrow_select2.svg) no-repeat;
    transition: transform 0.3s ease;
    background-size: contain;
}

/* input */
.input-base {
    display: inline-block;
    width: 100%;
    height: 34px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--color-font-normal);
    border-radius: 8px;
    box-sizing: border-box;
}

.input-base:focus:not(:read-only) {
    outline: none;
}

.input-base:disabled {
    background: #f7f7f7;
}

.input-base.big {
    height: 46px;
    padding: 0 16px;
    border-radius: 4px;
    line-height: 1;
}

.input-base.midum {
    height: 40px;
    padding: 0 10px;
    border-radius: 4px;
    line-height: 1;
}

.input-base.w200 {
    width: 250px;
}

[data-toggle].input-base:read-only {
    cursor: pointer;
}

[data-toggle].input-base:focus-visible {
    border: 0;
    outline: none;
}


/* textarea */
.full .textarea-base {
    width: 100%;
}

.textarea-base {
    border: 1px solid var(--color-font-normal);
    border-radius: 8px;
    box-sizing: border-box;
    padding: 12px;
}


.form-wrap label {
    color: var(--color-font-black);
    padding-bottom: 8px;
    font-size: 14px;
    display: inline-block;
}

.form-wrap+.form-wrap {
    margin-top: 24px;
}

.form-wrap .form-group {
    margin-bottom: 0;
}

.form-wrap .form-group.inline .input-base {
    width: calc((100% - 13px) / 3);
}



/* select */
/* ie */
select::-ms-expand {
    display: none;
}

.select {
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.sel-base {
    position: relative;
    border: 1px solid var(--color-font-normal);
    border-radius: 5px;
    font-size: 14px;
    color: #000;
    height: 34px;
    line-height: 1;
    padding: 0 36px 0 10px;
    text-align: left;
}

.sel-base::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    width: 14px;
    height: 8px;
    display: block;
    background: #fff url(../images/common/arrow_select2.svg) no-repeat;
    transition: transform 0.3s ease;
    background-size: contain;
}

.sel-base.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 1px solid #ddd;
}

.sel-base.full {
    width: 100%
}

.sel-base.nice_select {
    display: block;
    position: relative;
    cursor: pointer;
}

.sel-base.nice_select.error:after,
.sel-base.nice_select:hover:after {
    right: 12px
}

.sel-base.nice_select.open:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    margin-top: -4px;
}

.sel-base.nice_select .current {
    display: inline-block;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    line-height: 32px;
}

.sel-base.nice_select .list {
    position: absolute;
    left: -1px;
    top: calc(100% + 1px);
    min-width: 100%;
    background: #fff;
    height: 0;
    overflow: hidden;
    z-index: 1;
    max-height: 300px;
    overflow-y: overlay;
    border-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.sel-base.nice_select.open .list {
    width: fit-content;
    height: auto;
    overflow: overlay;
    border: none;
    border: 1px solid var(--color-line-normal);
    border-top: 0;
}

.sel-base.nice_select .list li {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 16px 8px 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 18px;
    text-align: left;
}

.sel-base.nice_select .list li.none {
    display: none
}

.sel-base.nice_select .list li.disabled {
    color: #ccc
}

.sel-base.nice_select.disabled {
    pointer-events: none;
    background: #f7f7f7;
    border-color: #eaeaea;
}

.sel-base.nice_select.disabled .current {
    opacity: .25
}

.sel-base.nice_select.disabled:after {
    opacity: .15
}

.sel-base.nice_select.readonly {
    pointer-events: none;
    background: #f7f7f7;
}

.sel-base.big {
    height: 36px;
    line-height: 36px;
    box-sizing: border-box;
}

.sel-base.big::after {
    top: 14px;
}

/* check / radio */
/* checkbox */
[class~="chk-unit"] input:not(:disabled)+label {
    cursor: pointer;
}

[class^="chk-unit"] {
    display: inline-block;
    position: relative;
    height: 20px;
    vertical-align: middle;
}

[class^="chk-unit"] input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    z-index: 1;
    cursor: pointer;
    margin: 0;
}

[class^="chk-unit"] input[type="checkbox"]+[class^="label"] {
    display: block;
    margin: 0 0 0 20px;
    line-height: 20px;
    font-size: 14px;
    -webkit-tap-highlight-color: transparent;
}

[class^="chk-unit"] input[type="checkbox"]+[class^="label"] em {
    padding-left: 8px;
}

[class^="chk-unit"] input[type="checkbox"]+[class^="label"]:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-font-normal);
    background-color: #fff;
}

[class^="chk-unit"] input[type="checkbox"]:checked+[class^="label"]:before {
    border: 1px solid var(--color-primary);
    background: var(--color-primary) url("../images/common/check_on.png") no-repeat center
}

[class^="chk-unit"] input[type="checkbox"]:disabled+[class^="label"]:before,
[class^="chk-unit"] input[type="checkbox"].readonly+[class^="label"]:before {
    border: 1px solid var(--color-font-normal);
    background-color: #e1e1e1;
}

[class^="chk-unit"] input[type="checkbox"]:disabled:checked+[class^="label"]:before,
[class^="chk-unit"] input[type="checkbox"].readonly:checked+[class^="label"]:before {
    border: 1px solid #e1e1e1;
    background: #e1e1e1 url("../images/common/check_disabled.png") no-repeat center;
}

[class^="chk-unit"]+[class^="chk-unit"] {
    margin: 0 0 0 10px;
}

[class^="chk-unit"] input[type="checkbox"]:disabled+[class^="label"]>em {
    opacity: 50%;
}

[class~="chk-unit"]+[class^="chk-unit"] {
    margin-left: 16px;
}


/* radio */
[class^="rdo-unit"] input:not(:disabled)+label {
    cursor: pointer;
}

[class^="rdo-unit"] {
    display: inline-block;
    position: relative;
    height: 20px;
}

[class^="rdo-unit"] input[type="radio"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    margin: 0;
}

[class^="rdo-unit"] input[type="radio"]+[class^="label"] {
    display: block;
    margin: 0 0 0 20px;
    padding-right: 0;
    line-height: 20px;
    font-size: 14px;
    -webkit-tap-highlight-color: transparent;
}

[class^="rdo-unit"] input[type="radio"]+[class^="label"] em:not(.blind) {
    padding-left: 8px;
}

[class^="rdo-unit"] input[type="radio"]+[class^="label"]:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-font-normal);
    border-radius: 20px;
    background-color: #fff;
}

[class^="rdo-unit"] input[type="radio"]:checked+[class^="label"]:before {
    border: 1px solid var(--color-primary);
}

[class^="rdo-unit"] input[type="radio"]:checked+[class^="label"]:after {
    display: block;
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 20px;
    background-color: var(--color-primary);
}

[class^="rdo-unit"] input[type="radio"]:disabled+[class^="label"]:before,
[class^="rdo-unit"] input[type="radio"].readonly+[class^="label"]:before {
    border: 1px solid var(--color-font-normal);
    background-color: var(--color-white);
}

[class^="rdo-unit"] input[type="radio"]:disabled:checked+[class^="label"]:before,
[class^="rdo-unit"] input[type="radio"].readonly:checked+[class^="label"]:before {
    border: 1px solid #e1e1e1;
    background-color: #e1e1e1;
}

[class^="rdo-unit"] input[type="radio"]:disabled:checked+[class^="label"]:after,
[class^="rdo-unit"] input[type="radio"].readonly:checked+[class^="label"]:after {
    background-color: var(--color-font-normal);
}

[class^="rdo-unit"]+[class^="rdo-unit"] {
    margin-left: 20px;
}

.check-list.inline {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    justify-content: flex-start;
    row-gap: 16px;
}


/* button */
[class^="btn-prim"] {
    display: inline-block;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    background-color: var(--color-primary);
}

[class^="btn-prim"] span {
    display: block;
    padding: 0 24px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-font-black);
}

[class^="btn-sec"] {
    display: inline-block;
    min-width: 84px;
    border: 1px solid var(--color-line-normal);
    border-radius: 8px;
    background-color: var(--color-white);
}

[class^="btn-sec"] span {
    display: block;
    padding: 0 24px;
    font-size: 18px;
    font-weight: 400;
}

[class^="btn-sub"] {
    display: inline-block;
    min-width: 84px;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    background-color: var(--color-white);
}

[class^="btn-sub"] span {
    display: block;
    padding: 0 24px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary-dark);
}

[class^="btn-prim"]:disabled,
[class^="btn-sec"]:disabled {
    border: 1px solid #efefef;
    background-color: #efefef;
}

[class^="btn-prim"]:disabled span,
[class^="btn-sec"]:disabled span {
    color: var(--color-font-normal);
}

/* [class^="btn-"].big span{line-height: 40px;font-size: 14px;}
[class^="btn-"].midum span{line-height: 34px;font-size: 14px;}
[class^="btn-"].small span{line-height: 28px;font-size: 14px;padding: 0 18px;} */
[class^="btn-"].big span {
    line-height: 44px;
    font-size: 14px;
}

[class^="btn-"].midum span {
    line-height: 40px;
    font-size: 14px;
}

[class^="btn-"].small {
    min-width: auto;
    border-radius: 4px;
}

[class^="btn-"].small span {
    line-height: 26px;
    font-size: 13px;
    padding: 0 12px;
    box-sizing: border-box;
}

[class^="btn-"].full {
    width: 100%;
}

/* Modals */
.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    /* height: 100%; */
    height: calc(100vh - env(safe-area-inset-bottom));
    overflow: hidden;
    outline: 0;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    outline: 0;
    max-height: calc((var(--vh, 1vh)* 100) - env(safe-area-inset-bottom));
    border-radius: 4px;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem 1rem;
    pointer-events: none;
}


@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 3rem 2rem;
}

.modal-header .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}


.modal-body {
    position: relative;
    padding: 4px 16px 20px;
    overflow-y: auto;
    flex: 1 1 auto;
    overflow: auto;
    box-sizing: border-box;
    max-height: calc(100vh - env(safe-area-inset-bottom));
}

.modal.confirm .modal-body .confirm-text,
.modal.alert .modal-body .confirm-text {
    font-size: var(--var-font-size-36, 1.8rem);
    color: var(--var-color-111111, #111111);
    text-align: center;
    letter-spacing: -0.05em;
    word-break: keep-all;
}

.modal.confirm .modal-body .confirm-desc,
.modal.alert .modal-body .confirm-desc {
    text-align: center;
    letter-spacing: -0.03em;
}

.modal-body>*:first-child {
    margin-top: 0;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: space-between;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px);
}

.fade:not(.show) {
    opacity: 0;
}

.fade {
    transition: opacity .15s linear;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal .dim {
    z-index: 0;
}

.show {
    display: block;
}

.modal.modal-bottom.fade .modal-dialog {
    bottom: -100%;
}

.modal.modal-bottom.fade.show .modal-dialog {
    bottom: 0;
}

.modal.modal-bottom.fade .modal-dialog {
    bottom: -100%;
    -webkit-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    -o-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    transition: opacity 0.3s linear, bottom 0.3s ease-out;
}

.modal.modal-top .modal-dialog,
.modal.modal-bottom .modal-dialog {
    position: fixed;
    margin: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.modal.modal-left.fade.show .modal-dialog {
    left: 0;
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: calc((100vh - 1rem) - env(safe-area-inset-bottom));
    max-height: calc((100vh - 1rem) - env(safe-area-inset-bottom));
}

.modal.modal-top .modal-content,
.modal.modal-bottom .modal-content {
    height: auto;
    overflow-y: auto;
}

.modal.modal-full .modal-dialog {
    position: fixed;
    margin: auto;
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.modal.modal-full .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal-backdrop.show {
    opacity: .5;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-title {
    font-size: var(--size-title-sub);
    color: var(--color-font-black);
    font-weight: 500;
    font-size: 16px;
}

.modal-header {
    border-bottom: none;
    border-bottom: 1px solid var(--color-line-light3);
    padding: 0;
    padding-bottom: 4px;
    margin: 12px 16px 0px;
    margin-bottom: 0;
    align-items: center;
}

.modal-header.ntit {
    border-bottom: none;
}

.modal-footer {
    justify-content: center;
    border: none;
    padding: 0 20px 20px 20px;
}

.modal-content {
    box-sizing: border-box;
    position: relative;
}

.modal-content .close {
    opacity: 1;
}

.modal.modal-left .modal-dialog,
.modal.modal-right .modal-dialog,
.modal.modal-top .modal-dialog,
.modal.modal-bottom .modal-dialog {
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}



/* Right */


.modal.modal-right .modal-dialog {
    position: fixed;
    margin: auto;
    width: auto;
    max-width: 100%;
    height: 100%;
}


.modal.modal-right .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.modal-right .modal-body {
    padding: 0;
}


.modal.modal-left.fade.show .modal-dialog {
    left: 0;
}

.modal.modal-right.fade .modal-dialog {
    right: -100%;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.modal-right.fade.show .modal-dialog {
    right: 0;
    background: #fff;
}

.modal.modal-right .modal-content,
.modal.modal-full .modal-content {
    border-radius: 0;
    border: none;
}


/* Full Screen */

.modal.modal-full .modal-dialog {
    position: fixed;
    margin: auto;
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.modal.modal-full .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.modal-full .close-modal {
    position: fixed;
    top: 0;
    right: 3rem;
}




/* bottom */
.modal.modal-bottom .modal-dialog {
    position: fixed;
    margin: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.modal.modal-bottom .modal-content {
    height: auto;
    overflow-y: auto;
}

.modal.modal-bottom .modal-body {
    padding: 15px 15px;
}

.modal.modal-bottom.fade .modal-dialog {
    bottom: -100%;
    -webkit-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    -o-transition: opacity 0.3s linear, bottom 0.3s ease-out;
    transition: opacity 0.3s linear, bottom 0.3s ease-out;
}

.modal.modal-bottom.fade.show .modal-dialog {
    bottom: 0;
}

.modal.modal-bottom.fade .modal-dialog {
    bottom: -100%;
}





/* sub menu */
.gnb-wrap {
    min-height: calc(100% + 1px);
}

.gnb-wrap .sub-items {
    padding: 4px 0;
}

.gnb-wrap .sub-items+.sub-items {
    border-top: 1px dashed #ddd;
}

.gnb-wrap .link-sub {
    display: block;
    padding: 8px 12px;
    font-weight: 400;
}

.gnb-wrap .sub-items.active .link-sub {
    border-radius: 4px;
    background-color: var(--color-primary);
    font-weight: 500;
}







/* tab */
[class^="tabs-container"] {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

/* 탭 스타일 */
[class^="tabs-container01"] .tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f5f6f7;
    margin-bottom: 20px;
}

[class^="tabs-container01"] .tabs li {
    flex: 1;
    background: #f2f2f2;
}

[class^="tabs-container01"] .tabs a {
    display: block;
    /* padding: 10px 20px; */
    text-align: center;
    font-size: 14px;
    color: #8b95a1;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    line-height: 47px;
    height: 47px;
    border-top: 1px solid #f2f2f2;
    font-weight: 600;
}

[class^="tabs-container01"] .tabs a[aria-selected="true"] {
    border-bottom-color: #fff;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #ddd;
    border-bottom-color: #fff;
    border-top: 1px solid #ffcf0d;
    font-weight: 600;
}

[class^="tabs-container01"] .tabs a:focus {
    outline: none;
    border-top: 2px solid #ffcf0d;
    border-bottom-color: #fff;
    color: #1a1a1a;
}

/* 탭 스타일2 */

[class^="tabs-container02"] .tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f5f6f7;
    margin-bottom: 20px;
}

[class^="tabs-container02"] .tabs li {
    flex: 1;
    border-top: 1px solid var(--color-font-emp);
    border-bottom: 1px solid var(--color-line-light4);
    background: #fff;
    text-align: center;
}

[class^="tabs-container02"] .tabs a {
    display: inline-block;
    padding: 0px 12px;
    text-align: center;
    font-size: 16px;
    color: #8b95a1;
    text-decoration: none;
    line-height: 52px;
    height: 52px;
    font-weight: 400;
}

[class^="tabs-container02"] .tabs a[aria-selected="true"] {
    background: #fff;
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: 600;
}

[class^="tabs-container02"] .tabs a:focus {
    outline: none;
    background: #fff;
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: 600;
}



/* 탭 스타일 3 */
[class^="tabs-container03"] .tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    /* background-color: #f5f6f7; */
    margin-bottom: 20px;
    background: #f2f2f2;
    border-bottom: 1px solid #ddd;
}

[class^="tabs-container03"] .tabs li {
    /* flex: 1; */
    background: #f2f2f2;
}

[class^="tabs-container03"] .tabs a {
    display: block;
    /* padding: 10px 20px; */
    text-align: center;
    font-size: 14px;
    color: #aaaaaa;
    text-decoration: none;
    /* border-bottom: 1px solid #ddd; */
    line-height: 47px;
    height: 47px;
    border-top: 1px solid #f2f2f2;
    font-weight: 600;
    width: 200px;
}

[class^="tabs-container03"] .tabs a[aria-selected="true"] {
    border-bottom-color: #fff;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #ddd;
    border-bottom-color: #fff;
    border-top: 2px solid #ffcf0d;
    font-weight: 600;
    margin-bottom: -1px;
}

[class^="tabs-container03"] .tabs a:focus {
    outline: none;
    border-top: 2px solid #ffcf0d;
    border-bottom-color: #fff;
    color: #1a1a1a;
}

/* 탭 스타일 4 */
[class^="tabs-container04"] .tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}


[class^="tabs-container04"] .tabs a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #aaaaaa;
    text-decoration: none;
    line-height: 47px;
    height: 47px;
    border-top: 1px solid #fff;
    font-weight: 600;
    width: 200px;
}

[class^="tabs-container04"] .tabs a[aria-selected="true"] {
    border-bottom-color: #fff;
    background: #fff;
    color: #1a1a1a;
    border-bottom-color: #fff;
    font-weight: 600;
    background: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    border-top: 1px solid var(--color-primary);
    margin-bottom: -2px;
}

[class^="tabs-container04"] .tabs a:focus {
    outline: none;
    border-top: 2px solid #ffcf0d;
    border-bottom-color: #fff;
    color: #1a1a1a;
}


/* 앵커 */
[class^="tabs-container02"] .anchor {
    position: sticky;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    top: 95px;
    z-index: 10;
    margin-left: -16px;
    width: calc(100% + 32px);
    margin-top: 24px;
}

[class^="tabs-container02"] .anchor li {
    flex: 1;
    border-top: 1px solid var(--color-font-emp);
    border-bottom: 1px solid var(--color-line-light4);
    background: transparent;
    text-align: center;
}

[class^="tabs-container02"] .anchor a {
    display: inline-block;
    padding: 0 4px;
    text-align: center;
    font-size: 15px;
    color: #8b95a1;
    text-decoration: none;
    line-height: 48px;
    height: 48px;
    font-weight: 400;
}

[class^="tabs-container02"] .anchor a[aria-selected="true"] {
    background: transparent;
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: 600;
}

[class^="tabs-container02"] .anchor a:focus {
    outline: none;
    background: transparent;
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: 600;
}



/* 서브앵커 */

[class^="tabs-container02"] .sub-anchor {
    position: sticky;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    top: 143px;
    z-index: 10;
    margin-left: -16px;
    width: calc(100% + 32px);
    margin-top: 24px;
}

[class^="tabs-container02"] .sub-anchor li {
    flex: 1;
    border-top: 1px solid var(--color-font-emp);
    border-bottom: 1px solid var(--color-line-light4);
    background: transparent;
    text-align: center;
}

[class^="tabs-container02"] .sub-anchor a {
    display: inline-block;
    padding: 0 4px;
    text-align: center;
    font-size: 15px;
    color: #8b95a1;
    text-decoration: none;
    line-height: 48px;
    height: 48px;
    font-weight: 400;
}

[class^="tabs-container02"] .sub-anchor a[aria-selected="true"] {
    background: transparent;
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: 600;
}

[class^="tabs-container02"] .sub-anchor a:focus {
    outline: none;
    background: transparent;
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: 600;
}

[class^="tabs-container02"] .anchor {
    justify-content: flex-start;
    border-top: 1px solid var(--color-font-emp);
    border-bottom: 1px solid var(--color-line-light4);
}

[class^="tabs-container02"].left .anchor li {
    flex: 0 1 auto;
    padding: 0 12px;
    border-bottom: 0;
    border-top: 0;
}







/* [class^="tabs-container"] .anchor + .tab-contents{margin-top: 80px;} */
[class^="tabs-container"] .anchor+.tab-contents {}

.anchor+.tab-contents section {
    scroll-margin-top: 102px;
}

.tab-contents.bar::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    background-color: #F6F8FA;
    margin-left: -16px;
    width: calc(100% + 32px);
}



/* 패널 스타일 */
.tab-panels {
    padding: 16px;
    background-color: #fff;
    border-top: none;
}

[role="tabpanel"] {
    display: none;
}

[role="tabpanel"]:not([hidden]) {
    display: block;
}


/* table */
.table-container {
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid var(--color-font-emp);
}

.tbl-base {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 16px;
    table-layout: fixed;
}

.tbl-base th,
.tbl-base td {
    text-align: center;
    border-left: 1px solid var(--color-line-light4);
    border-bottom: 1px solid var(--color-line-light4);
    font-size: 14px;
}

.tbl-base th {
    background-color: #f5f6f7;
    color: var(--color-font-emp);
    font-weight: 500;
}

.tbl-base th:last-child,
.tbl-base td:last-child {
    border-right: 1px solid var(--color-line-light4);
}

.tbl-base th .desc {
    font-size: 12px;
    color: var(--color-font-emp);
    display: block;
    padding-top: 6px;
}

.tbl-base tbody tr {
    border-bottom: 1px solid var(--color-line-light4);
}

.tbl-base tbody tr:last-of-type {
    border-bottom: none;
}

.tbl-base thead th {
    height: 58px;
    vertical-align: middle;
}

.tbl-base td {
    color: #4e5968;
    font-weight: 500;
    padding: 12px;
}

.tbl-base+.dash {
    margin-top: 10px;
}


.button-cell {
    text-align: center;
    padding: 20px;
    border: none;
    background-color: #ffffff;
}

.reserve-button {
    background-color: #ffcc00;
    color: var(--color-font-emp);
    border: none;
    padding: 12px 18px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
}

.reserve-button:hover {
    background-color: #e6b800;
}

.table-container .price {
    color: var(--color-font-emp);
    font-size: 18px;
    font-weight: 500;
}

.table-container .price .unit {
    font-size: 14px;
}

.table-container .price+.dsc {
    display: block;
    color: #4e5968;
    font-size: 12px;
    padding-top: 4px;
    font-weight: 300;
}

.tbl-tes-hotel tbody tr td:first-child {
    text-align: left;
    padding: 10px 20px;
}

.tbl-tes-hotel .tit {
    font-weight: 500;
    font-size: 16px;
    color: var(--color-font-emp);
}

.tbl-tes-hotel .tit+.sub-btn {
    margin-top: 4px;
}

.tbl-tes-hotel+.btn-more-wrap {
    background: #f5f6f7;
    text-align: center;
    padding: 20px;
}

.tbl-tes-hotel+.btn-more-wrap .btn-more {
    height: 36px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #8B95A1;
    box-sizing: border-box;
    font-size: 14px;
    text-align: center;
    line-height: 36px;
    transition: all 0.3s ease;
    color: var(--color-font-emp);
    border-radius: 4px;
}

.tbl-tes-hotel td {
    vertical-align: middle;
}


/* 세로형 */
.tbl-base.col th {
    vertical-align: middle;
}

.tbl-base.col td {
    vertical-align: middle;
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--color-font-emp);
    min-height: 34px;
}




/*********************************************************************************************************
 accordion
*********************************************************************************************************/
.accordion_box {
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
    /* margin-bottom: 20px; */
}

.accordion_box .check_all {
    border-bottom: 1px solid var(--color-line-light2);
    padding-bottom: 20px;
}

.accordion_box .check_all label {
    font-weight: 600;
}

.accordion_items+.accordion_items {
    border-top: 1px solid var(--color-line-light2);
}

.accordion_box .header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    height: 50px;
    cursor: pointer;
    background-color: var(--color-white);
    margin: 0;
    font-size: 1em;
    /* border-bottom: 1px solid var(--color-line-light2); */
}

.accordion_box .tit-area i {
    padding-right: 8px;
}

.accordion_box .tit-area {
    display: flex;
    align-content: center;
    position: relative;
    font-size: 15px;
    align-items: center;
}

.accordion_box .header-area .tit {
    color: var(--color-font-black);
    font-weight: 600;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.accordion_box .header-area .date {
    color: var(--color-line-dark);
}

.accordion_box .header-area .date::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 14px;
    margin: 0 16px;
    background: var(--color-line-light2);
    vertical-align: middle;
}

.accordion_box .header-area .arrow {
    transition: transform 0.3s ease;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/common/arrow_acc.png) no-repeat center center;
    background-size: contain;
}

.accordion_box .contents-area {
    display: none;
    background-color: #fff;
    overflow: hidden;
    border-top: 1px solid var(--color-line-light2);
    padding: 28px 16px;
    padding-bottom: 30px;
}









/* noborder  */

.accordion_box.noborder {
    border: none;
    margin-bottom: 0;
    border-radius: 0;
}

.accordion_box.noborder .header-area {
    padding: 8px;
    border-bottom: 1px solid var(--color-line-light2);
    height: 40px;
}

.accordion_box.noborder .contents-area {
    border-top: none;
    padding: 8px 0;
}

.accordion_box.noborder .accordion_items {
    border-top: 0;
}

.accordion_box.noborder .accordion_items.active .header-area {
    border-bottom: none;
}




/* 로그인 회원가입 */

.desc.info {
    display: block;
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-font-normal);
    line-height: 1.5;
    margin-top: 4px;
}

.desc.info::after {
    display: block;
    content: '';
    background: url(../images/common/ico_info.svg) no-repeat 0 0 / 20px;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 14px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 14px;
}



.form-items.inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.form-items.inline input {
    flex: 1;
    margin-right: 16px;
}

.form-items.inline button {
    border-radius: 4px;
    width: 102px;
    align-self: stretch;
}


.form-items.inline [class^="chk-unit"] {
    margin-left: 16px;
}

.form-group.inline {
    display: flex;
    align-items: flex-start;
}

.form-group.inline .form-wrap:first-child {
    flex: 1;
    margin-right: 16px;
}

.unified-container .form-group.inline .form-wrap {
    margin-top: 0;
}

.unified-container .form-group.inline .form-wrap:last-child {
    width: 160px;
}

.unified-container .form-group.inline .form-wrap:last-child .rdo-unit {
    width: 70px;
}


/* 로그인, 회원가입 */
.unified-container {
    max-width: 768px;
    margin: 0 auto;
}

.unified-container #header {
    max-width: 768px;
    margin: 0 auto;
    left: auto;
    box-shadow: none;
}

.unified-container .form-wrap label {
    color: var(--color-font-black);
    padding-bottom: 8px;
    font-size: 14px;
    display: inline-block;
}

.unified-container .input-base {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    height: 48px;
    padding: 0 12px;
    line-height: 18px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--color-font-normal);
    border-radius: 8px;
    box-sizing: border-box;
}

.unified-container .input-base:focus:not(:read-only) {
    outline: none;
}

.unified-container .input-base:disabled {
    background: #f7f7f7;
}

.unified-container .input-base:read-only {
    background: #f7f7f7;
}

.unified-container .input-base.big {
    height: 48px;
    padding: 0 16px;
    border-radius: 4px;
}

.unified-container .input-base.w200 {
    width: 250px;
}

.unified-container [data-toggle].input-base:read-only {
    cursor: pointer;
}

.unified-container [data-toggle].input-base:focus-visible {
    border: 0;
    outline: none;
}

.unified-container .form-wrap label {
    color: var(--color-font-black);
    padding-bottom: 8px;
    font-size: 14px;
    display: inline-block;
}

.unified-container .form-wrap+.form-wrap,
.unified-container .form-wrap+.form-group,
.unified-container .form-group+.form-group,
.unified-container .form-group+.form-wrap {
    margin-top: 16px;
}

.unified-container .form-wrap .form-items {
    min-height: 48px;
    display: flex;
    align-items: center;
}

.unified-container .form-wrap .form-group {
    margin-bottom: 0;
}

.unified-container .form-wrap .form-group.inline .input-base {
    width: calc((100% - 13px) / 3);
}

.unified-container .login-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.unified-container [class*="-wrap"]>.header-area {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
}

.unified-container .header-area h2 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.1px;
    color: #1a1a1a;
}

.unified-container .header-area .logo img {
    height: 45px;
}

.unified-container .header-area .desc {
    margin-top: 10px;
    line-height: 1.4;
}

.unified-container .login-list {
    position: relative;
    text-align: center;
    margin: 16px;
}

.unified-container .link-login {
    display: inline-block;
}

.unified-container .link-login+.link-login {
    margin-left: 8px;
    padding: 8px 0;
    padding-left: 14px;
    font-size: 15px;
}

.unified-container .link-login {
    position: relative;
}

.unified-container .link-login+.link-login::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 4px;
    height: 4px;
    background: #d3d3d3;
    border-radius: 50%;
}

.unified-container .sns-list {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.unified-container .btn-sns {
    display: inline-block;
    width: 48px;
    height: 48px;
}

.unified-container .btn-sns+.btn-sns {
    margin-left: 20px;
}

.unified-container .ico-kakao {
    background: url(../images/common/ico_kakao.png) no-repeat 0 0 / 48px;
}

.unified-container .ico-naver {
    background: url(../images/common/ico_naver.png) no-repeat 0 0 / 48px;
}

.unified-container .ico-apple {
    background: url(../images/common/ico_apple.png) no-repeat 0 0 / 48px;
}

.unified-container section+section {
    padding-top: 28px;
    border-top: 1px solid #ebebeb;
    margin-top: 28px;
}

.unified-container section .tit {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}


label .ess {
    color: #f00;
    padding-left: 4px;
}

.unified-container .accordion_box.noborder .header-area {
    border-bottom: 0;
}

.unified-container .btm-area {
    margin-top: 28px;
}

.unified-container [class^="tabs-container01"] .tabs {
    padding-top: 20px;
    margin-top: -40px;
}

.unified-container .btm-area button.full {
    width: 100%;
}

.idfind-wrap .visual.mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0;
    height: calc(100vh - 350px);
}

.idfind-wrap .visual.mobile>i {
    display: block;
    width: 50px;
}

.idfind-wrap .visual.mobile>i>img {
    width: 100%;
    height: 100%;
}

.idfind-wrap .visual.mobile>.txt {
    padding-top: 20px;
}

.idfind-wrap .con-area .form-wrap:first-child {
    padding-top: 40px;
}

#container.btn-container {
    padding-bottom: 84px;
}

.tab-contents.btn-container {
    padding-bottom: 48px;
}


.btn-container .btm-area {
    position: fixed;
    left: 16px;
    bottom: 0;
    width: 100%;
    width: calc(100% - 32px);
    z-index: 1000;
    padding-bottom: 16px;
    border: 1px solid #fff;
}

.btn-container .tab-contents .btm-area {
    width: auto;
    left: 24px;
    right: 24px;
}

.btn-container .btm-area::before {
    content: '';
    position: absolute;
    left: -16px;
    right: -16px;
    bottom: 0;
    background: #fff;
    height: 69px;
    width: auto;
    z-index: 0;
}

.btn-container .btm-area button {
    position: absolute;
    bottom: 16px;
}

.tab-contents .btm-area::before {
    content: '';
    position: absolute;
    left: -26px;
    right: -26px;
    bottom: 0;
    background: #fff;
    height: 69px;
    width: auto;
    z-index: 0;
}

.tab-contents .btm-area button {
    position: absolute;
    bottom: 16px;
    width: calc(100% - 32px);
}

[class^="tabs-container01"] .tabs {
    position: sticky;
    padding-top: 96px;
    top: 0;
    background: #fff;
    margin-top: -96px;
}

@media (min-width: 768px) {
    .btm-area {
        position: relative;
        width: 100%;
    }

    .btn-container .btm-area {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
    }

    .btn-container .btm-area button {
        position: relative;
        bottom: auto;
    }

    .idfind-wrap .visual.mobile {
        height: auto;
    }

    .idfind-wrap .visual.mobile>i {
        display: block;
        width: 40px;
    }
}



/* bottomsheet */

/* dim 처리 */
.dim {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--vh, 1vh)* 100);
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    will-change: transform, opacity;
}

.dim.active {
    display: block;
}

/* 바텀시트 스타일 */
.bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.3s ease-in-out;
    z-index: 9999;
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    padding-bottom: 10px;
}

.bottom-sheet .close-btn {
    margin-left: auto;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.bottom-sheet.active {
    bottom: 0;
}

.bottom-sheet .sheet-body {
    padding: 0 20px 20px 20px;
}

.datepicker-base .ui-datepicker-calendar thead {
    border-bottom: 1px solid #e7e7e7;
}

.datepicker-base .ui-datepicker-calendar thead th {
    padding-bottom: 8px;
}

.datepicker-base .ui-datepicker-calendar tbody tr:first-child td {
    padding-top: 10px;
}

.datepicker-base .ui-datepicker-inline {
    font-family: "Pretendard Variable", Pretendard, "Noto Sans";
    width: auto;
    color: var(--color-font-emp);
    background: var(--color-white);
    padding: 10px;
    margin-top: 0;
    top: -1px;
    border-radius: 0;
    transform: translateY(-1px);
    border: 0;
    padding: 0;
}

.datepicker-base .ui-datepicker-header {
    border: 0;
    background: 0;
}

.datepicker-base .ui-datepicker .ui-datepicker-prev span,
.datepicker-base .ui-datepicker .ui-datepicker-next span {
    color: #fff;
    border: solid black;
    border-width: 0 2px 2px 0;
    border-radius: 0;
    display: inline-block;
    padding: 3px;
    background: none;
    width: 3px;
    height: 3px;
    cursor: pointer;
    top: 20px;
}

.datepicker-base .ui-datepicker-header a {
    font-size: 14px;
    width: 32px;
    height: 32px;
    border: 0;
    transform: translateY(-50%);
    top: 50%;
}

.datepicker-base .ui-datepicker-prev span {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    margin-left: -4px;
}

.datepicker-base .ui-datepicker .ui-datepicker-next span {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-left: -12px;
    left: 20px;
}

.datepicker-base .ui-datepicker-title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    padding: 4px;
}

.datepicker-base .ui-datepicker-calendar thead th {
    font-weight: 600;
    font-size: 16px;
}

.datepicker-base .ui-datepicker-calendar td {
    font-size: 14px;
}

.datepicker-base .ui-datepicker-calendar td a:hover {
    background-color: var(--color-primary);
    color: var(--color-font-black);
}

.datepicker-base .ui-datepicker-calendar td a {
    font-size: 16px;
    width: 28px;
    height: 28px;
    border: 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.datepicker-base .ui-state-active,
.datepicker-base .ui-widget-content .ui-state-active,
.datepicker-base .ui-widget-header .ui-state-active,
.datepicker-base a.ui-button:active,
.datepicker-base .ui-button:active,
.datepicker-base .ui-button.ui-state-active:hover {
    background-color: var(--color-primary);
    color: var(--color-font-black);
}

.datepicker-base+.desc {
    display: block;
    margin-top: 8px;
    font-weight: 300;
    font-size: 13px;
}


.sub-visual .img {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    z-index: -1;
    width: 100%;
    height: 242px;
}


.sub-visual .img::before {
    content: '';
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.35;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}

.sub-visual .img.bright::before {
    opacity: 0.1;
}



/* 검색영역 */
.sub-visual {
    position: relative;
    margin-left: -16px;
    width: calc(100% + 32px);
    overflow: hidden;
}

.sub-visual .search-bar {
    position: relative;
    padding: 20px 16px 20px;
}

.sub-visual .search-bar>.inner {
    padding: 0 16px;
    border-radius: 8px;
    background: #fff;

    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
}

.sub-visual .search-bar .btn-prim.search {
    width: 100%;
    margin-top: 8px;
}

.sub-visual .search-bar .btn-prim.search>span {
    font-weight: 400;
    line-height: 42px;
    font-size: 15px;
}

.sub-visual .search-bar .group {
    width: 100%;
}

.sub-visual .search-bar .input-base {
    border: 0;
    border-bottom: 1px solid var(--color-line-light3);
    border-radius: 0;
    font-size: 14px;
    line-height: 51px;
}

.sub-visual .search-bar .people .input-base {
    border-bottom: none;
}

.sub-visual .search-bar .form-items {
    position: relative;
}

.sub-visual .search-bar .form-items label {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: 8px;
}

.sub-visual .search-bar .form-items label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
}

.sub-visual .search-bar .input-base {
    padding-left: 40px;
}

.sub-visual .search-bar .name label::before {
    background-image: url(../images/common/ic_search.svg);
}

.sub-visual .search-bar .checkin label::before {
    background-image: url(../images/common/ic_calendar.svg);
}

.sub-visual .search-bar .people label::before {
    background-image: url(../images/common/ic_room.svg);
}


/* date custom */
.date-base {
    cursor: pointer;
}


.daterangepicker12 {
    z-index: 999;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    overflow: overlay;
    max-height: calc(100vh - env(safe-area-inset-bottom));
    height: 630px;
    max-height: calc((var(--vh, 1vh)* 100) - 10px);
    width: calc(100% - 80px);
    padding-top: 16px;
    box-sizing: border-box;
    margin-top: 0;
    overflow: auto;
}

.daterangepicker {
    /* position: fixed; */
    z-index: 999;
    top: 50% !important;
    left: 50% !important;
    /* transform: translate(-50%, calc(-50% + var(--scroll-y))) !important; */
    transform: translate(-50%, -50%);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    max-height: calc((var(--vh, 1vh) * 100) - 20px);
    height: 630px;
    width: calc(100% - 80px);
    padding-top: 16px;
    box-sizing: border-box;
    margin-top: 0;
    overflow: auto;
    will-change: transform, opacity;
}

.daterangepicker11 {
    height: 630px;
    max-height: calc((var(--vh, 1vh) * 100) - 20px);
    display: none;
    transform: translate(-50%, -50%);
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    width: 90%;
    width: calc(100% - 80px);
    padding-top: 16px;
    box-sizing: border-box;
    margin-top: 0;
    z-index: 999;
    overflow: auto;
}

.daterangepicker .drp-calendar {
    margin: 0 auto;
}

.daterangepicker .close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}


.daterangepicker:before,
.daterangepicker:after {
    display: none;
}

.daterangepicker .drp-buttons .applyBtn {
    background-color: var(--color-primary);
    color: var(--color-font-black);
    font-weight: 600;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
}

.daterangepicker .cancelBtn {
    display: none;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: var(--color-primary);
    color: var(--color-font-black);
}

.daterangepicker td.end-date,
.daterangepicker td.end-date:hover {
    background-color: var(--color-primary);
    color: var(--color-font-black);
}

.daterangepicker th.month {
    font-size: 18px;
    color: var(--color-font-emp);
    font-weight: 600;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    font-size: 15px;
    width: 38px;
    height: 32px;
}

.daterangepicker .calendar-table thead tr:nth-child(2) th {
    font-weight: 600;
}

.daterangepicker .drp-selected {
    font-size: 14px;
}


.daterangepicker .drp-calendar {
    max-width: 300px;
}


.form-group.inline {
    display: flex;
    align-items: center;
}

.form-group .dash {
    margin: 0 5px;
}


.opt-floating {
    position: fixed;
    left: 0;
    bottom: -1px;
    z-index: 999;
    width: 100%;
}

.opt-floating .opt-wrap {
    position: absolute;
    width: 100%;
    background: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid #ddd;
    bottom: calc(87px + env(safe-area-inset-bottom));
}

.opt-floating .opt-wrap .opt-box {
    max-height: calc(100vh - 110px);
    padding: 16px 16px 0;
}

.opt-floating .opt-wrap .opt-box .inner {
    height: 100%;
}

.opt-floating .opt-wrap .opt-btn {
    position: absolute;
    top: -20px;
    left: 50%;
    z-index: 999;
    width: 50px;
    height: 21px;
    border: 1px solid #ddd;
    border-bottom: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: #fff;
    transform: translateX(-50%);
}

.opt-floating .opt-wrap .opt-btn::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 6px;
    background: url(../images/detail/opt_btn.svg) no-repeat;
    background-size: contain;
}

.opt-floating.active .opt-wrap .opt-btn::after {
    transform: rotate(-180deg);
}

.opt-floating.active .opt-wrap {
    transform: translateY(1px);
}



.opt-floating .btn-wrap {
    padding: 20px 16px;
    background: #fff;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    position: relative;
}

.opt-floating .total-price>h4 {
    font-size: 16px;
    padding-bottom: 0;
}

.opt-floating .total-price .price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.division-opt .price-box .desc {
	padding-top: 4px;
    font-size: 11px;
}

.total-price .price {
    color: var(--color-font-red);
    font-size: 22px;
    display: block;
    font-weight: bold;
    letter-spacing: -0.06em;
}

.total-price .unit {
    color: var(--color-font-emp);
    font-size: 16px;
    padding-left: 2px;
    vertical-align: middle;
}

.total-price .desc {
    /* padding-top: 8px; */
    padding-top: 4px;
    font-size: 11px;
    display: inline-block;
}


/* toggle layer */
.layer-container {
    position: relative;
}

.toggle-layer .tit {
    line-height: 18px;
}

.toggle-layer .tit abbr {
    display: block;
    font-size: 12px;
    color: var(--color-font-normal);
    font-weight: 400;
}

.toggle-layer .division-opt {
    padding: 20px 10px;
}

.toggle-layer .division-opt+.division-opt {
    border-top: 1px solid var(--color-line-light);
}

.toggle-layer .division-opt:last-of-type {
    padding-bottom: 0;
}

.toggle-layer .division-opt h4 {
    font-size: 18px;
    color: var(--color-font-emp);
    padding-bottom: 24px;
    font-weight: 600;
}

.toggle-layer .division-opt .opt-items {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-layer .division-opt .opt-items+.opt-items {
    margin-top: 20px;
}

.toggle-layer .division-opt.room {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-layer .opt-items .counter button {
    float: left;
    width: 32px;
    height: 30px;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center top;
    border: solid 1px var(--color-font-normal);
}

.toggle-layer .opt-items .counter .count-down {
    background-image: url(../images/common/ic-count-down.png);
}

.toggle-layer .opt-items .counter .count-up {
    background-image: url(../images/common/ic-count-up.png);
}

.toggle-layer .opt-items .counter input[type='text'] {
    float: left;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 14px;
    line-height: 28px;
    box-sizing: border-box;
    border-top: solid 1px var(--color-line-normal);
    border-bottom: solid 1px var(--color-line-normal);
    color: var(--color-font-blue);
    font-weight: 700;
}

.toggle-layer .division-opt.room h4 {
    padding-bottom: 0;
}



.toggle-layer [class^='btn-'] span {
    font-weight: 500;
}

.toggle-layer .box+.box {
    border-top: 1px solid var(--color-line-light);
    padding-top: 20px;
}

.toggle-layer .opt-list.child {
    padding: 20px 0 20px;
    border-top: 1px solid var(--color-line-light);
}

.toggle-layer .opt-list.child .sel-base {
    max-width: 108px;
    min-width: 108px;
    min-width: 108px;
}

.toggle-layer .sel-base.nice_select .list {
    max-height: 100px;
    min-width: 108px;
}

.toggle-layer .opt-list {
    padding-bottom: 20px;
}



/* toggle layer */
.layer-container {
    position: relative;
}

.opt-wrap .opt-items span.tit {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 13px;
    color: var(--color-font-normal);
    font-weight: 400;
}

.opt-wrap .tit abbr {
    display: block;
    font-size: 12px;
    color: var(--color-font-normal);
    font-weight: 400;
}

.opt-wrap .division-opt {
    padding: 0 10px 16px;
}

.opt-wrap .division-opt+.division-opt {
    border-top: 1px solid var(--color-line-light);
    padding: 16px 10px;
}

.opt-wrap .division-opt:last-of-type {
    padding-bottom: 0;
}

.opt-wrap .division-opt h4 {
    font-size: 16px;
    color: var(--color-font-emp);
    padding-bottom: 12px;
    font-weight: 600;
}

.opt-wrap .division-opt .opt-items {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.opt-wrap .division-opt .opt-items+.opt-items {
    margin-top: 10px;
}

.opt-wrap .division-opt.room {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.opt-floating .opt-items .price {
    display: block;
    padding-top: 16px;
    letter-spacing: -0.09rem;
    font-size: 20px;
    color: var(--color-font-black);
    font-weight: 600;
}

.opt-floating .opt-items .price>span {
    font-size: 12px;
}

.opt-floating .opt-items .counter {
    align-self: flex-end;
}

.opt-wrap .opt-items .counter button {
    float: left;
    width: 32px;
    height: 30px;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center top;
    border: solid 1px var(--color-font-normal);
}

.opt-wrap .opt-items .counter .count-down {
    background-image: url(../images/common/ic-count-down.png);
}

.opt-wrap .opt-items .counter .count-up {
    background-image: url(../images/common/ic-count-up.png);
}

.opt-wrap .opt-items .counter input[type='text'] {
    float: left;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 14px;
    line-height: 28px;
    box-sizing: border-box;
    border-top: solid 1px var(--color-line-normal);
    border-bottom: solid 1px var(--color-line-normal);
    color: var(--color-font-blue);
    font-weight: 700;
}

.opt-wrap .division-opt.room h4 {
    padding-bottom: 0;
}


.opt-wrap [class^='btn-'] span {
    font-weight: 500;
}

.opt-wrap .box+.box {
    border-top: 1px solid var(--color-line-light);
    padding-top: 20px;
}

.opt-wrap .opt-list .sel-base {
    max-width: 94px;
    min-width: 94px;
}

.opt-wrap .sel-base.nice_select .list {
    max-height: 100px;
    min-width: 94px;
}



/* list */
.list-wrapper {
    background: #F6F8FA;
    margin-left: -16px;
    padding: 0 16px;
    width: calc(100% + 32px);
    margin-bottom: -32px;
    padding-bottom: 32px;
}

.list-wrapper .view-list {
    padding-top: 28px;
}

.list-wrapper .view-items {
    width: 100%;
}

.list-wrapper .view-items+.view-items {
    padding-top: 20px;
}

.list-wrapper .link-view {
    display: block;
    box-shadow: 0 3px 13px 0 rgba(0, 0, 0, .1);
    border-radius: 16px;
}

.list-wrapper .img-box {
    max-height: 48.77vw;
    border-radius: 16px 16px 0 0;
    overflow: hidden;

}

.list-wrapper .info-box {
    background: #fff;
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    border-radius: 0 0 16px 16px;
}

.list-wrapper .info-box .tit {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.list-wrapper .info-box .desc {
    padding-top: 6px;
    color: #787878;
    font-size: 13px;
    line-height: 18px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 3줄로 제한 */
    -webkit-box-orient: vertical;
    width: 100%;
}

.list-wrapper.daytour .info-box .desc {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: 100%;
    overflow: hidden;
}


.list-wrapper .info-box .star {
    width: 14px;
    height: 14px;
    display: flex;
    position: absolute;
    bottom: 22px;
    left: 16px;
}

.list-wrapper .info-box .price {
    margin-left: auto;
    padding-top: 10px;
    color: #FF0000;
    font-size: 14px;
    font-family: 'GmarketSans';
    font-weight: 700;
}

.list-wrapper .info-box .price span {
    color: #1a1a1a;
    font-size: 10px;
    font-family: "Pretendard Variable", Pretendard, "Noto Sans", sans-serif;
}

.detail-wrapper.daytour .time-box {
    margin-top: 8px;
}

.time-box {
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    color: #0089CF;
    font-size: 13px;
    font-weight: 400;
    align-items: center;
    width: auto;
    max-width: fit-content;
}


.time-box::before {
    content: '';
    vertical-align: middle;
    margin-right: 4px;
    display: inline-block;
    width: 13px;
    height: 13px;
    background: url(../images/common/ic_time.svg) no-repeat;
    background-size: contain;
}


.list-wrapper .time-box {
    position: absolute;
    bottom: 22px;
    left: 16px;
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    color: #0089CF;
    font-size: 13px;
    font-weight: 400;
    align-items: center;
    width: auto;
    max-width: fit-content;
}

.list-wrapper .time-box::before {
    content: '';
    vertical-align: middle;
    margin-right: 4px;
    display: inline-block;
    width: 13px;
    height: 13px;
    background: url(../images/common/ic_time.svg) no-repeat;
    background-size: contain;
}

.detail-wrapper.individual {
    bottom: calc(107px + env(safe-area-inset-bottom));
}

.detail-group {}

/* .detail-group .img{margin-left: -16px;width: calc(100% + 32px);max-height: 242px;} */
.detail-group .img {
    margin-left: -16px;
    width: calc(100% + 32px);
    padding-top: 66.66%;
    position: relative;
    overflow: hidden;
}


.detail-group .img img {
    position: absolute;
    top: 0;
    left: 0;
}

.detail-wrapper .star {
    padding-bottom: 6px;
}

.detail-wrapper .star>img {
    display: inline-block;
    width: 12px;
    height: 12px;
}

.detail-group .info-area {
    padding-top: 20px;
}

.detail-group .price-box .price {
    color: #ff0000;
    font-size: 20px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.division-opt.head .price-box {
    padding-top: 16px;
}

.detail-group .price-box .unit {
    font-size: 12px;
    color: #1a1a1a;
    margin-left: 0;
}

.detail-group .division-opt.body {
    margin-top: 20px;
}

.division-opt.body.line {
    border-top: 1px solid #EBEBEB;
    padding-top: 20px;
}

.division-opt.body .info-items {
    display: flex;
    justify-content: flex-start;
}

.division-opt.body .info-items+.info-items {
    padding-top: 12px;
}

.division-opt.body .info-items .tit {
    font-weight: 500;
    font-size: 13px;
    color: #787878;
    display: block;
    padding-right: 20px;
    flex: 0;
    flex-basis: 80px;
}

.division-opt.body .info-items .con {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 15px;
    flex: 0 0 calc(100% - 100px);
    line-height: 1.2;
}

.division-opt.body .info-items .con em {
    color: #8B95A1;
    font-size: 12px;
    display: inline-block;
    padding-left: 2px;
    font-weight: 300;
}

.detail-group .tit {
    color: #000;
    display: block;
    font-size: 18px;
    font-weight: 500;
}

.detail-group .tit .desc {
    display: block;
    font-size: 12px;
    font-weight: 400;
    padding-top: 4px;
}


/* 포함/불포함 사항 */
.sc-include .tit {
    position: relative;
    font-size: 16px;
    font-weight: 500;
}

.sc-include .tit::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    vertical-align: -1px;
    margin-right: 8px;
    background-size: contain;
}

.include-box .tit::before {
    background-image: url(../images/detail/ic_include.svg);
}

.sc-include .bg-box>div[class$="-box"] {
    padding: 16px 0;
    position: relative;
}

.sc-include .excluded-box {
    border-top: 1px dashed #8B95A1;
}

.excluded-box .tit::before {
    background-image: url(../images/detail/ic_exclude.svg);
}

.sc-include .txt-list {
    padding-top: 10px;
    font-size: 14px;
}

.sc-include .txt-items {
    font-weight: 500;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.sc-include .txt-items+.txt-items {
    padding-top: 8px;
}

.tab-group .main-tab-container {
    width: 100%;
}

.tab-group .main-tabs {
    display: flex;
    position: sticky;
    top: 95px;
    background-color: #f1f1f1;
    z-index: 10;
}

/* .tab-group .main-tab {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    background-color: #ddd;
    border: none;
    text-align: center;
  } */
.tab-group .anchor {
    background: #fff;
}

.tab-group .main-tab {
    display: inline-block;
    padding: 0 4px;
    text-align: center;
    font-size: 15px;
    color: #8b95a1;
    text-decoration: none;
    line-height: 48px;
    height: 48px;
    font-weight: 400;
}

.tab-group .main-tab.active {
    background: transparent;
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: 500;
}

/* 서브탭 스타일 */
.individual .sub-tabs-1.gray {
    background-color: #F6F8FA;
}

.tab-group .sticky-sub-tabs {
    display: none;
    /* 처음엔 숨김 */
    position: sticky;
    top: 142px;
    z-index: 5;
    padding: 8px 0;
    overflow-x: auto;
    white-space: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    margin-left: -16px;
    background: #fff;
    width: calc(100% + 32px);
    padding: 8px 16px;
}



.sticky-sub-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.tab-group .sub-tab {
    display: inline-block;
    padding: 8px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-right: 8px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 8px;
    color: #787878;
}

.tab-group .sub-tab.active {
    border: 1px solid #FFCE0B;
    color: var(--color-primary-dark);
}

/* 콘텐츠 섹션 스타일 */
.tab-group .sub-content h2 {
    margin-top: 0;
}

.tab-contents .bg-wrap {
    box-sizing: border-box;
    background-color: #F6F8FA;
    margin: -40px -16px -24px;
    padding-left: 16px;
    width: calc(100% + 32px);
    padding: 22px 16px 24px;
}

.tab-contents .bg-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.1);
    padding: 0 16px;
}

.tab-contents .rate-items {
    padding: 16px 0;
    position: relative;
}

.tab-contents .rate-items+.rate-items {
    border-top: 1px dashed #8B95A1;
}

.tab-contents .rate-items .meal {
    color: #508AE6;
    font-size: 12px;
    border-radius: 4px;
    padding: 4px 8px;
    border: 1px solid #508AE6;
    display: inline-block;
}

.tab-contents .rate-items .tit {
    font-size: 16px;
    color: #000;
    padding-top: 8px;
    font-weight: 500;
    line-height: 1.2;
}

.tab-contents .rate-items .btm-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.tab-contents .rate-items .price {
    color: #ff0000;
    font-size: 20px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.tab-contents .rate-items .unit {
    font-size: 12px;
    color: #1a1a1a;
    margin-left: 0;
}

.tab-contents .rate-items button {}

/* 상세정보 */
.tab-contents section {
    padding: 20px 0 24px;
}

.tab-contents:last-child section:last-child {
    padding-bottom: 0;
}

.tab-contents section.pt0 {
    padding-top: 0;
}

.tab-contents section h3.sc-tit {
    font-size: 16px;
    color: var(--color-font-black);
    padding-bottom: 10px;
    font-weight: 500;
    padding-left: 10px;
    background: url(../images/common/ic_bullet.svg) 0 3px no-repeat;
}

.tab-contents .cont-area .gray-box {
    background-color: #F9F9F9;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 22px;
    padding: 20px 16px 24px;
    border-radius: 16px;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tab-contents .cont-area .txt-box {
    font-size: 14px;
    color: #1a1a1a;
    line-height: 22px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.tab-contents .cont-area .txt-box p span{line-height: 1.4;}

.tab-contents .cont-area .border-box {
    border: 1px solid var(--color-line-light);
    border-radius: 8px;
    padding: 10px 16px;
}

.tab-contents>section+section {
    border-top: 1px solid #ebebeb;
}

.tab-contents>.sc-include+section {
    border-top: 0;
}

.sc-checkin .time-box {
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    color: #0089CF;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #0089CF;
    padding: 4px 12px;
    align-items: center;
    margin-bottom: 16px;
    width: auto;
    max-width: fit-content;
}

.sc-checkin .time-box::before {
    content: '';
    vertical-align: middle;
    margin-right: 4px;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../images/common/ic_time.svg) no-repeat;
}

.sc-checkin .time-box>span {
    font-weight: 500;
    display: inline-block;
    padding-left: 4px;
}

.sc-facility .ic-list {
    display: grid;
    grid-template-columns: 24% auto auto 24%;
    grid-auto-rows: min-content;
    row-gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: -15px;
    width: calc(100% + 30px);
}

.sc-facility .ic-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    text-align: center;
    line-height: 14px;
}

.sc-facility .ic-items i {
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.sc-facility .ic-items i img {
    width: 100%;
}

/* 이용호텔 */
.catalog-box.full img {
    width: 100%;
}

/* 이용후기 */

.sc-reviews .sc-tit {
    position: relative;
    padding-right: 18px;
}

.reviews-items:first-child {
    border-top: none;
}

.reviews-items:first-child a {
    padding-top: 0;
}

.sc-reviews .sc-tit::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 12px;
    background: url(../images/common/ic_heart.svg) center center no-repeat;
    background-size: contain;
    margin-left: 4px;
}

/* .reviews-list + button{margin-top: 10px;} */
.link-reviews {
    display: flex;
    padding: 18px 10px 22px;
}

.reviews-items {
    border-bottom: 1px dashed var(--color-line-light3);
}

.sc-reviews .reviews-items:last-child {
    border-bottom: none;
}


.reviews-items .img-box {
    position: relative;
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    height: 100px;
    overflow: hidden;
    text-align: center;
    border-radius: 8px;
}

.reviews-items .img-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reviews-items .info-box {
    margin-left: 16px;
    position: relative;
    flex: 1;
    padding-top: 8px;
}

.reviews-items .tit {
    font-size: 14px;
    color: var(--color-font-black);
}

.reviews-items .info-box>.desc {
    padding-top: 8px;
    font-size: 12px;
    line-height: 1.2;
    color: var(--color-font-gray);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 100%;
    overflow: hidden;
}

.entry-list {
    position: absolute;
    bottom: 8px;
    display: flex;
    flex-wrap: wrap;
}

.entry-items {
    color: var(--color-font-normal);
    font-size: 10px;
}

.entry-items+.entry-items::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 8px;
    background-color: var(--color-font-normal);
    margin: 0 8px;
    vertical-align: -1px;
}

.reviews-items .hits {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-font-blue);
    font-size: 12px;
    padding: 12px 18px;
    border-radius: 19px;
    border: 1px dashed var(--color-primary)
}

.reviews-items .hits .num {
    font-weight: 500;
}

.reviews-items .hits .num::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: var(--color-primary);
    margin: 0 10px;
    vertical-align: -1px;
}


/* 일정표 */
.sc-schedule .airplane-area {
    display: flex;
    margin-top: 15px;
    width: 100%;
    position: relative;
    padding-bottom: 22px;
}

.sc-schedule .air-info {
    display: flex;
    flex-direction: column;
    position: relative;
}

.sc-schedule .air-info.departure {
    align-items: flex-end;
    padding-right: 10px;
}

.sc-schedule .air-info.arrival {
    align-items: flex-start;
    padding-left: 10px;
}

.sc-schedule .air-info::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    z-index: 5;
    position: absolute;
    top: 13px;
    /* background: url(../images/detail/img_dot.png) center no-repeat ; */
    background: #FFCE0B;
    border-radius: 50%;
    width: 4px;
    height: 4px;
}

.sc-schedule .air-info.departure::after {
    right: 0;
}

.sc-schedule .air-info.arrival::after {
    left: 0
}

.sc-schedule .air-info .city {
    font-size: 13px;
    color: var(--color-font-blue);
    font-weight: 400;
	padding-top:8px;
}

.sc-schedule .air-info .time {
    display: inline-block;
    font-size: 30px;
    color: var(--color-font-emp);
    font-weight: 600;
    padding: 4px 0;
    line-height: 30px;
}

.sc-schedule .air-info .date {
    font-size: 12px;
    color: var(--color-font-black);
    letter-spacing: -0.025rem;
    padding-top: 4px;
    font-weight: 500;
}

.timeline-area+.airplane-area {
    padding-bottom: 0;
    margin-top: 24px;
}

.sc-schedule .plane-info {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    height: 40px;
}

.sc-schedule .plane-info::before {
    content: '';
    position: absolute;
    top: 14px;
    display: inline-block;
    border-top: 1px dashed var(--color-line-light);
    height: 1px;
    width: 100%;
}

.sc-schedule .plane-info::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    display: inline-block;
    transform: translateX(-50%);
    width: 42px;
    height: 16px;
    background: #fff url(../images/detail/img_plane.png) center no-repeat;
    background-size: 25px auto;
}

.sc-schedule .caution-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

.sc-schedule .caution-box>span {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid var(--color-line-light);
    font-size: 12px;
    color: var(--color-font-blue);
    width: 198px;
    text-align: center;
}

.sc-schedule .timeline-area {
    position: relative;
}

.sc-schedule .airplane-area+.timeline-area {
    padding-top: 24px;
}

.sc-schedule .timeline-box {
    padding-left: 14px;
    font-size: 14px;
    margin-left: -2px;
    position: relative;
    padding-bottom: 20px;
}

.sc-schedule .timeline-box::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 1px;
    height: 100%;
    top: 0;
    background: var(--color-line-light2);
    z-index: 1;
}

.sc-schedule .timeline-box:first-child {
    padding-top: 8px;
}

.sc-schedule .timeline-box::after {
    content: '';
    position: absolute;
    left: -3px;
    top: 8px;
    z-index: 9;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: var(--color-primary);
}

.sc-schedule .timeline-box:first-child::after {
    top: 14px;
}

.sc-schedule .timeline-box .txt {
    font-size: 14px;
    color: var(--color-font-gray);
}

.sc-schedule .timeline-box {
    line-height: 1.5;
}

.sc-schedule .timeline-box div.text strong {
    font-weight: bold;
}

.sc-schedule .timeline-box div.text em {
    font-style: italic;
}


.sc-schedule .timeline-box .text {
    font-size: 14px;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.sc-schedule .mealplan-box {
    margin-top: 14px;
    background-color: var(--color-bg-light);
    display: flex;
    align-items: center;
    height: 38px;
}

.sc-schedule .meal-list {
    display: flex;
    width: 100%;
}

.sc-schedule .meal-items {
    font-size: 14px;
    font-weight: 400;
    width: calc(100% / 3);
    text-align: center;
}

.sc-schedule .meal-items .tit {
    color: var(--color-font-emp);
}

.sc-schedule .meal-items .meal {
    color: var(--color-font-blue);
    font-weight: 500;
}

.sc-schedule .timeline-box h4.tit {
    font-size: 18px;
    color: var(--color-font-emp);
    padding-bottom: 28px;
    font-weight: 600;
}

.sc-schedule .sub-tit {
    font-size: 16px;
    color: var(--color-font-blue);
    font-weight: 500;
}

.sc-schedule .timeline-box .bullet-list02 {
    margin: 22px 0;
}

.sc-schedule .timeline-box .bullet-list03 {
    margin-top: 12px
}

.sc-schedule .img-list {
    display: flex;
    margin-top: 30px;
}

.sc-schedule .img-items {
    overflow: hidden;
    border-radius: 4px;
    width: calc(50% - 4px);
}

/* .sc-schedule .img-items + .img-items{margin-left: 20px;} */
.sc-schedule .img-items+.img-items {
    margin-left: 10px;
}

.sc-schedule .img-items>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 15.6 / 10;
}

.sc-schedule .timeline-box .txt02 .time {
    padding-right: 8px;
    font-weight: 500;
}



.overlay-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* 처음엔 화면 밖에 위치 */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    transition: right 0.3s ease;
    /* 애니메이션 효과 */
    z-index: 1000;
}

.overlay-menu .close-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.overlay-menu ul {
    list-style-type: none;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
}

.overlay-menu ul li {
    margin: 20px 0;
}

.overlay-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 24px;
}



/* 전체메뉴 */
.modal.all-menu .modal-header {
    margin: 0;
    padding: 0 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    border-bottom: none;
}

.modal.all-menu .logo img {
    height: 32px;
}

.modal.all-menu .login-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    height: 60px;
    background: var(--color-primary);
}

.modal.all-menu .login-area .txt {
    font-size: 14px;
    color: #000;
}

.modal.all-menu .login-area .btn-sec {
    border-color: #ddd;
}

.modal.all-menu .shortcut-area {
    background: #fff;
}

.modal.all-menu .shortcut-menu {
    width: 100%;
    padding: 10px 16px;
}

.modal.all-menu .shortcut-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e7e7e7;
    border-width: 1px 0;
}

.modal.all-menu .shortcut-items {
    width: calc((100% - 4px) / 5);
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal.all-menu .shortcut-items+.shortcut-items {
    border-left: 1px solid #E7E7E7;
}

.modal.all-menu .link-shortcut {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 3vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.modal.all-menu .shortcut-items i {
    margin-bottom: 1.11vw;
    width: 7.77vw;
}

.modal.all-menu .shortcut-items i>img {
    width: 100%;
}

.modal.all-menu .category-area {
    background: #F6F8FA;
    overflow: hidden;
}

.modal.all-menu .category-area .accordion_box {
    margin: 6px 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--color-line-light2);
}

.modal.all-menu .category-area .accordion_box .header-area {
    height: 45px;
    padding: 0 16px;
}

.modal.all-menu .accordion_box .contents-area {
    display: none;
    background-color: #F6F8FA;
    overflow: hidden;
    border-top: 1px solid var(--color-line-light2);
    padding: 16px;
}

.modal.all-menu .category-area .sub-list {
    background: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
}

.modal.all-menu .category-area .sub-items {
    width: calc(50% - 0.5px);
    border-bottom: 1px solid #F6F8FA;
}

.modal.all-menu .category-area .sub-items:nth-child(odd) {
    border-right: 1px solid #F6F8FA;
}

.modal.all-menu .category-area .sub-items:nth-child(odd):last-child,
.modal.all-menu .category-area .sub-items:nth-child(even):last-child {
    border-bottom: none;
}

.modal.all-menu .category-area .link-sub {
    display: block;
    padding: 12px 8px;
    color: var(--color-font-gray);
    font-size: 13px;
    position: relative;
    padding-left: 12px;
    font-weight: 500;
}

.modal.all-menu .category-area .link-sub::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d9d9d9;
    vertical-align: middle;
    margin-right: 8px;
}

.modal.all-menu .accordion_items .header-area .switch {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/common/plus.svg) no-repeat center center;
    background-size: contain;
}

.modal.all-menu .accordion_items.active .header-area .switch {
    background-image: url(../images/common/minus.svg);
}

.modal.all-menu .accordion_box .tit {
    font-size: 14px;
}

.modal.all-menu .accordion_items .tit-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.modal.all-menu .accordion_items .tit-area::before {
    content: '';
    width: 20px;
    height: 20px;
    margin-right: 8px;
    display: block;
}

.modal.all-menu .accordion_items .tit-area.ic-hotel {
    position: relative;
}

.modal.all-menu .accordion_items .tit-area.ic-hotel::before {
    background: url(../images/common/category/ic_hotel.svg);
}

.modal.all-menu .accordion_items.active .tit-area.ic-hotel::before {
    background: url(../images/common/category/ic_hotel_on.svg);
}

.modal.all-menu .accordion_items .tit-area.ic-family::before {
    background: url(../images/common/category/ic_family.svg);
}

.modal.all-menu .accordion_items.active .tit-area.ic-family::before {
    background: url(../images/common/category/ic_family_on.svg);
}

.modal.all-menu .accordion_items .tit-area.ic-couple::before {
    background: url(../images/common/category/ic_couple.svg);
}

.modal.all-menu .accordion_items.active .tit-area.ic-couple::before {
    background: url(../images/common/category/ic_couple_on.svg);
}

.modal.all-menu .accordion_items .tit-area.ic-tour::before {
    background: url(../images/common/category/ic_tour.svg);
}

.modal.all-menu .accordion_items.active .tit-area.ic-tour::before {
    background: url(../images/common/category/ic_tour_on.svg);
}

.modal.all-menu .accordion_items .tit-area.ic-review::before {
    background: url(../images/common/category/ic_review.svg);
}

.modal.all-menu .accordion_items.active .tit-area.ic-review::before {
    background: url(../images/common/category/ic_review_on.svg);
}

.modal.all-menu .accordion_items .tit-area.ic-intro::before {
    background: url(../images/common/category/ic_intro.svg);
}

.modal.all-menu .accordion_items.active .tit-area.ic-intro::before {
    background: url(../images/common/category/ic_intro_on.svg);
}


/* daytour */
.division-opt .txt-box {
    font-size: 14px;
    line-height: 18px;
    color: #1a1a1a;
}

s .division-opt .time-box {
    margin-top: 12px;
    border: 1px solid #0089CF;
    padding: 4px 12px;
}


.sub-container>.top-area.form {
    margin: 28px 0 18px;
}

.btn-area.inline button.btn-write {
    flex: 0 0 120px;
}

button.btn-write span::after {
    content: '';
    background: url(../images/common/ic_write.svg) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 15px;
    vertical-align: -3px;
    margin-left: 6px;
}


/*********************************************************************************************************
 pagination
*********************************************************************************************************/

.pagination_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 8px 0px 8px;
}

.pagination_box .btn {
    display: inline-block;
    width: 24px;
    height: 24px;
    font-size: 14px;
    color: var(--color-font-emp);
    border-radius: 4px;
    text-align: center;
    line-height: 24px;
    flex: 0 0 24px;
}

/* .pagination_box .btn.num{background-color: #efefef;border: 1px solid #efefef;} */
.pagination_box .btn.num+.num {
    margin-left: 10px;
}

.pagination_box .btn.active {
    background-color: var(--color-font-primary);
    color: #fff;
    border: 1px solid var(--color-font-primary);
}

.pagination_box .btn.prev {
    margin: 0 24px 0 8px;
}

.pagination_box .btn.next {
    margin: 0 10px 0 16px;
}

.chk_list+.pagination_box {
    margin-top: 10px;
}


.pagination_box .btn:not(.num)::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
}

.pagination_box .btn.prev::before {
    background-image: url("../images/common/btn_prev.svg");
}

.pagination_box .btn.next::before {
    background-image: url("../images/common/btn_next.svg");
}

.pagination_box .btn.first::before {
    background-image: url("../images/common/btn_first.svg");
}

.pagination_box .btn.last::before {
    background-image: url("../images/common/btn_last.svg");
}



.board-wrapper .title-area {
    padding: 16px 0 10px;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.board-wrapper .title-area .title {
    line-height: 24px;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 500;
}

.board-wrapper .title-area .entry-list {
    position: relative;
    margin-top: 8px;
    bottom: auto;
}

.board-wrapper .contents-view {
    border-bottom: 1px solid #ddd;
    min-height: 250px;
    padding: 16px 0;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 22px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}


.board-wrapper .contents-view img {
    max-width: 100%;
    max-height: max-content;
}

.btm-area {
    margin-top: 24px;
}

.board-wrapper .tbl-base.col td img {
    max-width: 100%;
    max-height: max-content;
}

.sub-contents>.table-container:first-child {
    margin-top: 18px;
}

.confirm-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.confirm-txt .confirm {
    width: 100%;
    border: 1px solid var(--color-font-normal);
    border-radius: 8px;
    box-sizing: border-box;
    padding: 20px;
    margin-top: 20px;
    font-size: 14px;
}

.confirm-txt .confirm+.chk-unit {
    margin-top: 10px;
}

.confirm-txt .confirm span {
    padding-bottom: 8px;
    display: inline-block;
}

.confirm-txt .confirm p {
    line-height: 20px;
}



/* 예약하기 */
.res-wrapper {
    padding-top: 28px;
}

.res-wrapper h3.name {
    font-size: 18px;
    color: var(--color-font-emp);
    margin-bottom: 18px;
    padding-bottom: 12px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
}

.res-wrapper h3.name .desc {
    font-size: 11px;
    display: block;
    padding-top: 8px;
}

.res-group>section+section {
    margin-top: 30px;
}

.res-group h4.tit {
    font-size: 16px;
    color: var(--color-font-black);
    margin-bottom: 10px;
    font-weight: 500;
}

.res-wrapper .sc-stay .form-box-gray {
    margin-top: 30px;
}

.table-container .period-box {
    display: flex;
    align-items: center;
}

.table-container .period-box>.period {
    display: flex;
    flex-direction: column;
    position: relative;
}

.table-container .period-box>.period+.period {
    padding-left: 28px;
}

.table-container .period-box>.period+.period::before {
    content: "~";
    position: absolute;
    left: 10px;
    top: 18px;
    line-height: 12px;
    display: inline-block;
}

.table-container .period-box>.period>em {
    font-size: 11px;
    color: var(--color-font-blue);
    line-height: 12px;
    font-weight: 500;
}

.table-container .period-box>.period>span {
    font-size: 14px;
    line-height: 14px;
    padding-top: 6px;
}

.table-container .period-box>.num {
    padding-left: 26px;
    color: var(--color-font-normal);
    font-weight: 500;
}


.form-box-gray {
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-font-emp);
    padding: 16px;
}

.form-box-gray h5 {
    color: var(--color-font-black);
    font-size: 14px;
    font-weight: 500;
}

.form-box-gray h5+.check-list {
    margin-top: 20px;
}

.form-box-gray .check-list+h5 {
    margin-top: 34px;
}

.form-box-gray h5+.form-items {
    margin-top: 14px;
}


.sc-pay .total-price {
    position: relative;
    height: 90px;
}

.res-group .total-price .price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.accordion_box .desc.referen {
    margin-top: 12px;
    font-size: 12px;
}

.sc-confirm .total-price {
    position: relative;
    border-bottom: 1px solid var(--color-line-light4);
    border-right: 1px solid var(--color-line-light4);
    min-height: 80px;
}

.confirm-area+.confirm-area {
    margin-top: 24px;
}

.sc-confirm.wait .form-box-gray button {
    margin-top: 8px;
}




/* company */

/* company-visual */
.company-visual {
    position: relative;
}

.company-visual .common-inner {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-visual.left .common-inner {
    justify-content: flex-start;
    height: 320px;
}

.company-visual .txt {
    font-size: 13px;
    color: #fff;
    font-weight: 200;
}

/* .company-visual.left .txt{margin-left: 180px;} */
.company-visual.right .txt {
    margin-bottom: 50px;
    margin-right: 50px;
}

.company-visual .txt>strong {
    font-weight: 500;
    display: block;
    font-size: 32px;
    padding-bottom: 8px;
    line-height: 40px;
}

.company-visual .img {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    z-index: -1;
    width: 100%;
    height: 100%;
}


.company-visual .img::before {
    content: '';
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}

.sc-intro {
    padding: 50px 0;
}

.sc-intro .txt {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
}

.sc-LuxPalm {
    background: #FFD42A url(../images/company/LuxPalm.png) center center no-repeat;
    background-size: calc(100% - 32px);
}

.sc-LuxPalm .common-inner {
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    color: #1a1a1a;
    padding: 50px 16px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sc-LuxPalm .sc-title {
    font-size: 16px;
    color: #000;
    text-align: right;
    line-height: 28px;
}

.sc-LuxPalm .sc-title strong {
    font-size: 22px;
    display: block;
    font-weight: 600;
}

.sc-LuxPalm .txt {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    width: 84%;
    display: block;
    align-self: self-end;
    padding-top: 50px;
    font-weight: 500;
}

.sc-award .common-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 16px 40px;
}

.sc-award .sc-title {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 28px;
}

.sc-award .desc {
    color: #1a1a1a;
    line-height: 24px;
    font-size: 14px;
    padding-bottom: 52px;
}

.sc-insurance {
    background-color: #F5F6F7;
    padding: 50px 0 10px 0;
}

.sc-insurance .common-inner {
    background: url(../images/company/insurance.png) right 16px bottom 0 no-repeat;
    background-size: 240px auto;
    padding-bottom: 195px;
}

.sc-insurance .sc-title {
    font-size: 22px;
    padding-bottom: 20px;
    line-height: 30px;
}

.sc-insurance .sc-title strong {
    font-weight: 600;
}

.sc-insurance .txt {
    font-size: 14px;
    width: 80%;
    display: block;
    line-height: 24px;
}


.sc-history .common-inner {
    padding-top: 50px;
}

.sc-history .sc-title {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 20px;
    text-align: center;
}

.history-box .hidden {
    overflow: hidden;
    position: absolute;
    top: -999px;
    left: -999px;
    width: 0px;
    height: 0px;
    font-size: 0px;
}

.history-box h3 {
    margin-bottom: 18px;
}

.history-box .tap-list {
    position: relative;
    width: 100%;
    padding-left: 20px;
    margin: 0 auto;
    display: flex;
}

.history-box .tap-list>a {
    overflow: hidden;
    display: block;
    position: absolute;
    top: 10px;
    width: 10px;
    height: 18px;
    text-indent: -999px;
}

.history-box .tap-list .btn-left {
    left: 0px;
    background: url('../images/common/arrow_slide.svg') no-repeat;
    transform: rotate(-180deg);
}

.history-box .tap-list .btn-right {
    right: 0px;
    background: url('../images/common/arrow_slide.svg') no-repeat;
}

.history-box .tap-list>div {
    overflow: hidden;
    height: 50px;
    width: calc(100% - 20px);
}

.history-box .tap-list>div ul {
    display: flex;
    justify-content: center;
}

.history-box .tap-list>div ul li {
    position: relative;
    /* padding: 16px 40px; */
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
}

.history-box .tap-list>div ul li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    transition: all .1s ease-in;
    text-align: center;
}

.history-box .tap-list>div ul li a:hover,
.history-box .tap-list>div ul li.on a {
    color: var(--color-primary);
    font-weight: 600;
}

.history-box .tap-list>div ul li a:hover::after,
.history-box .tap-list>div ul li.on a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: var(--color-primary);
}

.history-box .history-text {
    overflow: hidden;
    display: none;
    margin-top: 20px;
}

/* .history-box .history-text .half {float:left; width:46%; margin:0 2%;} */
.history-box .history-text dl {
    overflow: hidden;
    position: relative;
}

.history-box .history-text dl.line {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #d7d7d7;
}

.history-box .history-text dl.number dd {
    margin-left: 120px;
}

.history-box .history-text dl dt {
    position: absolute;
    top: 6px;
    left: 0px;
    font-size: 14px;
    color: #5c5c5c;
    font-weight: 600;
}

.history-box .history-text dl dd {
    margin: 0 0 0 50px;
}

.history-box .history-text ul li {
    padding-left: 10px;
    font-size: 14px;
    line-height: 24px;
    color: #5c5c5c;
    background: url('https://www.palmtour.co.kr/images/company/company/ico-list.gif') no-repeat 0px 11px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.res-container {
    padding-top: 32px;
}

.res-container .sc-insurance {
    background: none;
    padding: 0;
    width: 100%;
    margin: 0 auto;
}

.res-container .sc-insurance .common-inner {
    background-size: 180px;
    background-position: right 0px top 0px;
    padding: 0 0 30px;
}

.res-container .sc-insurance .sc-title {
    font-size: 22px;
    padding-bottom: 40px;
    line-height: 30px;
    padding-top: 20px;
}

.res-container .sc-insurance .txt {
    width: 100%;
}

.insurance-list {
    display: flex;
    /* margin: 20px; */
    flex-wrap: wrap;
    gap: 10px;
}

.insurance-items {
    padding: 10px;
    border: 1px solid var(--color-font-normal);
    cursor: pointer;
    border-radius: 8px;
}

.insurance-items .inner {
    overflow: hidden;
    aspect-ratio: 31 / 41;
}

.insurance-items img {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
}

.insurance-items {
    width: calc((100% - 20px) / 3);
    height: 139.03%;
}

.insurance-items:nth-child(3n) {
    margin-right: 0;
}

/* 여행약관 */
.condition-area .condition-box {
    padding: 0px 8px 28px;
    border-bottom: 1px dashed var(--color-line-light);
    font-size: 14px;
}

.condition-area .condition-box+.condition-box {
    padding: 28px 8px;
}

.condition-area .condition-box h4.tit {
    font-size: 14px;
    color: var(--color-font-emp);
    padding-bottom: 14px;
    font-weight: 600;
}

.condition-area .condition-box .txt-box {
    line-height: 22px;
}

.condition-box .txt-box+.txt-box {
    padding-top: 20px;
}

.condition-box .txt-box p+.list-num {
    margin-top: 16px;
}

.condition-box .txt-box .list-num>li+li {
    margin-top: 12px;
}

.condition-box .txt-box .list-num>li>ul {
    margin-top: 16px;
}

.condition-box [class^="bullet-list"] {
    margin: 10px 0;
}

ol.list-alphabet>li {
    list-style-type: lower-alpha;
}

li ol.list-alphabet {
    margin: 10px 0;
}

li .list-num {
    margin: 10px 0;
}

.condition-box li .table-container {
    margin: 10px 0 20px;
}

.condition-box .table-container td {
    text-align: center;
}




/* 가족팩 커플팩 리스트 가격 영역 스타일 수정 */
.list-wrapper.hotel .view-list .view-items .info-box .price-wrap {
    display: flex;
    justify-content: space-between; /* 양쪽 끝으로 정렬 */
    align-items: center;
    margin-top: 8px;
    width: 100%; /* 전체 너비 사용 */
}

/*인기상품 태그*/
.popular-tag {font-size:12px; font-weight:500; border:1px solid #FF6F61; color:#FF6F61; padding:4px 8px; border-radius:4px; display:inline-flex; align-items:center; white-space: nowrap;}

/*가족추천 태그*/
.familly-tag {font-size:12px;  font-weight:500; border:1px solid #4A90E2; color:#4A90E2; padding:4px 8px; border-radius:4px; display: inline-flex; align-items: center; white-space: nowrap;}

/*커플추천 태그*/
.couple-tag {font-size:12px;  font-weight:500; border:1px solid #8C75D5; color:#8C75D5; padding:4px 8px; border-radius:4px; display: inline-flex; align-items: center; white-space: nowrap;}



.list-wrapper.hotel .view-list .view-items .info-box .price {
    color: #ff0000;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
}

.list-wrapper.hotel .view-list .view-items .info-box .price .unit {
    font-size: 14px;
    font-weight: normal;
    margin-left: 2px;
}

/* 모바일 대응 */
@media screen and (max-width: 768px) {
    .list-wrapper.hotel .view-list .view-items .info-box .popular-tag {
        font-size: 12px;
        padding: 4px 8px;
    }

    .list-wrapper.hotel .view-list .view-items .info-box .price {
        font-size: 16px;
    }

    .list-wrapper.hotel .view-list .view-items .info-box .price .unit {
        font-size: 12px;
    }
}