/* 리셋 */
html {
    scroll-behavior: smooth;
}

body {
    min-height: 0px;
}

* {
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    word-break: keep-all;
}

/* 공통 */

img {
    width: 100%;
    display: block;
}

iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bg_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
}

.front {
    position: relative;
    z-index: 10;
    width: 100%;
}

.vw_img {
    width: unset;
    max-width: 101%;
    min-width: 100%;
}

.vw_himg {
    width: unset;
    max-height: 101%;
    min-height: 100%;
}

.flexcol {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.mobile-pc {
    display: none;
}

.pc-mobile {
    display: flex;
}

.absol {
    position: absolute;
}


.rltv {
    position: relative;
}

@media screen and (max-width:599px) {

    .mobile-pc {
        display: flex;
    }

    .pc-mobile {
        display: none;
    }

}