@charset "utf-8";
/**
 * @File Name : font.css
 * @Description : Layout[main] | Contents[main]
 * @Modification Information
 * <pre>
 * 수정일 | 수정자 | 수정내용
 * 2023.07.07 | 김효진 | 최초 등록
 * </pre>
 * @author 디자인팀 김효진
 * @since 2023.07.07
 *
 * @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-face {
     font-family: 'S-CoreDream';
     src: url('//fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
     font-weight: 300;
     font-style: normal;
}
@font-face {
     font-family: 'S-CoreDream';
     src: url('//fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
     font-weight:400;
     font-style: normal;
}
@font-face {
     font-family: 'S-CoreDream';
     src: url('//fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff') format('woff');
     font-weight:500;
     font-style: normal;
}

/* 하남다움체 */
@font-face {
    font-family: 'HANAMDAUM';
    src: url('//fastly.jsdelivr.net/gh/bomnalgomm/font/HANAMDAUM/HANAMDAUM_Body.woff') format('woff'), 
		 url('//fastly.jsdelivr.net/gh/bomnalgomm/font/HANAMDAUM/HANAMDAUM_Body.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'HANAMDAUM_T'; /* 타이틀용 */
    src: url('//fastly.jsdelivr.net/gh/bomnalgomm/font/HANAMDAUM/HANAMDAUM.woff') format('woff'), 
		 url('//fastly.jsdelivr.net/gh/bomnalgomm/font/HANAMDAUM/HANAMDAUM.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

/* 스포카 한 산스 네오 */
@font-face {
    font-family: 'SpoqaHanSansNeo';
    src: url('//fastly.jsdelivr.net/gh/bomnalgomm/font/SpoqaHanSansNeo/SpoqaHanSansNeo-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}


/* 외국어 */
/* 프리텐다드 */
@font-face {
	font-family: 'Pretendard';
	src: url('//fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Pretendard';
	src: url('//fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Pretendard';
	src: url('//fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

 /* ◇◆ CSS font-family ◇◆ */

.ffns {font-family:'Noto Sans KR', sans-serif;font-weight:500;}


 /* .ffng{
	font-family:
		'나눔고딕',NanumGothic,'Nanum Gothic',
		'Open Sans',
		'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] */