html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
address,
code,
em,
img,
strong,
sub,
sup,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
section,
main,
audio,
video {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

/* button태그에 손모양 커서 */
button {
  cursor: pointer;
}
/* 익스하위버전에서 이미지 선없애기 */
fieldset,
img {
  border: 0;
}

/* 리스트 기호 빼기 */
ol,
ul {
  list-style: none;
}

/* 태그 기본 기울임꼴 제거 */
address,
em {
  font-style: normal;
}
strong {
  font-weight: normal;
}

/* 페이지안에서 가장 많은 링크색 지정 */
/* a {text-decoration: none; color: #000;} */

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* iframe으로 외부컨텐츠를 연결했을때
외부컨텐츠안쪽내용이 우리페이지에 영향을 주지못하도록 가려줌*/
iframe {
  overflow: hidden;
  border: 0;
}

/* 칸의 선을 합치기, 칸의 간격없애기, 가로를 늘려줌 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* 굵기 빼고 헤딩태그 폰트크기를 body에 선언한 크기와 일치시킴 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

/* 폼요소의 높이가 다를때 요소끼리 세로정렬시킴 */
input,
select,
textarea,
button {
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

/* 
모바일 크롬, 모바일 사파리 브라우져의 텍스트 자동확대 방지*/
body {
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: #abdff394 !important;
}

/* legend,caption,메뉴제목,섹션제목 블라인드 */
legend,
caption,
.blind {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  width: 1px;
  height: 1px;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #bbbbbb;
} /* Webkit,크롬,사파리 */
:-moz-placeholder {
  color: #bbbbbb;
} /* Firefox 4-18 */
::-moz-placeholder {
  color: #bbbbbb;
  opacity: 1;
} /* Firefox 19+ */
:-ms-input-placeholder {
  color: #bbbbbb;
} /* IE10+ */

/* a 태그 */
a {
  color: #000;
  text-decoration: none;
  outline: none;
}

/* 텍스트 선택시 컬러변경 */
/* ::selection { background-color: #ef151e; color: #ffffff; } */

/* 화살표제거 */
/* select { -webkit-appearance: none; -moz-appearance: none; appearance: none;  } */
/* select::-ms-expand { display: none; } 익스11이하 */
