/* 구글 웹 폰트 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700&family=Noto+Sans+TC:wght@400;700&family=Noto+Sans:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 9;
    border: 0;
    box-sizing: border-box;
}

body
{
    font-family: 'Noto Sans KR','Noto Sans JP','Noto Sans TC', sans-derif;
    font-size: 16px;
}

/* 리스트 초기화 */
ol, ul{
    list-style: none;
}

/* 링크영역 초기화 */
a{
  color: inherit;
  text-decoration: none;  
}