@charset "UTF-8";
:root {
    --top-offset: 0px;        /* 헤더+필터 높이 */
    --vh: 1vh;                /* 모바일 주소창 대응용 */
    --footer-h: 250px;   /* 실제 푸터 높이로 수정 */
    --au-gutter-x: 1.6rem;
    --au-gutter-y: 0;
}

.page-body {
    min-height: calc(100vh - var(--hd_height_m) - var(--footer-h));
    padding: 1rem 0;
}

.m_btn_con .btn {
    padding: 0;
    border: 0 none;
    width:30px;height:30px;
}

.page-tit-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap; /* 길면 줄바꿈 방지 */
    font-size: 1.9rem !important;
    font-weight: 800;
    max-width: 200px;
}

.auth-container {
    width: 100%;
    padding-right: calc(var( --au-gutter-x) * 0.5);
    padding-left: calc(var( --au-gutter-x) * 0.5);
    padding-bottom: 0;
    margin-right: auto;
}

@media (min-width: 500px) {
    .auth-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

.auth-container-fixed-bottom {
    position: fixed;
    width: 500px;
    max-width: 100%;
    padding-block: 1.2rem;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #fff;
    padding-right: calc(var( --au-gutter-x) * 0.5);
    padding-left: calc(var( --au-gutter-x) * 0.5);
    z-index: 100;
}


.self-container {
    width: 100%;
    padding-right: calc(var( --au-gutter-x) * 0.5);
    padding-left: calc(var( --au-gutter-x) * 0.5);
    margin-right: auto;
}

@media (min-width: 500px) {
    .self-container {
        max-width: 640px;
        margin: 0 auto;
    }
}

.auth-sns-btns {
    display: grid;
}

.auth-sns-btns img.auth-btns-icon {
    width: 15px;
    height: 15px;
}

.auth-sns-btns a.btn.border-text-naver {
    color: #000 !important;
    background-color: #00C300 !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
}

.auth-sns-btns a.btn.border-text-kakao {
    color: #000 !important;
    background-color: #FEE500 !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
}

.auth-sns-btns a.btn.border-text-apple {
    color: #fff !important;
    background-color: #000 !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
}

.auth-sns-btns a.btn.border-text-google {
    color: #000 !important;
    background-color: #FFF !important;
    border-color: #000 !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
}

.auth-sns-btns img.auth-btns-icon {
    width: 15px;
    height: 15px;
}


.upload-container {
    display: flex;
    gap: 10px;
    padding: 0;
}

.upload-box {
    width: 6rem;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--border);
    border-radius:  1rem;
    background: url(../images/img/btn_add_img.png) no-repeat center top 25%/2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.upload-box.hidden {
    display: none;
}

.upload-box .plus {
    font-size: 24px;
    margin-bottom: 5px;
}

.upload-box .text {
    position: absolute;
    bottom: 15px;
    width: 100%;
    left: 0;
    font-size: 0.9rem;
    text-align: center;
    color: var(--gray2);
}

.upload-box .upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-box .preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.preview-box {
    width: 6rem;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    cursor: move;
    border: 1px solid var(--border);
    border-radius:  1rem;
}

.preview-box a {
    display: block;
    width: 100%;
    height: 100%;
}


.preview-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}


.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color:#ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.sortable-ghost {
    opacity: 0.5;
}

.filepond--root {
    display: none;
}

.vivio-preview-box {
    width: 120px;
    height: 120px;
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
    cursor: move;
}

.vivio-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vivio-preview-box a {
    display: block;
    width: 100%;
    height: 100%;
}

