@charset "euc-kr";

* {
  padding: 0;
  margin: 0;
  vertical-align: top;
  border: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
}
html {
  overflow-y: scroll;
}
body {
  font: 400 1.3rem/1.5 var(--font-family-base);
  color: var(--color-black);
  background: var(--color-bg-surface);
}
a {
  color: #444;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
i,
em,
address {
  font-style: normal;
}
ul {
  list-style: none;
}
button {
  display: inline-block;
  cursor: pointer;
}
table {
  border-collapse: collapse;
}
th,
td {
  vertical-align: middle;
}

#wrap {
  width: 100%;
  overflow-x: hidden;
}

#skip {
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#skip > li {
  font-size: 0;
}
#skip > li > a {
  display: block;
  width: 100%;
  padding: 0;
  font-size: 0;
  background: var(--color-white);
  color: #000;
  text-align: center;
}
#skip > li > a:focus {
  padding: 20px 0;
  font-size: 20px;
}
