/* 폰트 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');


@font-face {
    font-family: 'SUIT-Thin';
    src: url('../font/SUIT-Thin.otf');
}

@font-face {
    font-family: 'KoPubWorld Batang_Pro Bold';
    src: url('../font/KoPubWorld Batang_Pro Bold.otf');
}

@font-face {
    font-family: 'KoPubWorld Batang_Pro Light';
    src: url('../font/KoPubWorld Batang_Pro Light.otf');
}

@font-face {
    font-family: 'KoPubWorld Batang_Pro Medium';
    src: url('../font/KoPubWorld Batang_Pro Medium.otf');
}

@font-face {
    font-family: 'GmarketSansTTFBold';
    src: url('../font/GmarketSansTTFBold.ttf');
}

@font-face {
    font-family: 'ylee Mortal Heart, Immortal Memory v.1.11 (OTF)';
    src: url('../font/ylee Mortal Heart, Immortal Memory v.1.11 (OTF).otf');
}

/* 초기값 */
* {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

html, body {
    height: 100%;
}

body {
    color: #333;
    background-color: #fff;
    font-family: 'Noto Sans KR', sans-serif;
}

#wrap {
    width: 100%;
    overflow: hidden;
}

.center1 {
    /* border: 1px solid rgb(1, 10, 6); */
    width: 90.2%;
    margin: 0 auto;
}

.center2 {
    /* border: 1px solid rgb(238, 31, 8); */
    width: 76.1%;
    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: url(../images/select_arrow.png) no-repeat right 15px center;
    background-color: transparent;
    cursor: pointer;
    color: #333;
}

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;
}





























/* mobile */
@media screen and (max-width: 767px) {

    .center, .center1, .center2 {
        width: 90%;
    }

    input[type='text'], input[type='password'], input[type='button'], input[type='date'], textarea, button {
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
    }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .center, .center1, .center2 {
        width: 90%;
    }

    input[type='text'], input[type='password'], input[type='button'], input[type='date'], textarea, button {
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
    }

}





















/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px) {

    .center {
        width: 1000px;
    }

}