@charset "UTF-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

html,
body {
  border: 0;
}

legend {
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: -10000px;
  line-height: 0;
}

img,
fieldset,
input.image {
  border: 0 none;
}

ul,
ol,
li {
  list-style: none outside;
}

input,
select,
button,
textarea {
  vertical-align: baseline;
}

button {
  border: 0;
  cursor: pointer;
}

input {
  outline: none;
}

/* 표준브라우저의 네이티브 화살표 숨기기 */
select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select::-ms-expand {
  display: none;
}

/* IE 10, 11의 네이티브 화살표 숨기기 */
address,
em {
  font-style: normal;
}

input,
a,
strong,
span,
label,
em,
select {
  display: inline-block;
  box-sizing: border-box;
  vertical-align: baseline;
}

div,
p,
ul,
ol,
li,
textarea {
  display: block;
  box-sizing: border-box;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 링크 정의 */
a {
  color: #1A1A1A;
  text-decoration: none;
  cursor: pointer;
}

a:link,
a:hover {
  color: #1A1A1A;
}

/* 단어 단위 줄바꿈 */
* {
  word-break: keep-all;
}

/* 테이블 기본 정의 */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
  table-layout: fixed;
  word-break: break-all;
}

table th {
  font-weight: normal;
}

caption {
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  line-height: 0;
}

th,
td {
  padding: 0;
  margin: 0;
  font-size: 1em;
}

/* html5 요소 block */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ------------------------------------------- 스크롤 start */
.scroll {
  position: relative;
  padding-right: 5px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #999;
}

::-webkit-scrollbar-button {
  width: 5px;
  height: 10px;
  background-color: transparent;
}

/* ------------------------------------------- 스크롤 end */