#popParent {
    display: none;
}
.pop-parent {
    z-index: 9999;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding-bottom: 40px;
    background-color: rgba(0, 0, 0, 0.35);
}
.pop-parent .pop {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
}
.pop-parent .m-ratioBox-wrap {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}
.pop-parent .m-ratioBox-wrap .m-ratioBox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--sub_color01);
}
.pop-parent .m-ratioBox-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}
.pop-parent .m-ratioBox-wrap iframe {
    width: 105%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}
.pop-parent .pop .btn-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    background-color: black;
    cursor: pointer;
}
.pop-parent .pop .btn-toggle img {
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transition: all 0.3s;
}
.pop-parent .pop-btns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    background-color: #3c3c3c;
}
.pop-parent .pop-btns a {
    color: #fff;
    padding: 7px 14px;
}
.pop-parent .pop-btns #oneday_check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}
.pop-parent .pop-btns #oneday_check + label {
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}
.pop-parent .pop-btns #oneday_check + label:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    border: 1px solid #fff;
}
.pop-parent .pop .swiper-btn-control {
    width: 8px;
    height: 11px;
    margin-left: 16px;
    position: relative;
    top: 2px;
}
.pop-parent .popupSwiper {
    background-color: #fff;
}
.pop-parent .swiper-pagination {
    pointer-events: none;
    top: 21px;
    left: auto;
    right: 20px;
    width: fit-content;
}
.pop-parent .swiper-pagination-bullet {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 0;
    border: 1px solid white;
    opacity: 0.5;
    background-color: transparent;
}
.pop-parent .swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}
.pop-parent .active {
    right: -400px;
}
.pop-parent .active .btn-toggle {
    transform: rotate(180deg);
}
.pop-parent .pop .btn-close {
    width: 40px;
    height: 40px;
    background-color: black;
}
.pop-parent .pop .btn-close > i {
    color: #fff;
}

.floating-btns-wrap {
    z-index: 99;
    position: fixed;
    bottom: 48px;
    right: 48px;
    opacity: 0;
    width: 48px;
    transition: 0.3s;
}

.floating-btns-wrap.active {
    opacity: 1;
}
.btn-scroll-top {
    position: relative;
    aspect-ratio: 1/1;
    width: 100%;
    border-radius: 100%;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.btn-scroll-top i {
    font-size: 24px;
    color: #464646;
    z-index: 2;
}

.btn-scroll-top .progress_bar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.btn-scroll-top .progress_bar::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background-color: #fff;
    border-radius: 100%;
}
.btn-menu {
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--color-gray-2);
}
.btn-menu .icon-open {
    display: block;
}
.btn-menu.on .icon-open {
    display: none;
}
.btn-menu .icon-close {
    display: none;
}
.btn-menu.on .icon-close {
    display: block;
}
.menu-items-wrap {
    display: none;
}
.btn-menu.on + .menu-items-wrap {
    display: flex;
}

@media screen and (max-width: 1279px) {
    .pop-parent .pop {
        width: 310px;
    }
    .pop-parent.active {
        right: -310px;
    }
}

@media screen and (max-width: 1023px) {
    .floating-btns-wrap {
        bottom: 16px;
        right: 16px;
    }
}

@media screen and (max-width: 767px) {
    .pop-parent {
        top: 50%;
        right: unset;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .pop-parent .pop-btns {
        width: 100%;
        justify-content: space-between;
    }
    .pop-parent .pop .btn-toggle {
        display: none;
    }
    .pop-parent .pop .btn-close {
        display: block;
    }
}

/* 메인 슬라이드 버튼 */
.index-slide .index-slide-btn-wrap {
    position: absolute;
    bottom: 17svh;
    left: calc((100vw - 1400px) / 2);
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 16px;
}
.index-slide .index-slide-pagination {
    width: fit-content;
    position: static;
    display: flex;
    gap: 16px;
}
.index-slide .index-slide-pagination .swiper-pagination-bullet {
    width: unset;
    height: unset;
    background: none;
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    color: #fff;
}
.index-slide .index-slide-pagination .swiper-pagination-bullet::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 1px;
    background: #fff;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
}
.index-slide .index-slide-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    padding-right: 64px;
}
.index-slide .index-slide-pagination .swiper-pagination-bullet-active::after {
    content: "";
    display: block;
    position: absolute;
    width: 48px;
    height: 1px;
    background: #fff;
    opacity: 0.2;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.index-slide .index-slide-pagination .swiper-pagination-bullet-active::before {
    animation: pagi_ani 5.5s ease;
    animation-play-state: running;
}
.index-slide
    .index-slide-pagination.paused
    .swiper-pagination-bullet-active::before {
    animation-play-state: paused;
}
@keyframes pagi_ani {
    0% {
        width: 0;
    }
    100% {
        width: 48px;
    }
}
.index-slide .index-slide-btn {
    width: 14px;
    height: 14px;
    cursor: pointer;
    text-align: center;
    line-height: 14px;
    font-size: 14px;
    color: #fff;
    transition: 0.3s;
}
.index-slide .index-slide-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

.index-slide-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
}
.index-slide-btn-group .index-slide-play {
    display: none;
}
.index-slide-btn-group.paused .index-slide-pause {
    display: none;
}
.index-slide-btn-group.paused .index-slide-play {
    display: block;
}

@media screen and (max-width: 1536px) {
    .index-slide .index-slide-btn-wrap {
        left: 16px;
        bottom: 110px;
    }
}

/* 일정 캘린더 */
/* 요일 상단 스타일 */
.fc,
.fc * {
    border: 0 !important;
}
.fc .fc-scrollgrid-sync-table {
    border-spacing: 4px;
    border-collapse: separate;
}
.fc .fc-col-header-cell {
    font-size: 18px;
    text-align: left;
    padding-bottom: 24px;
}
.fc .fc-col-header-cell-cushion {
    font-weight: normal;
    font-family: "Roboto";
    text-transform: uppercase;
}

/* 날짜 숫자 스타일 */
.fc .fc-daygrid-day-top {
    justify-content: start;
}
.fc-daygrid-day-number {
    font-weight: bold;
    font-size: 32px;
}
.fc-day-number {
    font-family: "Roboto";
}
.fc .fc-daygrid-day {
    padding-top: 24px;
    padding-bottom: 40px;
    border-top: 4px solid #000 !important;
    margin: 0 2px;
}

.fc .fc-daygrid-day-frame {
    min-height: 276px;
}

/* 오늘 날짜 강조 */
.fc .fc-today-header {
    color: #1192d1 !important; /* Tailwind text-blue-600 */
    font-weight: bold;
}
.fc .fc-day-today {
    background: #6d6e710a !important;
}
.fc .fc-day-today {
    border-color: #1192d1 !important;
    padding-left: 16px;
    padding-right: 16px;
}
.fc .fc-day-today .fc-daygrid-day-number {
    color: #1192d1;
}

/* 이벤트 리스트 스타일 */
.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
    margin: 0;
}
.fc .fc-daygrid-event:hover {
    text-decoration: underline;
}
.fc .fc-daygrid-day-events a {
    position: relative;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: none;
    color: #000;
}
.fc .fc-daygrid-event {
    position: relative;
    padding-left: 16px;
}
.fc .fc-daygrid-event::after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
