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

/* 폰트 */
@font-face {
    font-family: "Pretendard";
    font-weight: 100;
    font-style: normal;
    src:
        url("../fonts/Pretendard-Thin.woff2") format("woff2"),
        url("../fonts/Pretendard-Thin.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 200;
    font-style: normal;
    src:
        url("../fonts/Pretendard-ExtraLight.woff2") format("woff2"),
        url("../fonts/Pretendard-ExtraLight.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 300;
    font-style: normal;
    src:
        url("../fonts/Pretendard-Light.woff2") format("woff2"),
        url("../fonts/Pretendard-Light.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 400;
    font-style: normal;
    src:
        url("../fonts/Pretendard-Regular.woff2") format("woff2"),
        url("../fonts/Pretendard-Regular.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 500;
    font-style: normal;
    src:
        url("../fonts/Pretendard-Medium.woff2") format("woff2"),
        url("../fonts/Pretendard-Medium.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 600;
    font-style: normal;
    src:
        url("../fonts/Pretendard-SemiBold.woff2") format("woff2"),
        url("../fonts/Pretendard-SemiBold.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 700;
    font-style: normal;
    src:
        url("../fonts/Pretendard-Bold.woff2") format("woff2"),
        url("../fonts/Pretendard-Bold.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 800;
    font-style: normal;
    src:
        url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"),
        url("../fonts/Pretendard-ExtraBold.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 900;
    font-style: normal;
    src:
        url("../fonts/Pretendard-Black.woff2") format("woff2"),
        url("../fonts/Pretendard-Black.woff") format("woff");
    font-display: swap;
}

/*===========================================================================
	CSS 초기화
============================================================================*/

* {
    font-family: "Pretendard", sans-serif;
    box-sizing: border-box;
    font-display: swap;
    line-height: 1.25;
}
html {
    scroll-behavior: smooth;
    background-color: #000;
    width: 100vw;
}
html,
body {
    overflow-x: hidden;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
legend,
caption,
article,
aside,
footer,
header,
menu,
nav,
section,
video,
a {
    outline: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    -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;
    outline: 0;
    background: none;
}
a {
    text-decoration: none;
    display: block;
}
textarea {
    border: 0;
    outline: 0;
    resize: none;
    font-family: "Pretendard", sans-serif;
}
i {
    font-family: "xeicon";
    font-style: normal;
}
/* 컨텐츠 공통 */
.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;
}
.pc {
    display: block;
}
.mb {
    display: none;
}

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

.point-leading {
    line-height: 0.9;
}
