@charset "utf-8";

:root {
  /* color theme */
  --primary: #ea1836;
  --primaryDark: #e1003c;
  --bgWhite: #ffffff;
  --bgColor01: #deefff;
  --bgColor02: #f0f0f0;
  --gray01: #000000;
  --gray02: #121212;
  --gray03: #333333;
  --gray04: #666666;
  --gray05: #999999;
  --gray06: #696969;
  --gray07: #dadada;
  --gray08: #e5e5e5;
  --gray09: #f5f5f5;
  --gray10: #ffffff;
}


html {
  position: relative;
  min-height: 100%;

    overflow-y: scroll;

}

body {
  margin-top: 110px !important;
}

* {
  color: var(--gray01);
  font-size: 15px;
  font-family: "Poppins", "Noto Sans", "sans-serif";
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-text-size-adjust: none;
  -webkit-user-select: none !important; /* Chrome/Safari */
  -moz-user-select: -moz-none !important; /* Firefox */
  user-select: none !important; /* IE */
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
time,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

img {
  max-width: 100%;
}

fieldset,
img {
  outline: 0;
  font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

p {
  line-height: 1.375rem;
}

a {
  font-size: 100%;
  cursor: pointer;
}

strong {
  font-weight: 600;
}

button {
  border: 0;
  outline: none;
  background: none;
}

a {
  text-decoration: none;
  pointer-events: auto;
}

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

.fllist,
.frlist {
  position: relative;
}

.fllist > *,
ul.fllist li {
  float: left;
}

.frlist > *,
ul.frlist li {
  float: right;
}

.fllist:after,
.frlist:after {
  clear: both;
  display: block;
  content: "";
}

a,
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

hr,
legend {
  display: none;
}

input::-ms-clear {
  display: none;
}

/* 
input {
  -webkit-border-radius: 0;
  -webkit-appearance: none;
} */

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label {
  position: relative;
  padding-left: 28px;
  line-height: 1.3;
  font-size: 15px;
  line-height: 22px;
  color: #000;
}

input[type="checkbox"]:checked + label:before {
  background: url(../imgs/common/checkbox_on.svg);
}

input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../imgs/common/checkbox_off.svg);
}

input.password,
input.text,
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="text"],
input[type="url"] {
  border-left: 1px solid #cbcbcb;
  border-top: 1px solid #cbcbcb;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  background-color: var(--bgWhite);
  color: #000;
}

input.checkbox,
input.image,
input.radio,
input[type="checkbox"],
input[type="image"],
input[type="radio"] {
  border: 0 !important;
  vertical-align: middle;
  padding: 0;
  margin: 0;
}

input.readonly {
  background-color: #ededed;
}

label::before {
  /* content:" "; */
}

input.disabled,
input:disabled {
  background-color: #ededed;
}