/*no drag*/
.no_drag {
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

.wh-pre {
    white-space: pre-line;
    overflow-wrap: anywhere;
}


.jq-toast-wrap {
    width: auto;
    max-width: 100%;
}


.jq-toast-single {
    display: block;
    width: 100%;
    margin: 0 0 20px;
    border-radius: 100px;
    position: relative;
    pointer-events: all !important;
    background-color: #444;
    color: #fff;
    font-size: 1.1rem;
    line-height: var(--bs-body-line-height);
}

.jq-has-icon {
    padding: 7px 16px 7px 29px;
    background-repeat: no-repeat;
    background-position: 10px
}

.jq-icon-info {
    background-image: url(../images/icon/ico_toast.svg);
    background-color: rgba(28, 28, 28, 0.75);
    color: #fff;
}


.jq-icon-warning {
    background-image: url(../images/icon/ico_toast.svg);
    background-color: rgba(28, 28, 28, 0.75);
    color: #fff;
}

.jq-icon-error {
    background-image: url(../images/icon/ico_toast.svg);
    background-color: rgba(28, 28, 28, 0.75);
    color: #fff;
}

.jq-icon-success {
    background-image: url(../images/icon/ico_toast.svg);
    background-color: rgba(28, 28, 28, 0.75);
    color: #fff;
}

.sns_share li{width:5.0rem;overflow:hidden;}
.sns_share li img {max-width: 100%;display: block;height: auto;}


.star-wrap {
    display: flex;
    width: 150px;
    justify-content: space-between;
    cursor: pointer;
}

.star-wrap .star-box {
    position: relative;
    width: 30px;
    height: 1em;
    font-size: 26px;
}

.star-wrap .star-box > i {
    color: #ccc;
    position: absolute;
    top: 0;
    left: 0;
}

.star-wrap .star-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    line-height: 1;
    pointer-events: none;
}

.star-wrap .star-fill i {
    color: #ff9636;
}

.star-review-wrap {
    display: flex;
    width: 73px;
    justify-content: space-between;
    cursor: pointer;
}

.star-review-wrap .star-box {
    position: relative;
    width: 15px;
    height: 1em;
    font-size: 13px;
}

.star-review-wrap .star-box > i {
    color: #ccc;
    position: absolute;
    top: 0;
    left: 0;
}

.star-review-wrap .star-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    line-height: 1;
    pointer-events: none;
}

.star-review-wrap .star-fill i {
    color: #ff9636;
}

.offcanvas-body .off-action-list {
    text-align: left;
}
.offcanvas-body .off-action-list .off-action-item {
    padding-block: 15px;
    border-bottom: 1px solid var(--border);
}
.offcanvas-body .off-action-list .off-action-item:last-child {
    border-bottom: none;
}


.custom-scroll::-webkit-scrollbar {
    display: none;
}

.custom-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.custom-scroll .scroll-active {
    cursor: grabbing;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.keyword-list .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

.keyword-list .keyword-search-btn {
    white-space: nowrap;
}

.search-result-list {
    margin-right: -15px;
    padding-right: 8px;
}

.search-result-list .swiper-slide {
    width: 345px;
    height: auto;
}

.v_quto_change .ico {
    display: block;
    width:30px;height:30px;
    background-size: contain; /* 또는 background-size: 100% 100%; */
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}

.v_quto_change .ico.up {
    background-image: url(../images/icon/ico_up.png);
}
.v_quto_change .ico.down {
    background-image: url(../images/icon/ico_down.png);
}
.v_quto_change .ico.same {
    background-image: url(../images/icon/ico_same.png);
}

.v-golf-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* 두 줄까지만 표시 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    font-size: 14px; /* 필요시 조절 */
    line-height: 1.3;
}

/* 초기 상태: 일반 위치 */
.quote-sticky-wrap {
    position: relative;
    /*transition: all 0.2s ease;*/
}

