/* font-family 변경 후 사용가능 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://webfontworld.github.io/gmarket/GmarketSans.css');
@import url('https://webfontworld.github.io/SCoreDream/SCoreDream.css');
@import url('https://webfontworld.github.io/goodchoice/Jalnan.css');
@import url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/CWDangamAsac-Bold.woff');

.font_P {font-family: 'Pretendard';}  
.font_M {font-family: 'Montserrat', sans-serif;}
.font_N {font-family: 'Noto Sans KR', sans-serif;} 
.font_G {font-family: 'GmarketSans';}
.font_S {font-family: 'SCoreDream';}
.font_J {font-family: 'Jalnan';}
.font_C {font-family: 'CWDangamAsac-Bold';}

.hide {display: none;}
.both {clear: both;}
.blind {position: absolute; font-size: 0; left: -99999px;}

* {
	font-family: 'Pretendard';
    font-weight: 500;
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    word-break: keep-all
}

body {
    /*overflow-x: hidden;*/ /*스크롤2개가 생기는 오류가 발생할수있음*/
    color: #0c0c0c;
} 

html {
	/*폰트 깨질때 사용
	transform:skew(-0.001deg);*/
	/* 글꼴 크기 조정을 방지 */
	-webkit-text-size-adjust: 100%;
	/* 폰트를 부드럽게 */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* 웹킷 마음대로 눌림 하이라이트 막음 */
	-webkit-tap-highlight-color: transparent;
	line-height: 1.15;  /* 1 */ 
    -webkit-text-size-adjust: 100%; /* 2 */
    overflow-y: scroll;
    overflow-x: hidden;
}

a {
	text-decoration: none;
    color: inherit;
	font-style: inherit;
    display: inline-block;
}

span {display: inline-block;}

strong, em{font-style: inherit;}

table {
	border-collapse: separate; 
	border-spacing: 0;
	border-style: none;
}

td, th { 
    padding: 0;
}

textarea {
	resize: none;
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

/* 브라우저는 렌더링 속도, 정밀도에 대한 가독성을 강조 */
@media screen and (min-width:960px) {

	html,
	body {
		text-rendering: optimizeLegibility;
	}
}

/* 포커스 아웃라인 리셋 : 크롬에서 해당 태그 클릭시 그누보드 기본 스타일인 파란 보더 방지 */
input:focus {
	outline: none !important;
	box-shadow: none !important;
}

button:focus {
	outline: none !important;
	box-shadow: none !important;
}

a:focus {
	outline: none !important;
	box-shadow: none !important;
}

textarea:focus {
	outline: none !important;
	box-shadow: none !important;
}

select:focus{
	outline: none !important;
	box-shadow: none !important;
}



/* 드래그 색상 변경 : 필요시 사용 아니면 디폴트값 적용 */
::-moz-selection {
	background: #444;
	color: #fff;
}

::selection {
	background: #444;
	color: #fff;
}

/* input 기본 스타일 초기화 */
button,
optgroup,
select,
input,
textarea {
    font-family: inherit; /* 폰트 상속 */
    border-radius: 0px; /* iOS 둥근모서리 제거 */
    -webkit-appearance: none; /* 네이티브 외형 감추기 */ 
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    margin: 0;
    overflow: visible;
    text-transform: none;
    vertical-align: middle;
}

[type="checkbox"]{
    -webkit-appearance:checkbox;appearance:checkbox;-moz-appearance:checkbox;-ms-appearance:checkbox;display:inline;position: relative; top: -1px;
}
/* 버튼 초기화 */
button{
    border: 1px solid rgba(0, 0, 0, 0);
    cursor:pointer;
    overflow:visible; 
    white-space: nowrap;
}


/* IE10 이상에서 input box 에 추가된 지우기 버튼 제거 */
input::-ms-clear {
	display: none;
}

/* input type number 에서 화살표 제거 */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* IE 에서 Select box 화살표 제거 */
select::-ms-expand {
	display: none;
}

