*::selection {
    background: #57011c;
    color: #3a6ffd;
}

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

body {
    min-height: 0vw;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: unset;
    -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;
    appearance: none;
    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;
    display: block;
}

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

.flowhid {
    overflow: hidden;
}

.hide {
    display: none !important;
}

.show {
    display: flex !important;
}

.absol {
    position: absolute;
}

.rltv {
    position: relative;
}

.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;
}

.fcc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.w100 {
    width: 100%;
}

.h100 {
    height: 100%;
}

.h100_obc {
    height: 100%;
    object-fit: cover;
}

.flex {
    display: flex;
}

.pin-spacer {
    pointer-events: none;
}

.pin-spacer>* {
    pointer-events: auto;
}

.ovhd {
    overflow: hidden;
}

/* -------커스텀------- */

.c_fff {
    color: #fff;
}

.bg_fff {
    background: #fff;
}

.c_000 {
    color: #000;
}

.bg_000 {
    background: #000;
}

.c_yell {
    color: #fdc83a;
}

.bg_yell {
    background: #fdc83a;
}

.c_green {
    color: #01573a;
}

.bg_green {
    background: #01573a;
}

.pc-mobile {
    display: flex;
}

.mobile-pc {
    display: none;
}

.is-fixed{
    position: fixed;
}