/*===========================================================================
	웹폰트
============================================================================*/

/* 폰트 */
@font-face {
    font-family: "xeicon";
    font-style: normal;
    src: url("../fonts/xeicon.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    font-weight: 100;
    font-style: normal;
    src: url("../fonts/Pretendard-Thin.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    font-weight: 200;
    font-style: normal;
    src: url("../fonts/Pretendard-ExtraLight.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    font-weight: 300;
    font-style: normal;
    src: url("../fonts/Pretendard-Light.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    font-weight: 400;
    font-style: normal;
    src: url("../fonts/Pretendard-Regular.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    font-weight: 500;
    font-style: normal;
    src: url("../fonts/Pretendard-Medium.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    font-weight: 600;
    font-style: normal;
    src: url("../fonts/Pretendard-SemiBold.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    font-weight: 700;
    font-style: normal;
    src: url("../fonts/Pretendard-Bold.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    font-weight: 800;
    font-style: normal;
    src: url("../fonts/Pretendard-ExtraBold.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    font-weight: 900;
    font-style: normal;
    src: url("../fonts/Pretendard-Black.woff2") format("woff2");
    font-display: swap;
}

/*===========================================================================
	CSS 초기화
============================================================================*/
@layer common {
    * {
        font-family: "Pretendard", sans-serif;
        box-sizing: border-box;
        margin: 0px;
        padding: 0px;
        background-repeat: no-repeat;
        color: #202020;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        line-height: 1;
        -ms-overflow-style: none;
        height: 100%;
    }
    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    menu,
    nav,
    section {
        display: block;
    }
    ul,
    ol,
    li {
        list-style: none;
    }
    strong {
        display: inline-block;
    }
    a {
        margin: 0;
        padding: 0;
        font-size: 100%;
        display: block;
    }
    pre {
        font-family: "Pretendard", sans-serif;
        white-space: pre-line;
        line-height: 1.5;
    }
}

input,
select {
    vertical-align: middle;
    outline: 0;
    border: 0;
    background: none;
    font-family: "Pretendard", sans-serif;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="file"],
input[type="checkbox"],
input[type="radio"] {
    display: none;
}
select {
    appearance: none;
    background-image: url(../images/icon_arrow_down.svg);
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 24px;
}
select option[value="disabled"][disabled] {
    display: none;
}
label {
    cursor: pointer;
}
button {
    cursor: pointer;
    border: 0;
    outline: 0;
    background: none;
}
textarea {
    border: 0;
    outline: 0;
    resize: none;
    font-family: "Pretendard", sans-serif;
}

.no-scrollbar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}
.no-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* 컨텐츠 공통 */
.col-group {
    display: flex;
}
.row-group {
    display: flex;
    flex-flow: column;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 64px;
}
.img-container {
    width: 100%;
    position: relative;
}
.img-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
}
.video-container {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}
.video-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #e4e4e4;
}
::-webkit-scrollbar-thumb {
    background: #484848;
    border-radius: 4px;
}
i {
    font-family: "xeicon";
    font-style: normal;
}

.pc {
    display: block;
}
.mb {
    display: none;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1023px) {
    .pc {
        display: none;
    }
    .mb {
        display: block;
    }
}
