@charset 'utf-8';

html, body {
  height: 100%;
}

/* btn */
.btn {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #36baee;
}
.btn:hover {
  background: #4cbeff;
}
.btn:active,
.btn:focus {
  background: #229ade;
}
.btn_more {
  height: 22px;
  line-height: 19px;
  padding: 0 12px;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 12px;
  color: #333;
}
.btn_more:hover {
  color: #2f80ed;
}
.btn_trapezoid {
  overflow: hidden;
  position: relative;
  z-index: 5;
  height: 54px;
  padding: 0 32px 0 18px;
  text-align: left;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  white-space: nowrap;
}
.btn_trapezoid::before {
  content: '';
  position: absolute;
  z-index: -5;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transform: skew(-30deg) translateX(-16px);
}
.btn_trapezoid.blue_1::before {
  background: #3575bb;
}
.btn_trapezoid.blue_1:hover::before {
  background: #1070f1;
}
.btn_trapezoid.blue_1:active::before,
.btn_trapezoid.blue_1:focus::before {
  background: #043d7b;
}
.btn_trapezoid.blue_2::before {
  background: #36baee;
}
.btn_trapezoid.blue_2:hover::before {
  background: #4dbeff;
}
.btn_trapezoid.blue_2:active::before,
.btn_trapezoid.blue_2:focus::before {
  background: #229ade;
}
.btn_trapezoid.blue_3::before {
  background: #2d9cdB;
}
.btn_trapezoid.blue_3:hover::before {
  background: #4dbeff;
}
.btn_trapezoid.blue_3:active::before,
.btn_trapezoid.blue_3:focus::before {
  background: #229ade;
}

/* select */
.select {
  width: 100%;
  height: 23px;
  padding: 0 20px 1px 6px;
  border: 1px solid #bebebe;
  border-radius: 2px;
  font-size: 12px;
  color: #000;
  background: url(../image/icon_select.png) no-repeat center right 6px;
}

/* input */
.input_text {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  font-size: 16px;
  color: #000;
}
.input_text::placeholder {
  color: #828282;
  opacity: 1;
}
.input_text:-ms-input-placeholder {
  color: #828282;
}
.input_text::-ms-input-placeholder {
  color: #828282;
}
.input_text:active,
.input_text:focus {
  border-color: #36baee;
  box-shadow: 0px 0px 10px rgba(54, 186, 238, 0.3);
  outline: none;
}
.input_checkbox {
  display: none;
}
.label_checkbox {
  display: inline-block;
  position: relative;
  min-height: 20px;
  padding-left: 26px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.label_checkbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #7f7f7f;
  border-radius: 5px;
  background: #fff;
}
.input_checkbox:checked + .label_checkbox::before {
  background: url(../image/icon_check.png) center no-repeat #1070f1;
  border-color: #1070f1;
}

/* point */
.point {
  color: #36baee;
}

/* main */
.main {
  min-width: 1200px;
}

/* header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1140px;
  height: 60px;
  margin: 0 auto;
}
.menu {
  display: flex;
  align-items: center;
}
.menu_item {
  margin-left: 34px;
}
.menu_link {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.menu_link:hover {
  color: #3575bb;
}

/* banner */
.main_banner {
  height: 540px;
  background: url(../image/main_banner.jpg) center no-repeat #0b182c;
}

/* row & col */
.row {
  display: flex;
  width: 1140px;
  margin: 0 auto;
  padding: 40px 0;
}
.row .col {
  flex: 1 0 0;
}
.row .col + .col {
  position: relative;
  margin-left: 80px;
}
.row .col + .col::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ccc;
}

/* contents */
.contents {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -17px;
}
.contents > [class^="box"] {
  padding: 20px 17px;
}