/* 스크롤 내렸을 때 fixed 고정 */
.quote-sticky-wrap.fixed {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


@media (min-width: 992px) {
    .quote-sticky-wrap.fixed {
        position: fixed;
        top: 0;
        left: calc(50%); /* wrap의 오른쪽 기준 */
        transform: translateX(0); /* 중앙 기준 제거 */
        width: 50%;
        max-width: var(--wrap_wd);
        z-index: 9999;
    }
}

.map-tui-container {
    position: relative;
    max-width: var(--wrap);
    margin:0 auto;
}



/* 지도 */
.map_category {
    position: absolute;
    top: 10px;
    left: 0;
    width: calc(100% - 40px);
    z-index: 999;
}

.map-category-container {
    position: relative;
    overflow: hidden;
    margin: 0 10px;
}


.map-category-container .tab {
    display: flex;
    flex-wrap:nowrap;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    scrollbar-width: none;
    border-bottom: 0 none;
}

.map-category-container .tab::-webkit-scrollbar {
    display: none;
}


.map-category-container .tab .tab__item {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 5px 20px;
    border: 1px solid var(--bs-primary);
    border-radius: 20px;
    background-color: #fff;
    cursor: pointer;
}

.map-category-container .tab .tab__item a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.map-category-container .tab .tab__item a > img {
    height: 25px;
}

.map-category-container .tab .tab__item a p {
    font-weight: 400;
    margin:0;
}

.map-category-container .tab .tab__item.active {
    background-color: var(--bs-primary);

}

.map-category-container .tab .tab__item.active a p {
    color: #fff;
}

.map-scroll-btn {
    position: absolute;
    top: 4px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}


.map-category-container:hover .map-scroll-btn {
    display: block;
}


.map-scroll-btn.left {
    left: 10px;
}

.map-scroll-btn.right {
    right: 10px;
}


.map_wrap {
    background-color: #eee;
    width: 100%;
    height: calc(var(--vh) * 100 - var(--top-offset));
    position: relative;
    overflow: hidden;
}

.map_wrap .hTrack {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1000;
}
.map_wrap .hTrack .track-btn {
    width: 30px;
    height: 30px;
    background: url("../../assets/images/img/my_loca.png") no-repeat center center #fff;
    background-size: 80%;
    border:0 none;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    .map-filter-modal.show {
        position: fixed;
        top: 0;
        left: calc(50%);
        transform: translateX(0);
        width: 50%;
        max-width: var(--wrap_wd);
    }
}

/* 지도-목록 */
.offcanvas-slide {
    position: absolute;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: white;
    z-index: 1000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    will-change: top;
    touch-action: auto;
    overflow: hidden;
    transition: top 0.3s ease;
}

.offcanvas-slide.is-animating {
    transition: transform .18s ease-in-out;
}


.offcanvas-slide.dragging {
    transition: none !important;
    opacity: 0.95;
}

/* 데이터 없음 메시지 */
.no-data-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: var(--gray2);
}

.no-data-message .icon {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.no-data-message .text {
    font-size: 18px;
    font-weight: 500;
}

.no-data-message .sub-text {
    font-size: 16px;
    margin-top: 8px;
    opacity: 0.7;
}


.touch_bar {
    height: 30px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    cursor: grab;
    display: flex;
    justify-content: center;
    align-items: center;
}

.touch-sc-btn {
    background-color: #d9d9d9;
    width: 85px;
    height: 4px;
    display: block;
    border: 0 none;
    border-radius: 10px;
}

.scroll-area {
    overflow-y: auto;
    padding: 0 1.5rem;
    /* JS가 인라인 max-height 넣을 거라 폴백만 남겨둠 */
    max-height: calc(100vh - 214px);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain; /* 엣지 스크롤시 시트만 움직이게 */
    touch-action: pan-y;
}




.tooltip-marker {
    position: absolute;
    width:36px;
    height:50px;
    background-image: url(../images/marker/sample.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}


.tooltip-group {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    z-index: 999;
}

.tooltip-group .clu-count {
    color:#fff;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.user-marker {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    position: absolute;
    z-index: 999;
}

#offcanvas-drag {
    cursor: grab;
    position: relative;
    z-index: 10;
}
#offcanvas-drag:active {
    cursor: grabbing;
}
#map-list-view .touch_bar#offcanvas-drag.near-bottom {
    background-color: rgba(0, 123, 255, 0.12) !important;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.2) inset;
}
#map-list-view .touch_bar#offcanvas-drag.near-bottom .touch-sc-btn {
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

/* 터치바 항상 보이게 하는 추가 스타일 */
#offcanvas-drag:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
}

@media (min-width: 768px) {
    .offcanvas-slide {
        width: 100%;
        /*left: 0;*/
        /*right: 0;*/
        /*left: calc(50%);*/
        /*transform: translate(0, 0);*/
        max-width: var(--wrap);
    }

    .scroll-area {
        max-height: calc(100vh - 255px);
    }

    #mapDetailModal.modal {
        left: calc(50%);
        transform: translate(0, 0);
        width: 50%;
        max-width: var(--wrap_wd);

    }



}


