/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-webkit-text-size-adjust : none; /* 크롬, 사파리, 오페라 신버전 / */
	-ms-text-size-adjust : none; /* / IE / */
	-moz-text-size-adjust : none; /* / 파이어폭스 / */
	-o-text-size-adjust : none; /* / 오페라 구버전 / */
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {text-decoration:none; color: inherit;}

input, textarea, button , select {
	appearance: none;
	border-radius: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	outline: 0;
	font-family: inherit;
}

input[type='radio']{
	appearance: none;
}

img {max-width: 100%; height: auto; vertical-align: top;} /* 이미지 반응형 */

/* ios 기본 스타일 제거 */
input{
	/*ios대응*/
	appearance: none;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

select{
	/*ios대응*/
	-webkit-appearance: none;
	-moz-appearance: none; 
	appearance: none;

	/*화살표 배경 넣기*/
	background: url('이미지경로') no-repeat 98% 50% #fff; /*화살표 select박스 오른쪽 중앙 배치,배경 흰색*/
}
select::-ms-expand{ 
	display:none; /* 화살표 없애기 for IE10, 11*/
}
/* ------------------------------------------------------------------
   프로젝트 추가분 — 위 기본 reset 과 중복되지 않는 선언만 정리
   (@font-face 는 /font/font.css 로 분리)
------------------------------------------------------------------ */
*{box-sizing:border-box;}
html,body{height:100%;}
html,body{font-size:clamp(14px, 1.2vw, 16px);}

body,a,
[type=text], [type=password], [type=file], [type=email], [type=number], [type=tel], [type=submit],
select,h1, h2, h3, h4, h5, h6, pre,textarea, button{font-family:"Pretendard","MalgunGothic","맑은 고딕","돋움","tahoma","sans-serif"; line-height:1.4; font-size:inherit; font-weight:inherit; color:inherit;}
body{color:#000;}

img{border:0;}
img, a, label, span{vertical-align:middle;}
table{width:100%;}
address,caption,cite,code,dfn,em,var,h1,h2,h3,h4,h5,h6{font-style:normal; font-weight:normal;}
caption,legend,caption *,legend *{position:absolute; left:-10000px; line-height:0; font-size:0;}
fieldset{padding:0;}
button{border:none; background:none; cursor:pointer; outline:none;}

[type=text], [type=password], [type=file], [type=email], [type=number], [type=tel], [type=submit]{padding-left:10px; vertical-align:middle; border:solid 1px #ddd; height:40px; line-height:38px;}
[type=checkbox], [type=radio]{vertical-align:middle;}
select{height:40px; line-height:38px; border:1px solid #ddd; background:none;}
[type=file], [type=submit]{padding:0; height:auto;}
textarea{padding:15px; width:100%; border:1px solid #ddd; resize:none; display:block;}
button:focus,
textarea:focus,
select:focus,
input:focus{outline:none;}
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=text]::placeholder{color:#bbb;}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button{-webkit-appearance:none; appearance:none;}

/* flex util */
.d-flex{display:flex;}
.align-center{align-items:center;}
.ju-center{justify-content:center;}
.ju-end{justify-content:flex-end;}
.ju-start{justify-content:flex-start;}
.f-wrap{flex-wrap:wrap;}
.ml-auto{margin-left:auto;}

/* float clear */
.clfx:after{clear:both; content:"."; display:block; height:0; visibility:hidden; font-size:0;}
.clfix{clear:both; content:"."; display:block; height:0;}
