@charset "utf-8";

/* PC, more 1024px */



/* Tablet */
@media all and (min-width:700px) and (max-width:1024px) {
}


/* Mobile */
@media only screen and (max-width:700px) {
}

/*위 방식중 한가지로 반영하였으면 이제 실제로 원하는 곳에 스타일을 적용하면 된다.
body { font-family: 'Noto Sans KR', sans-serif; }

4번 직접로딩인 경우에는 굵기별로 지정한 명칭에 맞게 따로 지정해주면 된다.
body { font-family: 'NotoKrR', sans-serif; }
strong { font-family: 'NotoKrB', sans-serif; }
th { font-family: 'NotoKrM', sans-serif; }*/

@font-face {
font-family: 'NotoKrL';
font-style: normal;
font-weight: 100;
src: local('Noto Sans Light'), local('NotoSans-Light'), url(/renewal2019/fonts/NotoSans-Light.eot);
src: url(/renewal2019/fonts/NotoSans-Light.eot?#iefix) format('embedded-opentype'),
url(/renewal2019/fonts/NotoSans-Light.woff2) format('woff2'),
url(/renewal2019/fonts/NotoSans-Light.woff) format('woff');;
}
@font-face {
font-family: 'NotoKrR';
font-style: normal;
font-weight: 300;
src: local('Noto Sans Regular'), local('NotoSans-Regular'), url(/renewal2019/fonts/NotoSans-Regular.eot);
src: url(/renewal2019/fonts/NotoSans-Regular.eot?#iefix) format('embedded-opentype'),
url(/renewal2019/fonts/NotoSans-Regular.woff2) format('woff2'),
url(/renewal2019/fonts/NotoSans-Regular.woff) format('woff');
}
@font-face {
font-family: 'NotoKrM';
font-style: normal;
font-weight: 500;
src: local('Noto Sans Medium'), local('NotoSans-Medium'), url(/renewal2019/fonts/NotoSans-Medium.eot);
src: url(/renewal2019/fonts/NotoSans-Medium.eot?#iefix) format('embedded-opentype'),
url(/renewal2019/fonts/NotoSans-Medium.woff2) format('woff2'),
url(/renewal2019/fonts/NotoSans-Medium.woff) format('woff');
}
@font-face {
font-family: 'NotoKrB';
font-style: normal;
font-weight: 700;
src: local('Noto Sans Bold'), local('NotoSans-Bold'), url(/renewal2019/fonts/NotoSans-Bold.eot);
src: url(/renewal2019/fonts/NotoSans-Bold.eot?#iefix) format('embedded-opentype'),
url(/renewal2019/fonts/NotoSans-Bold.woff2) format('woff2'),
url(/renewal2019/fonts/NotoSans-Bold.woff) format('woff');
}
