@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: '맑은 고딕', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  line-height: 1.5;
  word-break: keep-all;
}

ul,
ol {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
  word-break: keep-all;
}

button {
  cursor: pointer;
  border: none;
}

table,
tr,
th,
td {
  border: 1px solid #000;
  border-collapse: collapse;
}

caption {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
}

/* form */
fieldset {
  width: auto;
  border: none;
}

legend {
  display: block;
  width: 1px;
  height: 1px;
  font-size: 1px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

input,
label {
  vertical-align: middle;
}

input {
  outline: none;
  border: none;
}


/* class ------------------- */
.blind {
  display: none;
}

.clear::after {
  content: ' ';
  display: block;
  clear: both;
}