/*
RESET, FONT, BASE
*/

/*--- base&reset ---*/
@-ms-viewport {
    width: device-width;
}

@o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    word-break: keep-all;
    font-size: 16px;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    scrollbar-width: none;
    -ms-overflow-style: none;
    color: var(--color-text-01);
}

::selection {
}

a,
a:link,
a:visited {
    text-decoration: none;
}

a{
    color: var(--color-text-01);
}

ul,
ol,
li {
    list-style: none;
}

[type='text']:focus,
[type='email']:focus,
[type='url']:focus,
[type='password']:focus,
[type='number']:focus,
[type='date']:focus,
[type='datetime-local']:focus,
[type='month']:focus,
[type='search']:focus,
[type='tel']:focus,
[type='time']:focus,
[type='week']:focus,
[multiple]:focus,
textarea:focus,
select:focus {
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

button{
    border: none;
    color: var(--color-text-01);
}

input,
textarea{
    outline: none;
}

input::placeholder,
textarea::placeholder{
    color: var(--color-text-04);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--color-text-01);
}

/* ---fonts--- */
*,html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{
    font-family: "Pretendard Variable", Pretendard, 'NanumSquare', tossface, -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;
}