@charset "utf-8";
/**
 * @File Name : font.css
 * @Description : Layout[main] | Contents[main]
 * @Modification Information
 * <pre>
 * 수정일 | 수정자 | 수정내용
 * 2021.05.03 | 김효진 | 최초 등록
 * </pre>
 * @author 디자인팀 김효진
 * @since 2021.05.03
 *
 * @Copyright (C) IACTS.CO.KR All rights reserved.
 */

/* @import url(font_lib.css); */

/* ★★ font_lib.css 파일은 절대 편집하지 마세요.
 * ☆★ 폰트 변경하려면 @import url(font_lib.css); 를 제거하고 아래에 직접 @font-face 선언하세요.
 */





@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@500&display=swap');

/* ◇◆ @font-face ◇◆ */

/* Noto Sans KR. 20191129. (선명(O).경량(O))
 * 예) .ffnsk { font-family: 'Noto Sans KR','본고딕',NotoSans,'Noto Sans'; }
 */
@font-face {
    font-family: 'Noto Sans KR';
    font-weight: 400;
    src: local('Noto Sans KR Regular'),local('NotoSansKR-Regular'),url(../../font/NotoSans/400.woff2) format('woff2'),url(../../font/NotoSans/400.woff) format('woff')
}
@font-face {
    font-family: 'Noto Sans KR';
    font-weight: 500;
    src: local('Noto Sans KR Medium'),local('NotoSansKR-Medium'),url(../../font/NotoSans/500.woff2) format('woff2'),url(../../font/NotoSans/500.woff) format('woff')
}
@font-face {
    font-family: 'Noto Sans KR';
    font-weight: 700;
    src: local('Noto Sans KR Bold'),local('NotoSansKR-Bold'),url(../../font/NotoSans/700.woff2) format('woff2'),url(../../font/NotoSans/700.woff) format('woff')
}




@media only screen and (-webkit-min-device-pixel-ratio:1.3){ /* [Mobile] ◇◆◇◆◇◆◇◆◇◆ */


/* UA 기본폰트 */
[lang|='ko'],
[lang|='ko']>*{
	font-family:sans-serif;
}

/* [class], */ /* ☆ 이거하면 위에서 클래스로 정의한 모든 폰트를 기본으로 되돌린다. */
.ffng{
	font-family:sans-serif;
}


}/* /[Mobile] */