/* header - cont */
.header_cont {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.header_cont .tit {
  font-size: 16px;
  font-weight: 700;
  color: #3575bb;
}
.header_cont .btn_more {
  margin-left: 7px;
}

/* notice */
.box_notice {
  width: 65%;
}

/* items */
.box_items {
  width: 35%;
}

/* list */
.list {
  margin: -1px 0;
}
.list .list_item {
  padding: 1px 0;
}
.list .list_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #4d4d4d;
}
.list .list_link:hover {
  color: #2f80ed;
}
.list .list_link .tit {
  overflow: hidden;
  display: block;
  flex: 1 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.list .list_link .date {
  flex: 0 0 auto;
  padding-left: 26px;
}

/* halla */
.box_halla {
  width: 100%;
}
.box_halla .box_inner {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 23px 0 20px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.1);
}
.box_halla .img_logo {
  margin-bottom: 10px;
}
.box_halla .txt {
  margin-top: 2px;
  margin-left: 9px;
  font-size: 16px;
  font-weight: 300;
  font-family: 'Noto Serif KR', serif;
} 
.box_halla .btn_link {
  position: relative;
  margin-left:  auto;
  padding-right: 17px;
  padding-bottom: 1px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.box_halla .btn_link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 12px;
  margin-top: -6px;
  background: url(../image/icon_next.png) no-repeat;
}
.box_halla .btn_link > strong {
  font-weight: 500;
  color: #3575bb;
}

/* login */
.row .col.login {
  flex: 0 0 auto;
  width: 240px;
}
.tit_login {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.form_login .input_text {
  margin-top: 11px;
}
.form_login .btn {
  margin-top: 11px
}
.list_option {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}
.list_option .list_item + .list_item {
  position: relative;
  margin-left: 28px;
}
.list_option .list_item + .list_item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -14px;
  width: 1px;
  height: 16px;
  margin-top: -8px;
  background: #b3b3b3;
}
.list_option .label_checkbox {
  display: block;
}
.list_option .list_link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.list_option .list_link:hover {
  color: #1070f1;
  text-decoration: underline;
}

/* footer */
.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 1140px;
  height: 72px;
  margin: 0 auto;
  padding: 8px 0;
  border-top: 1px solid #e6e6e6;
}
.footer_info {
  display: flex;
  align-items: flex-start;
}
.footer_info .txt {
  margin-left: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #999;
}
.footer_select .select {
  display: block;
  width: 83px;
}

/* wrap - login */
.wrap_login {
  position: relative;
  z-index: 5;
  height: 100%;
  min-height: 800px;
  min-width: 1100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.wrap_login::before {
  content: '';
  position: absolute;
  z-index: -5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.wrap_login.qis {
  background-image: url(../image/login_QIS.jpg);
}

/* header - login */
.header_login {
  position: absolute;
  top: 40px;
  right: 64px;
  text-align: right;
}
.header_login .tit {
  font-size: 54px;
  font-weight: 700;
  color: #fff;
}
.header_login .txt {
  margin-top: -8px;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

/* box - login */
.box_login {
  width: 600px;
  height: 100%;
  padding: 50px 56px;
  background: url(../image/bg_triangle_wh.svg) no-repeat;
  background-size: 100%;
}
.box_login .logo {
  display: block;
  margin-bottom: 4px;
}
.box_login .logo > img {
  display: block;
  width: 410px;
}
.box_login .tit_login {
  font-size: 34px;
  font-weight: 900;
}
.box_login .id,
.box_login .pw {
  height: 56px;
  border: 0;
  border-bottom: 1px solid #000;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  outline: none;
}
.box_login .id {
  width: 335px;
  margin-top: 3px;
}
.box_login .pw {
  width: 299px;
  margin-top: 7px;
}
.box_login input::placeholder {
  color: #999;
  opacity: 1;
}
.box_login input:-ms-input-placeholder {
  color: #999;
}
.box_login input::-ms-input-placeholder {
  color: #999;
}
.box_login .list_option {
  justify-content: flex-start;
  padding: 0 7px;
}
.box_login .btn_trapezoid.blue_1 {
  margin-top: 20px;
  width: 260px;
}
.box_login .txt_info {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}
.box_login .txt_info .point {
  font-size: 14px;
  font-weight: 900;
}

/* box - down */
.box_down {
  width: 190px;
  margin-top: 29px;
}
.box_down .txt {
  font-size: 12px;
  font-weight: 500;
  color: #3575bb;
  letter-spacing: -0.3px;
  word-break: keep-all;
}
.box_down .btn_trapezoid {
  height: 52px;
  margin-top: 7px;
  padding-left: 16px;
  font-size: 18px;
}
.box_down .btn_trapezoid.blue_2 {
  width: 160px;
}
.box_down .btn_trapezoid.blue_3 {
  width: 123px;
}

/* footer - login */
.footer_login {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
}
.footer_login .txt_copyright {
  font-size: 14px;
  color: #fff;
}