@charset "UTF-8";

/* 폰트정의 (SUIT) */
@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-Regular.woff2") format("woff2"),
    url("../fonts/SUIT-Regular.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-Medium.woff2") format("woff2"),
    url("../fonts/SUIT-Medium.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-Bold.woff2") format("woff2"),
    url("../fonts/SUIT-Bold.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-Heavy.woff2") format("woff2"),
    url("../fonts/SUIT-Heavy.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
}

/* 폰트정의 (SB 어그로) */
@font-face {
  font-family: "SB_A";
  src: url("../fonts/SB-a-Light.woff") format("woff"),
    url("../fonts/SB-a-Light.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "SB_A";
  src: url("../fonts/SB-a-Medium.woff") format("woff"),
    url("../fonts/SB-a-Medium.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SB_A";
  src: url("../fonts/SB-a-Bold.woff") format("woff"),
    url("../fonts/SB-a-Bold.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
}


html,
body {
  font-family: "SUIT", "맑은 고딕", "Malgun Gothic", sans-serif;
  font-size: 15px;
  color: #1A1A1A;
}

/* 웹폰트 anti-aliasing */
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line */
hr.line-gray {
  display: block;
  width: 100%;
  height: 1px;
  border: none;
  background-color: #999;
  margin: 100px 0;
}

/* margin */
.mgb30 {
  margin-bottom: 30px;
}

.mgb70 {
  margin-bottom: 70px;
}