@charset "UTF-8";
@import url(/fonts/pretendard-gov-subset.css);

* {margin:0; padding:0; box-sizing: border-box;}

body {
  margin:0; 
  padding:0; 
  background-color: #fff; 
  color: #2D2D2D; 
  font-style:normal; 
  font-size:16px; 
  font-family:'Pretendard GOV'; 
  letter-spacing:-0.02em; 
  word-break:keep-all; 
  line-height: 1.5;
}

html{-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;-o-text-size-adjust:none;}
html,body,div,span,iframe,h1,h2,h3,h4,h5,h6,p,article,nav,header,footer,video,audio,aside,a,address,em,font,img,strong,dl,dt,dd,ol,ul,li,fieldset,form,label,table,caption,tbody,tfoot,thead,tr,th,td {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-size-adjust : none;
}
figure,article,header,footer,nav,hgroup,video,audio,aside,main {display: block;}
img {
  border: 0 none; 
  vertical-align:middle; 
  max-width:100%; 
  max-height:100%;
}
ol,ul,li {list-style: none;}

*:focus {
  outline-offset: 0.1rem;
  outline: 2px dashed #000;
}

/* === table === */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width:100%;
}
th{vertical-align: middle;}
th,td {
  border-collapse: collapse;
  vertical-align: middle;
}
legend, hr { display:none; }
caption{
  position: absolute;
  visibility:hidden;
  width:0;
  height:0;
  overflow: hidden;
  font-size:0;
}


/* === link === */
a {color:inherit; text-decoration:none; cursor:pointer;}
a:visited{text-decoration: none;}
a:focus{text-decoration: none;}
a:active{text-decoration: none;}
a:hover{text-decoration: none;}


/* === form === */
label {
  cursor: pointer;
}
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="search"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*border-radius: 0;*/
  /*border: 1px solid #111;*/
}
input[type="radio"],
input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
button,
input[type="file"],
input[type="image"],
input[type="reset"],
input[type="button"],
input[type="submit"] {
  border: none;
  margin: 0;
  background: none;
  border-radius: 0;
  overflow: visible;
  cursor: pointer;
  -webkit-appearance: button;
  -moz-appearance: none;
  appearance: none;
}
input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

select {
  border: 1px solid #111;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

/* === placeholder === */
::-webkit-input-placeholder {
  color: #8E8E8E;
}
::-moz-placeholder {
  color: #8E8E8E;
}
:-ms-input-placeholder {
  color: #8E8E8E;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder,
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder,
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder  {
  color: transparent;
}


/* === clearfix === */
.clearfix::before,
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}


/* === autofill === */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/* === hide === */
.hide{
  display: none !important;
}
.masked {
  position: absolute; 
  left: -9999px; 
  display: inline-block; 
  width: 0; 
  height: 0; 
  overflow: hidden; 
  text-indent: -9999px; 
  opacity: 0;
}
.hide-text {
  color: transparent;
  border: none;
  background-color: transparent;
  text-shadow: none;
  font: 0/0 a;
}
.no-select {
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