/* 어디 CSS에 넣어두면 됨 */
.pdf-loading-overlay{
    position:absolute; inset:0;
    background:rgba(255,255,255,.8);
    z-index:2;
}
.pdf-error-overlay{
    position:absolute; top:0; left:0; right:0;
    z-index:3; /* 로딩 위에 띄울 일은 없지만 명시 */
}


.price-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: transparent; /* 기본 회색바 제거 */
    outline: none;
}

.price-range::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 0%, var(--primary-light) 0%, var(--primary-light) 100%);
}
.price-range::-moz-range-track {
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 0%, var(--primary-light) 0%, var(--primary-light) 100%);
}

/* Webkit (Chrome, Safari) thumb */
.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Firefox thumb */
.price-range::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}


.quote-header .qh-th {font-weight: bold;font-size: 1.3rem;white-space: nowrap}


.memship_list .swiper-wrapper {
    align-items: stretch;
}

.text-truncate-2 {
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}

/*.fc-blocked { background: rgba(200,0,0,.5); border-width: 1px; border-color: rgba(200,0,0,.5); color:#fff; font-weight: bold }*/
a.fc-event, a.fc-event:hover {
    color:#000;
    
}
.fc-day-sun a {color : red !important;}
.fc-day-sat a {color : blue !important;}


.fc .fc-event.blocked {
    color: #fff;
    pointer-events: auto;
    border: none;
}
.fc .fc-event.blocked.grade-low {
    background: #6c757d;
    border: none;
    color: #fff;
}
.fc .fc-event.blocked.grade-medium {
    background: #343a40;
    border: none;
    color: #fff;
}
.fc .fc-event.blocked.grade-high {
    background: #dc3545;
    border: none;
    color: #fff;
}

.fc-daygrid-event-dot {border: 0 none}


.fc .fc-toolbar {
    /*flex-direction: column;*/
    position: relative;
    min-height: 80px;
}
.fc .fc-toolbar-title {margin: 10px 0;font-size:1.0rem;}
.fc .fc-button {font-size: 0.8rem;padding:0.1rem 0.3rem;}

.fc-header-toolbar .fc-toolbar-chunk:last-child {
    position: absolute;
    bottom: 0;
    right: 0;
}

.fc table {}
.fc .fc-timegrid-slot { height: 2.0rem;}
.fc .fc-col-header-cell-cushion {font-size:0.9rem;}

.fc th.fc-col-header-cell {padding: 4px 0px;}



