@charset "utf-8";
/**
 * @File Name : font.css
 * @Description : Layout[main] | Contents[main]
 * @Modification Information
 * <pre>
 * 수정일 | 수정자 | 수정내용
 * 2023.11.02 | 김효진 | 최초 등록
 * </pre>
 * @author 디자인팀 김효진
 * @since 2023.11.02
 *
 * @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: 'GmarketSans';
	src: url('//fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'GmarketSans';
	src: url('//fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'GmarketSans';
	src: url('//fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
	font-weight: 600;
	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;
}
@font-face {
	font-family: 'Pretendard';
	src: url('//fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff') format('woff');
	font-weight: 600;
	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] */