/* 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; /* / 오페라 구버전 / */
	font-family: 'Noto Sans KR', sans-serif;
}

/* 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;}

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

.wrap1280{
	max-width: 1280px;
	width: 90%;
	margin: 0 auto;
}

.wrap1400{
	max-width: 1400px;
	width: 90%;
	margin: 0 auto;
}

.wrap1600{
	max-width: 1600px;
	width: 90%;
	margin: 0 auto;
}


section{padding: 200px 0;}

footer{padding: 75px 0;}


button {all: unset; text-align: center;}

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*/
}

input{
    /*ios대응*/
    appearance: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}