@charset "utf-8";

/************************************** import **************************************/

/* 리셋 */
@import url("reset.css");

/* 폰트 */
@import url("font/notosanskr.css");

/************************************** 사이트 공통 **************************************/

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  font-size: 62.5%;
  overflow-x: hidden;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.6px;
  background-color: #fff;
  text-rendering: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body > .wrapper {
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: #222;
}
::-moz-selection {
  background: #0475f4;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #0475f4;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #0475f4;
  color: #fff;
  text-shadow: none;
}
::-webkit-selection {
  background: #0475f4;
  color: #fff;
  text-shadow: none;
}
.material-icons {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
}

/* 클리어 픽스 */
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}