/* 상태별 색 구분하고 싶을 때 */
.fc-event.course.status-scheduled   {  }
.fc-event.course.status-completed   { opacity:.7; text-decoration: line-through; }
.fc-event.course.status-absent      { border-left: 3px solid #dc3545; }
.fc-event.course.status-canceled    { opacity:.5; }
.fc-event.course.status-rescheduled { border-left: 3px solid #0d6efd; }


.product-list-wrap {}
.product-list-item {
    margin-bottom: 40px;
}

.product-list-item:last-child {
    margin-bottom: 0;
}

.product-list-item .pr-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-list-item .pr-body {
    flex: 1 1 0;
}

.product-list-item .date {
    margin-bottom: 15px;
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 700;
}

.product-list-item .info {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.product-list-item .info .img_con {
    position: relative;
    width: 140px;
}

.product-list-item .info .img_con::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.product-list-item .info .img_con img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
}

.product-list-item .info .txt_con {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.product-list-item .info .txt_con .tit {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.product-list-item .info .txt_con .txt01 {
    color: #585858;
}


.fixed-register-btn {
    z-index: 1000;
    position: fixed;
    right: calc(50% - var(--wrap_wd) + 1.6rem);
    bottom: max(1.6rem, env(safe-area-inset-bottom) + 1rem); /* iOS 홈바 안전영역 */
}

@media (max-width: 980px) {
    .fixed-register-btn {
        right: 1.6rem;
        bottom: max(1.6rem, env(safe-area-inset-bottom) + 1rem); /* iOS 홈바 안전영역 */
    }
}

.order-info-sec {
    margin: 0;
    padding-bottom: 40px;
}

.order-info-sec .tit-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.order-info-sec .tit-txt {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
}

.order-info-sec .con-box {
    position: relative;
}

.order-info-sec .txt-box {
    position: relative;
    padding: 20px 17px;
    box-sizing: border-box;
    border: 1px solid #eee;
    border-radius: 5px;
}


.ct-list {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.ct-list:first-child {
    padding-top: 0;
}

.ct-list .box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.ct-list .box .info_con {
    flex: 1;
    min-width: 0;
}

.ct-list .box .info_con .txt01 {
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 700;
}

.ct-list .box .info_con .txt02 {
    margin-bottom: 15px;
    font-size: clamp(10px, 3vw, 12px);
    font-weight: 300;
    color: #585858;
}

.ct-list .box .info_con .price {
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 700;
}

.ct-list .box .img_con {
    position: relative;
    width: calc(100% - 80%);
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
}

.ct-list .box .img_con::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.ct-list .box .img_con img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}



.loading-map {
    display: none;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}


.custom-marker {
    position: relative;
    left: -10px;
    top: 0px;
}

.marker-content {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%; /* 원형 */
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--bs-primary); /* 테두리 색상 (주황) */
}

/* 원 안의 이미지 스타일 */
.marker-content img {
    width: 43px;
    height: 43px;
    object-fit: cover; /* 가로로 긴 이미지도 원형 안에 꽉 채우기 */
    border-radius: 50%;
}


.marker-content::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%); /* 삼각형 모양 정의 */
    width: 30px;
    height: 13px;
    background-color: var(--bs-primary);
    z-index: -1;
}


.infowindow {
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -90px;
    display: flex;
    flex-direction: column;
    width: 180px;
    height: auto;

    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}
.infowindow a {
    display: block;
    height: auto;
}
.infowindow .info-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.infowindow .iw-body {
    padding: 5px 0;
    flex-grow: 1; /* 남은 공간을 모두 차지 */
    display: flex; /* 내부 콘텐츠를 정렬하기 위해 flexbox 사용 */
    flex-direction: column; /* 자식 요소를 세로 정렬 */
    justify-content: space-between; /* 공간을 고르게 배분 */
    align-items: flex-start; /* 기본 정렬 (필요시 변경 가능) */
}
.infowindow p {
    margin: 0;
    padding: 0;
    color: #555;
    white-space: normal;
    font-size:1.0rem;
}

.infowindow small {
    font-size:0.875rem;
}
.infowindow .close-btn {
    display: inline-block;
    width: auto;
    padding: 5px;
    font-size: 12px;
    color: white;
    background-color: #eb5a5a;
    border: none;
    border-radius: 4px;
}




.list-ul-wrap .list_con .list {
    position: relative;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}
.list-ul-wrap .list_con .list:first-child {
    padding-top: 0;
}
.list-ul-wrap .list_con .list a {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
}
.list-ul-wrap .list_con .list a .info {
    overflow-x: hidden;
}
.list-ul-wrap .list_con .list a .info .cate {
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 400;
    color: #fd3939;
}
.list-ul-wrap .list_con .list a .info .tit {
    margin-bottom: 10px;
    gap: 5px;
}
.list-ul-wrap .list_con .list a .info .tit p {
    word-break: break-all !important;
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 700;
}
.list-ul-wrap .list_con .list a .info .tit img {
    width: 15px;
}
.list-ul-wrap .list_con .list a .info .line {
    gap: 15px;
}
.list-ul-wrap .list_con .list a .info .line .rating {
    gap: 5px;
    flex-shrink: 0;
    color: #000;
}
.list-ul-wrap .list_con .list a .info .line .rating .num {
    position: relative;
    padding-left: 20px;
    box-sizing: border-box;
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 700;
}
.list-ul-wrap .list_con .list a .info .line .rating .num::after {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    top: 9%;
    left: 0;
    background: url("../images/icon/ico_full_star_20x20.png") no-repeat center/cover;
}
.list-ul-wrap .list_con .list a .info .line .rating .num span {
    font-weight: 300;
}
.list-ul-wrap .list_con .list a .info .line .distance {
    position: relative;
    flex-shrink: 0;
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 700;
    color: #fd3939;
    margin:0;
}
.list-ul-wrap .list_con .list a .info .line .distance::before {
    content: "·";
    position: absolute;
    display: block;
    top: 0;
    left: -9px;
    color: #585858;
}
.list-ul-wrap .list_con .list a .info .line .major {
    position: relative;
    flex-shrink: 0;
    font-size: clamp(12px, 3vw, 14px);
}
.list-ul-wrap .list_con .list a .info .line .major::before {
    content: "·";
    position: absolute;
    display: block;
    top: 0;
    left: -9px;
}
.list-ul-wrap .list_con .list a .info .shop_txt {
    margin: 10px 0;
    word-break: break-all !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 300;
}
.list-ul-wrap .list_con .list a .info .badge_con ul {
    gap: 5px;
    padding-bottom: 1px;
    overflow-x: scroll;
}
.list-ul-wrap .list_con .list a .info .badge_con ul li {
    flex-shrink: 0;
}
.list-ul-wrap .list_con .list a .info .badge_con ul li .badge_sty {
    font-size: clamp(12px, 3vw, 14px);
}
.list-ul-wrap .list_con .list a .img_con {
    position: relative;
    width: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 50%;
}
.list-ul-wrap .list_con .list a .img_con::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.list-ul-wrap .list_con .list a .img_con img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    object-fit: cover;
}
.list-ul-wrap .list_con .list.disable .img_con::after {
    content: "예약불가";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    border-radius: 16px;
    line-height: 50%;
    text-align: center;
    color: #fff;
}
@media (max-width: 480px) {
    .list-ul-wrap .list_con .list a .info .line .rating .num::after {
        width: 13px;
        height: 13px;
    }
    .list-ul-wrap .list_con .list a .img_con {
        width: 80px;
    }
    .list-ul-wrap .list_con .list a .img_con img {
        border-radius: 5px;
    }
    .list-ul-wrap .list_con .list a .img_con::after {
        border-radius: 5px;
        font-size: 12px;
    }
    .list-ul-wrap .list_con .list.disable a .img_con img {
        border-radius: 5px;
    }
    .list-ul-wrap .list_con .list.disable a .img_con::after {
        border-radius: 5px;
        font-size: 12px;
    }
}
#ct_second_wrap  {
    height:36px;
}

