@font-face {
    font-family: 'SUIT-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* @font-face {
    font-family: 'Noto Sans KR';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
} */

:root {
    /* color */
    --color-main: #192547;
    --color-sub: #57bbeb;
    --color-subback: #57bbeb;
    --color-back: #f6f8fb;
    --color-black: #1f1f1f;
}
* {
    box-sizing: border-box;
}
body {
    overflow-y: auto;
    -ms-overflow-style: none;
    margin: 0;
    height: 100%;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
    -webkit-text-size-adjust: none;

    letter-spacing: .5px;


    /* font-family: 'SUIT-Regular'; */
    font-weight: 400;


    
    font-family: "Noto Sans KR", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
html .dark_mode {
    color: var(--color-white) !important;
    background-color: var(--color-black) !important;
}
body.dark_mode * {
    color: var(--color-white) !important;
    background-color: var(--color-black) !important;
}

body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, input, legend, li, ol, p, select, table, td, textarea, th, ul {
    margin: 0px;
    padding: 0px;
}

ol, ul, menu {
    list-style: none;
}
ul, ol {
    list-style: none;
    padding-left: 0px;
    margin: 0;
    padding: 0;
}
button, a {
    color: inherit;
    text-decoration: none;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;

    display: block;
}
button.button:hover, a.a:hover {
    /* outline: 1px solid var(--color-main); */
    outline: 0;
    /* border-radius: 1px; */
    box-shadow: 0 0 0 2px var(--color-white), 0 0 0 3px var(--color-main);
}
button.-line:hover, a.-line:hover {
    text-decoration: underline;
}

p, h1, h2, h3 {
    padding: 0;
    margin: 0;
}
._hidden {
    overflow: hidden;
    white-space: nowrap;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0px;
    padding: 0px;
    border: 0px;
}


@media (min-width:1060px) {
    [class]._pc-hidden {
        display: none !important;
    }
}
@media (max-width:1060px) {
    [class]._mo-hidden {
        display: none !important;
    }
}
/* // 스크롤막기 */
.scrollLock { overflow: hidden; }


.air__aligner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width:1060px) {
    .air__aligner {
        padding: 0 40px;
    }
}

.requires {
    margin: 5px 0;
    color: #555;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.58;
    display: flex;
    flex-direction: row;
}
.requires:before {
    content: "[";
    display: inline-block;
    width: 10px;
    height: 2.2rem;
    vertical-align: top;
    margin: 0;
}
.requires:after {
    content: "]";
    display: inline-block;
    width: 10px;
    height: 2.2rem;
    vertical-align: top;
    margin: 0;
}
.required {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
    position: relative;
    width: 5px;
    font-size: inherit;
    vertical-align: bottom;
}
.required:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #de001b;
}







/* form_buttons */
#ke-button-group .confirms.-half {
    display: flex;
    justify-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}
#ke-button-group .confirm {
    display: inline-block;
    margin: 0;
    padding: 10px 40px;
    width: auto;
    min-height: 30px;
    border: 1px solid #192547;
    border-radius: 10px;
    background-color: #192547;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.58;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}
#ke-button-group .confirm.-ghost {
    background-color: #ffffff;
    color: #192547;
}
/* // form_buttons */



._angular {
    min-height: calc(100vh - 380px);
    padding-bottom: 100px;
}