@charset "UTF-8";
* {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-display: block;
  font-style: normal;
  word-break: keep-all;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  vertical-align: baseline;
  background-color: transparent;
}

img {
  display: block;
}

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

a, a:hover, a:visited {
  color: #000;
  cursor: pointer;
  user-select: none;
}

button {
  color: #000;
  cursor: pointer;
  user-select: none;
}

.win body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0.2px;
}

.tt {
  font-family: hillman-condensed-mn, dunkel-sans-cond-rounded, sans-serif;
  letter-spacing: -0.01em;
  word-spacing: -0.06em;
}
.tt span {
  position: relative;
  line-height: 1;
}
.tt .한글 {
  font-size: 84%;
  letter-spacing: 0.03em;
  bottom: 0.04em;
}
.tt .숫자 {
  font-variant-numeric: lining-nums;
}

header,
footer,
section {
  font-size: 22px;
  line-height: 1;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
}
@media (max-width: 900px) {
  header {
    position: relative;
    top: 0;
    margin: 20px auto 80px;
  }
}
header #logo {
  width: 240px;
  margin: 0 auto;
}

footer {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 4px;
  left: 0;
  width: 100%;
}
@media (max-width: 900px) {
  footer {
    position: relative;
    margin: 80px auto 20px;
  }
}
footer .inner {
  width: 100%;
  max-width: 900px;
  padding: 16px;
  margin: 0 auto;
}
footer .inner p {
  text-align: center;
}
footer .inner p:nth-child(2), footer .inner p:nth-child(3) {
  margin-top: 20px;
}

section {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 900px;
  height: calc(100vh - 180px);
  margin: 0 auto;
}
@media (max-width: 900px) {
  section {
    height: auto;
  }
}
section ul {
  width: 100%;
}
section ul li {
  margin-bottom: 16px;
  background: #000;
}
section ul li a, section ul li a:hover, section ul li a:visited {
  color: #FFF;
}
section ul li a {
  display: flex;
  flex-flow: row nowrap;
}
@media (max-width: 900px) {
  section ul li a {
    flex-flow: column nowrap;
  }
}
section ul li a .li-l,
section ul li a .li-c,
section ul li a .li-r {
  padding: 6px 8px;
}
@media (max-width: 900px) {
  section ul li a .li-l,
section ul li a .li-c,
section ul li a .li-r {
    padding: 12px 16px;
  }
}
section ul li a .li-l {
  width: 20%;
}
@media (max-width: 900px) {
  section ul li a .li-l {
    width: 100%;
    text-align: center;
  }
}
section ul li a .li-c,
section ul li a .li-r {
  width: 40%;
  text-align: right;
}
@media (max-width: 900px) {
  section ul li a .li-c,
section ul li a .li-r {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 900px) {
  section ul li a .li-l,
section ul li a .li-c {
    margin-bottom: 4px;
  }
}