.rsec {margin: 0px 15px 30px 15px}

.r-choice-box {
    margin-bottom: 20px;
}
.r-choice-box .r-list-box .r-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.r-choice-box .r-list-box .r-item:last-child {
    margin-bottom: 0;
}

.r-choice-box .r-list-box .r-item .left {
    width: 70%;
    align-items: center;
}

.r-choice-box .r-list-box .r-item .left label {
    align-items: center;
}

.r-choice-box .r-list-box .r-item .left label input[type=checkbox]{
    width: 15px;
    height: 15px;
}

.r-choice-box .r-list-box .r-item .left label input[type=radio]{
    width: 15px;
    height: 15px;
}

.r-choice-box .r-list-box .r-item .left label input[type=radio]:checked,
.r-choice-box .r-list-box .r-item .left label input[type=checkbox]:checked {
    /*accent-color: var(--bs-primary);*/
}

.r-choice-box .r-list-box .r-item .left .option_sel {
    margin-left: 20px;
}

.r-choice-box .r-list-box .r-item .left .option_sel .txt01 {
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 700;
}

.r-choice-box .r-list-box .r-item .left .option_sel .txt02 {
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 300;
}

.r-choice-box .r-list-box .r-item .price {
    font-size: 1rem;
    font-weight: 700;
}

.r-choice-box .r-list-box .r-item.discount .right {
    display: flex;
    justify-content: end;
    width:20%;

}
.r-choice-box .r-list-box .r-item.discount .right .img_con {
    position: relative;
    width: calc(100%);
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
}

