@charset "utf-8";
/**
 * @File Name : font.css
 * @Description : Layout[main] | Contents[main]
 * @Modification Information
 * <pre>
 * 수정일 | 수정자 | 수정내용
 * 2020.08.10 | 김효진 | 최초 등록
 * </pre>
 * @author 디자인팀 김효진
 * @since 2020.08.10
 *
 * @Copyright (C) IACTS.CO.KR All rights reserved.
 */

/* @import url(font_lib.css); */

/* ★★ font_lib.css 파일은 절대 편집하지 마세요.
 * ☆★ 폰트 변경하려면 @import url(font_lib.css); 를 제거하고 아래에 직접 @font-face 선언하세요.
 */


/* 김해가야체 */
@font-face {
	font-family: 'GimhaeGaya';
	font-weight: 400;
	src: local('GimhaeGaya'), local('GimhaeGaya Regular'),
				url(../../font/GimhaeGaya/400.woff2) format('woff2'),
				url(../../font/GimhaeGaya/400.woff) format('woff');
}
@font-face {
	font-family: 'GimhaeGaya';
	font-weight: 700;
	src: local('GimhaeGaya Bold'),
				url(../../font/GimhaeGaya/700.woff2) format('woff2'),
				url(../../font/GimhaeGaya/700.woff) format('woff');
}

@font-face {
	font-family: 'Nanum Square';
	font-weight: 400;
	src: local('NanumSquare'), local('NanumSquare Regular'),
				url(../../font/NanumSquare/NanumSquareR.woff2) format('woff2'),
				url(../../font/NanumSquare/NanumSquareR.woff) format('woff');
}
@font-face {
	font-family: 'Nanum Square';
	font-weight: 600;
	src: local('NanumSquare Bold'),
				url(../../font/NanumSquare/NanumSquareB.woff2) format('woff2'),
				url(../../font/NanumSquare/NanumSquareB.woff) format('woff');
}



 /* ◇◆ CSS font-family ◇◆ */


 /* .ffng{
	font-family:
		'나눔고딕',NanumGothic,'Nanum Gothic',
		'Open Sans',OpenSans,
		'Microsoft JhengHei',
		'맑은 고딕','Malgun Gothic',
		sans-serif;
} */


@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] */