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 */
section, div, nav, ul, li, a, header, footer, button, input {
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  overflow: hidden;
  position: relative;
}

html {
  font-size: 62.5%;
}
body {
  line-height: 1.13;
  letter-spacing: -0.56px;
  box-sizing: border-box;
  font-family: "SamsungG_R";
  font-size: 16rem;
  font-weight: 400;
  overflow-x: hidden;
  color: #333;
  min-width: 280px;
  background-color: #fff;
}

section {
  overflow: hidden;
}

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;
}

.video-box{
  position:relative;
}
.video-box video,
.video-box iframe,
.video-box object,
.video-box embed {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.pointer {
  cursor: pointer;
}
.text-align-c {
  text-align: center;
}

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

/* 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 !important;
  flex-wrap: wrap !important;
}
/* block / flex End */

/* margin */
.mt0 {
  margin-top: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr8 {
  margin-right: 8px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mr24 {
  margin-right: 24px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.ml24 {
  margin-left: 24px !important;
}

.ml32 {
  margin-left: 32px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mt60 {
  margin-top: 60px !important;
}
/* margin End */

/* padding */
.pad0 {
  padding: 0 !important;
}
.pt0 {
  padding-top: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.plr60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}
/* padding End */

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

/* Etc */

.font-w400 {
  font-weight: 400 !important;
}
.font-w700 {
  font-weight: 700 !important;
}
.font-s14 {
  font-size: 14rem !important;
}
.font-s12 {
  font-size: 12rem !important;
}

.img-box img {
  display: block;
  width: 100%;
}

.left-auto {
  display: block;
  margin-left: auto;
  right: 0;
}

.left50per {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
/* Etc End */


.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;}


.none {display: none;}
.block {display:block;}
.inblock {display:inline-block;}
.inline {display:inline;}
.flex {display:flex;}
.inflex {display:inline-flex;}
.ais {align-items: flex-start;}
.aic {align-items: center;}
.aie {align-items: flex-end;}
.aib {align-items: baseline;}
.jcs {justify-content: flex-start;}
.jcc {justify-content: center;}
.jce {justify-content: flex-end;}
.jcsb {justify-content: space-between;}
.fdc {flex-direction: column;}
.fdcr {flex-direction: column-reverse;}
.fww {flex-wrap: wrap;}
.tdu {text-decoration: underline;}
.tdm {text-decoration: line-through;}
.rel {position: relative;}
.abs {position: absolute;}
.fixed {position: fixed;}

.xy-middle {top: 50%; left: 50%; transform: translate(-50%,-50%);}
.x-middle {left: 50%; transform: translateX(-50%);}
.y-middle {top: 50%; transform: translateY(-50%);}
.xy-tl {top: 0; left: 0;}
.xy-tr {top: 0; right: 0;}
.xy-bl {bottom: 0; left: 0;}
.xy-br {bottom: 0; right: 0;}
.x-l {left: 0;}
.x-r {right: 0;}
.y-t {top: 0;}
.y-b {bottom: 0;}
.tac {text-align: center;}
.tal {text-align: left;}
.tar {text-align: right;}


.bF0F6FF { background: #F0F6FF;}