/* 
    문자 초기화
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
*/
/* 
    트랜지션
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out;
*/

@import url(./fonts.css);
@import url(./layout.css);

html,body,div,ul,li,p,h3,h1,h2,h4,h5{padding:0;margin:0;line-height:1}
ul,li{list-style:none}
a{text-decoration:none;color:#000}
optgroup,select,button{cursor:pointer}
input::-webkit-input-placeholder{color:#AAAAAA;font-weight:400}
textarea::-webkit-input-placeholder{color:#AAAAAA;font-weight:400}
input::-ms-input-placeholder{color:#AAAAAA;font-weight:400}
textarea::-ms-input-placeholder{color:#AAAAAA;font-weight:400}
input::-moz-placeholder{color:#AAAAAA;font-weight:400}
textarea::-moz-placeholder{color:#AAAAAA;font-weight:400}
input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px #fff inset;}
input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none}
input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}
select::-ms-expand{display:none}
select{-moz-appearance:none;-webkit-appearance:none;appearance:none}
img{vertical-align:top}
body{width:100%;position:relative;box-sizing:border-box;min-height: 100vh;}
caption{display:none}
*{margin:0;padding:0;text-decoration:none;-webkit-text-size-adjust:none;-webkit-appearance:none; -webkit-tap-highlight-color:transparent; -webkit-font-smoothing:antialiased}
*{font-family: NanumSquareNeo, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;line-height:1em;color:#000;box-sizing: border-box;font-weight: normal;letter-spacing: -0.02em;}
i,em {line-height: inherit;font-style: normal}
.blind {display: none  !important;}
span,i,strong,q {font-size: inherit;font-weight: inherit;line-height: inherit;color: inherit; letter-spacing: inherit; font-family: inherit;}
q::before,q::after {content: none;}
b {font-size: inherit;font-weight: 500;line-height: inherit;color: inherit; letter-spacing: inherit; font-family: inherit;}
table {width: 100%;table-layout: fixed;border-collapse: collapse;border-spacing: 0;}
button {border: none;background-color: transparent;}
.dots span {
    cursor: pointer;
}
input,select {
    outline: none;
    background-color: transparent;
}

@-webkit-keyframes showUp {
0% {opacity: 0;-webkit-transform: translateY(20px)}
100% {opacity: 1;-webkit-transform: translateY(0)}
}

@keyframes showUp {
0% {opacity: 0;transform: translateY(20px)}
100% {opacity: 1;transform: translateY(0)}
}

@-webkit-keyframes showDown {
0% {opacity: 0;-webkit-transform: translateY(-20px)}
100% {opacity: 1;-webkit-transform: translateY(0)}
}

@keyframes showDown {
0% {opacity: 0;transform: translateY(-20px)}
100% {opacity: 1;transform: translateY(0)}
}

@-webkit-keyframes showOpacity {
0% {opacity: 0;}
100% {opacity: 1;}
}

@keyframes showOpacity {
0% {opacity: 0;}
100% {opacity: 1;}
}

@-webkit-keyframes openSubMenu {
0% {opacity: 0;-webkit-transform: translateY(-20px) translateX(-50%)}
100% {opacity: 1;-webkit-transform: translateY(0) translateX(-50%)}
}

@keyframes openSubMenu {
0% {opacity: 0;transform: translateY(-20px) translateX(-50%)}
100% {opacity: 1;transform: translateY(0) translateX(-50%)}
}

/* 버튼 */
.btn_modal {
    display: inline-block;
    line-height: 30px;
    text-align: center;
    font-size: 13px;
    color: #FFFFFF;
    font-family: 'NanumSquareNeoBold';
}

.btn_modal.btn_sub {
    width: 80px;
    background-color: #838383;
}

.btn_modal.btn_main {
    width: 100px;
    background-color: #E63950;
}