html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address,
big, cite, code, del, dfn, em, img, ins, kbd,
q, s, samp, small, strike, strong,
sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video
{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 1px;
}

body {
  line-height: 1;
  box-sizing: border-box;
  font-family: 'js-r';
  font-size: 16rem;
  font-weight: 400;
  overflow-x: hidden;
  color: #000;
  min-width: 280px;
}

ol,
ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table, td, th {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: middle;
}

/**** 라이브러리 ****/

/* position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}
/* position End */

/* block / flex */
.block {
  display: block;
}

.none {
  display: none;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-jc-start {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-jc-end {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-jc-c {
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-jc-sb {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-jc-sa {
  justify-content: space-around;
  -ms-flex-pack: center;
}

.flex-ai-start {
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-ai-end {
  -ms-flex-align: flex-end;
  -webkit-box-align: flex-end;
  align-items: flex-end
}

.flex-ai-c {
  -ms-flex-align: center;
  align-items: center;
}

.flex-row {
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-column {
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* block / flex End */

/* margin */
/* mt */
.mt0 {
  margin-top: 0;
}
.mt5 {
  margin-top: 5px;
}
.mt8 {
  margin-top: 8px;
}
.mt10 {
  margin-top: 10px;
}
.mt16 {
  margin-top: 16px;
}
.mt20 {
  margin-top: 20px;
}
.mt24 {
  margin-top: 24px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt60 {
  margin-top: 60px;
}

/* mr */
.mr0 {
  margin-right: 0;
}
.mr5 {
  margin-right: 5px;
}
.mr8 {
  margin-right: 8px;
}
.mr10 {
  margin-right: 10px;
}
.mr20 {
  margin-right: 20px;
}
.mr24 {
  margin-right: 24px;
}
.mr40 {
  margin-right: 40px;
}

/* mb */
.mb0 {
  margin-bottom: 0;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb24 {
  margin-bottom: 24px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}

/* ml */
.ml0 {
  margin-left: 0;
}
.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml20 {
  margin-left: 20px;
}
.ml24 {
  margin-left: 24px;
}
.ml32 {
  margin-left: 32px;
}
.ml40 {
  margin-left: 40px;
}
/* margin End */

/* width / height Set */
.w-auto {
  width: auto;
}
.w100per {
  width: 100%;
}
.h100per {
  height: 100%;
}
.set-h56 {
  height: 56px;
}
.set-h40 {
  height: 40px;
}
.set-h36 {
  height: 36px;
}
/* width / height Set End */

/* font */
.font-w400 {
  font-weight: 400;
}
.font-w700 {
  font-weight: 700;
}
.font-s12 {
  font-size: 12px;
}
.font-s14 {
  font-size: 14px;
}
.font-s16 {
  font-size: 16px;
}
.font-s17 {
  font-size: 17px;
}
.font-s18 {
  font-size: 18px;
}
.font-s20 {
  font-size: 20px;
}
.font-s22 {
  font-size: 22px;
}
.font-s24 {
  font-size: 24px;
}
.font-s26 {
  font-size: 26px;
}
.font-s28 {
  font-size: 28px;
}
.font-s30 {
  font-size: 30px;
}
.font-s32 {
  font-size: 32px;
}
.font-s40 {
  font-size: 40px;
}
.font-s52 {
  font-size: 52px;
}
.font-s56 {
  font-size: 56px;
}
.font-s60 {
  font-size: 60px;
}
/* font End */

/* Etc */
.img-box img {
  display: block;
  width: 100%;
}
button {
  cursor: pointer;
}
.pointer {
  cursor: pointer;
}
/* Etc End */

.lh100per {line-height: 100%;}
.lh12 {line-height: 12px;}
.lh16 {line-height: 16px;}
.lh20 {line-height: 20px;}
.lh24 {line-height: 24px;}
.lh28 {line-height: 28px;}
.lh32 {line-height: 32px;}
.lh110 {line-height: 1.1;}
.lh120 {line-height: 1.2;}
.lh130 {line-height: 1.3;}
.lh140 {line-height: 1.4;}
.lh150 {line-height: 1.5;}
.lh160 {line-height: 1.6;}
.lh170 {line-height: 1.7;}
.lh180 {line-height: 1.8;}
.lh190 {line-height: 1.9;}
.lh200 {line-height: 2;}

.zi1 {z-index: 1;}
.zi2 {z-index: 2;}
.zi3 {z-index: 3;}
.zi4 {z-index: 4;}
.zi5 {z-index: 5;}
.zi6 {z-index: 6;}
.zi7 {z-index: 7;}
.zi8 {z-index: 8;}
.zi9 {z-index: 9;}
.zi10 {z-index: 10;}

.rel {position: relative;}
.abs {position: absolute;}
.fixed {position: fixed;}
.grid {display: grid;}

.aic {align-items: center;}
.jcc {justify-content: center;}
.fdc {flex-direction: column;}
.fww {flex-wrap: wrap;}

.xy-middle {top: 50%; left: 50%; transform: translate(-50%,-50%);}
.x-middle {left: 50%; transform: translateX(-50%);}
.y-middle {top: 50%; transform: translateY(-50%);}

.tac {text-align: center;}
.tal {text-align: left;}
.tar {text-align: right;}

.mgc {margin: 0 auto}



.c199ED6 {color: #199ED6;}
.c199ED6 {color: #48BDEE;}
.b48BDEE {background: #48BDEE;}
.b199ED6 {background:  #199ED6!important;}