input[type="file"],
select,
select.select {
  margin: 1px;
  border-left: 1px solid #cbcbcb;
  border-top: 1px solid #cbcbcb;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

select,
select.select {
  background-color: var(--bgWhite);
  padding: 0.2em 5px 0.3em;
  height: 35px;
  line-height: 35px;
  font-size: 13px;
}

textarea {
  border: 1px solid #ddd;
  padding: 2px 5px;
}

input[type="file"] {
  border-style: solid;
  height: 2em;
  padding: 0.3em 5px 0.4em;
  line-height: 1.1em;
  box-sizing: content-box;
  font-size: 1em;
}

img,
input[type="file"] {
  border: 0;
  vertical-align: middle;
}

button.imgBtn,
img.button {
  cursor: pointer;
}

button.imgBtn {
  padding: 0;
  margin: 0;
  border: 0;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

table caption {
  height: 0;
  width: 0;
  text-indent: -9999px;
}

.f9 {
  font-size: 9px;
}

.f10 {
  font-size: 10px;
}

.f11 {
  font-size: 11px;
}

.f12 {
  font-size: 12px !important;
}

.f13 {
  font-size: 13px !important;
}

.f14 {
  font-size: 14px !important;
}

.f15 {
  font-size: 15px !important;
}

.f16 {
  font-size: 16px !important;
}

.f17 {
  font-size: 17px;
}

.f18 {
  font-size: 18px;
}

.f20 {
  font-size: 20px;
}

.lh190 {
  line-height: 190%;
}

.lh170 {
  line-height: 170%;
}

.pb3 {
  padding-bottom: 3px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pl1 {
  padding-left: 1px;
}

.pl2 {
  padding-left: 2px;
}

.pl3 {
  padding-left: 3px;
}

.pl5 {
  padding-left: 5px;
}

.pl7 {
  padding-left: 7px;
}

.pl8 {
  padding-left: 8px;
}

.pl9 {
  padding-left: 9px;
}

.pl10 {
  padding-left: 10px;
}

.pl13 {
  padding-left: 13px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl21 {
  padding-left: 21px;
}

.pl23 {
  padding-left: 23px;
}

.pl24 {
  padding-left: 24px;
}

.pl25 {
  padding-left: 25px;
}

.pl30 {
  padding-left: 30px;
}

.pl35 {
  padding-left: 35px;
}

.pl40 {
  padding-left: 40px;
}

.pl44 {
  padding-left: 44px;
}

.pl50 {
  padding-left: 50px;
}

.pl230 {
  padding-left: 230px;
}

.pl212 {
  padding-left: 212px;
}

.pr1 {
  padding-right: 1px;
}

.pr3 {
  padding-right: 3px;
}

.pr5 {
  padding-right: 5px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr20 {
  padding-right: 20px;
}

.pr25 {
  padding-right: 25px;
}

.pr30 {
  padding-right: 30px;
}

.pr35 {
  padding-right: 35px;
}

.pr40 {
  padding-right: 40px;
}

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

.pt1 {
  padding-top: 1px;
}

.pt2 {
  padding-top: 2px;
}

.pt3 {
  padding-top: 3px;
}

.pt4 {
  padding-top: 4px;
}

.pt5 {
  padding-top: 5px;
}

.pt6 {
  padding-top: 6px;
}

.pt7 {
  padding-top: 7px;
}

.pt8 {
  padding-top: 8px;
}

.pt9 {
  padding-top: 9px;
}

.pt10 {
  padding-top: 10px;
}

.pt13 {
  padding-top: 13px;
}

.pt15 {
  padding-top: 15px;
}

.pt18 {
  padding-top: 18px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt29 {
  padding-top: 29px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt65 {
  padding-top: 65px;
}

.pt100 {
  padding-top: 100px;
}

.pt130 {
  padding-top: 130px;
}

.pt146 {
  padding-top: 146px;
}

.ml2 {
  margin-left: 2px;
}

.ml3 {
  margin-left: 3px;
}

.ml5 {
  margin-left: 5px;
}

.ml6 {
  margin-left: 6px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml17 {
  margin-left: 17px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.ml28 {
  margin-left: 28px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.ml60 {
  margin-left: 60px;
}

.ml70 {
  margin-left: 70px;
}

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

.mr1 {
  margin-right: 1px !important;
}

.mr3 {
  margin-right: 3px;
}

.mr5 {
  margin-right: 5px;
}

.mr7 {
  margin-right: 7px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.mr60 {
  margin-right: 60px;
}

.mt1 {
  margin-top: 1px;
}

.mt2 {
  margin-top: 2px;
}

.mt3 {
  margin-top: 3px;
}

.mt5 {
  margin-top: 5px;
}

.mt8 {
  margin-top: 8px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

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

.mb1 {
  margin-bottom: 1px;
}

.mb2 {
  margin-bottom: 2px;
}

.mb3 {
  margin-bottom: 3px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb8 {
  margin-bottom: 8px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb54 {
  margin-bottom: 54px;
}

.mb60 {
  margin-bottom: 60px;
}

.lh110 {
  line-height: 110%;
}

.lh120 {
  line-height: 120%;
}

.lh130 {
  line-height: 130%;
}

.lh140 {
  line-height: 140%;
}

.lh150 {
  line-height: 150%;
}

.lh160 {
  line-height: 160%;
}

.lh180 {
  line-height: 180%;
}

.lh200 {
  line-height: 200%;
}

.vt {
  vertical-align: top;
}

.vm {
  vertical-align: middle;
}

.vb {
  vertical-align: bottom;
}

.tc {
  text-align: center !important;
}

.tr {
  text-align: right !important;
}

.tl {
  text-align: left !important;
}

.cl {
  clear: left;
}

.cr {
  clear: right;
}

.cb {
  content: "";
  clear: both;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.ft-11 {
  font-size: 11px;
}

.ft-12 {
  font-size: 12px;
}

.ft-14 {
  font-size: 14px;
  line-height: 170%;
}

.ft-15 {
  font-size: 15px;
}

.ft-16 {
  font-size: 16px;
}

.ft-17 {
  font-size: 17px;
}

.ft-18 {
  font-size: 18px;
}

.btn-tc,
.btn-tl,
.btn-tr {
  width: 100%;
  overflow: hidden;
  text-align: right;
}

.btn-tc,
.btn-tl {
  text-align: center;
}

.btn-tl {
  text-align: left;
}

.behind {
  left: -9999em;
  top: -9999em;
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
}

.hidden {
  display: none !important;
}

.m0a {
  margin: 0 auto;
}

.mt10a {
  margin: 10px auto 0;
}

.mt20a {
  margin: 20px auto 0;
}

.mt30a {
  margin: 30px auto 0;
}

.mt40a {
  margin: 40px auto 0;
}

.mt50a {
  margin: 50px auto 0;
}

.mt60a {
  margin: 60px auto 0;
}

.mt70a {
  margin: 70px auto 0;
}

.mt80a {
  margin: 80px auto 0;
}

.mt90a {
  margin: 90px auto 0;
}

.mt100a {
  margin: 100px auto 0;
}

.mb10a {
  margin: 0 auto 10px;
}

.mb20a {
  margin: 0 auto 20px;
}

.mb30a {
  margin: 0 auto 30px;
}

.mb40a {
  margin: 0 auto 40px;
}

.mb50a {
  margin: 0 auto 50px;
}

.mb60a {
  margin: 0 auto 60px;
}

.mb70a {
  margin: 0 auto 70px;
}

.mb80a {
  margin: 0 auto 80px;
}

.mb90a {
  margin: 0 auto 90px;
}

.mb100a {
  margin: 0 auto 100px;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  font-weight: 500;
  transition: all 0.2s;
  box-sizing: border-box;
  cursor: pointer;
}

.b-color {
  color: var(--primaryDark);
}

.gray-color {
  color: #777;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.area-selBox,
.ico-area {
  box-sizing: border-box;
  position: absolute;
}

:disabled {
  background-color: #999 !important;
  cursor: no-drop !important;
}

.image[src*="emptyImg.png"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 230px !important;
  height: 40px !important;
  object-fit: contain !important;
  text-align: center;
}

/* input */
.input_type {
  display: flex;
  flex-direction: column;
}
.input_type.line > li {
  border-bottom: 1px solid #dbdbdb;
  padding: 32px 0 32px 0;
}

.input_type li .radio_list li:last-child {
  margin-right: 0;
}
.input_type li dl {
  display: flex;
  align-items: flex-start;
}
.input_type li dl dt {
  width: 20%;
  color: var(--gray03);
  font-weight: 500;
  vertical-align: middle;
  flex-shrink: 0;
  padding-top: 14px;
  min-width: 204px;
  position: relative;
}
.input_type li dl dt.non_inp {
  padding-top: 0;
}
.input_type li dl dt.line2 {
  padding-top: 0;
}
.input_type li dl dt.line2 .ess {
  position: absolute;
  top: 4px;
  left: calc(50% + 10px);
}

.input_type li dl dd {
  flex-grow: 1;
  position: relative;
}

.inputbox {
  position: relative;
}
.inputbox > .inp {
  display: block;
  width: 100%;
  height: 54px;
  padding: 0 16px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.ess {
  color: #ff0000;
  font-size: 14px;
  display: inline-block;
  margin-left: 4px;
}

svg {
  height: 1rem;
  vertical-align: middle;
}

/* textarea */
.tarea {
  border: 1px solid #dbdbdb;
  background: #f7f7f7;
  padding: 10px 16px;
  width: 100%;
  height: 118px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
}

.tarea.htype02 {
  height: 200px;
  background: #fff;
}

.tarea::placeholder {
  color: #999;
  font-size: 16px;
}

#footer .copy-box .copy-korBox .copy-topList:after,
#footer .copy-box .copy-rightBox .copy-right-list:after,
#footer .copy-box:after,
#footer .foot-btBox:after,
.depth2-box .rel-box .right-box:after,
.depth2-box .rel-box:after,
.depth2-tabLink-Box .depth2-tabLink-list:after,
.faq-container:after,
.sels-ul:after {
  content: "";
  display: block;
  clear: both;
}

.red-text{color:red!important}
.main-padding,.sub-padding{padding-bottom:90px}
.sub-padding100{height:100%;}