@charset "UTF-8";

/* 기본 설정들 */
html {
    overflow-x: hidden;
}
html * {
    word-break: keep-all;
}
html,
body {
    font-family: "Pretendard", sans-serif;
    height: 100%;
    color: #222;
}
section {
    overflow: hidden;
}
img,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}
img,
video,
iframe {
    max-width: 100%;
}
img,
strong {
    display: block;
}
form,
input {
    background: transparent;
}

/* 모달, 팝업 공통 css */
.modal {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.modal .modal_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pc_block {
    display: block;
}
.mobile_block {
    display: none;
}
.block_1024 {
    display: block;
}
.none_1024 {
    display: none;
}

.w_1360 {
    width: 90%;
    max-width: 1360px;
    margin: 0 auto;
}
.w_1280 {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}
._cover img,
._cover iframe,
._cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
[data-aos="fade-left"] {
    transform: translate3d(30px, 0, 0);
}
[data-aos="fade-right"] {
    transform: translate3d(-30px, 0, 0);
}
[data-aos="fade-up"] {
    transform: translate3d(0, 30px, 0);
}
[data-aos="zoom-in"] {
    transform: scale(0.9);
}
[data-aos="fade-down"] {
    transform: translate3d(0, -60px, 0);
}
/* 커스텀 셀렉트 박스 */
.selectBox {
    position: relative;
}
.selectBox .label {
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
    background: #fff;
    border-radius: 6px;
    border: 0;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.56px;
    padding: 8px 10px;
}
.selectBox .optionList {
    position: absolute;
    height: 0;
    overflow: hidden;
    transition: 0.3s ease-in;
    top: calc(100% + 10px);
    left: 0;
    z-index: 10;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 9px 10px rgba(0, 0, 0, 0.1);
}
.selectBox .optionList > div {
    display: flex;
    flex-direction: column;
}
.selectBox .optionList.active {
    height: fit-content;
}

/* 웹접근성 고려 */
.blind {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    bottom: 0;
    overflow: hidden;
    white-space: nowrap;
}

@media screen and (max-width: 1024px) {
    .block_1024 {
        display: none;
    }
    .none_1024 {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .pc_block {
        display: none;
    }
    .mobile_block {
        display: block;
    }
}
