@charset "utf-8";

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all;
}

::selection,
::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

html {
  font-size: 16px; /* 1rem = 16px */
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

body {
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.4px;
  color: #636A75;
  background: #fff;
}

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

ul, li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6, th {
  font-weight: 400;
}

a {
  display: block;
}

button, label {
  cursor: pointer;
  border: none;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  word-break: keep-all;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  background: transparent;
}

input:focus, select:focus, textarea:focus {
  outline: none;
}

img {
  border: 0;
  vertical-align: top;
}

em {
  font-style: normal;
}

input::placeholder {
  color: #a5a5a5;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}

address {
  font-style: normal;
}

button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #000;
  cursor: pointer;
}

input[type=text],
input[type=number],
input[type=email],
input[type=url],
input[type=tel],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  line-height: 1;
}

fieldset {
  border: 0;
}

legend {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

textarea {
  resize: none;
}

/* 접근성 숨김 클래스 */
.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
