/* ========================================================================================================================= */
/* 작성 : 2026-06-29 12:00:00  - devel1223
/* 수정 : 2026-06-29 12:00:00  - devel1223
/* 제목 : css - common_reset   - 공용_초기화
/* ========================================================================================================================= */


/* 글꼴 */
/* @import url('https://fonts.googleapis.com/css2?family=GulimChe:wght@100..900&display=swap'); */

/* 공통 */
body, header, nav, section, footer, 
div, 
a, p, input, textarea, 
img, button, 
select, option, 
ul, li, hr {
	margin: 0;
	padding: 0;
	border: 0;
	text-decoration: none;
	font-family: '굴림체';
	font-size: 9pt;
	font-weight: normal;
	color: black;
	background-color: transparent;
	border: none;
}

/* 개별 */
ul, li {  /* 리스트 */
	list-style: none;
}
a:focus, 
input:focus, 
textarea:focus,
select:focus {  /* 입력 */
	outline: none;
}
a:focus {  /* 링크 */
	-webkit-tap-highlight-color: transparent;
}
input::placeholder, 
textarea::placeholder {  /* 안내문구 */
	font-style: italic;
	color: var(--color-placeholder);
}

/* 커스텀 */
input::-webkit-outer-spin-button, 
input::-webkit-inner-spin-button {  /* 입력 */
	-webkit-appearance: none;
}

/* 공용 */
.hidden { /* 숨김 */
	display: none;
}