.r-choice-box .r-list-box .r-item.discount .right .img_con::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.r-choice-box .r-list-box .r-item.discount .right .img_con img {
    position: absolute;
    inset: 0;         /* top:0; right:0; bottom:0; left:0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    border-radius: 10px;
}

.r-choice-box .r-list-box .r-item.discount .right .discount_price {
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 300;
}

.r-choice-box .r-list-box .r-item.discount .right .discount_price .percent {
    display: inline-block;
    padding-right: 5px;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 500;
    color: #fd3939;
}

.r-choice-box .r-list-box .r-item.discount .right .discount_price .cost {
    text-decoration: line-through;
    color: #aaa;
}




.calendar-container {
    text-align: center;
    max-width: 400px;
    margin: auto;
}

.calendar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    margin-bottom: 10px;
}

.calendar-table .ct-ym {
    display: flex;
    align-items: center;
}
.calendar-table .ct-ym .dropdown-btn {
    margin-left: 10px;
    padding: 5px;
}
.calendar-table table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.calendar-table th {
    text-align: center;
    color:#333 !important;

}
.calendar-table th,
.calendar-table td {
    width: 14.28%;
    border: 0 none;
    background: #fff !important;
}
.calendar-table td {
    padding: 0 !important;
}

.calendar-table .sat {
    color: #57a4ff !important;
}
.calendar-table .sun {
    color: #eb5a5a !important;
}
.calendar-table .tc-date {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    padding: 5px;
    z-index: 1;
}




.calendar-table .tc-date button.tc-day {
    border:0 none;
}

.calendar-table .tc-date button.today-circle {
    border-radius: 50%;
    background-color: rgba(var(--bs-primary-rgb), 0.3);
}


.calendar-table .tc-date.prevday button.tc-day {
    /*border:0 none;*/
}



.calendar-table .tc-date .date-num {
    color: #31394f;
}

.calendar-table .tc-date.prevday .date-num {
    color: #e3e3e3 !important;
}

.calendar-table .tc-date.today .date-num{
    color: #31394f;
}

.calendar-table .tc-date button.tc-day:disabled {
    background: transparent !important;
}

.calendar-table .tc-date button.tc-day.selected {
    background-color: var(--bs-primary);
}

.calendar-table .tc-date button.tc-day.selected .date-num {
    color: #fff !important;
}




.calendar-table .tc-date .date-text {
    color: #31394f;
    font-weight: bold;
    font-size: 0.6rem;
    line-height: 1;
}

.calendar-table .tc-date .is-schduled {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: var(--bs-border-radius-pill) !important;
    background-color: rgba(var(--bs-danger-rgb), 0.7);
}


.time-select-box .time-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-select-box .time-list .tl-item {
    width: calc((100% / 5) - 10px);
    padding: .5rem 1rem;
    border: 1px solid #aaa;
    border-radius: 50rem;
    text-align: center;
    display: none;
}

.time-select-box .time-list .tl-item .time {
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 300;
    color: #aaa;
}

.time-select-box .time-list .tl-item.able {
    border: none;
    background-color: rgba(var(--bs-primary-rgb), 0.3);
    display: block;
}

.time-select-box .time-list .tl-item.able .time {
    color: #000;
}

.time-select-box .time-list .tl-item.check {
    border: none;
    background-color: var(--bs-primary);
}

.time-select-box .time-list .tl-item.check .time {
    font-weight: 700;
    color: #fff;
}

@media (max-width: 480px) {
    .time-select-box .time-list {
        gap: 20px;
    }
    .time-select-box .time-list .tl-item {
        width: calc((100% / 4) - 15px);
    }
}


.stepWrap {
    position: relative;
    height: calc(100svh - var(--top-offset) - 1px);
    display: flex;
    flex-direction: column;
    padding-bottom: env(safe-area-inset-bottom);

}

.introStep {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.step-fixed-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    background: #fff;
    border-top: 1px solid #ddd;
}

.title-by-step {
    display: inline-block;
    background-color: var(--bs-primary);
    color:#fff;
    border-radius: 50rem;
    padding:0.5rem 1.5rem;
    margin-bottom: 5px;
}
.desc-by-step {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: bold;
}
.body-by-step {
    background-color: #fff;
    position: relative;
    max-width: 100%;
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    margin-bottom: 75px;
    -webkit-overflow-scrolling: touch; /* iOS 부드러운 스크롤 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-by-step .btn:disabled,
.body-by-step .btn.disabled {
    opacity: 1 !important;
    color: inherit !important;
    background-color: inherit !important;
    border-color: inherit !important;
    pointer-events: none; /* 클릭만 막기 */
}


