html {
    scroll-behavior: smooth;
    font-size: round(nearest, 0.5208333333vw, 1px);

    @media (max-width: 599px) {
        font-size: round(up,1.49758454vw,1px);
    }
}

.flowhid {
    overflow: hidden;
}

.hideopa {
    opacity: 0 !important;
}
.show {
    opacity: 1 !important;
}

/* font lib */
.noto {
    font-family: "Noto Serif", serif;
}
.notokr {
    font-family: "Noto Serif KR", serif;
}
.exbold {
    font-weight: 800;
}
.bold {
    font-weight: 700;
}
.sebold {
    font-weight: 600;
}
.medium {
    font-weight: 500;
}
.regular {
    font-weight: 400;
}
.flight {
    font-weight: 200;
}
.thin {
    font-weight: 100;
}
.animate-blk {
    animation: blk 1s infinite ease-in-out;
}
.scaleOpa {
    animation: scaleOpa infinite 2.5s;
}
.scaleOpa2 {
    animation: scaleOpa infinite 1.5s;
}
.light {
    animation: light infinite 5s;
}
.rotate_img {
    animation: rotate_image 10s infinite linear;
}
.white {
    color: white;
}
.txct {
    text-align: center;
}
.lh {
    line-height: 1.5;
}

p {
    word-break: keep-all !important;
}

/* swiper */
.swiper {
    display: block;
}
.swiper-wrapper.flow {
    pointer-events: none;
    transition-timing-function: linear;
}

/* cursor lib */
.pointer {
    cursor: pointer;
}

.eventNone {
    pointer-events: none;
}

/* element defalut lib */
iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}
img {
    object-fit: cover;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-button-lock {
    display: none !important;
}

b {
    font-weight: 700;
}
/* 마커디자인 */
.map_marker {
    position: relative;
    display: inline-block;
}

/* 말풍선 텍스트 박스 */
.map_marker_text {
    background: #be0211;
    border: 0.1rem solid #fff;
    padding: 9px 19px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* 말풍선 꼬리 (삼각형 테두리) */
.map_marker_tail {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
}

/* 말풍선 꼬리 내부 (흰색 채우기) */
.map_marker_tail::after {
    content: "";
    position: absolute;
    top: -9px;
    left: -7px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #be0211;
}

/* display lib */
.hide {
    display: none !important;
}
.flexrow {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.flexcol {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.flex {
    display: flex;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-cc {
    display: flex;
    justify-content: center;
    align-items: center;
}

span[data-splited="true"] {
    display: inline-block;
}
.pc-mobile {
    display: flex;
}
.mobile-pc {
    display: none;
}
.pc {
    display: block;
}
.mobile {
    display: none;
}
.pc-inline {
    display: inline;
}

.absol {
    position: absolute;
}

.rltv {
    position: relative;
}

@media (max-width: 599px) {
    .pc-mobile {
        display: none;
    }
    .mobile-pc {
        display: flex;
    }
    .pc {
        display: none;
    }
    .mobile {
        display: block;
    }
    .pc-inline {
        display: none;
    }
}

/* flex gap */
.gap-4 {
    gap: 0.4rem;
}
.gap-8 {
    gap: 0.8rem;
}
.gap-16 {
    gap: 1.6rem;
}
.gap-24 {
    gap: 2.4rem;
}
.gap-32 {
    gap: 3.2rem;
}
.gap-42 {
    gap: 4.2rem;
}
.gap-52 {
    gap: 5.2rem;
}
.gap-60 {
    gap: 6rem;
}
.gap-72 {
    gap: 7.2rem;
}
.gap-84 {
    gap: 8.4rem;
}
.gap-96 {
    gap: 9.6rem;
}
