/*---CSS RESET---*/

*{margin: 0;padding: 0;font-family: inherit;font-size: inherit;font-weight: inherit;font-style: inherit;color: inherit;text-decoration: inherit;box-sizing: border-box;}

body{font-size:16px;font-weight:300;font-style: normal;text-decoration: none;color: #222;}
li{list-style: none;}
table{border-spacing: 0;border-collapse: collapse;}
input, select, textarea, button{box-sizing: border-box;}
button{background: none;border: none;cursor: pointer;outline: none;}


/*텍스트사이즈*/

@media screen and (min-width:1281px){
    html, body{font-size: 16px;}/*body와 확인 할 것*/
}

@media screen and (min-width:761px) and (max-width:1281px){
    html, body{font-size: 14px;}/*body와 확인 할 것*/
}

@media screen and (max-width:760px){
    html, body{font-size: 12px;}/*body와 확인 할 것*/
}
/*텍스트사이즈*/

.br_no1020 {display:block}
@media screen and (max-width:1020px){
	.br_no1020 {display:none}
}

@media screen and (min-width:761px){
    br.br_m{display: none;}/*br 모바일에서만 줄내림*/
}

@media screen and (max-width:760px){
    br.br_d{display: none;}/*br 데스크탑에서만 줄내림*/
}