.an-circle-btn{
    width: 120px;
    height: 120px;
    padding: 0;                 /* 내부 여백 제거 */
    display: inline-flex;       /* 아이콘 중앙 정렬 */
    align-items: center;
    justify-content: center;
    border-radius: 50% !important; /* 혹시 모를 덮어쓰기 방지 */
    line-height: 1;
    font-size: 3rem;
}


.fixed-register-service-btn {
    position: fixed;
    width: 100px;
    bottom: 85px;
    right:10px;
    z-index: 1000;
}


@media (min-width: 500px) {
    .fixed-register-service-btn {
        right: unset;
        left:50%;
        transform: translateX(calc(var(--wrap_wd_2) - 110px));
    }
}


.reserv-link-btn {
    position: fixed;
    width: 55px;
    bottom: 85px;
    right:10px;
    z-index: 1000;
}

@media (min-width: 500px) {
    .reserv-link-btn {
        right: unset;
        left:50%;
        transform: translateX(calc(var(--wrap_wd_2) - 65px));
    }
}


.reserv-link-btn .img_con {
    position: relative;
    width: 55px;
    height: 55px;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px;
    box-shadow: 0 0 10px;
    -webkit-transition: all .4s;
    transition: all .4s
}

.reserv-link-btn .img_con img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 50%;
    -webkit-transition: all .4s;
    transition: all .4s
}

.reserv-link-btn .t1 {
    margin-top: 5px;
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
}





.profile_setting .thumb {
    position: relative;
    text-align: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.profile_setting .thumb .img_con {
    position: relative;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
}
.profile_setting .thumb .img_con::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.profile_setting .thumb .img_con img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.profile_setting .thumb .upload {
    position: absolute;
    bottom: 0;
    right: 0;
}

.camera-upload-preview {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.camera-upload-preview .img_con {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
}

.camera-upload-preview .img_con::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.camera-upload-preview .img_con img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #fff;
}

.camera-upload-preview .upload {
    position: absolute;
    bottom: 0;
    right: 22px;
}


.schedule-box {
    position: relative;
}

.schedule-box .date {
    margin-bottom: 15px;
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 500;
}

.schedule-box .e-status {
    gap: 10px;
}

.schedule-box .e-status li {
    position: relative;
}


.schedule-box .condition {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
    "time round"
    "svc course";
    row-gap: 6px;
    column-gap: 8px;
    padding: 12px 12px 12px 24px; /* 좌측 상태 점 여백 */
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
}

/* 상태 점 */
.schedule-box .condition::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 20px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
}

/* 상태 컬러 */
.schedule-box .condition.scheduled::before { background-color: RGBA(var(--bs-secondary-rgb),var(--bs-bg-opacity,1))!important; }
.schedule-box .condition.complete::before  { background-color: RGBA(var(--bs-primary-rgb),var(--bs-bg-opacity,1))!important; }
.schedule-box .condition.absent::before  { background-color: RGBA(var(--bs-warning-rgb),var(--bs-bg-opacity,1))!important; }
.schedule-box .condition.canceled::before  { background-color: RGBA(var(--bs-danger-rgb),var(--bs-bg-opacity,1))!important; }

/* 공통 텍스트 */
.schedule-box .condition p {
    margin: 0;
    line-height: 1.2;
    font-size: clamp(14px, 2.6vw, 16px);
    min-width: 0; /* ellipsis 동작용 */
}

/* 서비스명 / 수업명: 1행 */
.schedule-box .condition .svc {
    grid-area: svc;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.schedule-box .condition .course {
    grid-area: course;
    justify-self: end;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 시간: 2행 좌측 */
.schedule-box .condition .time {
    grid-area: time;
    font-size: clamp(12px, 2.4vw, 14px);
    font-weight: 600;
    color: #585858;
}

/* 회차 뱃지: 2행 우측 */
.schedule-box .condition .round {
    grid-area: round;
    justify-self: end;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    background: #f5f7fa;
    color: #3a3a3a;
    letter-spacing: 0.2px;
    font-variant-numeric: tabular-nums;
}

/* 옵션: 호버 */
.schedule-box .condition:hover {
    border-color: #e6eef5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}