:root {
    --blue: #0072bb;
    --darkblue: #00437a;
}

/* 폰트 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

@font-face {
    font-family: 'Pretendard-Thin';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-ExtraLight';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Light';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Medium';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-SemiBold';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Bold';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-ExtraBold';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Black';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSansTTFBold';
    src: url(../fonts/GmarketSansTTFBold.ttf);
}

@font-face {
    font-family: 'SCDream-Thin';
    src: url(../fonts/SCDream1.otf) format('opentype');
}

@font-face {
    font-family: 'SCDream-ExtraLight';
    src: url(../fonts/SCDream2.otf) format('opentype');
}

@font-face {
    font-family: 'SCDream-Light';
    src: url(../fonts/SCDream3.otf) format('opentype');
}

@font-face {
    font-family: 'SCDream-Regular';
    src: url(../fonts/SCDream4.otf) format('opentype');
}

@font-face {
    font-family: 'SCDream-Medium';
    src: url(../fonts/SCDream5.otf) format('opentype');
}

@font-face {
    font-family: 'SCDream-Bold';
    src: url(../fonts/SCDream6.otf) format('opentype');
}

@font-face {
    font-family: 'SCDream-ExtraBold';
    src: url(../fonts/SCDream7.otf) format('opentype');
}

@font-face {
    font-family: 'SCDream-Heavy';
    src: url(../fonts/SCDream8.otf) format('opentype');
}

@font-face {
    font-family: 'SCDream-Black';
    src: url(../fonts/SCDream9.otf) format('opentype');
}


/* font-family: "SCDream-Heavy", sans-serif; */


/* 초기값 */
* {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

html,
body {
    height: 100%
}

body {
    overflow-x: hidden;
    color: #111111;
    background-color: #fff;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

#wrap {
    width: 100%;
    overflow: hidden;
}

.center {
    width: 1200px;
    margin: 0 auto;
}

.sub1_center {
    width: 1200px;
    margin: 0 auto;
}

select::-ms-expand {
    display: none;
}

select {
    width: 100%;
    height: 100%;
    position: absolute;
    border: 0;
    outline: 0;
    padding-left: 10px;
    box-sizing: border-box;
    appearance: none;
    background-color: transparent;
}

input {
    outline: 0;
    padding: 0 10px;
    box-sizing: border-box;
}

input::placeholder {
    font-size: 90%;
}

input:-ms-input-placeholder {
    font-size: 90%;
}

textarea {
    outline: 0;
    resize: none;
    padding: 10px;
    box-sizing: border-box;
}

input[type='button'] {
    cursor: pointer;
    padding: 0;
}

button {
    border: 0;
    outline: 0;
    cursor: pointer;
}

::-webkit-calendar-picker-indicator {
    margin-left: 0px;
    font-size: 14px;
}