@charset "utf-8";
/* CSS Document */
/*=================================================================================

* Reset

=================================================================================*/
html {
    font-size: 100%;
    font-weight: 400;
    letter-spacing: -0.025em;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar{
    display:none;                /* Chrome, Safari */
}
body { -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-overflow-style: none;
    font-family: Pretendard;
    height: 100vh;
    margin: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: 0;
    -webkit-user-select: none;
    user-select: none;
    word-break: keep-all; 
	-ms-overflow-style:none;     /* IE, Edge */
    scrollbar-width:none;        /* Firefox */
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, textarea, p, blockquote, th, td, input, select, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*	-webkit-backface-visibility: initial;
 -moz-backface-visibility: initial;
 -webkit-transform: translate3d(0, 0, 0);
 -moz-transform: translate3d(0, 0, 0);*/
    transition: all ease 0.1s;
}
form { width: 100%; }
fieldset, img {
    border: 0 none;
}
dl, ul, ol, menu, li {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
input, select, textarea, button {
    vertical-align: middle;
}
input::-ms-clear {
    display: none;
}
input::-webkit-contacts-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
}
input {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    appearance: none;
    border-radius: 0;
}
input[type='text'], input[type='search'], input[type='email'], input[type='date'], input[type='password'], select {
    border: 1px solid var(--color-border);
    height: 36px;
    line-height: 36px;
    background: #fff;
    text-indent: 5px;
    outline: none;
	font-size: var(--font-text-04);
    border-radius: var(--radius-sm);
	
}
select {
    text-indent: 0;
    padding: 0 40px 0 12px;
    border-radius: 4px;
    appearance: none;
    background: #fff url('../img/icon-select-arrow.svg') no-repeat right 12px center/12px;
}
input:focus {
    border-color: #ccc;
    outline: 0;
    border-width: 1px;
}
button {
    border: 0 none;
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
}
body {
    word-wrap: break-word;
    word-break: keep-all;
}
body, th, td, input, select, textarea, button {
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Pretendard', 'Malgun Gothic', '맑은 고딕', 'Apple SD Gothic Neo', '돋움', 'dotum', sans-serif;
    color: var(--color-primary);
    box-sizing: border-box;
}
a {
    color: var(--color-primary);
    text-decoration: none;
    box-sizing: border-box;
    transition: all ease 0.1s;
}
a:hover, a.active { color: var(--color-primary); }
address, caption, cite, code, dfn, em, var {
    font-style: normal;
    font-weight: 400;
}
table {
    border-collapse: collapse !important;
}
html[data-useragent*='mac'] body * {
    font-family: 'Apple SD Gothic NEO', helvetica, sans-serif !important;
}
::-moz-selection {
    background: #0066ff;
    color: var(--color-white);
}
/*
::selection {
    background: #0066ff;
    color: var(--color-white);
}*/
strong, b {
    font-weight: 700;
}
h1, h2, h3, h4, h5 {
    font-weight: 900;
	margin-bottom: 20px;
}
figure {
    margin: 0;
}
hr {
    margin: 10px 0;
    border: 0;
    height: 1px;
    background-color: var(--color-border);
}
textarea {
    width: 100%;
    height: 115px;
    overflow-y: auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 5px;
    resize: none;
    padding: 12px;
	font-size: var(--font-text-04);
}
input[type='password'] {
    font-family: 'Pretendard', 'Malgun Gothic', '맑은 고딕', 'Apple SD Gothic Neo', '돋움', 'dotum', sans-serif;
}
input[type='submit'] {
    outline: none;
    border: 0;
}
::placeholder {
    color: var(--color-gray);
    font-weight: 400;
}
input::-webkit-input-placeholder {
    color: var(--color-gray);
    font-weight: 400;
    letter-spacing: -0.025em;
}
input::-moz-placeholder {
    color: var(--color-gray);
    font-weight: 400;
}
input:-ms-input-placeholder {
    color: var(--color-gray);
    font-weight: 400;
}
input:-moz-placeholder {
    color: var(--color-gray);
    font-weight: 400;
}
input::placeholder {
    color: var(--color-gray);
    font-weight: 400;
}
img {
    max-width: 100%;
    -webkit-perspective: 1;
}
.cf:after {
    display: block;
    clear: both;
    content: '';
}
#skipNav {
    position: absolute;
    width: 100%;
}
#skipNav a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    width: 100%;
    height: 50px;
    background: #000;
    color: var(--color-white);
}
#skipNav a:focus, #skipNav a:active {
    transform: translateY(0);
}
.hide_txt {
    display: inline-block !important;
    overflow: hidden !important;
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1px;
    line-height: 0;
    clip: rect(1px 1px 1px 1px);
}