@charset "utf-8";

@font-face {
  font-family: 'Pretendard';
  src: url('/font/Pretendard-Regular.woff2') format('woff2');
  src: url('/font/Pretendard-Regular.woff') format('woff');
  src: url('/font/Pretendard-Regular.ttf') format('ttf');
  font-weight: 100;
}

@font-face {
  font-family: 'Pretendard';
  src: url('/font/Pretendard-Regular.woff2') format('woff2');
  src: url('/font/Pretendard-Regular.woff') format('woff');
  src: url('/font/Pretendard-Regular.ttf') format('ttf');
  font-weight: 400;
}

@font-face {
  font-family: 'Pretendard';
  src: url('/font/Pretendard-Bold.woff2') format('woff2');
  src: url('/font/Pretendard-Bold.woff') format('woff');
  src: url('/font/Pretendard-Bold.ttf') format('ttf');
  font-weight: 700;
}


/* css_reset */
html {
  -webkit-text-size-adjust: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}

html, body {
  width: 100%;
  height: 100%;
}

html body {
  overflow-x: hidden;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, p, button, input {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
  word-break: keep-all;
}

input, textarea {
  border-radius: 0;
  resize: none;
  background: transparent;
  border: 0;
  outline: none;
}

/* textarea{padding: 16px;} */
textarea:focus {
  outline: none;
  border: 0 none;
  color: #252B37;
}

textarea::placeholder {
  font-size: 14px;
}

body, h1, h2, h3, h4, h5, h6, input, button {
  font-family: 'Pretendard', Dotum, '돋움', Helvetica, AppleSDGothicNeo, sans-serif;
}

body {
  color: #666;
  word-wrap: break-word;
  word-break: break-all;
  background: #E0E6F1;
  margin: 0;
  height: 100%;
}

caption, legend {
  font-size: 0;
  line-height: 0;
  text-indent: -5000px;
}

img, fieldset, iframe {
  border: 0 none;
  vertical-align: top;
  cursor: default;
}

fieldset {
  font-size: 0;
}

ul, ol {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

i, em, address {
  font-style: normal;
}

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

hr {
  display: none;
}

input {
  background-color: #fff !important;
}

input:focus {
  background: #fff;
}

input[type="submit"] {
  cursor: pointer;
}

.hidden {
  clear: both;
  height: 0;
  line-height: 0;
  width: 0;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

body.fx {
  overflow: hidden;
}

ul, ol {
  list-style: none;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.gap {
  margin-bottom: 30px;
}

button {
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
  vertical-align: middle;
  background: transparent;
}

button, select {
  text-transform: none;
}

input, select {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  resize: none;
}


.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* common */
.btn_logout {
  width: 72px;
  height: 40px;
  /* padding: 0 20px; */
  font-size: 14px;
  line-height: 40px;
  color: #0114A7;
  background-color: #EDF1F7;
  letter-spacing: -0.2px;
  font-family: 'Pretendard';
  font-weight: 400;
  margin-top: 0;
  border-radius: 6px;
}

/*btn*/
.common_btn_type_1 {
  font-weight: 400;
  height: 56px;
  line-height: 56px;
  display: block;
  cursor: pointer;
  position: relative;
  font-family: 'Pretendard';
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: -0.2px;
  text-align: center;
  background: #0114A7;
  border: 1px solid #0114A7;
  border-radius: 8px;
  z-index: 0;
}

.common_btn_type_1:after {
  content: '';
  display: block;
  cursor: pointer;
  clear: both;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
  transition: all 0.5s;
}

.common_btn_type_1.gray {
  height: 56px;
  line-height: 56px;
  cursor: pointer;
  display: block;
  position: relative;
  font-family: 'Pretendard';
  font-size: 16px;
  color: #0114A7;
  letter-spacing: -0.2px;
  text-align: center;
  background: #EDF1F7;
  border-radius: 8px;
  border: 1px solid #EDF1F7;
}

.common_btn_type_1.blue {
  height: 56px;
  line-height: 56px;
  display: block;
  position: relative;
  cursor: pointer;
  font-family: 'Pretendard';
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.2px;
  text-align: center;
  background: #0114A7;
  border-radius: 8px;
  border: 1px solid #0114A7;
}

.common_btn_type_1.h_btn {
  height: 56px;
  line-height: 56px;
  cursor: pointer;
}

/*모바일에 버튼 높이가 56px 일때*/
.common_btn_type_1.h_btn2 {
  height: 40px !important;
  cursor: pointer;
  line-height: 40px !important;
}

.common_btn_type_1.w_btn {
  width: 160px;
  margin: 0 auto;
  cursor: pointer;
}

.common_btn_type_2 {
  height: 40px;
  cursor: pointer;
  line-height: 40px;
  display: block;
  position: relative;
  font-family: 'Pretendard';
  cursor: pointer;
  font-size: 16px;
  color: #0114A7;
  letter-spacing: -0.2px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #E0E6F1;
}

.common_btn_type_2:after {
  content: '';
  display: block;
  cursor: pointer;
  cursor: pointer;
  clear: both;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
  transition: all 0.5s;
}

.common_btn_type_2.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
}

.common_btn_type_3 {
  height: 56px;
  cursor: pointer;
  line-height: 56px;
  display: block;
  position: relative;
  font-family: 'Pretendard';
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: -0.2px;
  text-align: center;
  background: #0114A7;
  border-radius: 8px;
}

.common_btn_type_3:after {
  content: '';
  display: block;
  clear: both;
  cursor: pointer;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
  transition: all 0.5s;
}

.common_btn_type_4 {
  font-weight: 400;
  height: 32px;
  line-height: 32px;
  cursor: pointer;
  display: block;
  position: relative;
  font-family: 'Pretendard';
  font-size: 14px;
  color: #0114A7;
  letter-spacing: -0.2px;
  text-align: center;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #E0E6F1;
}

.common_btn_type_4:after {
  content: '';
  cursor: pointer;
  display: block;
  clear: both;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
  transition: all 0.5s;
}

.common_btn_type_5 {
  font-weight: 700;
  cursor: pointer;
  height: 56px;
  line-height: 56px;
  display: block;
  position: relative;
  font-family: 'Pretendard';
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: -0.2px;
  text-align: center;
  background: #0114A7;
  border-radius: 8px;
}

/* common-inputType */
.common_input_type_1 {
  border-radius: 8px;
  background: #fff;
  height: 40px;
  line-height: 40px;
  border: 1px solid #E0E6F1;
  font-size: 14px;
  color: #8694B1;
  letter-spacing: -0.02em;
  text-indent: 16px;
  width: 100%;
  transition: all 0.3s;
}

.common_input_type_1.w_inp {
  width: 70%;
}

.common_input_type_1.w_inp2 {
  width: 60%;
}

.common_input_type_1.w_inp5 {
  width: 100%;
}

.common_input_type_1.w_inp6 {
  width: 78%;
}

.common_input_type_1.w_inp7 {
  width: 100%;
}

.common_input_type_1.w_inp8 {
  width: 78%;
}

.common_input_type_1.w_inp9 {
  width: 80%;
}

.common_input_type_1.h_inp {
  height: 48px;
}

/*line-height: 48px;*/
.form_type .info_box1.c_inp .common_input_type_1 {
  color: #252B37;
}

.common_input_type_1:focus,
.common-select-type:focus {
  background: #E0E6F1;
  border: 1px solid #E0E6F1;
  font-size: 14px;
  letter-spacing: -0.02em;
  outline: none;
  color: #252B37;
}

.common_input_type_1.type-1:focus,
.common-select-type.type-1:focus {
  background: #fff;
}

.common_input_type_1[data-input="disabled"],
.common_selectType:disabled {
  border: 1px solid #E0E6F1;
  background: #F7F9FD !important;
  color: #67748E;
  font-size: 14px;
}

.common_input_type_1[data-input="readonly"],
.common_selectType[data-input="readonly"] {
  border: 1px solid #E0E6F1;
  background: #fff;
  color: #222;
  font-size: 14px;
}

.common_input_type_1::placeholder,
.common_selectType::placeholder {
  border: 0;
  font-size: 14px;
  color: #8694B1;
  height: 48px;
  line-height: 48px;
  position: relative;
  top: 1px;
}

/* common_textarea */
.common_textareaType_1 {
  background: #fff !important;
  height: 122px;
  font-size: 14px;
  color: #8694B1;
  letter-spacing: -0.2px;
  line-height: 20px;
  border: 0;
  width: 100%;
  padding: 4%;
  border-radius: 6px;
  border: 1px solid #E0E6F1;
  font-family: 'Pretendard';
  font-weight: 400;
}

.common_textareaType_1:focus {
  color: #252B37;
  border: 1px solid #E0E6F1;
  font-size: 14px;
  font-weight: 400;
}

.common_textareaType_1::placeholder {
  color: #8694B1;
  font-size: 14px;
}

/* common_checkbox */
.inp_check, .inp_radio {
  display: block;
  position: relative;
  min-height: 22px;
  text-align: right;
}

.inp_check input[type="checkbox"],
.inp_radio input[type="radio"],
.agree_radio input[type="radio"] {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

.inp_check label,
.inp_radio label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: middle;
  font-size: 16px;
  font-family: 'Pretendard';
  font-weight: 400;
  line-height: 22px;
}

.inp_check label:before {
  background: url(/img/icon/icon_checkbox_off.png) 0 0 no-repeat;
  background-size: 24px;
}

.inp_check input:checked + label:before {
  content: '';
  background: url(/img/icon/icon_checkbox_on.png) 0 0 no-repeat;
  background-size: 24px;
}

.inp_check label:before,
.inp_radio label:before {
  content: '';
  display: block;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: -2px;
  margin-top: 0;
  width: 24px;
  height: 24px;
}

.inp_radio input:checked + label:before {
  content: '';
  background: url(/img/icon/icon_radio_on.png) 0 0 no-repeat;
  background-size: 24px;
}

.inp_radio label:before {
  background: url(/img/icon/icon_radio_off.png) 0 0 no-repeat;
  background-size: 24px;
  cursor: pointer;
}

.count {
  margin: 0 0 16px;
  font-size: 16px;
  color: #999;
  font-weight: 400;
  line-height: 1;
  text-align: left;
}

.count span, .count b {
  margin-left: 4px;
  font-size: inherit;
  color: #000;
  font-weight: inherit;
  line-height: 1;
}

/* Btn */
.btn_search {
  height: 40px;
  padding: 0 12px 0 30px;
  font-size: 14px;
  line-height: 22px;
  color: #0114A7;
  background: #EDF1F7 url(/img/icon/icon_search.png) no-repeat 12px center / 16px 16px;
  background-size: 16px;
  letter-spacing: -0.2px;
  font-family: 'Pretendard';
  font-weight: 400;
  border: 1px solid #EDF1F7;
  border-radius: 6px;
}

.btn_add {
  height: 40px;
  padding: 0 12px 0 30px;
  font-size: 14px;
  line-height: 24px;
  color: #0114A7;
  background: #EDF1F7 url(/img/icon/icon_plus.png) no-repeat 10px center / 16px 16px;
  background-size: 16px;
  letter-spacing: -0.2px;
  font-family: 'Pretendard';
  font-weight: 400;
  border: 1px solid #EDF1F7;
  border-radius: 6px;
}

.btn_add.h_btn {
  height: 28px;
  padding: 0 7px 0 26px;
  line-height: 26px;
  font-size: 12px;
}

.btn_key {
  height: 40px;
  padding: 0 9px 0 30px;
  font-size: 14px;
  line-height: 22px;
  color: #0114A7;
  background: #EDF1F7 url(/img/icon/icon_key.png) no-repeat 10px center / 16px 16px;
  background-size: 16px;
  background-position: 12px center;
  letter-spacing: -0.2px;
  font-family: 'Pretendard';
  font-weight: 400;
  border-radius: 6px;
}

.btn_keydel {
  height: 40px;
  padding: 0 12px 0 30px;
  font-size: 14px;
  line-height: 22px;
  color: #E23A32;
  background: #FFE5E0 url(/img/icon/icon_trash4.png) no-repeat 10px center / 16px 16px;
  background-size: 16px;
  background-position: 12px center;
  letter-spacing: -0.2px;
  font-family: 'Pretendard';
  font-weight: 400;
  border-radius: 6px;
}

.btn_del {
  height: 32px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 22px;
  color: #E23A32;
  background: #FFE5E0;
  letter-spacing: -0.2px;
  font-family: 'Pretendard';
  font-weight: 400;
  border-radius: 4px;
}

.btn_refresh {
  height: 40px;
  padding: 0 12px 0 30px;
  font-size: 14px;
  line-height: 24px;
  color: #0114A7;
  background: #EDF1F7 url(/img/icon/icon_refresh.png) no-repeat 10px center / 16px 16px;
  background-size: 16px;
  letter-spacing: -0.2px;
  font-family: 'Pretendard';
  font-weight: 400;
  border: 1px solid #EDF1F7;
  border-radius: 6px;
}

.btn_business {
  height: 48px;
  padding: 0 20px 0 42px;
  font-size: 14px;
  line-height: 24px;
  color: #0114A7;
  background: #EDF1F7 url(/img/icon/icon_business.png) no-repeat 17px center / 20px 20px;
  background-size: 20px;
  letter-spacing: -0.2px;
  font-family: 'Pretendard';
  font-weight: 400;
  border: 1px solid #EDF1F7;
  border-radius: 6px;
}

.btn_business.business {
  width: 100%;
  height: 40px;
  background: #EDF1F7 none;
  padding: 0;
}

/* PAGINATION */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 32px;
}

.pagination a {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 24px;
  margin: 0 3px;
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
}

.pagination a.page-current {
  width: 24px;
  color: #0114A7;
  border: 1px solid #E0E6F1;
  font-weight: 700;
  border-radius: 4px;
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
}


.pagination a.page-prev, .pagination a.page-next {
  background: url("/img/icon/icon_page_arrow_l.png") no-repeat center;
  background-size: 24px;
  margin: 0 12px;
}

.pagination a.page-next {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pagination a.page-current.pc_current {
  width: 24px;
  color: #0114A7;
  border: 1px solid #E0E6F1;
  font-weight: 700;
  border-radius: 4px;
  font-size: 16px;
}

.form_type .info_box1 .input .common_input_type_1.trash {
  border: 1px solid #252B37;
  background: url('/img/icon/icon_trash.png') no-repeat center right 16px;
}

.form_type .info_box1 .input .common_input_type_1.trash::placeholder {
  color: #252B37;
}

/********* // common*********/


/* SKIP TO CONTENT  */
.skip a {
  position: absolute;
  left: -3222%;
}

.skip a:focus {
  display: inline-block;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 50%;
  height: 30px;
  background: #222;
  line-height: 30px;
  color: #fff;
  text-align: center;
}

#skipCt {
  position: static;
  min-height: 400px;
}

/* IR */
.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.hidden {
  clear: both;
  height: 0;
  line-height: 0;
  width: 0;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.m-only {
  display: block !important;
}

.pc-only {
  display: none !important;
}

/*header*/
.header {
  width: 100%;
  height: 56px;
  border-bottom: 1px solid #e6e6e6;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
}

.header .logo {
  position: absolute;
  width: 146px;
  height: 18px;
  left: 16px;
  top: 19px;
  background: url(/img/logo/img_logo.png) no-repeat center / contain;
  z-index: 1200;
}

.header .logo2 {
  position: absolute;
  width: 146px;
  height: 18px;
  left: 16px;
  top: 19px;
  background: url(/img/logo/img_mlogo.png) no-repeat center / contain;
  z-index: 1200;
}

.header .home {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 52px;
  top: 16px;
  background: url(/img/icon/icon_home.png) no-repeat center / contain;
  z-index: 1200;
  display: none;
}

.header .home.on {
  display: block;
}

.header .home2 {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 45px;
  top: 16px;
  background: url(/img/icon/icon_home2.png) no-repeat center / contain;
  z-index: 1200;
}

/*right: 52px;*/
.header .btn-mobilemenu {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 16px;
  display: block;
  color: transparent;
  z-index: 10000;
}

.header .btn-mobilemenu span {
  font-size: 0;
  text-indent: -9999px;
  width: 18px;
  height: 2px;
  background: #505050;
  display: block;
  position: absolute;
  top: 11px;
  left: 3px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  color: transparent;
  border-radius: 1.5px;
}

.header .btn-mobilemenu span::before {
  top: -7px;
}

.header .btn-mobilemenu span::after,
.header .btn-mobilemenu span::before {
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: '';
  width: 18px;
  height: 2px;
  background: #000;
  position: absolute;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  border-radius: 1.5px;
}

.header .btn-mobilemenu span::after {
  bottom: -6px;
}

.header .btn-mobilemenu span::before {
  top: -6px;
}

.header .btn-mobilemenu.on {
  top: 17px;
  right: 17px;
}

.header .btn-mobilemenu.on span {
  width: 0;
}

.header .btn-mobilemenu.on span::before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  top: 0;
  background: #fff;
}

.header .btn-mobilemenu.on span::after {
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
  bottom: 0;
  background: #fff;
}

.header .m-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #140064;
  display: block;
  padding-top: 1px;
  overflow: auto;
  z-index: 1500;
}

.header .m-nav nav {
  text-align: left;
  margin: 0 24px;
}

.header .m-nav nav .m-nav-global > li {
  margin-top: 0;
}

.header .m-nav nav .m-nav-global > li > a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  display: block;
  line-height: 1;
  padding: 20px 0;
}

.header .m-nav nav .m-nav-global > li > a span {
  display: inline-block;
  position: relative;
}

.header .m-nav nav .m-nav-global > li > a span::after {
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  left: calc(100% + 4px);
  top: -2px;
  background: url(/images/icon/m_navitem_on.svg) no-repeat center;
}

.header .m-nav nav .m-nav-cs {
  margin-top: 132px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

/* .header .m-nav nav .m-nav-cs{margin-top: 132px;margin-left: -16px;margin-right: -16px;padding: 24px 24px 0 24px;} */
.header .m-nav nav .m-nav-cs > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header .m-nav nav .m-nav-cs > li > a {
  position: relative;
  color: #fff;
  display: block;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  padding: 20px 0;
}

.header .m-nav nav .m-nav-cs > li > a img {
  margin-right: 8px;
  margin-left: 3px;
}

.header .m-nav nav .m-nav-cs > li > a::after {
  content: '';
  display: block;
  clear: both;
  background-image: url(/img/icon/icon_arrow_down3.png);
  background-size: 24px 24px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 21px;
  right: 0;
}

.header .m-nav nav .m-nav-cs > li.on > a::after {
  background-image: url(/img/icon/icon_arrow_down3_sel.png);
}

.header .m-nav nav .m-nav-cs > li .mc-sub-nav {
  margin-top: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.header .m-nav nav .m-nav-cs > li .mc-sub-nav li {
  padding: 8px 0;
}

.header .m-nav nav .mg-sub-nav, .header .m-nav nav .mc-sub-nav {
  display: none;
}

.header .m-nav nav .mg-sub-nav li a, .header .m-nav nav .mc-sub-nav li a {
  display: block;
  color: #fff;
  padding-left: 36px;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.header .m-nav nav .mc-sub-nav li a {
  position: relative;
}

.header .m-nav nav .mc-sub-nav li a::before {
  content: '';
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 10px;
}

.header .login_btn_group {
  display: block;
  position: absolute;
  top: 80px;
  width: 100%;
  left: 0;
  padding: 0 24px;
  z-index: 111;
}

.header .header_btn_group {
}

.header .header_btn_group .login_wrap {
  display: flex;
  justify-content: space-between;
}

.header .header_btn_group .login_wrap.flex_no {
  display: inline;
}

.header .header_btn_group .login_wrap .login_prev {
  display: flex;
}

.header .header_btn_group .login_wrap .btn_loginbt,
.header .header_btn_group .login_wrap .btn_memberbt {
  height: 56px;
  /* width: calc(50% - .3rem); */
  border-radius: 8px;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  background: #fff;
  color: #0114A7;
}

.header .header_btn_group .login_wrap .btn_loginbt {
  position: relative;
  width: 50%;
  margin-right: 6px;
  padding: 0 9px 0 30px;
}

.header .header_btn_group .login_wrap .btn_loginbt:after {
  content: '';
  display: block;
  clear: both;
  background-image: url(/img/icon/icon_login.png);
  background-size: 24px 24px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 14px;
  left: 30px;
}

.header .header_btn_group .login_wrap .btn_memberbt {
  position: relative;
  width: 50%;
  margin-left: 6px;
}

.header .header_btn_group .login_wrap .btn_memberbt:after {
  content: '';
  display: block;
  clear: both;
  background-image: url(/img/icon/icon_join.png);
  background-size: 24px 24px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 14px;
  left: 30px;
}

.header .header_btn_group .login_wrap .profile_type a {
  position: relative;
}

.header .header_btn_group .login_wrap .profile_type a:after {
  content: '';
  display: block;
  clear: both;
  background-image: url(/img/icon/icon_profile.png);
  background-size: 48px 48px;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
  position: absolute;
  top: -1px;
  left: -1px;
}

.header .header_btn_group .login_wrap .profile_type p {
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
  margin-left: 60px;
}

.header .header_btn_group .login_wrap .profile_type span {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
  margin-left: 60px;
}

.info_wrap {
  padding: 16px 24px 16px 24px;
  border-radius: 16px;
  opacity: 0px;
  background: #00000033;
  margin-top: 40px;
  margin-left: 16px;
  margin-right: 16px;
}

.header .info_wrap .tit1 a {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
}

.header .info_wrap .tit1 span {
  padding: 0 20px;
}

.header .info_wrap .tit2 {
  font-family: 'Pretendard';
  cursor: default;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
  padding-top: 8px;
}

.header .gnb-pc {
  display: none;
}

#nav {
  display: none;
}

.navigation {
  display: none;
}

#wrap {
  display: flex;
  flex-direction: column;
  background: #fff;
  min-height: 100vh;
}

.wrap {
  background: #E0E6F1 !important;
}

.wrap_top {
  min-height: 100%;
}

/*contents*/
.content {
  flex: 1 0 auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.content.main {
  margin-top: 56px;
}

.content_wrap {
  margin-top: 56px;
}

.content_wrap.cp_box {
  margin-top: 0;
}

.top_wrap {
  padding-top: 95px;
}

#wrap .inner {
  padding: 24px 16px 24px 16px;
}

#wrap .inner2 {
  padding: 24px 16px 24px 16px;
}

#wrap .api_inner {
  padding: 32px 16px 56px 16px;
}

#wrap .inner.member {
  margin: 35px 0;
}

#wrap .inner.h_inner {
  padding-bottom: 78px;
}

#wrap .inner.h_inner2 {
  padding-bottom: 56px;
}

#wrap .inner.h_inner3 {
  padding-bottom: 59px;
}

#wrap .inner.h_inner4 {
  padding-bottom: 53px;
}

#wrap .inner.h_inner5 {
  padding-bottom: 74px;
}

#wrap .inner.h_inner6 {
  padding-bottom: 48px;
}

#wrap .inner.h_inner7 {
  margin-top: 16px;
}

#wrap .inner.h_inner8 {
  padding-bottom: 56px;
}

#wrap .inner.h_inner9 {
  padding-bottom: 102px;
}

#wrap .inner.h_inner10 {
  padding-bottom: 56px;
}

#wrap .inner.h_inner11 {
  padding-bottom: 40px;
}

/* footer */
#footer {
  background-color: #252B37;
  padding: 32px 16px 50px 16px;
  position: relative;
}

#footer .family-sites {
  width: 100%;
  position: relative;
  border-radius: 5px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 16px;
}

#footer .family-sites h3 {
  margin: 0;
  padding: 12px 16px 12px 16px;
  cursor: pointer;
  user-select: none;
  background-color: #252B37;
  position: relative;
  border-radius: 6px;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
  height: 40px;
}

#footer .family-sites h3::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
  height: 20px;
  background-image: url('/img/icon/icon_arrow_down3_sel.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

#footer .family-sites ul.expanded + h3::after {
  transform: translateY(-50%) rotate(180deg);
}

#footer .family-sites ul {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #252B37;
  border-radius: 6px;
  margin-bottom: 5px;
  z-index: 1;
}

#footer .family-sites.expanded ul {
  max-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#footer .family-sites li:last-child {
  border-bottom: none;
}

#footer .family-sites a {
  display: block;
  padding: 10px 16px 10px 16px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

#footer .f-info {
  color: #fff;
  padding-top: 24px;
}

#footer .f-info .bold-link {
  font-weight: 400;
  color: #a5ff00;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.2px;
  padding-top: 24px;
}

#footer .f-info a {
  font-family: 'Pretendard';
  font-weight: 400;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.2px;
  padding-top: 24px;
}

#footer .f-info span {
  padding: 0 20px;
}

#footer .f-info2 {
  font-family: 'Pretendard';
  font-weight: 400;
  color: #FFFFFFA6;
  cursor: default;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.2px;
  padding-top: 26px;
}


/* 로그인 / 회원가입 */

.validation-message {
  display: none;
  font-size: 0.875rem;
  margin-top: 0.9rem;
  padding: 0.4rem 0;
  text-indent: 200px;
}

.validation-message.error {
  display: block;
  color: #dc2626; /* 빨간색 텍스트 */
}

.validation-message.success {
  display: block;
  color: #059669; /* 초록색 텍스트 */
}

.con_title {
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 400;
  cursor: default;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #020616;
}

.con_title .tit_txt {
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
}

.con_title p span {
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #020616;
}

.con_title .tit_txt span {
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
}

.inp_check label:before {
  top: -1px !important;
}

.sub_title2 {
  display: none;
}

.header .sub_title {
  text-align: center;
  margin: 0 auto;
  width: 100%;
  left: 0;
}

.header .sub_title p {
  font-size: 20px;
  font-family: 'Pretendard';
  font-weight: 700;
  position: relative;
  padding-top: 16px;
  color: #000;
  line-height: 26px;
  letter-spacing: -0.2px;
}

/*.header .sub_title p:after {*/
/*  content: '';*/
/*  display: block;*/
/*  clear: both;*/
/*  background-image: url(/img/icon/icon_arrow_left.png);*/
/*  background-position: 0;*/
/*  background-repeat: no-repeat;*/
/*  background-size: 24px;*/
/*  width: 24px;*/
/*  height: 24px;*/
/*  position: absolute;*/
/*  top: 16px;*/
/*  left: 16px;*/
/*}*/

#wrap .inner .login_box {
  padding-top: 0;
}

#wrap .login_box .group {
  display: block;
}

#wrap .login_box .group label {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 700;
  line-height: 48px;
  color: #3B4659;
}

#wrap .login_box .group .common_input_type_1 {
  height: 48px;
  margin-top: 0;
}

#wrap .box_inp {
  margin-top: 16px;
}

.inp_check.f_size label {
  font-size: 14px;
}

#wrap .btn_login {
  padding-top: 24px;
}

#wrap .btn_login .common_btn_type_1 span {
  z-index: 20;
  position: relative;
}

.login_list {
  margin: 24px auto 0 auto;
  text-align: center;
}

.login_list li {
  display: inline-block;
}

.login_list li a {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
}

.login_list li.line {
  padding: 0 12px;
  color: #C8D2E4;
}

.login_list li span {
  padding: 0 5px;
  color: #C8D2E4;
}

#wrap .member_tit {
  padding-top: 95px;
}

#wrap .member_tit p {
  color: #020616;
  margin: 0 auto;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: center;
}

#wrap .member_tit p span {
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.2px;
  text-align: center;
}

.member_list {
  margin-top: 32px;
}

.member_list a {
  text-decoration: none;
}

.member_list .mb_group1 {
  position: relative;
  background: #0114A7;
  padding: 38px 92px 38px 140px;
  border-radius: 9px;
  box-shadow: 0px 2px 2px 0px #414E651A;
  text-align: center;
  cursor: pointer;
}

.member_list .mb_group1 a {
  position: relative;
}

.member_list .mb_group1 a:after {
  content: '';
  display: block;
  clear: both;
  background-image: url(/img/icon/icon_member01_m.png);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
  position: absolute;
  top: -8px;
  left: -45px;
}

.member_list .mb_group1 span {
  position: relative;
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}


.member_list .mb_group2 {
  margin-top: 16px;
  background: #EDF1F7;
  padding: 38px 92px 38px 140px;
  border-radius: 9px;
  box-shadow: 0px 2px 2px 0px #414E651A;
  text-align: center;
  cursor: pointer;
}

.member_list .mb_group2 a {
  position: relative;
}

.member_list .mb_group2 a:after {
  content: '';
  display: block;
  clear: both;
  background-image: url(/img/icon/icon_member02_m.png);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
  position: absolute;
  top: -8px;
  left: -45px;
}

.member_list .mb_group2 span {
  position: relative;
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #0114A7;
  margin: 0 auto;
}

.list {
}

.list ul li {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
}

.list ul li a {
  text-decoration: none;
}

.list ul li a img {
  width: 20px;
  height: 20px;
}

.list ul li.line {
  padding: 0 12px;
  color: #C8D2E4;
}


.tit_logo {
  padding-top: 138px;
  text-align: center;
}

.tit_logo2 {
  padding-top: 138px;
  text-align: center;
}

#wrap .member_tit {
  padding-top: 40px;
}

#wrap .member_tit.complete {
}

#wrap .member_tit.complete p {
  padding-top: 94px;
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.2px;
  text-align: center;
  color: #000;
}

#wrap .inner .i_complete {
  margin: 0 auto;
  text-align: center;
}

#wrap .inner .complete_txt {
  padding-top: 12px;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  text-align: center;
  color: #4D596F;
}

.btn_home {
  width: 100%;
  margin: 32px auto 0 auto;
}

#wrap .inner .cs_info {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #8694B1;
  margin-top: 40px;
}

.email_tit {
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #020616;
  margin-top: 40px;
}

/*****고객지원*****/
.sub_title3 h2 {
  display: none;
}

.board_search .count {
  display: none;
}

.board_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.board_search .search_txt {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: 6px;
}

.board_search .search_txt .common_input_type_1 {
  width: 100%;
}

.board_search .search_txt.result .common_input_type_1::placeholder {
  color: #252B37;
}

/* .board_search .search_txt input {border: none;width: 100%;height: 38px;line-height: 38px;vertical-align: top;padding-left: 15px;} */
.board_search .search_txt input::placeholder {
  color: #8694B1;
}

.board_search .btn_wrap {
  margin-left: 8px;
}

.total-post-wrap {
  margin-top: 16px;
  display: flex;
  justify-content: start;
}

.total-post-wrap .total-post {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #000;
  cursor: default;
}

.total-post-wrap .total-post strong {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  color: #020616;
}

.board-list-wrap {
  margin-top: 8px;
}

.board-list {
  border-top: 2px solid #4D596F;
}

.board-list li {
  padding: 16px 0 16px 8px;
  border-bottom: 1px solid #E0E6F1;
}

/*공지사항 - 검색결과없음*/
.board-list .no-result-wrap {
  border-bottom: 1px solid #E0E6F1;
  padding: 0;
}

.no-result-wrap .no_data {
  padding-top: 96px;
}

.no-result-wrap .no_data .no_result_text {
  margin: 0 auto;
  text-align: center;
}

.no-result-wrap .no_data .no_result_text p {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #8694B1;
  padding-bottom: 96px;
}


.board-list li.th-head {
  display: none;
}

.board-list li div {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.board-list li div .col-num {
  display: none;
  cursor: default;
}

.board-list li div .col-title {
  padding-left: 0;
  width: 100%;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Pretendard';
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
}

.board-list li div .col-date {
  width: auto;
  color: #252B37;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.board-list li div .col-date em {
  color: #C8D2E4;
  padding: 0 8px;
}

.board-list li div .col-title.icon_file a {
  position: relative;
}

.board-list li div .col-title em a {
  position: relative;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #000;
  font-weight: 500;
}

.board-view {
  border-top: 2px solid #4D596F;
  border-bottom: 1px solid #E0E6F1;
}

.board-view .board-view-head {
  padding: 16px;
  border-bottom: 1px solid #E0E6F1;
}

.board-view .board-view-head .title {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: #000;
  cursor: default;
}

.board-view .board-view-head .write-info {
  display: block;
  margin-top: 8px;
}

.board-view .board-view-head .write-info .date-info {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #67748E;
  cursor: default;
}

.board-view .board_file .file_group {
  padding: 10px 16px 10px 0;
  border-bottom: 1px solid #E0E6F1;
}

.board-view .board_file .file_group span a {
  position: relative;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #000;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  padding-left: 40px;
  text-decoration: underline;
}

.board-view .board_file .file_group span a:after {
  content: '';
  display: block;
  clear: both;
  background-image: url(/img/icon/icon_file.png);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 16px;
}

.board-view .board-view-body {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  padding: 24px 16px;
  cursor: default;
}

.board-view .board-view-body p {
  margin-top: 22px;
}

.board-view .board-view-body .list_type li {
  position: relative;
  padding-left: 20px;
}

.board-view .board-view-body .list_type li::after {
  content: '';
  width: 3px;
  height: 3px;
  background: #888;
  border-radius: 50%;
  position: absolute;
  left: 12px;
  top: 10px;
}

/* Q&A */
.board-list.qna_list {
  position: relative;
}

.board-list.qna_list li {
  padding: 47px 0 15px 0;

}

.board-list.qna_list .col-name {
  padding-left: 8px;
}

.board-list.qna_list .col-name em {
  padding-left: 6px;
  color: #C8D2E4;
}

.board-list li div .col-title em.qna-type {
  position: relative;
}

.board-list li div .col-title em.qna-type a {
  padding-left: 8px;
}

.board-list li div .col-title em.qna-type a.qna_l {
  padding-left: 0;
}

.board-list.qna-type li div .col-title em.qna-type a .icon-secret {
  position: relative;
  vertical-align: middle;
  margin-bottom: -.2rem;
}

.board-list.qna-type li div .col-title em.qna-type a .icon-file {
  position: relative;
  vertical-align: middle;
  margin-bottom: -.2rem;
}

.board-list li div .col-title em.qna-type a .icon-secret {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1rem;
}

.icon-secret {
  display: inline-flex;
  width: 20px;
  height: 20px;
  font-size: 0;
  background: url(/img/icon/icon_lock.png) no-repeat 50% 50% / 20px 20px;
}

.board-list li div .col-title .icon_file {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-left: 0;
}

.board-list li div .col-name {
  width: auto;
  margin-right: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  font-family: 'Pretendard';
}

.board-list li div .col-comp {
  display: inline-block;
  line-height: 24px;
  border-radius: 16px;
  font-family: 'Pretendard';
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 400;
  cursor: default;
}

.board-list li div .col-comp .complete {
  position: absolute;
  top: -32px;
  left: 8px;
}

.board-list li div .col-comp .question {
  position: absolute;
  top: -32px;
  left: 8px;
}

.btn_board2 {
  margin-top: 32px;
}

.btn_board.btn_top {
  margin-top: 32px;
}

.board-view-head.qna .detail_title {
  margin-top: 8px;
}

.board-view-head.qna .complete_box .complete {
  padding: 0 7px;
  line-height: 24px;
  cursor: default;
}

.board-view-head.qna .write-info .date-info .date_stxt {
  padding-right: 18px;
  cursor: default;
}

.comment_wrap {
  position: relative;
  border-bottom: 1px solid #E0E6F1;
}

.comment_wrap .comment_wrap_head {
  padding: 10px 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding-left: 54px;
  padding-right: 16px;
}

.comment_wrap .comment_wrap_head:after {
  content: '';
  display: block;
  clear: both;
  background-image: url(/img/icon/icon_kbank.png);
  background-size: 32px 32px;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 10px;
  left: 16px;
}

.comment_wrap .comment_wrap_head .title {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  color: #252B37;
}

.comment_wrap .comment_wrap_head .title em {
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #67748E;
  cursor: default;
}

.comment_wrap .comment_wrap_head p {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  word-break: break-all;
  padding-top: 4px;
  color: #252B37;
  cursor: default;
}

.common_textarea {
  width: 100%;
  height: 140px;
  padding: 8px;
  box-sizing: border-box;
  resize: vertical;
  border-radius: 6px;
}


/* 회원가입 */
.info_txt {
  color: #4D596F;
  background: #F7F9FD;
  border-radius: 8px;
  padding: 12px;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
  text-align: left;
}

.terms_box {
  margin-top: 48px;
  position: relative;
  border-bottom: 2px solid #4D596F;
}

.terms_box.t_top {
  margin-top: 0;
}

.terms_box p {
  font-family: 'Pretendard';
  font-size: 18px;
  cursor: default;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #140064;
  padding-bottom: 8px;
}

.terms_box.title {
  border-bottom: 0 none;
}

.terms_box.title p {
  border-bottom: 0 none;
  padding-bottom: 8px;
}

.terms_box span {
  position: absolute;
  top: 0;
  cursor: default;
  right: 0;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.2px;
  color: #3B4659;
  margin-right: 7px;
}

.top_info {
  background: #F7F9FD;
  padding: 12px 12px 12px 28px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.top_info.m_tbom {
  margin: 12px 0;
}

.top_info li {
  position: relative;
  font-family: 'Pretendard';
  cursor: default;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #4D596F;
}

.top_info .top {
  padding-top: 8px;
}

.top_info .top::before {
  top: 12px;
}

.top_info li::before {
  content: '';
  width: 10px;
  cursor: default;
  height: 10px;
  background: url(/img/icon/icon_notice_star.png) no-repeat 0 0;
  background-size: 10px;
  position: absolute;
  left: -15px;
  top: 5px;
}

.total_wrap {
  border: 1px solid #C8D2E4;
  padding: 20px 16px 20px 16px;
  border-radius: 8px;
  margin-top: 16px;
}

.total_wrap > .inp_check {
  text-align: left;
  border-bottom: 1px solid #C8D2E4;
  padding-bottom: 16px;
}

.total_wrap .total_type .inp_check {
  text-align: left;
}

.total_wrap .inp_check.b_tit label {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  color: #252B37;
}

.total_wrap .inp_check.s_tit label {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
}

.total_wrap .inp_check span {
  color: #0114A7;
}

.total_wrap .total_type .suv_ck {
  padding-top: 16px;
}

.suv_ck > ul > li > .txt_wrap {
  background: #F7F9FD;
  display: none;
  padding: 16px 16px 16px 16px;
  /* overflow-y: auto; */
  min-height: 314px;
  /* 스크롤바 막대 */
}

/**/
.txt_wrap {
  padding: 10px;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

.txt_wrap.active {
  display: block;
}

.scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.scrollbar::-webkit-scrollbar {
  width: 5px;
}

.scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scrollbar::-webkit-scrollbar-thumb {
  background: #888;
}

/* // */


.scrollbar {
  height: 100px;
  overflow-y: scroll;
}

/* 스크롤바의 폭 너비 */
.scrollbar::-webkit-scrollbar {
  width: 8px;
}

.scrollbar::-webkit-scrollbar-thumb {
  /* 스크롤바 색상 */
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px; /* 스크롤바 둥근 테두리 */
}

.scrollbar::-webkit-scrollbar-track {
  background: rgba(247, 249, 253, 1); /*스크롤바 뒷 배경 색상*/
}

.suv_ck ul li.sel .txt_wrap {
  display: block;
  width: 100%;
  margin-top: 12px;
  border-radius: 8px;
}

.suv_ck ul li.sel .txt_wrap h3 {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: #252B37;
}

.suv_ck ul li.sel .txt_wrap article h4 {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  color: #252B37;
  margin-top: 20px;
}

.suv_ck ul li.sel .txt_wrap article p {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
}

.suv_ck ul li.sel a:after {
  background-image: url(/img/icon/icon_arrow_down2_sel.png);
}

.suv_ck ul li a {
  position: relative;
  display: block;
}

.suv_ck ul li a:after {
  content: '';
  display: block;
  clear: both;
  background-image: url(/img/icon/icon_arrow_down2.png);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -23px;
  right: 4px;
}


.join_info .info1 label {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  color: #3B4659;
}

.join_info .info1 .info_line span {
  padding: 0 2px;
  line-height: 40px;
}

.join_info .info1 .certify_box {
  position: relative;
}

.join_info .info1 .certify_box .certify_time {
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 11px;
  z-index: 0;
  font-size: 16px;
  color: #E23A32;
  font-family: 'Pretendard';
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}

.join_info .btn_application {
  display: flex;
  margin-top: 32px;
  justify-content: center;
  align-items: baseline;
}

.join_info .btn_application .common_btn_type_1 {
  margin-left: 8px;
  width: 50%;
  cursor: pointer;
}

.join_info .btn_application .common_btn_type_1:first-child {
  margin-left: 0;
}

.join_info .info1 .info_line {
}

.join_info .info1 .info_line .special_t {
  width: 5%;
  display: inline-block;
  text-align: center;
}

.join_info .info1 .info_line .inp_wd1 {
  width: 50%;
}

.join_info .info1 .info_line .inp_wd2 {
  width: 43%;
}

.join_info .info1 .info_line .input.w_hp1 select {
  width: 25%;
}

.join_info .info1 .info_line .input.w_hp2 input {
  width: 31%;
}

.agency_info .info1 label {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  color: #3B4659;
}

.agency_info .info1 .info_line {
  display: flex;
  justify-content: center;
}

.agency_info .info1 .info_line .inp_wd3 {
  width: 37%;
}

.agency_info .info1 .info_line .inp_wd4 {
  width: 23%;
}

.agency_info .info1 .info_line .inp_wd5 {
  width: 37%;
}

.agency_info .info1 .info_line .dash {
  padding: 0 3px;
  line-height: 40px;
}

.agency_info .info1 .info_line .input.w_hp3 {
  width: 80%;
}

.agency_info .info1 .info_line .input.w_hp4 {
  width: 100%;
}

.agency_info .info1 .certify_box {
  position: relative;
  width: 100%;
}

.agency_info .info1 .certify_box .certify_time {
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 11px;
  z-index: 0;
  font-size: 16px;
  color: #E23A32;
  font-family: 'Pretendard';
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}

.agency_info .info1 .info_line.info_add {
  display: block;
}

.agency_info .info1 .info_line .filebox .upload_name {
  display: inline-block;
  height: 40px;
  padding: 0 10px;
  vertical-align: middle;
  border: 1px solid #dddddd;
  width: 100%;
  color: #C8D2E4;
  border-radius: 8px;
  border: 1px solid #C8D2E4;
}

.agency_info .info1 .info_line .filebox label {
  font-size: 16px;
  display: inline-block;
  padding: 10px 20px;
  color: #0114A7;
  vertical-align: middle;
  background: #fff;
  cursor: pointer;
  height: 40px;
  font-family: 'Pretendard';
  text-align: center;
  border-radius: 8px;
  border: 1px solid #0114A7;
  width: 100%;
}

.agency_info .info1 .info_line .filebox input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.list-dot {
  margin-top: 8px;
}

.list-dot > p {
  position: relative;
  font-family: 'Pretendard';
  cursor: default;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  padding-left: 10px;
}

.list-dot > p::before {
  content: '';
  width: 3px;
  height: 3px;
  background: #888;
  cursor: default;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

/*비밀번호 찾기, 비밀번호 초기화*/
.tab-wrap {
  /* margin-top: 25px; */
}

/* 전체 탭 컨테이너 */
.tabs {
  width: 100%;
  max-width: 100%;
}

/* 메인 탭과 서브 탭 내비게이션 바 */
.tab_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 24px;
}

.tab_nav.tabm {
  margin-bottom: 0;
}

.tab_nav li {
  width: 50%;
  border-bottom: 2px solid #C8D2E4;
}

.tab_nav li.active {
  border-bottom: 2px solid #0114A7;
}

.sub_tab_nav {
  display: flex;
  align-items: center;
  position: relative;
  padding: 32px 0 0 0;
}

/* .sub_tab_nav { margin-top: 20px; }  */
.tab_nav::after,
.sub_tab_nav::after {
}

/* 메인 및 서브 탭 */
.tab_nav li a {
  display: block;
  position: relative;
  padding: 12px 0;
  color: #4D596F;
  cursor: pointer;
  z-index: 0;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration: none;
}

.sub_tab_nav li a {
  display: block;
  position: relative;
  padding: 10px 15px 10px 0;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  z-index: 0;
}

/* 활성화된 탭 */
.tab_nav li.active a {
  background: #fff;
  z-index: 2;
  color: #0114A7;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  cursor: pointer;
  text-align: center;
}

/* 탭 컨텐츠 영역 */
.tab, .sub_tab {
  display: none;
  border-top: none;
  border-radius: 0 0 6px 6px;
}

/* 활성화된 탭 컨텐츠 영역을 표시 */
.tab.active, .sub_tab.active {
  display: block;
}

.result_view {
  padding-top: 56px;
}

.form_type .result_view .title {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #020616;
  display: block;
}

.result_view ul {
  margin-top: 27px;
}

.result_view li {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #020616;
}

.result_view li span {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #066AE5;
}

.result_view .result_info_box {
  background: #F7F9FD;
  border-radius: 8px;
  margin-top: 24px;
}

.result_view .result_info_box .infor {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #4D596F;
  padding: 16px;

}

.result_view .result_info_box .infor span {
  color: #196af3;
}

.result_view .result_info_box .infor span a {
  color: #196af3;
  text-decoration: underline;
}

.top_info2 {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #020616;
  margin-bottom: 8px;
}

.top_info2.m_btm {
  margin-bottom: 0;
}

.top_info2 span {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  text-align: left;
  color: #020616;
}

.top_info3 {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #020616;
  margin-bottom: 8px;
}

.top_info3 span {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: #020616;
}

.radio_tab_nav {
  display: flex;
  justify-content: start;
  align-items: start;
}

.radio_tab_nav li:nth-child(2) {
  padding-left: 17px;
}

.radio_tab_nav.tabm {
  padding: 36px 0;
}


/* faq */
.box-brandInfo {
}

.box-brandInfo > ul {
  border-top: 2px solid #999;
}

.box-brandInfo > ul > li {
  border-bottom: 1px solid #E0E6F1;
}

.box-brandInfo ul li a {
  position: relative;
  font-family: 'Pretendard';
  color: #000;
  display: block;
  padding: 16px 45px 16px 64px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.box-brandInfo ul li a:before {
  content: '';
  display: block;
  clear: both;
  background-image: url('/img/icon/Icon_q.png');
  background-size: 32px 32px;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translate(-50%, -50%);
}

.box-brandInfo ul li a:after {
  content: '';
  display: block;
  clear: both;
  background-image: url('/img/icon/icon_arrow_down2.png');
  background-size: 24px 24px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}

.box-brandInfo ul li.sel a:after {
  background-image: url('/img/icon/icon_arrow_down2_sel.png');
}

.box-brandInfo ul li .box-ct {
  background: #F7F9FD;
  display: none;
  position: relative;
}

.box-brandInfo ul li .box-ct .list_txt {
  padding: 36px 16px 36px 0;
  padding-left: 35px;
}

.box-brandInfo ul li .box-ct p {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
  margin-bottom: 20px;
  cursor: default;
}

.box-brandInfo ul li .box-ct p:last-child {
  margin-bottom: 0;
}

.box-brandInfo ul li .box-ct:after {
  content: '';
  display: block;
  clear: both;
}

.box-brandInfo ul li .box-ct .inner-ct ul {
  margin: 0 0 20px 0;
}

.box-brandInfo ul li .box-ct .inner-ct:last-child ul {
  margin-bottom: 0;
}

.box-brandInfo ul li .box-ct .inner-ct ul li {
  font-family: 'Pretendard';
  font-size: 14px;
  color: #666;
  letter-spacing: -0.2px;
  line-height: 22px;
}

.box-brandInfo ul li .box-ct .inner-ct ul li span {
  padding-right: 4px;
}

.box-brandInfo ul li .box-ct .inner-ct {
  position: relative;
}

.box-brandInfo ul li .box-ct:before {
  content: '';
  display: block;
  clear: both;
  background-image: url('/img/icon/Icon_a.png');
  background-size: 32px 32px;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translate(-50%, -50%);
}

.box-brandInfo ul li.sel .box-ct {
  display: block;
  padding-left: 64px;
}

.box-brandInfo.faq {
  padding-top: 0;
}

.box-brandInfo.faq > ul > li > a {
  padding-left: 80px;
}

.box-brandInfo.faq .inner-ct p {
  color: #020616;
  margin-left: 63px;
  margin-bottom: 22px;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
}

.box-brandInfo.faq .inner-ct p span {
  display: inline-block;
  width: 15px;
  text-indent: 0;
}

.box-brandInfo.faq .inner-ct p:last-child {
  margin-bottom: 0;
}

.box-brandInfo li {
  position: relative;
  cursor: default;
}

.box-brandInfo ul li .box-ct .list_txt .text1 {
  border-bottom: 0 none;
}


/*************popup**************/
.popup_wrap {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  overflow: auto;
}

.popup_wrap.pop01 {
  display: block;
}

.popup_wrap .pop_dim {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0;
  border-radius: 12px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.popup_wrap .pop_dim .inner {
  width: 328px;
  background: #fff;
  margin: 0 auto;
  background: #FFF;
  border-radius: 12px;
  -webkit-box-shadow: 0px 2px 2px 0px #414E651A;
  box-shadow: 0px 2px 2px 0px #414E651A;
}

.popup_wrap .pop_body {
  position: relative;
  padding: 18px 16px 24px 16px;
}

.popup_wrap .pop_body .box-txt {
  font-size: 16px;
  color: #222;
  text-align: center;
  line-height: 28px;
  letter-spacing: -0.4px;
  display: block;
  min-height: 93px;
  display: table;
  width: 100%;
}

.popup_wrap .pop_body .inner_txt {
  border-bottom: 1px solid #C8D2E4;
}

.popup_wrap .pop_body .inner_txt .title h4 {
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 14px;
  color: #020616;
  cursor: default;
}

.popup_wrap .pop_body .contents p {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-top: 24px;
  color: #252B37;
}

.popup_wrap .pop_body .contents p span {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #252B37;
}

.popup_wrap .pop_body .contents .con_txt {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
  cursor: default;
}

.popup_wrap .pop_body .contents .con_txt span {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #252B37;
  cursor: default;
}

.popup_wrap .pop_body .contents .con_info_box {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #4D596F;
  background: #F7F9FD;
  padding: 12px 12px 12px 22px;
  margin-top: 20px;
}

.popup_wrap .pop_body .contents .con_info_box p {
  position: relative;
  margin-top: 0;
  color: #4D596F;
  cursor: default;
}

.popup_wrap .pop_body .contents .con_info_box p:before {
  content: '';
  width: 3px;
  height: 3px;
  background: #888;
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: 7px;
}

.popup_wrap .pop_body .pop_btn {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-top: 24px;
}

.popup_wrap .pop_body .pop_btn a {
  width: 100px;
  height: 40px;
  line-height: 40px;
  margin-right: 8px;
}

.popup_wrap .pop_body .pop_btn a:nth-child(2) {
  margin-right: 0;
}

.popup_wrap .contents .inp_box {
  margin-top: 15px;
}

.popup_wrap .contents .inp_box input::placeholder {
  font-size: 16px;
}

.popup_wrap .contents .inp_box .common_input_type_1 {
  height: 48px;
}

.popup_wrap .pop_body .btn_close {
  position: absolute;
  top: 20px;
  right: 16px;
}

.popup_wrap .pop_body .btn_close img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.popup_wrap .pop_body .contents .con_txt.l_text {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
  cursor: default;
}

.popup_wrap .pop_body .contents .con_textarea {
  margin-top: 8px;
}


/*Error*/
.wp_pt {
  min-height: 100%;
  padding-top: 250px;
}

.error_wrap {
  padding: 0 0;
}

.error_wrap .error_logo {
  margin: 0 auto;
  text-align: center;
}

.error_wrap .error_logo img {
  width: 177px;
  height: 26px;
}

.error_wrap .error_con {
  margin-top: 40px;
}

.error_wrap .error_con .e_txt {
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #020616;
}

.error_wrap .error_con .e_icon {
  margin: 24px auto 0 auto;
  text-align: center;
}

.error_wrap .error_con .e_txt2 {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #4D596F;
  margin-top: 23px;
}

.error_wrap .error_con .e_txt3 {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #8694B1;
  margin-top: 40px;
}

/* 마이페이지 */
.board_search .search_txt.ser_mypage .common_input_type_1 {
  height: 40px;
}

.table_type2 {
  overflow-y: auto;
  height: 190px;
  border-bottom: 1px solid #E0E6F1;
}

.table_type2.top_type {
  margin-top: 8px;
}

.table_type2 .table_col thead th {
  border: 1px solid #E0E6F1;
  background: #EDF1F7;
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #252B37;
}

.table_type2 .table_col thead th:first-child {
  border-left: 0 none;
}

.table_type2 .table_col tbody td {
  border: 1px solid #E0E6F1;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
  cursor: default;
}

.table_type2 .table_col tbody td:first-child,
.table_type2 .table_col tbody td:last-child {
  border-left: 0 none;
  border-right: 0 none;
  cursor: default;
}

.table_type2 .table_col thead th .total_wrap {
  padding: 0 16px;
  border-radius: 8px;
  border: 0 none;
  margin-top: 0;
}

.table_type2 .table_col thead th .total_wrap > .inp_check {
  text-align: center;
  border-bottom: 0 none;
}

.table_type2 .table_col tbody .suv_ck li .inp_check {
  text-align: center;
}

.table_type2 .table_col thead th .total_wrap .total_wrap .inp_check.b_tit label {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #252B37;
}

.table_type2 .table_col thead th .total_wrap .inp_check label:before {
  top: -3px !important;
}

.table_type2 .table_col tbody .suv_ck li .inp_check label:before {
  top: -12px !important;
}

.table_type2 .table_col thead th {
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #252B37;
  border-top: 1px solid #4D596F;
  height: 48px;
}

.table_type2 .table_col tbody td {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
  height: 48px;
  word-break: break-all;
  cursor: default;
}

.pop_arrow {
  margin: 16px;
}

#wrap .dash_bg {
  background: #E0E6F1;
}

.con_title.mypage p {
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #020616;
}

.con_title.mypage p span {
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: center;
}

.list-dot.info_text {
  background: #F7F9FD;
  border-radius: 8px;
  margin-top: 12px;
}

.list-dot.info_text p {
  padding: 12px 12px 12px 22px;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #4D596F;
}

.list-dot.info_text p:before {
  top: 20px;
  left: 12px;
}

.tb_board_list .table_box {
  overflow-x: auto;
}

.tb_board_list .table_box .table {
  table-layout: fixed;
  width: 100%;
  text-align: center;
}

.tb_board_list .table_box .table thead {
  border-top: 1px solid #4D596F;
}

.tb_board_list .table_box .table th {
  background: #EDF1F7;
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #252B37;
}

.tb_board_list .table_box .table thead th {
  padding: 15px 0;
  cursor: default;
}

.tb_board_list .table_box .table tbody td {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
  text-align: center;
  cursor: default;
}

.tb_board_list .table_box .table tbody td,
.tb_board_list .table_box .table thead th {
  padding: 16px 0;
  border: 1px solid #E0E6F1;
  word-break: break-all;
  cursor: default;
}

.tb_board_list .table_box .table th:first-child {
  border-left: 0 none;
}

.tb_board_list .table_box .table td:first-child {
  border-left: 0 none;
  cursor: default;
}

.tb_board_list .table_box .table th:last-child {
  border-right: 0 none;
  cursor: default;
}

.tb_board_list .table_box .table td:last-child {
  border-right: 0 none;
  cursor: default;
}

.tb_board_list .table_box .table_min {
  min-width: 700px;
}

.tb_board_list.tb_type .table_box .table thead {
  border-top: 0 none;
}

.tb_board_list.tb_type .table_box {
  overflow: hidden;
}

.btn_wrap.bt_location {
  text-align: right;
  margin-top: 12px;
}

.btn_wrap.btn_set {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn_wrap.btn_set a {
  /* width: 72px; */
  text-decoration: none;
  margin-right: 4px;
  padding: 0 12px;
}

.btn_wrap.btn_set a.rt_none {
  margin-right: 0;
}

.user_top {
  margin-top: 0;
}

.btn_board3.btn_top {
  margin-top: 40px;
}

.terms_box.user_top2 {
  margin-top: 56px;
}

.terms_box.user_top3 {
  margin-top: 40px;
}

.terms_box2 {
  border-radius: 8px;
  border-color: #C8D2E4;
  margin-top: 16px;
  padding: 16px;
  border: 1px dotted #C8D2E4;
}

.terms_box2 .info1 {
  padding-top: 0;
}

.terms_box2 .title.title2 {

}

.btn_wrap.bt_location2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form_type .info1.info2:nth-child(1) {
  padding-top: 0;
}

.form_type .info_box1.info_box2 input {
  height: 48px;
  text-indent: unset;
  padding: 0 16px;
}

.terms_box2 .title .btn_plus {
  margin-left: auto;
}

.form_type .btn_application.application {
  display: flex;
  margin-top: 32px;
  justify-content: center;
  align-items: baseline;
}

.withdrawal {
  text-align: center;
  margin-top: 40px;
  text-decoration: underline;
}

.withdrawal a {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #8694B1;
}

.table_box {
  overflow-x: auto;
}

.table_box .table {
  table-layout: fixed;
  width: 100%;
  text-align: center;
}

.table.tb_key {
  margin-top: 48px;
}

.table.tb_key thead th,
.table.tb_key tbody td {
  border: 1px solid #E0E6F1;
}

.table.tb_key thead th:first-child,
.table.tb_key tbody td:first-child {
  border-left: 0 none;
}

.table.tb_key thead th:last-child,
.table.tb_key tbody td:last-child {
  border-right: 0 none;
}

.table.tb_key thead th {
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #252B37;
  background: #EDF1F7;
  padding: 15px 0;
  border-top: 2px solid #4D596F;
}

.table.tb_key tbody td {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
  padding: 13px 0;
}

html body .table_box .pc-only .table.tb_key.m_top tbody tr.highlight_new td,
html body .table_box .m-only .table.tb_key.m_top tbody tr.highlight_new td {
  background-color: #E6F3FF !important;
}

html body .table_box .pc-only .table.tb_key.m_top tbody tr.highlight_delete td,
html body .table_box .m-only .table.tb_key.m_top tbody tr.highlight_delete td {
  background-color: #ffe6e6 !important;
}

html body .table_box .pc-only .table.tb_key.m_top tbody tr.highlight_new td.status,
html body .table_box .m-only .table.tb_key.m_top tbody tr.highlight_new td.status {
  color: #4a90e2 !important;
  font-weight: normal !important;
}

html body .table_box .pc-only .table.tb_key.m_top tbody tr.highlight_delete td.status,
html body .table_box .m-only .table.tb_key.m_top tbody tr.highlight_delete td.status {
  color: #e74c3c !important;
  font-weight: normal !important;
}

.table.tb_key.m_top {
  margin-top: 0;
}

.btn_inventory.btn_top {
  margin-top: 32px;
}

.btn_inventory.btn_mtop {
  margin-top: 32px;
}

.custom_select .select_selected.select_w {
  height: 40px;
  line-height: 40px;
}

#gap_line .gap_line {
  width: 100%;
  border-top: 8px solid #EDF1F7;
}

.ip_server {
  padding: 0 16px 56px 16px;
}

/* 달력 */
.datepicker_wrapper {
  position: relative;
  margin-bottom: 0;
  margin-top: 6px;
}

.datepicker_input {
  width: 200px;
  font-size: 16px;
  border: 1px solid #E0E6F1;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  height: 40px;
  padding: 10px 10px 10px 16px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 40px;
  color: #67748E;
  background: #F7F9FD !important;
}

.datepicker_input:focus {
  color: #67748E;
}

.datepicker_wrapper img {
  position: absolute;
  top: 11px;
  right: 12px;
}


/*******************formtype********************/
/* 디자인 select box */
.custom_select {
  position: relative;
  width: 100%;
  height: 40px;
}

.custom_select .select_selected {
  background-color: #fff;
  padding: 8px 16px;
  border: 1px solid #E0E6F1;
  cursor: pointer;
  width: 100%;
  padding: 0 45px 0 16px;
  border-radius: 6px;
  outline: 0;
  background: #fff url(/img/icon/icon_select_arrow_down2.png) no-repeat 96% 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  height: 40px;
  color: #252B37;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.02em;
  text-align: left;
}

.custom_select .select_selected.h_inp {
  height: 40px;
  line-height: 40px;
}

.custom_select .select_selected.active {
  border: 1px solid #252B37;
}

.custom_select .select_items {
  position: absolute;
  background-color: #fff;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 1;
  list-style-type: none;
  padding: 0;
  margin: 0;
  border: 1px solid #252B37;
  border-radius: 6px;
  height: 200px;
  overflow-y: auto;
  box-sizing: border-box;
  max-height: 200px;
}

.custom_select .select_items::-webkit-scrollbar {
  width: 8px;
}

.custom_select .select_items::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
  margin: 4px;
}

.custom_select .select_items::-webkit-scrollbar-thumb {
  background: rgba(37, 43, 55, 0.2);
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.custom_select .select_items::-webkit-scrollbar-thumb:hover {
  background: rgba(37, 43, 55, 0.4);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.custom_select .select_items::-webkit-scrollbar-thumb:active {
  background: rgba(37, 43, 55, 0.6);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.custom_select .select_hide {
  display: none;
}

.custom_select .select_items ul {
  margin: 10px;
  padding: 0;
}

.custom_select .select_items li {
  padding: 9px 16px;
  cursor: pointer;
  color: #252B37;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}

.custom_select .select_items li:hover {
  background-color: #F7F9FD;
}

.dot {
  position: relative;
}

.dot:after {
  content: '';
  display: block;
  clear: both;
  background: #E23A32;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 1px;
  right: -6px;
  border-radius: 3px;
}

.form_type {
  display: flow;
}

.form_type.top_m {
  margin-top: 24px;
}

.form_type .info1 {
  padding-top: 16px;
}

.form_type .info1.p_top {
  padding-top: 32px;
}

.form_type .info1.p_top0 {
  padding-top: 0;
}

.form_type .info1.p_top2 {
  padding-top: 28px;
}

.form_type .info1.p_top3 {
  padding-top: 40px;
}

.form_type .info1.p_top4 {
  padding-top: 28px;
}

.form_type .info1.p_top5 {
  padding-top: 8px;
}

.form_type .info1.p_top7 {
  padding-top: 32px;
}

.form_type .info1.p_top8 {
  padding-top: 40px;
}

.form_type .info_box1.m_top0 {
  margin-top: 0;
}

.form_type .info1.form_top {
  padding-top: 0;
}

.form_type .title {
  display: table-cell;
  font-family: 'Pretendard';
  cursor: default;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  color: #252B37;
}

.form_type .info_line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.form_type .info_line .btn_check {
  width: 100%;
  margin-top: 8px;
  z-index: 0;
}

.form_type .info_line .btn_check .common_btn_type_2.cbt {
  font-size: 14px;
}

.form_type .info_box1 {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 8px;
}

.form_type .info_box1.info_top {
  margin-top: 0;
}

.form_type .info_box1.info_add2 {
  display: block;
}

.form_type .info_box1.info_add2.info_add3 {
  display: flex;
}

.form_type .info_box1 .input {
  width: 100%;
}

/* .form_type .info_box1 input{color: #8694B1;font-size: 16px;} */
.form_type .info_box1 .certify_box {
  position: relative;
  width: 100%;
}

.form_type .info_box1 .certify_box .certify_time {
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 11px;
  z-index: 0;
  color: #E23A32;
  font-family: 'Pretendard';
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}

.form_type .info_box1 .special_t {
  padding: 0 4px;
  font-size: 16px;
  color: #000;
}

.form_type .btn_application {
  display: flex;
  margin-top: 40px;
  justify-content: center;
  align-items: baseline;
}

.form_type .btn_application .common_btn_type_1 {
  width: 50%;
  height: 56px;
  cursor: pointer;
  line-height: 56px;
}

.form_type .btn_application .common_btn_type_1.gray {
  margin-left: 0;
  cursor: pointer;
}

.form_type .info_box1 .dash {
  padding: 0 4px;
}

.form_type .info1 .info_line .info_box1 .upload_name {
  display: inline-block;
  height: 40px;
  padding: 0 10px;
  vertical-align: middle;
  border: 1px solid #dddddd;
  width: 100%;
  color: #C8D2E4;
  border-radius: 8px;
  border: 1px solid #C8D2E4;
}

.form_type .info1 .info_line .file_btn {
  width: 100%;
}

.form_type .info1 .info_line label {
  font-size: 14px;
  display: inline-block;
  padding: 10px 20px;
  color: #0114A7;
  vertical-align: middle;
  background: #fff;
  cursor: pointer;
  height: 40px;
  font-family: 'Pretendard';
  text-align: center;
  border-radius: 8px;
  border: 1px solid #E0E6F1;
  width: 100%;
}

.form_type .info1 .info_line input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.form_type .info1 .info_line.info_add {
  display: block;
}

.form_type .info_box1 .w_ip {
  width: 50%;
}

.form_type .info_box1 .custom_select.ct_sc .select_selected {
  height: 40px;
  line-height: 40px;
  border: 1px solid #E0E6F1;
}

/* .form_type .info_box1 .custom_select.ct_sc .select_selected.disabled{background: #F7F9FD url(/img/icon/icon_select_arrow_down2.png) no-repeat 96% 50%;} */
.form_type .info_box1 .custom_select.ct_sc .select_selected.disabled {
  background: #F7F9FD;
  color: #8694B1;
}

.form_type .info_box1 .custom_select.disabled {
  pointer-events: none;
}

.custom_select .select_items.ct_sc2 {
  top: 44px;
  border: 1px solid #C8D2E4;
}

.form_type .info_box1.qna_text span {
  position: absolute;
  top: 88px;
  right: 16px;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: right;
  color: #C8D2E4;
}

.form_type .info_box1.qna_text textarea {
  width: 100%;
  height: 122px;
  border: 1px solid #E0E6F1;
  padding: 12px 0;
  text-indent: 16px;
  font-size: 14px;
}

.form_type .btn_application.m_top {
  margin-top: 32px;
}

.form_type .info_box1.qna_text {
  position: relative;
  border-radius: 6px;
}

.form_type .info_box1.qna_text .byte {
  position: absolute;
  top: 88px;
  right: 16px;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: right;
  color: #C8D2E4;
}

.filebox input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.filebox label {
  display: inline-block;
  padding: 9px 14px;
  color: #8694B1;
  font-size: inherit;
  line-height: normal;
  vertical-align: middle;
  background-color: #ffffff;
  cursor: pointer;
  border: 1px solid #E0E6F1;
  border-bottom-color: #E0E6F1;
  border-radius: .25em;
}

/* named upload */
.filebox .upload-name {
  display: inline-block;
  padding: 9px 14px;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #E0E6F1;
  border-bottom-color: #E0E6F1;
  border-radius: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  font-size: 14px;
  height: 40px;
}

.filebox .upload-name.before {
  border: 1px solid #E0E6F1;
  background: none;
  cursor: default;
  border-bottom-color: #E0E6F1;
  color: #8694B1 !important;
}

.filebox .upload-name.i_trash.after {
  border: 1px solid #E0E6F1;
}

.filebox .upload-name.i_trash {
  border: 1px solid #252B37;
  border-bottom-color: #252B37;
  background: url('/img/icon/icon_trash.png') no-repeat center right 16px;
}

.form_type .info_box1 .key_box {
  padding: 9px 14px;
  border: 1px solid #E0E6F1;
  width: 100%;
  background: #F7F9FD;
  border-radius: 6px;
}

.form_type .info_box1 .key_box p {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #67748E;
  word-break: break-all;
}

.form_type .info_line .btn_keydeltype {
  margin-right: auto;
}

.form_type .info1.info_mypage {
  padding-top: 28px;
}

.form_type .info1.info_mypage2 {
  padding-top: 12px;
}

/*이용약관, 개인정보처리방침*/
.form_type .info1.ts_top {
  padding-top: 0;
}

.terms_contents {
  display: block;
  color: #252B37;
  border: 1px solid #E0E6F1;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 12px;
}

.terms_contents h3 {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
}

.terms_contents .ts_tit {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  margin-top: 20px;
}

.terms_contents p {
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}

/* 팝업 */
.popup_total {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  overflow: auto;
  display: block;
  overflow-y: scroll;
  scrollbar-width: none;  /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  max-height: 100vh;
}

.popup_total::-webkit-scrollbar {
  display: none;  /* Chrome, Safari, Opera */
}

.popup_total .pop_dim {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0;
  border-radius: 2px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.popup_total .inner {
  max-height: 100vh;
}

.popup_total .popup {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgb(0, 0, 0, 0.4);
}

.popup_total .popup-content {
  background: #fff;
  width: 328px;
  padding: 18px 16px 24px 16px;
  border-radius: 8px;
  position: relative;
  margin: 20px 0;
}

.popup_total .popup-content h2 {
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  padding-bottom: 14px;
  color: #252B37;
  cursor: default;
}

.popup_total .popup-content .pop_text {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
  cursor: default;
}

#wrap .pop_text {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
  cursor: default;
}

.popup_total .popup-content .pop_text.l_text {
  text-align: left;
  padding-top: 25px;
  padding-bottom: 4px;
  font-weight: 700;
  cursor: default;
}

#wrap .pop_text.l_text {
  text-align: left;
  padding-top: 25px;
  padding-bottom: 4px;
  font-weight: 700;
  cursor: default;
}

.popup_total .popup-content .pop_text.l_text2 {
  text-align: left;
  padding-top: 16px;
  font-weight: 700;
  cursor: default;
}

#wrap .pop_text.l_text2 {
  text-align: left;
  padding-top: 16px;
  font-weight: 700;
  cursor: default;
}

.popup_total .popup-content .pop_text.l_text2.pt_top {
  padding-top: 0;
  cursor: default;
}

.popup_total .popup-content .pop_textbox {
  position: relative;
  padding-top: 8px;
}

.popup_total .popup-content .pop_textbox span {
  position: absolute;
  top: 97px;
  right: 16px;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: right;
  color: #C8D2E4;
}

.popup_total .popup-content .pop_btnbox {
  margin-top: 24px;
}

.popup_total .popup-content .btn_close {
  position: absolute;
  top: 20px;
  right: 16px;
}

.popup_total .popup-content .btn_close img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.popup_total .pop_btnbox button {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  border-radius: 6px;
}

.popup_total .popup_button_gray {
  width: 100px;
  height: 40px;
  background: #EDF1F7;
  color: #0114A7;
  border: none;
  cursor: pointer;
  margin-right: 2px;
}

.popup_total .popup_button_blue {
  width: 100px;
  height: 40px;
  background: #0114A7;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-left: 2px;
}

.popup_total .popup-content .inner_txt {
  border-bottom: 1px solid #C8D2E4;
}

.popup_total .popup-content .pop_grid {
  padding: 0 4px;
}

.popup_total .popup-content .pop_grid .list-dot.list {
  padding-top: 30px;
  margin-top: 0;
}

.popup_total .inner_button {
  margin-left: 0;
}

.popup-content .infor {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  padding: 8px 0 0 10px;
  color: #4D596F;
}

.popup-content .application_box {
  display: table;
  padding-top: 24px;
}

.popup-content .application_box .title {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
  display: table-cell;
  cursor: default;
}

.popup-content .application_box .title_box {
  display: table-cell;
  padding-left: 8px;
  width: 100%;
}

.popup_total .popup-content .pop_text.mo_text {
  padding: 24px 0 0 0;
  font-weight: 400;
}

/*main slick*/
.slider-container {
  max-width: 100%;
  /* width: 100vw; */
  margin: 0 auto;
}

/* .slider-container {width: 100%;max-width: 360px;margin: 0 auto;} */
.slider-container .slick_txt {
  transform: translate(0px, -16%);
  margin: 0 24px;
  z-index: 20;
  position: absolute;
  top: 60px;
  left: 0;
}

.slider-container .slick_txt p {
  font-family: 'Pretendard';
  font-size: 28px;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
}

.slider-container .slick_txt p span {
  font-family: 'Pretendard';
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
}

.slider-container .slider {
  position: relative;
}

.slider-container .slider .slider_box {
  position: relative;
  background-color: #1728C4;
  text-align: right;
}

.slider-container .slider img {
  /* width: 100%;
    max-height: 480px;
    object-fit: cover; */
  height: 260px;

  margin: 0;
  /* width: 360px; */
  display: inline-block;

}

.slider-container .slick-prev,
.slider-container .slick-next {
  display: none !important;
}

.slider-container .slick-dots {
  position: absolute;
  top: 248px;
  left: 24px;
  display: flex !important;
  list-style: none;
  padding: 0;
}

.slider-container .slick-dots li {
  margin: 0 13px 0 0;
}

.slider-container .slick-dots button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #E0E6F1;
  border-radius: 50%;
}

.slider-container .slick-dots li.slick-active button {
  opacity: 1;
  width: 48px;
  height: 10px;
  background: #B6F23D;
  border-radius: 5px;
}

.search_type {
}

.search_type .search-container {
  display: flex;
  margin: -25px 16px;
  position: relative;
}

.search_type .search-box {
  width: 100%;
  padding: 14px 32px;
  font-size: 16px;
  border: 2px solid #B6F23D;
  border-radius: 40px;
  outline: none;
  box-shadow: 0px 2px 2px 0px #414E651A;
}

.search_type .search-button {
  width: 24px;
  height: 24px;
  background: url('/img/icon/icon_main_search.png') no-repeat center center;
  background-size: 24px 24px;
  border: none;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 32px;
}

.slider-container .search-box {
  width: 100%;
  font-size: 16px;
  height: 52px;
}

.search-box::placeholder {
  color: #8694B1;
  font-size: 16px;
}

.search-box::-webkit-input-placeholder {
  color: #8694B1;
}

/* Chrome/Opera/Safari */
.search_type .search-box:focus {
  border-color: #B6F23D;
  outline: none;
}

.main-container {
}

.main-container .hashtag ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  padding: 40px 36px 0 36px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.main-container .hashtag ul li {
  white-space: nowrap;
  display: inline-block;
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
}

.main-container .main_con .con_tit {
  margin: 0 auto;
  text-align: center;
}

.main-container .main_con .con_img {
  margin: 16px auto 0 auto;
  text-align: center;
}

.main-container .main_con .con_img img {
  width: auto;
  height: 215px;
}

.main-container .main_con .con_txt {
  text-align: center;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  cursor: default;
  color: #252B37;
  width: 308px;
  margin: 32px auto 0 auto;
}

.main-container .main_con .con_txt span {
  font-family: 'Pretendard';
  cursor: default;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #0114A7;
}

.main_con .main_btn {
  border-radius: 8px;
  position: relative;
  padding: 0 16px;
  margin-top: 20px;
  margin-bottom: 32px;
}

.main_con .main_btn a span {
  position: relative;
}

.main_con .main_btn a span:after {
  content: '';
  display: block;
  clear: both;
  background-image: url('/img/icon/icon_arrow_right.png');
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: -24px;
}

.main_con .main_btn a.m_btn {
  margin-top: 8px;
}

.main_keyword {
  background: #fff;
  padding: 64px 16px 56px 16px;
}

.main_keyword .no_date {
  margin: 0 auto;
  text-align: center;
  padding-top: 120px;
}

.main_keyword .no_date img {
  width: 96px;
  height: 97px;
}

.main_keyword .no_date .text {
  padding-bottom: 120px;
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #8694B1;
}

.main_keyword .api_tit {
  overflow: hidden;
}

.main_keyword .api_tit h2 {
  float: left;
  font-family: 'Pretendard';
  font-size: 20px;
  cursor: default;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
}

.main_keyword .api_tit .total_view {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: right;
  color: #252B37;
  text-decoration: underline;
}

.main_keyword .api_keyword {
  position: relative;
  padding-top: 16px;
}

.main_keyword .api_keyword .keyword_list li a {
  position: relative;
  background: #fff;
  border: 1px solid #C8D2E4;
  display: inline-block;
  padding: 0 17px;
  border-radius: 17px;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #020616;
  height: 32px;
  margin-top: 6px;
}

.main_keyword .api_keyword
.keyword_list li a.active,
.main_keyword .api_keyword
.keyword_list lia.active:hover,
.main_keyword .api_keyword
.keyword_list li
a.active:focus {
  color: #fff;
  background: #0114A7;
  text-decoration: none;
  display: inline-block;
  /*border-radius: 17px;*/
}

.main_keyword .api_keyword .keyword_list li a:hover,
.main_keyword .api_keyword .keyword_list li a:focus {
  color: #fff;
  background: #0114A7;
  text-decoration: none;
  display: inline-block;
  border-radius: 17px;
}

.api_keyword {
  position: relative;
  width: 100%;
}

.keyword_list {
  display: flex;
  flex-wrap: nowrap; /* 기본적으로 한 줄로 표시 */
  overflow: hidden; /* 가로 스크롤 없애기 */
  padding: 0;
  margin: 0;
  list-style-type: none; /* 기본 목록 스타일 제거 */
  transition: height 0.3s ease; /* 높이 전환 효과 */
  position: relative;
}

.keyword_list.expanded {
  flex-wrap: wrap; /* '더보기' 클릭 시 여러 줄로 펼치기 */
}

.keyword_list li {
  margin-right: 4px; /* 항목 간 간격 설정 */
  white-space: nowrap; /* 항목이 줄 바꿈 없이 한 줄로 표시되도록 설정 */
}

.keyword_list::after {
  content: ''; /* 비어 있는 컨텐츠 생성 */
  position: absolute;
  top: 6px;
  right: 0;
  width: 73px; /* 그라디언트 너비 */
  height: 32px; /* 전체 높이 */
  background: linear-gradient(90deg, rgba(237, 241, 247, 0) 0%, #EDF1F7 36.76%);
  pointer-events: none; /* 그라디언트에 클릭이 전달되지 않도록 설정 */
  display: none; /* 기본적으로 숨김 상태 */
}

.keyword_list.scrolled::after {
  display: block; /* 스크롤이 있을 때 그라디언트 표시 */
}

.more_type {
  position: absolute;
  top: 21px;
  right: 0;
}

.showmore img {
  transition: transform 0.3s ease; /* 회전 애니메이션 효과 */
}

.showmore.rotated img {
  transform: rotate(180deg); /* 이미지 회전 */
}


.api_info_box {
  background: #fff;
  /* box-shadow: 0px 4px 6px -4px #414E651A; */
  box-shadow: 0px 10px 15px -3px #414E651A;
  border-radius: 20px;
  margin-top: 16px;
  cursor: pointer;
  padding: 28px 20px;
  border: 4px solid transparent;
}

.api_info_box:hover {
  border: 4px solid #1728C4;
  padding: 28px 20px;
}

.api_info_container {
  margin-top: 28px;
}

.api_info_container .ser_result {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #000;
}

.api_info_container .ser_result span {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: #140064;
}

.api_info_container.card_top {
  margin-top: 20px;
}

.api_info_box .api_list .txt1 {
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
  width: 150px;
}

.api_info_box:hover .txt1 {
  color: #0114A7;
}

.api_info_box .api_list .txt1:hover {
  color: #0051A4;
}

.api_info_box .api_list .txt2 {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #67748E;
  margin-top: 8px;
}

.api_info_box .api_img {
  text-align: right;
}

.tiding_box {
  padding: 56px 24px 56px 24px;
}

.api_tiding .api_tit h2 {
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  cursor: default;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
}

.api_tiding .api_tit .total_view {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
  text-decoration: underline;
  padding-top: 12px;
  padding-bottom: 12px;
}

.api_tiding .api_tiding_list li {
  display: table;
  padding: 20px 0;
  border-bottom: 1px solid #E0E6F1;
  width: 100%;
}

.api_tiding .api_tiding_list li p {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: #252B37;
  width: 85%;
  display: table-cell;
}

.api_tiding .api_tiding_list li span {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  cursor: default;
  text-align: left;
  color: #00000066;
  display: table-cell;
  vertical-align: middle;
  width: 15%;
}

.api_info li {
  background: #EDF1F7;
  border-radius: 16px;
  padding: 10px;
  margin-top: 16px;
  position: relative;
  cursor: pointer;
}

.api_info li a {
  display: block;
  text-decoration: none;
  margin-left: 10px;
}

.api_info li:first-child {
  margin-top: 24px;
}

.api_info li p {
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
}

.api_info li span {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #4D596F;
}

.api_info .img1 img {
  position: absolute;
  top: -15px;
  right: 24px;
  width: 80px;
  height: 66px;
}

.api_info .img2 img {
  position: absolute;
  top: 8px;
  right: -8px;
  width: 80px;
  height: 78px;
}

.api_info .img3 img {
  position: absolute;
  top: 45px;
  right: 24px;
  width: 80px;
  height: 65px;
}

.api_count {
  padding: 0 16px;
}

.api_total_box {
  background: url(/img/bg_api.png) no-repeat 0 0;
  background-size: 100% 344px;
  padding: 48px 24px;
  border-radius: 24px;
  margin: 0 auto -85px auto;
  position: relative;
  z-index: 1;
}

.api_total_box .txt {
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 400;
  cursor: default;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}

.api_total_box .txt em {
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 700;
  cursor: default;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}

.api_total {
  background: rgba(255, 255, 255, 0.2);
  padding: 26px 11px;
  border-radius: 16px;
}

.api_total ul {
  display: table;
  margin: 0 auto;
}

.api_total li {
  display: table-cell;
  text-align: center;
  padding-right: 12px;
  width: 78px;
}

.api_total li:last-child {
  padding-right: 0;
}

.api_total li p {
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;

  color: #fff;
}

.api_total li span {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;

  color: #fff;
}

.api_total li img {
  width: 48px;
  height: 48px;
}

#main_bg {
  background: #252B37;
  height: 110px;
}

.keyword_list .number {
  position: absolute;
  top: -7px;
  right: -7px;
  background: #E23A32;
  color: #fff;
  border-radius: 16px;
  width: 23px;
  height: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  padding: 1px 4px;
  line-height: 21px;
}

.keyword_list a:hover .number {
  display: flex;
}

.keyword_list a.active
.number {
  display: flex;
}

.keyword_list a:hover {
  display: flex;
}

.keyword_list a.active:hover
.number {
  display: flex;
}

/*API*/
.api_service_type {
  position: relative;
  background-color: #1728C4;
  text-align: right;
}

.api_service_type img {
  width: 100%;
  max-width: 360px;
  height: 176px;
  margin: 0 auto;
  display: inline-block;
}

.api_service_type .service_txt {
  position: absolute;
  top: 32px;
  left: 24px;
}

.api_service_type .service_txt p {
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  cursor: default;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
}

.api_service_type .service_txt span {
  font-family: 'Pretendard';
  cursor: default;
  font-size: 14px;
  font-weight: 100;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
  padding-top: 16px;
  display: inline-block;
}

.search_type2 .search-container2 {
  display: flex;
  /* margin: -25px 16px; */
  position: relative;
  margin: 0 auto;
  justify-content: center;
}

.search_type2 .search-box2 {
  width: 100%;
  padding: 14px 32px;
  font-size: 16px;
  border: 2px solid #0114A7;
  border-radius: 40px;
  outline: none;
  box-shadow: 0px 2px 2px 0px #414E651A;
  line-height: 20px;
}

.search_type2 .search-box2::placeholder {
  font-size: 16px;
  color: #252B37;
}

.search_type2 .search-button2 {
  width: 24px;
  height: 24px;
  background: url('/img/icon/icon_main_search.png') no-repeat center center;
  background-size: 24px 24px;
  border: none;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 32px;
}

.slider-container2 .search-box2 {
  width: 100%;
  font-size: 16px;
  height: 52px;
}

.search-box2::placeholder {
  color: #8694B1;
  font-size: 16px;
}

.search-box2::-webkit-input-placeholder {
  color: #8694B1;
}

/* Chrome/Opera/Safari */
.search_type2 .search-box2:focus {
  border-color: #0114A7;
  outline: none;
}

.api_inner .main_keyword {
  background: #fff;
  padding: 0;
}

.api_inner .api_box {
  border: 1px solid #E0E6F1;
  border-radius: 20px;
  margin-top: 16px;
}

.api_inner .api_info_box {
  /* border: 1px solid #E0E6F1; */
  box-shadow: 0px 4px 6px -4px #414E651A;
  border-radius: 20px;
  margin-top: 16px;
  background: #fff;
  border: 4px solid transparent;
}

.api_inner .api_info_box:hover {
  border: 4px solid #1728C4;
}

.api_inner .api_info_box:nth-child(1) {
  margin-top: 0;
}

.api_inner .api_keyword {
  position: relative;
  padding-top: 40px;
}

.api_inner .api_keyword .keyword_list li {
  margin-right: 6px;
  white-space: nowrap;
}

.api_inner .api_keyword .more_type {
  position: absolute;
  top: 45px;
  right: 0;
}

.api_inner .api_keyword .keyword_list::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 11px;
  width: 42px;
  height: 32px;
  background: linear-gradient(90deg, rgba(237, 241, 247, 0) 0%, #EDF1F7 36.76%);
  pointer-events: none;
}

.api_inner .api_keyword .keyword_list.grt::after {
  right: -1px;
  width: 81px;
  height: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 14.71%, rgba(255, 255, 255, 0.8) 44.12%, #FFFFFF 73.53%);
}

.lnb {
  display: none;
}

.sub_title4 {
  padding: 24px 16px 0 16px;
}

.sub_title4 h2 {
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #000;
}

.sub_title4 .infotxt {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #222222;
  margin-top: 4px;
  cursor: default;
}

.api_stit.stit {
  margin-top: 32px;
}

.api_stit h3 {
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #020616;
  cursor: default;
}

.api_stit .infor {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #020616;
  padding-top: 4px;
}

.api_stit ul {
  background: #F7F9FD;
  padding: 12px 12px 12px 22px;
  margin-top: 8px;
  border-radius: 8px;
}

.api_stit ul .tit.m_top {
  margin-top: 24px;
}

.api_stit ul li {
  margin-top: 8px;
}

.api_stit .tb_top {
  margin-top: 32px;
}

.api_stit .tb_top2 {
  margin-top: 0;
}

.api_stit.api_dot ul li p {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #4D596F;
  cursor: default;
}

.api_stit.stit ul {
  padding: 12px 12px 12px 28px;
}

.api_stit.stit ul li {
  margin-top: 16px;
}

.api_stit.stit ul li .dash {
  padding: 0;
}

.api_stit.stit ul li .dash li {
  margin-top: 0;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #4D596F;
}

.api_stit.api_star ul li p {
  position: relative;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #4D596F;
}

.api_stit.api_star ul li p:after {
  content: '*';
  width: 12px;
  height: 12px;
  font-size: 24px;
  position: absolute;
  left: -17px;
  top: 3px;
}

.api_stit.api_star ul li span {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #4D596F;
}

.api_data {
  background: #F7F9FD;
  margin-top: 12px;
  padding: 12px;
}

.api_data dl {
  position: relative;
  padding-top: 16px;
}

.api_data dl dt {
  position: absolute;
  top: 16px;
  left: 0;
}

.api_data dl dd {
  padding-left: 18px;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #4D596F;
}

.api_stit ul li:first-child {
  margin-top: 0;
  cursor: default;
}

.api_stit.stit .api_data li {
  position: relative;
}

.api_stit.stit .api_data li p {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #4D596F;
}

.api_stit.stit .api_data li img {
  position: absolute;
  top: 3px;
  left: -18px;
}

.api_stit .api_sauce {
  background: #252B37;
  padding: 16px 24px;
  margin-top: 8px;
  border-radius: 12px;
  min-height: 100%;
}

.api_stit .api_sauce p {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
}

.api_stit.api_sc {
  margin-top: 32px;
}

.api_stit.api_sc2 {
  margin-top: 56px;
}

.api_stit.api_sc2_1 {
  margin-top: 0;
}

.api_stit.api_sc3 {
  margin-top: 0;
}

.api_stit.api_sc4 {
  margin-top: 32px;
}

.api_stit.api_sc5 {
  margin-top: 12px;
}

.api_stit.api_sc4_1 {
  margin-top: 24px;
}

.api_stit.api_sc ul {
  background: 0 none;
  padding: 0;
}

.api_stit.api_sc ul li .tit {
  position: relative;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: #140064;
  padding-left: 8px;
}

.api_stit.api_sc ul li .tit:after {
  content: '';
  width: 4px;
  height: 4px;
  background: #140064;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.api_btn {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.api_btn a {
  width: 100%;
}

.api_btn a.gray {
  margin-left: 0;
}

.api_table {
  border-top: 2px solid #252B37;
  margin-top: 8px;
  table-layout: fixed;
  width: 100%;
  text-align: center;
}

.api_table tbody tr th,
.api_table tbody tr td {
  border-bottom: 1px solid #E0E6F1;
  cursor: default;
}

.api_table tbody tr th {
  background: #EDF1F7;
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #252B37;
  padding: 15px 0;
  cursor: default;
}

.api_table tbody tr td {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
  padding: 13px 12px;
  cursor: default;
}

.api_stit.api_tb_type {
  overflow-x: auto;
}

.api_stit .api_table.tb_col thead th {
  background: #EDF1F7;
  text-align: center;
  padding: 15px 0;
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #252B37;
  border-right: 1px solid #E0E6F1;
  cursor: default;
}

.api_stit .api_table.tb_col tbody td {
  text-align: center;
  padding: 13px 0;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
  border-right: 1px solid #E0E6F1;
}

.api_stit .api_table.tb_col tbody td.txtl {
  padding-left: 12px;
}

.api_stit .api_table.tb_col thead th:last-child,
.api_stit .api_table.tb_col tbody td:last-child {
  border-right: 0 none;
  cursor: default;
}

.api_stit h4.api_dot {
  position: relative;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: #140064;
  padding: 8px 0 0 8px;
}

.api_stit h4.api_dot:after {
  content: '';
  width: 4px;
  height: 4px;
  background: #140064;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 16px;
}

.api_tabs {
  width: 100%;
  max-width: 100%;
}

.api_tabs.m_tabs {
  margin-top: 32px;
}

.api_tabs .api_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 14px;
}

.api_tabs .api_nav li {
  width: 50%;
}

.api_tabs .api_nav li a {
  display: block;
  position: relative;
  padding: 12px 0;
  color: #4D596F;
  z-index: 0;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration: none;
  border-bottom: 2px solid #C8D2E4;
}

.api_tabs .api_nav li a span {
  display: block;
}

.api_tabs .api_nav li a span.text {
  padding-left: 2px;
}

.api_tabs .api_nav li.active a {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  color: #0114A7;
  border-bottom: 2px solid #0114A7;
  background: #fff;

}

.api_tabs .api_tab .tab.active {
  display: block;
}

.api_stit.structure_box img {
  width: 100%;
}

.api_stit.structure_box .structure_img {
  margin-top: 16px;
}

/* 마이페이지 */
.box.pop_arrow a:nth-child(1) {
  margin-right: 8px;
}

.dashboard_content {
  padding: 24px 16px 0 16px;
}

.dashboard_content .month_date {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: right;
  color: #252B37;
  margin-bottom: 8px;
  cursor: default;
}

.dashboard_box {
  width: 100%;
  display: table;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0px 4px 6px -1px #414E651A;
}

.dashboard_box .icon1 {
  display: table;
}

.dashboard_box .icon1 img {
  margin-right: 10px;
}

.dashboard_box .icon1 .tit {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #020616;
  cursor: default;
}

.dashboard_box .num {
  display: table-cell;
  vertical-align: middle;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #020616;
  text-align: right;
  cursor: default;
}

.dashboard_box .num span {
  margin: 0;
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: #020616;
}

.dashboard_box .api_use {
  display: table;
  width: 100%;
}

.dashboard_box .api_use li {
  margin-top: 13px;
  cursor: default;
}

.dashboard_box .api_use li:first-child {
  margin-top: 17px;
  cursor: default;
}

.dashboard_box .api_use .use_box {
  display: table;
}

.dashboard_box .api_use .use_box .tit_m {
  display: table-cell;
  width: 100%;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #3B4659;
  vertical-align: middle;
  padding-left: 4px;
  cursor: default;
}

.dashboard_box .api_use .use_box .num_m {
  display: table-cell;
  text-align: right;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #3B4659;
  vertical-align: middle;
  cursor: default;
}

.dashboard_box .api_use .use_box img {
  width: 24px;
  height: 24px;
  vertical-align: top;
}

.dashboard_box .api_use .use_box .num_m span {
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: right;
  color: #020616;
  cursor: default;
}

.dashboard_box .api_use_num {
  margin-top: 16px;
}

.dashboard_box .api_use_num li {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #252B37;
  border-bottom: 1px solid #E0E6F1;
  padding: 8px 0;
  cursor: default;
}

.dashboard_box .api_use_num li:first-child {
  padding-top: 0;
  cursor: default;
}

.dashboard_box .api_use_num li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  cursor: default;
}

.dashboard_box .api_use_num li img {
  width: 20px;
  height: 20px;
}

.dashboard_box .api_use_num li span {
  margin-left: 6px;
}

.dashboard_box2 {
  width: 100%;
  background: #ffffff;
  padding: 24px 20px;
  box-shadow: 0px 4px 6px -1px #414E651A;
  border-radius: 16px;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}

.dashboard_box2 .form_type .info1.w130 {
  width: 130px;
}

.dashboard_box2 h3 {
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #140064;
  cursor: default;
}

.dashboard_box2 .table_type {
  overflow-x: auto;
  margin-top: 16px;
}

.dashboard_box2 .table_type.api_tb .table_col {
  border-top: 2px solid #4D596F;
}

.dashboard_box2 .table_type .table_col {
  table-layout: fixed;
  width: 100%;
  text-align: center
}

.dashboard_box2 .table_type .table_col.table_min {
  min-width: 700px;
}

.dashboard_box2 .table_type .table_col thead th {
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #252B37;
  background: #EDF1F7;
  height: 48px;
  border-bottom: 1px solid #E0E6F1;
  border-right: 1px solid #E0E6F1;
  cursor: default;
}

.dashboard_box2 .table_type .table_col tbody td {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
  height: 48px;
  border-bottom: 1px solid #E0E6F1;
  border-right: 1px solid #E0E6F1;
  cursor: default;
}

.dashboard_box2 .table_type .table_col thead th:last-child,
.dashboard_box2 .table_type .table_col tbody td:last-child {
  border-right: 0 none;
  cursor: default;
}

.tab_type {
  width: 100%;
  margin: 0 auto;
}

.tab_type .tab_link {
  overflow: hidden;
  position: absolute;
  top: 74px;
  right: 20px;
}

.tab_type .tab_link li {
  float: left;
  margin: 0;
  cursor: pointer;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #4D596F;
}

.tab_type .tab_link li span {
  padding: 0 12px;
  height: 12px;
  color: #C8D2E4;
  font-weight: normal;
}

.tab_type .tab_link li:last-child {
  border-right: 0 none;
}

.tab_type .tab_link li.active {
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #252B37;
}

.tab_type .tab_content {
  border-top: none;
}

.tab_type .tab_pane {
  display: none;
}

.tab_type .tab_pane.active {
  display: block;
}

/* 달력 */
.daterangepicker .drp-buttons {
  padding: 16px 24px 24px 24px !important;
}

.daterangepicker .drp-buttons .btn.btn-default {
  background: #EDF1F7;
  color: #0114A7;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 4px !important;
  font-weight: bold;
  padding: 5px 21px;
  background: #0114A7;
  width: 64px !important;
  height: 28px !important;
  line-height: 24px;
  font-family: 'Pretendard';
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  border-radius: 6px;
}

.daterangepicker .calendar-table td {
  font-size: 14px !important;
}

.daterangepicker td.start-date {
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
}

.daterangepicker td.end-date {
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
}

/*API 포탈안내*/
.api_content {
  margin-top: 56px;
}

.api_portal_info1 {
  background: url(/img/bg_portal_info02.png) no-repeat 0 0;
  background-size: 100% 308px;
  height: 308px;
  padding: 64px 0;
}

.api_portal_info1 .title {
  font-family: 'Pretendard';
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #140064;
  width: 287px;
  margin: 0 auto;
}

.api_portal_info1 .title span {
  display: inline-block;
  cursor: default;
}

.api_portal_info1 .title span:nth-child(2) {
  padding-left: 89px;
  cursor: default;
}

.api_portal_info1 .detail {
  font-family: 'Pretendard';
  font-size: 14px;
  cursor: default;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #140064;
  margin: 0 auto;
  padding-top: 12px;
}

.api_portal_info2 {
  background: url(/img/bg_portal_info03.png) no-repeat 0 0;
  background-size: 100% 339px;
  height: 339px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 0;
}

.api_portal_info2 img {
  width: 47px;
  height: 75px;
}

.api_portal_info2 .detail {
  font-family: 'Pretendard';
  font-size: 24px;
  cursor: default;
  font-weight: 100;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}

.api_portal_info2 .detail span {
  font-family: 'Pretendard';
  cursor: default;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #B6F23D;
}

.api_portal_info3 {
  background: url(/img/bg_portal_info05.png) no-repeat 0 0;
  background-size: 100% 489px;
  height: 489px;
  padding: 64px 32px 72px 32px;
}

.api_portal_info3 .title {
  font-family: 'Pretendard';
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  cursor: default;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  width: 214px;
  margin: 0 auto;
}

.api_portal_info4 {
  background: #D1ECFF;
  padding: 7px 0 64px 0;
  margin: 0 auto;
  text-align: center;
}

.api_portal_info4 img {
  width: 230px;
  height: 287px;
}

.api_portal_info4 .title {
  font-family: 'Pretendard';
  font-size: 28px;
  font-weight: 700;
  cursor: default;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  padding-top: 28px;
}

.api_portal_info4 .detail {
  font-family: 'Pretendard';
  font-size: 16px;
  cursor: default;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  padding-top: 16px;
}

.detail_box {
  position: relative;
  width: 296px;
  margin: 0 auto;
}

.detail_box .detail01 {
  position: relative;
}

.detail_box .detail01 img:first-child {
  position: absolute;
  top: -46px;
  left: -18px;
  width: 87px;
  height: 85px;
}

.detail_box .detail01 img:last-child {
  position: absolute;
  top: 90px;
  right: -30px;
  z-index: 1;
  width: 122px;
  height: 112px;
}

.detail_box .detail02 {
  position: relative;
}

.detail_box .detail02 img {
  position: absolute;
  top: 96px;
  left: 96px;
  width: 65px;
  height: 65px;
}

.api_portal_info3 .detail01 {
  background: url(/img/bg_portal_sinfo01.png) no-repeat 0 0;
  background-size: 100% 128px;
  height: 128px;
  font-family: 'Pretendard';
  font-size: 16px;
  cursor: default;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  padding: 40px 0;
  margin-top: 46px;
}

.api_portal_info3 .detail02 {
  background: url(/img/bg_portal_sinfo02.png) no-repeat 0 0;
  background-size: 100% 128px;
  height: 128px;
  font-family: 'Pretendard';
  cursor: default;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  padding: 40px 0;
  margin-top: 19px;
}

.api_guide_count {
  padding: 56px 16px;
}

.api_guide_count .api_guide .title {
  font-family: 'Pretendard';
  font-size: 28px;
  font-weight: 700;
  cursor: default;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
}

.api_guide_count .api_guide .detail {
  font-family: 'Pretendard';
  cursor: default;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  padding-top: 8px;
}

.api_guide_count li {
  padding: 24px 0;
  border: 1px solid #C8D2E4;
  margin: 16px auto 0 auto;
  text-align: center;
  border-radius: 16px;
  background: #fff;
}

.api_guide_count li:nth-child(1) {
  margin-top: 32px;
}

.api_guide_count li .step {
  background: #140064;
  font-family: 'Pretendard';
  font-size: 14px;
  cursor: default;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  padding: 5px 16px;
  width: 80px;
  height: 32px;
  border-radius: 16px;
  margin: 12px auto 0 auto;
}

.api_guide_count li .title {
  font-family: 'Pretendard';
  cursor: default;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #252B37;
  padding-top: 8px;
}

.api_guide_count li .list_check {
  margin: 0 auto;
  padding-top: 12px;
  display: inline-block;
}

.api_guide_count li .list_check p {
  position: relative;
  font-family: 'Pretendard';
  cursor: default;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #3B4659;
  padding-left: 20px;
}

.api_guide_count li .list_check p:after {
  content: '';
  display: block;
  cursor: default;
  clear: both;
  background-image: url(/img/icon/icon_check.png);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 0;
}

/* swagger */
.swagger_title {
}

.swagger_title .title {
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #000;
  cursor: default;
}

.swagger_title .text {
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #222;
  padding: 4px 0 21px 0;
}

.swagger_infor {
  background: none;
  margin-top: 15px;
}

.swagger_infor .text {
  position: relative;
  padding: 0 0 0 16px;
  font-family: 'Pretendard';
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #4D596F;
  cursor: default;
}

.swagger_infor .text::after {
  content: '*';
  width: 12px;
  height: 12px;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 3px;
  cursor: default;
}

/* 새로운 버튼 그룹 스타일 */
.qna_btn_group {
  width: 100%;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  position: relative;
}

.qna_btn_group::before,
.qna_btn_group::after {
  display: none !important;
  content: none !important;
}

/* PC 버전 버튼 스타일 */
@media (min-width: 1280px) {
  .qna_btn_group .btn_edit {
    width: 72px;
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 27px;
    color: #0114A7;
    border-color: #EDF1F7;
    background: #EDF1F7;
    letter-spacing: -0.2px;
    font-family: 'Pretendard';
    font-weight: 400;
    border-radius: 3px;
    display: inline-block;
  }

  .qna_btn_group .btn_delete {
    width: 72px;
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 27px;
    color: #E23A32;
    border-color: #FFE5E0;
    background: #FFE5E0;
    letter-spacing: -0.2px;
    font-family: 'Pretendard';
    font-weight: 400;
    border-radius: 3px;
    display: inline-block;
  }
}

/* 기본 버튼 스타일 */
.qna_btn_group .btn_edit,
.qna_btn_group .btn_delete {
  height: 32px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 27px;
  letter-spacing: -0.2px;
  font-family: 'Pretendard';
  font-weight: 400;
  border-radius: 1px;
  display: inline-block;
}

.qna_btn_group .btn_edit {
  color: #0114A7;
  background: #EDF1F7;
  border-color: #EDF1F7;
}

.qna_btn_group .btn_delete {
  color: #E23A32;
  background: #FFE5E0;
  border-color: #FFE5E0;
}

@media all and (min-width: 768px) {
  .slider-container .slider img {
    height: 260px;
    max-width: 1344px;
    margin: 0 auto;
  }

  .slider-container .slider .slider_box {
    position: relative;
    background-color: #1728C4;
    text-align: right;
  }

}


@media all and (min-width: 1280px) {
  /* common_checkbox */
  .inp_radio label {
    padding-left: 40px;
  }

  .inp_radio label:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -6px;
    margin-top: 0;
    width: 32px;
    height: 32px;
    background: url(/img/icon/icon_radio_off2.png) 0 0 no-repeat;
    background-size: 32px;
  }

  .inp_radio input:checked + label:before {
    content: '';
    background: url(/img/icon/icon_radio_on2.png) 0 0 no-repeat;
    background-size: 32px;
  }

  .radio_tab_nav .inp_radio input:checked + label:before {
    content: '';
    background: url(/img/icon/icon_radio_on2.png) 0 0 no-repeat;
    background-size: 32px;
  }

  .radio_tab_nav .inp_radio label:before {
    background: url(/img/icon/icon_radio_off2.png) 0 0 no-repeat;
    background-size: 32px;
  }

  /* common */
  .common_textareaType_1 {
    font-family: 'Pretendard';
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    height: 160px;
    padding: 2% 16px;
  }

  .common_textareaType_1.h_textarea {
    height: 128px;
  }

  .common_textareaType_1:focus {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #252B37;
  }

  .common_textareaType_1::placeholder {
    font-size: 18px;
  }

  .common_textareaType_1.f_inp {
    font-size: 16px;
  }

  .common_textareaType_1.f_inp::placeholder {
    font-size: 16px;
  }

  .common_input_type_1 {
    height: 64px;
    font-size: 16px;
    line-height: 64px;
  }

  .common_input_type_1.w_inp {
    width: 52%;
  }

  .common_input_type_1.w_inp2 {
    width: 51%;
  }

  .common_input_type_1.w_inp3 {
    width: 197px;
  }

  .common_input_type_1.w_inp4 {
    width: 100%;
  }

  .common_input_type_1.w_inp5 {
    width: 184px;
  }

  .common_input_type_1.w_inp5.inp {
    width: 234px;
  }

  .common_input_type_1.w_inp6 {
    width: 160px;
  }

  .common_input_type_1.w_inp6.inp {
    width: 210px;
  }

  .common_input_type_1.w_inp7 {
    width: 210px;
  }

  .common_input_type_1.w_inp7.inp {
    width: 258px;
  }

  .common_input_type_1.w_inp8 {
    width: 280px;
  }

  .common_input_type_1.w_inp9 {
    width: 291px;
  }

  .common_input_type_1.w_inp10 {
    width: 140px;
  }

  .common_input_type_1.w_inp11 {
    width: 137px;
  }

  .form_type .info_box1.w_inp4 {
    width: 100%;
  }

  .form_type .info_box1.w_inp5 {
    width: 448px;
  }

  .form_type .info_box1.w_inp6 {
    width: 736px;
  }

  .form_type .info_box1.c_inp .common_input_type_1 {
    color: #252B37;
  }

  .common_input_type_1.h_inp {
    height: 64px;
  }

  .common_input_type_1.h_inp::placeholder {
    font-size: 16px;
  }

  .common_input_type_1.h_inp2 {
    height: 48px;
  }

  .common_input_type_1.h_inp2:focus {
    height: 48px;
  }

  .common_input_type_1.h_inp2::placeholder {
    font-size: 48px;
  }

  .common_input_type_1::placeholder,
  .common_selectType::placeholder {
    border: 0;
    font-size: 16px !important;
    color: #8694B1;
    height: 64px;
    line-height: 64px;
    position: relative;
    top: 1px;
  }

  .common_input_type_1:focus,
  .common-select-type:focus {
    background: #E0E6F1;
    border: 1px solid #E0E6F1;
    font-size: 16px;
    letter-spacing: -0.02em;
    outline: none;
    height: 64px;
    line-height: 64px;
    color: #252B37;
  }

  .common_input_type_1.type-1:focus,
  .common-select-type.type-1:focus {
    background: #fff;
  }

  .input-readonly {
    background-color: #f8f9fa !important;
    cursor: default;
    pointer-events: none !important;
  }

  /* 디자인 셀렉트박스 */
  .custom_select.h_inp {
    height: 48px;
  }

  .custom_select.h_inp2 {
    height: 64px;
  }


  /* btn */
  .common_btn_type_1 {
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    z-index: 0;
  }

  .btn_keydel {
    width: 134px;
    height: 48px;
    padding: 0 12px 0 30px;
    font-size: 16px;
    line-height: 52px;
    color: #E23A32;
    background: #FFE5E0 url(/img/icon/icon_trash4.png) no-repeat 10px center / 20px 20px;
    background-size: 20px;
    background-position: 12px center;
    letter-spacing: -0.2px;
    font-family: 'Pretendard';
    font-weight: 400;
    border-radius: 6px;
  }


  /* formtype */
  .form_type .btn_application {
    margin-top: 32px;
  }

  .form_type .info1 .info_line.info_add {
    display: block;
  }

  .top_info.m_tbom {
    margin: 16px 0;
  }

  .top_info li::before {
    top: 2px;
    cursor: default;
  }

  .dot:after {
    content: '';
    display: block;
    clear: both;
    background: #E23A32;
    width: 6px;
    height: 6px;
    position: absolute;
    top: -1px;
    right: -10px;
    border-radius: 3px;
  }

  .form_type {
    display: contents;
  }

  .form_type .info1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
  }

  .form_type .info1.p_top {
    padding-top: 24px;
  }

  .form_type .info1.p_top0 {
    padding-top: 0;
  }

  .form_type .info1.p_top2 {
    padding-top: 0;
  }

  .form_type .info1.p_top3 {
    padding-top: 40px;
  }

  .form_type .info1.p_top4 {
    padding-top: 32px;
  }

  .form_type .info1.p_top5 {
    padding-top: 8px;
  }

  .form_type .info1.p_top6 {
    padding-top: 16px;
  }

  .form_type .info1.p_top7 {
    padding-top: 0;
  }

  .form_type .info1.p_top8 {
    padding-top: 64px;
  }

  /* .form_type .info1:nth-child(1){padding-top: 0;} */
  .form_type .title {
    display: table-cell;
    width: 32%;
    cursor: default;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #252B37;
  }

  .form_type .title.w_tit {
    width: 231px;
  }

  .form_type .title.w_tit2 {
    width: 174px;
  }

  .form_type .title.tit_add {
    margin-top: -55px;
  }

  .form_type .title.tit_add2 {
    margin-top: -29px;
  }

  .form_type .title.tit_add3 {
    margin-top: 0;
  }

  .form_type .info_line {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: inherit;
    margin-top: 0;
  }

  .form_type .info_line.line_add {
    justify-content: start;
  }

  .form_type .info_line.flex_w {
    flex-wrap: wrap;
  }

  .form_type .info_box1 {
    display: flex;
    /* width: 100%; */
    width: 584px;
    margin-top: 0;
  }

  .form_type .info_box1.qna_text span {
    top: 184px;
    display: none;
  }

  .form_type .info_box1.qna_text textarea::placeholder {
    font-size: 16px;
  }

  .form_type .info_box1.qna_text textarea {
    height: 224px;
    border: 1px solid #E0E6F1;
    border-radius: 8px;
    padding: 12px 0;
    text-indent: 16px;
    font-size: 16px;
  }

  .form_type .info_line .btn_check {
    /* width: 174px; */
    width: 140px;
    margin-left: 8px;
    margin-top: 0;
    z-index: 0;
  }

  .form_type .info_line .btn_check a {
    height: 64px;
    line-height: 64px;
  }

  .form_type .info_line .btn_check .common_btn_type_2.cbt {
    font-size: 18px;
  }

  .form_type .info_box1 .custom_select.ct_sc .select_selected {
    height: 64px;
    line-height: 64px;
    border: 1px solid #E0E6F1;
    font-size: 16px;
  }

  /* .form_type .info_box1 .custom_select.ct_sc .select_selected.disabled{background: #F7F9FD url(/img/icon/icon_select_arrow_down2.png) no-repeat 96% 50%;} */
  .form_type .info_box1 .custom_select.ct_sc .select_selected.disabled {
    background: #F7F9FD;
    color: #8694B1;
  }

  .form_type .info_box1 .custom_select.disabled {
    pointer-events: none;
  }

  .custom_select .select_items.ct_sc2 {
    top: 70px;
    border: 1px solid #C8D2E4;
  }

  .form_type .info_box1 .input {
    width: 100%;
  }

  .form_type .info_box1.info_add2 .input .upload_name {
    height: 64px;
  }

  .form_type .info_box1.qna_text input {
    height: 224px;
  }

  .form_type .info_box1.qna_text input::placeholder {
    margin-top: -50px;
  }

  .form_type .info_box1 input::placeholder {
    font-size: 18px;
  }

  .form_type .info_box1 .w_ip {
    width: 50%;
  }

  .form_type .btn_application .common_btn_type_1 {
    width: 180px;
    height: 72px;
    cursor: pointer;
    line-height: 72px;
    font-size: 20px;
    border-radius: 12px;
  }

  .form_type .info_box1 .dash {
    padding: 0 4px;
    font-size: 20px;
  }

  .form_type .info_box1 .certify_box.w_inp {
    width: 448px;
  }

  .form_type .info_box1 .certify_box .certify_time {
    top: 20px;
    font-size: 20px;
    font-weight: 400;
  }

  .form_type .info_box1.info_add2 {
    display: inline-flex;
    width: 100%;
  }

  .form_type .info1 .info_line label {
    height: 64px;
    line-height: 40px;
  }

  .form_type .info_box1 .special_t {
    font-size: 20px;
    color: #000;
  }

  .form_type .info1 .info_line label {
    font-size: 18px;
  }

  .form_type .btn_application.btn_top2 {
    margin-top: 103px;
  }

  .form_type .btn_application.btn_top3 {
    margin-top: 64px;
  }

  .form_type .btn_application.m_top {
    margin-top: 64px;
  }

  .form_type .info_box1.qna_text {
    position: relative;
    border-radius: 8px;
  }

  .form_type .info_box1.qna_text .byte {
    display: none;
    position: absolute;
    top: 88px;
    right: 16px;
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: right;
    color: #C8D2E4;
  }

  .filebox {
    width: 100%;
    max-width: 584px;
  }

  .filebox input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .filebox label {
    display: inline-block;
    padding: 20px 16px;
    color: #8694B1;
    font-size: inherit;
    line-height: normal;
    vertical-align: middle;
    background-color: #ffffff;
    cursor: pointer;
    border: 1px solid #E0E6F1;
    border-bottom-color: #E0E6F1;
    border-radius: .25em;
  }

  /* named upload */
  .filebox .upload-name {
    display: inline-block;
    padding: 20px 16px;
    font-size: inherit;
    font-family: 'Pretendard';
    line-height: normal;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #E0E6F1;
    border-bottom-color: #E0E6F1;
    border-radius: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    font-size: 16px;
    height: 64px;

  }

  .filebox .upload-name.i_trash {
    border: 1px solid #252B37;
    border-bottom-color: #252B37;
    background: url(/img/icon/icon_trash.png) no-repeat center right 16px;
    padding-right: 12px;
    cursor: pointer;
  }

  .dot_box {
    background: #F7F9FD;
    border-radius: 8px;
    margin-top: 16px;
  }

  .dot_box .list-dot {
    padding: 24px 16px;
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
  }


  .slider-container .slider img {
    height: 435px;
    max-width: 1344px;
    margin: 0 auto;
  }

  .slider-container .slider .slider_box {
    position: relative;
    background-color: #1728C4;
  }

  .m-only {
    display: none !important;
  }

  .pc-only {
    display: block !important;
  }

  .header .home.on {
    display: none;
  }

  /* navigation */
  #navigation {
    background: #17008C;
    width: 100%;
    height: 66px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .navigation {
    display: block;
    position: relative;
    z-index: 100;
    background: #64738b;
    border: solid rgba(255, 255, 255, 0.2);
    border-width: 1px 0;
    justify-content: center;
    align-items: center;
  }

  .navigation.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    border-top: 0;
  }

  .navigation-area {
    display: flex;
    max-width: 100%;
    margin: 0 150px;
    width: 980px;
  }

  .navigation-area.api_navi {
    display: flex;
    max-width: 100%;
    margin: 0 276px;
    width: 1920px;
  }

  .navigation-area > li {
    overflow: hidden;
    position: relative;
    height: 65px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 24px;
  }

  .navigation-area > li > a {
    display: block;
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 65px;
    cursor: pointer;
  }

  .navigation-area > li {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .navigation-area > li:not(:first-child) > a {
    padding-left: 28px;
    padding-right: 28px;
    text-decoration: none;
    cursor: default;
  }

  .navigation-area > li:before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 7px;
    z-index: 0;
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
    display: none;
  }

  .navigation-area > li:first-child {
    width: 84px;
  }

  .navigation-area > li:first-child:before {
    display: none;
  }

  .navigation-area > li:first-child a {
    text-decoration: none;
    position: relative;
    background: url(/img/icon/icon_sub_home.png) no-repeat center;
    width: 100%;
    height: 100%;
    font-size: 0;
    cursor: pointer;
  }

  .navigation-menu.active > a:after {
    content: '';
    transform: translate3d(-50%, -50%, 0) rotate(180deg);
    text-indent: 0;
    background: url(/images/com/navigation_open.png) no-repeat center;
  }

  .navigation-area > li:last-child a:after {
    opacity: 1;
  }

  .navigation-menu .navigation-layer {
    overflow: hidden;
    display: inline-block;
    position: relative;
    top: 0px;
    z-index: -1;
    width: calc(100% + 2px);
    height: 0;
    background: #fff;
    vertical-align: top;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    transition: all .3s 0s ease;
    margin: 0px -1px 0;
    border-top: 1px solid #4f607e;
  }

  .navigation-menu .navigation-layer a {
    display: block;
    padding: 14px 44px 14px 16px;
    font-size: 16px;
    color: #666;
    font-weight: 400;
    line-height: 1;
    text-indent: 0;
    width: 100% !important;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
  }

  .navigation-menu .navigation-layer a:focus {
    color: #196af3;
    background: #ebf2fe;
  }

  .navigation-menu .navigation-layer a:first-child {
    margin-top: 0;
  }

  .navigation-menu:hover {
    overflow: inherit;
  }

  .navigation-menu:hover .navigation-layer {
    z-index: 10;
    opacity: 1;
    overflow: inherit;
  }

  .navigation.fixed + section,
  .navigation.fixed ~ .container section,
  .navigation.fixed + .sub-visual,
  .navigation.fixed + .container .sub-visual {
    margin-top: 50px;
  }

  .navigation-menu .navigation-layer ul {
    height: 0;
    overflow: hidden;
    display: flex;
  }

  .navigation-layer a.more:after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 50%;
    width: 12px;
    height: 12px;
    transition: transform .3s 0s ease;
    transform: translate3d(-50%, -50%, 0);
    text-align: center;
    background: url(/images/com/navigation_close.png) no-repeat center;
    opacity: .3;
  }

  .navigation-layer li:hover > a {
    color: #196af3;
    background: #ebf2fe;
  }

  .navigation-layer ul ul {
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #ddd;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    top: 0;
    left: 216px;
  }

  .navigation-area ul ul ul {
    top: -1px;
    left: 215px;
  }

  .navigation-menu:hover .navigation-layer > ul {
    height: auto;
    z-index: 10;
  }

  .navigation-menu .navigation-layer > ul > li:hover > ul,
  .navigation-menu .navigation-layer > ul > li > ul > li:hover > ul {
    overflow: inherit;
    height: auto;
    opacity: 1;
    z-index: 9;
  }

  .navigation-layer > a {
    display: none !important;
  }

  /* #wrap{background:#E0E6F1;height: 100%;min-height: 100vh;} */
  /*header*/
  .header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    min-width: 100%; /*min-width:1280px;*/
    height: 80px;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
  }

  .header .logo {
    position: absolute;
    width: 206px;
    height: 26px;
    left: 40px;
    top: 27px;
    background: url("/img/logo/img_logo2.png") no-repeat center;
    background-size: 206px;
    z-index: 1200;
  }

  .header .home, .header .home2 {
    display: none;
  }

  .header .logo a, .header .logo2 a {
    display: block;
    height: 100%;
  }

  .header .btn-mobilemenu {
    display: none;
  }

  /*login*/
  .inp_check label:before {
    top: -1px !important;
  }

  #login_group {
    position: absolute;
    top: 28px;
    right: 40px;
  }

  #login_group li a {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
  }

  #login_group .mp_arrow {
    position: relative;
  }

  #login_group .mp_arrow:after {
    content: '';
    display: block;
    clear: both;
    background-image: url('/img/icon/icon_mp_arrow.png');
    background-size: 12px 12px;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 5px;
    right: -17px;
  }

  #login_group .mp_type {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    padding: 11px 12px;
  }

  #login_group .mp_type.show {
    display: block;
    z-index: 1000;
    width: 140px;
    position: absolute;
    top: 30px;
    right: -16px;
    border-radius: 8px;
    border: 1px solid #C8D2E4;
    box-shadow: 0px 2px 2px 0px #414E651A;
  }

  #login_group .mp_type .mp_list li {
    display: block;
    padding: 5px 0;
  }

  #login_group .mp_type .mp_list li a {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #020616;
  }

  #login_group .login_type li a {
    position: relative;
  }

  #login_group .login_type li a:after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 7px;
    width: 20px;
    height: 20px;
    transition: transform .3s 0s ease;
    transform: translate3d(-50%, -50%, 0);
    text-align: center;
    background: url(/img/icon/icon_login2.png) no-repeat center;
  }

  #login_group .logout_type li {
    display: inline-block;
  }

  #login_group .logout_type .icon a {
    position: relative;
    display: inline-block;
    padding-right: 25px;
  }

  #login_group .logout_type .icon a:after {
    content: '';
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background: url(/img/icon/icon_user.png) no-repeat center;
    background-size: contain;
  }

  #login_group .logout_type .icon.line {
    position: relative;
    display: inline-block;
  }

  #login_group .logout_type .icon.line:before {
    content: '';
    background: #B6F23D;
    width: 100%;
    min-width: 48px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    border-radius: 6px;
  }

  #login_group .logout_type li span {
    width: 1px;
    color: #C8D2E4;
    padding: 0 6px;
  }

  /*GNB*/
  #nav {
    width: 752px;
    display: block;
    margin: 0 auto;
  }

  #main_nav {
    background: #fff;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid #E0E6F1;
  }

  #main_nav ul {
    overflow: hidden;
    width: 590px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #main_nav ul li {
    float: left;
    text-align: center;
    width: 22%;
  }

  #main_nav ul li a {
    color: #000;
    text-decoration: none;
    display: inline-block;
    position: relative;
    font-family: 'Pretendard';
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
  }

  #main_nav ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -29px;
    left: 0;
    background-color: #140064;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
  }

  #main_nav ul li a:hover::after {
    transform: scaleX(1);
  }

  #sub {
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #E0E6F1;
    z-index: 1000;
  }

  #sub_menu {
    overflow: hidden;
    width: 590px;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  #sub_menu .menu {
    float: left;
    text-align: center;
    width: 22%;
  }

  #sub_menu .menu li {
    padding-bottom: 8px;
  }

  #sub_menu .menu li a {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #67748E;
    text-decoration: none;
  }

  #sub_menu .menu li a:hover {
    color: #020616;
  }


  /*contents*/
  .content {
    margin: 146px 0 0;
    background: #EDF1F7;
  }

  .content.main {
    margin: 80px 0 0;
  }

  .content-inner {
    flex-grow: 1;
  }

  .content_wrap {
    border-radius: 16px;
    width: 980px;
    margin: 0 auto 0 auto;
  }

  #wrap .pop_text{
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #252B37;
    cursor: default;
  }

  #wrap .l_text {
    text-align: left;
    padding-top: 25px;
    padding-bottom: 4px;
    font-weight: 700;
    cursor: default;
  }

  #wrap .inner.h_inner8 {
    margin-top: 32px;
  }

  #wrap .inner.h_inner9 {
    margin-bottom: 166px;
  }

  #wrap .inner.h_inner10 {
    margin-bottom: 64px;
  }

  #wrap .inner.h_inner11 {
    margin-top: 32px;
  }

  #wrap .inner.h_inner12 {
    margin-bottom: 56px;
  }

  .inner_interval {
    padding: 166px 240px !important;
  }

  .sub_title2 {
    display: block;
    padding-top: 56px;
  }


  .sub_title2 .title {
    /* padding-top: 57px; */
    position: relative;
    z-index: 1;
  }

  .sub_title2 .title:after {
    content: '';
    display: block;
    clear: both;
    background: #B6F23D;
    width: 143px;
    height: 12px;
    position: absolute;
    top: 82%;
    left: 50%;
    border-radius: 6px;
    z-index: -1;
    transform: translate(-50%, -50%);
  }

  .sub_title2 .title.add:after {
    width: 275px;
  }

  .sub_title2 .title.add2:after {
    width: 275px;
  }

  .sub_title2 .title.add3:after {
    width: 184px;
  }

  .sub_title2 .title.add4:after {
    width: 346px;
  }

  .sub_title2 .title.add5:after {
    width: 234px;
  }

  .sub_title2 .title.add6:after {
    width: 406px;
  }

  .sub_title2 .title.add7:after {
    width: 143px;
  }

  .sub_title2 .title.add8:after {
    width: 315px;
  }


  /*footer*/
  #footer .family-sites h3 {
    height: 48px;
    line-height: 26px;
  }

  #footer {
    background-color: #252B37;
    padding: 32px 40px 64px 40px;
    height: 175px;
    position: relative;
  }

  #footer .family-sites {
    position: absolute;
    top: 22px;
    right: 0;
    width: 214px;
  }

  #footer .f-info2 {
    font-family: 'Pretendard';
    font-weight: 400;
    color: #FFFFFFA6;
    font-size: 14px;
    line-height: 22px;
    cursor: default;
    padding-top: 26px;
  }

  #footer .policy-site {
    position: relative;
  }

  #footer .policy-site .ft_logo {
    position: absolute;
    top: 0;
    right: 0;
  }

  #footer .policy-site .family-site {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding-top: 0;
    position: absolute;
    top: 40px;
    right: 0;
    width: 215px;
  }

  #footer .policy-site .family-site .label {
    display: block;
    font-size: 16px;
    height: 48px;
    line-height: 48px;
    position: relative;
    padding-left: 16px;
    border-radius: 6px;
    color: #fff;
    border: 1px solid #FFFFFF33;
    letter-spacing: -0.2px;
  }

  #footer .policy-site .family-site .label::after {
    content: '';
    background: url(/img/icon/icon_select_arrow_down.png) no-repeat center / contain;
    -webkit-transform: rotate(180deg);
    transform: rotate(360deg);
    position: absolute;
    right: 12px;
    top: 15px;
    width: 16px;
    height: 16px;
    -webkit-transition: 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  #footer .policy-site .family-site .label.on::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  #footer .policy-site .family-site .site-list-wrap {
    bottom: 0;
    left: 0;
    background: transparent;
    width: calc(100% + 2px);
    display: none;
    width: 100%;
    margin-left: -1px;
    height: auto;
  }

  #footer .policy-site .family-site .site-list {
    padding-bottom: 4px;
    margin-bottom: 3px;
    border-bottom: 1px solid #e6e6e6;
    background: #252B37;
    border-radius: 3px 3px 0 0;
    position: absolute;
    top: -246px;
    left: 0;
    width: 215px;
  }

  #footer .policy-site .family-site .site-list li a {
    font-size: 12px;
    padding-left: 16px;
    padding: 6px 15px 5px;
    color: #fff;
    background: #252B37;
    display: block;
    letter-spacing: -0.35px;
  }

  #footer .f-info {
    color: #fff;
    padding-top: 0;
  }

  #footer .f-info .bold-link {
    font-weight: bold;
    color: #a5ff00;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
    padding-top: 24px;
  }

  #footer .f-info a {
    font-family: 'Pretendard';
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
    padding-top: 0;
  }

  #footer .f-info span {
    padding: 0 20px;
  }

  #footer .copyright {
    font-family: 'Pretendard';
    font-weight: 400;
    color: #FFFFFFA6;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.2px;
  }

  /* 로그인 / 회원가입 */
  .top_info li {
    cursor: default;
    font-size: 16px;
    line-height: 24px;
  }

  .top_info li::before {
    content: '';
    width: 12px;
    height: 12px;
    cursor: default;
    background: url(/img/icon/icon_notice_star.png) no-repeat 0 0;
    background-size: 12px;
    position: absolute;
    left: -16px;
    top: 5px;
  }

  .terms_box span {
    font-size: 16px;
    cursor: default;
  }

  .total_wrap {
    padding: 20px 16px 12px 16px;
  }

  .total_wrap .total_type .suv_ck {
    padding-top: 28px;
  }

  .con_title.m_btm0 {
    margin-bottom: 0;
  }

  .con_title.f_tit {
    font-family: 'Pretendard';
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #020616;
  }

  .con_title.f_tit span {
    font-family: 'Pretendard';
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #020616;
  }

  .con_title {
    font-family: 'Pretendard';
    font-size: 32px;
    cursor: default;
    font-weight: 400;
    line-height: 46px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #020616;
    margin-bottom: 32px;
  }

  .con_title .bold {
    font-family: 'Pretendard';
    font-size: 32px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #020616;
  }

  .con_title.m_btm {
    margin-bottom: 40px;
  }

  .con_title .tit_txt {
    font-size: 24px;
    line-height: 46px;
  }

  .con_title .tit_txt span {
    font-size: 24px;
    line-height: 46px;
  }

  .header .sub_title {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    left: 0;
  }

  .header .sub_title p {
    font-size: 20px;
    font-family: 'Pretendard';
    font-weight: 700;
    position: relative;
    padding-top: 16px;
    color: #000;
    line-height: 26px;
    letter-spacing: -0.2px;
  }

  .header .sub_title p:after {
    content: '';
    display: block;
    clear: both;
    background-image: url(/img/icon/icon_arrow_left.png);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: 24px;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 16px;
    left: 16px;
  }

  #wrap .inner {
    padding: 166px 32px 166px 32px;
    background: #fff;
    border-radius: 16px;
    margin-top: 40px;
    margin-bottom: 48px;
  }

  #wrap .inner2 {
    padding: 24px 16px 24px 16px;
    background: #fff;
    border-radius: 16px;
    margin-top: 16px;
  }

  #wrap .inner.cs {
    padding: 40px 32px 166px 32px;
    background: #fff;
    border-radius: 16px;
    margin-top: 40px;
    margin-bottom: 48px;
  }

  #wrap .inner.i_cs {
    padding: 40px 32px 64px 32px;
  }

  #wrap .inner.i_cs1 {
    padding: 72px 0;
  }

  #wrap .inner.i_cs2 {
    padding: 80px 219px;
  }

  #wrap .inner.i_cs3 {
    padding: 40px 79px 64px 79px;
  }

  #wrap .inner.i_cs4 {
    padding: 40px 32px;
  }

  #wrap .inner2.i_cs4 {
    padding: 40px 32px;
  }

  #wrap .inner.i_cs5 {
    padding: 40px 32px 352px 32px;
  }

  #wrap .inner.i_cs6 {
    padding: 40px 32px 276px 32px;
  }

  #wrap .inner.i_cs7 {
    padding: 32px 24px 64px 24px;
  }

  #wrap .inner.i_cs8 {
    padding: 24px 16px 56px 16px;
  }

  #wrap .inner.i_cs9 {
    padding: 80px 232px;
  }

  #wrap .inner.i_cs10 {
    padding: 80px 102px;
  }

  #wrap .inner.i_cs11 {
    padding: 80px 32px;
  }

  #wrap .inner.i_cs12 {
    padding: 40px 32px 73px 32px;
  }

  #wrap .inner.member {
    padding: 80px 0;
    background: #fff;
    border-radius: 16px;
    margin-top: 40px;
    margin-bottom: 48px;
  }

  #wrap .inner2.i_cs {
    padding: 40px 32px 64px 32px;
  }

  #wrap .login_box .group.g_mt {
    margin-top: 32px;
  }

  #wrap .login_box .group {
    display: flex;
  }

  #wrap .login_box .group label {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 700;
    line-height: 64px;
    text-align: left;
    color: #3B4659;
    width: 180px;
  }

  #wrap .box_inp {
    margin: 24px auto 0 auto;
    width: 500px;
  }

  .inp_check.f_size label {
    font-size: 16px;
  }

  #wrap .btn_login {
    margin: 0 auto;
    width: 500px;
    padding-top: 40px;
  }

  #wrap .btn_login .common_btn_type_1 span {
    z-index: 20;
    position: relative;

  }

  .login_list {
    margin: 48px auto 0 auto;
    text-align: center;
  }

  .login_list li {
    display: inline-block;
  }

  .login_list li span {
    padding: 0 12px;
  }

  .login_list li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
  }

  #wrap .list li a {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.2px;
    font-family: 'Pretendard';
    font-weight: 400;
  }

  #wrap .list li span {
    padding: 0 28px 0 7px;
    color: #C8D2E4;
  }

  #wrap.wrap_type {
    padding: 107px 219px;
  }

  #wrap .member_tit {
    padding-top: 0;
  }

  #wrap .member_tit p {
    color: #020616;
    margin: 0 auto;
    text-align: center;
    font-family: 'Pretendard';
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
  }

  #wrap .member_tit p span {
    font-family: 'Pretendard';
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: -0.2px;
    text-align: center;
  }

  #wrap .inner.inner_type {
    margin: 0 auto;
  }

  .member_list {
    width: 340px;
    margin: 0 auto;
    margin-top: 48px;
  }

  .member_list a {
    text-decoration: none;
  }

  .member_list .mb_group1 {
    position: relative;
    background: #0114A7;
    padding: 38px 92px 38px 140px;
    border-radius: 9px;
    box-shadow: 0px 2px 2px 0px #414E651A;
    text-align: center;
    cursor: pointer;
  }

  .member_list .mb_group1 a {
    position: relative;
  }

  .member_list .mb_group1 a:after {
    content: '';
    display: block;
    clear: both;
    background-image: url(/img/icon/icon_member01.png);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: 40px;
    width: 40px;
    height: 40px;
    position: absolute;
    top: -12px;
    left: -52px;
  }

  .member_list .mb_group1 span {
    font-size: 20px;
  }

  .member_list .mb_group2 {
    margin-top: 16px;
    background: #EDF1F7;
    padding: 38px 92px 38px 140px;
    border-radius: 9px;
    box-shadow: 0px 2px 2px 0px #414E651A;
    text-align: center;
    cursor: pointer;
  }

  .member_list .mb_group2 a {
    position: relative;
  }

  .member_list .mb_group2 a:after {
    content: '';
    display: block;
    clear: both;
    background-image: url(/img/icon/icon_member02.png);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: 40px;
    width: 40px;
    height: 40px;
    position: absolute;
    top: -12px;
    left: -52px;
  }

  .member_list .mb_group2 span {
    font-size: 20px;
  }

  .tit_logo {
    padding-top: 0;
    text-align: center;
    padding-top: 32px;
  }

  .tit_logo2 {
    padding-top: 0;
    text-align: center;
  }

  #wrap .member_tit.complete {
  }

  #wrap .member_tit.complete p {
    padding-top: 0;
    font-family: 'Pretendard';
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: -0.2px;
    text-align: center;
    color: #000;
  }

  #wrap .inner .i_complete {
    margin: 0 auto 0 auto;
    padding-top: 56px;
    text-align: center;
  }

  #wrap .inner .i_complete.i_cp {
    padding-top: 10px;
  }

  #wrap .inner .i_complete img {
    width: 136px;
    height: 136px;
  }

  #wrap .inner .complete_txt {
    padding-top: 24px;
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.2px;
    text-align: center;
    color: #4D596F;
  }

  .btn_home {
    margin: 56px auto 0 auto;
  }

  .btn_home .common_btn_type_1 {
    width: 180px;
    height: 72px;
    line-height: 72px;
    cursor: pointer;
    margin: 0 auto;
  }

  .btn_home.btn_home2 .common_btn_type_1 {
    width: 180px;
    line-height: 72px;
    cursor: pointer;
    margin: 0 auto;
  }

  #wrap .inner .cs_info {
    margin-top: 56px;
  }

  #wrap .email_tit {
    font-size: 32px;
    line-height: 40px;
    margin-top: 32px;
  }

  /*****고객지원*****/
  .sub_title3 {
    padding-top: 56px;

  }

  .sub_title3 h2 {
    display: block;
  }

  .sub_title3 .title {
    position: relative;
    z-index: 1;
    padding-left: 20px;
    cursor: default;
  }

  .sub_title3 .title:after {
    content: '';
    display: block;
    clear: both;
    background: #B6F23D;
    width: 40px;
    height: 40px;
    position: absolute;
    top: -8px;
    left: 4px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    z-index: -1;
    cursor: default;
  }

  .board_search .count {
    display: none;
  }

  .board_search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkt-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .board_search .search_txt {
    position: relative;
    height: 48px;
    line-height: 48px;
    border-radius: 6px;
    text-align: right;
    width: auto;
  }

  .board_search .search_txt .common_input_type_1 {
    width: 220px;
  }

  .board_search .search_txt.result .common_input_type_1::placeholder {
    color: #252B37;
  }

  .board_search .search_txt2 .common_input_type_1 {
    width: 100%;
  }

  .board_search .search_txt.h_inp_box .common_input_type_1 {
    height: 48px;
  }

  .board_search .search_txt input::placeholder {
    font-size: 16px;
  }

  .board_search .search_txt input:focus {
    font-size: 16px;
  }

  .board_search .search_txt.search_inputbox {
    width: 220px;
    height: 48px;
  }

  .board_search .search_txt.search_inputbox input {
    line-height: 48px;
    vertical-align: middle;
    width: 218px;
  }

  .board_search .btn_wrap {
    margin-left: 10px;
  }

  .total-post-wrap {
    margin-top: 0;
    width: 100%;
    position: relative;
  }

  .total-post-wrap .total-post {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #000;
    position: absolute;
    top: 24px;
    left: 0;
    cursor: default;
  }

  .total-post-wrap .total-post strong {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-align: left;
    color: #020616;
  }

  /*공지사항 - 검색결과없음*/
  #wrap .inner.cs.i_cs3 {
    padding-bottom: 40px;
  }

  /* .no-result-wrap .no_data{padding-top: 214px;} */
  .no-result-wrap .no_data .no_result_text p {
    font-size: 18px;
    color: #8694B1;
  }

  .board-list-wrap {
    margin-top: 16px;
  }

  .board-list li {
    padding: 23px 0;
  }

  .board-list li.th-head {
    display: block;
    border-bottom: 1px solid #E0E6F1;
    background: #EDF1F7;
  }

  .board-list li.th-head span {
    font-size: 14px;
    font-weight: 700;
    text-align: center !important;
    color: #252B37;
    line-height: 22px;
    font-family: 'Pretendard';
  }

  .board-list li.th-head .col-num {
    width: 100px;
    font-weight: 700;
    font-size: 14px;
    cursor: default;
  }

  .board-list li.th-head .col-date {
    width: 246px;
    font-size: 14px;
    cursor: default;
  }

  .board-list li div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .board-list li div .col-num {
    width: 100px;
    display: block;
    flex-shrink: 0;
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    cursor: default;
  }

  .board-list li div .col-title {
    flex: 1;
    text-align: center;
    overflow: hidden;
    cursor: default;
  }

  .board-list li div .col-date {
    width: 246px;
    display: block;
    flex-shrink: 0;
    font-size: 16px;
    text-align: center;
    cursor: default;
  }

  .board-list li div .col-comp {
    width: 110px;
    cursor: default;
  }

  .board-list .th-head div .col-name {
    width: 120px;
    font-size: 14px;
  }

  .board-list li div .col-date,
  .board-list li div .col-name {
    flex-shrink: 0;
    cursor: default;
  }

  .board-list li > div > span {
    text-align: center;
    font-size: 1.4rem;
    color: #000;
  }

  .board-list li div .col-title em a {
    position: relative;
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #000;
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .no-result-wrap .no_data .no-result-text {
    padding-top: 144px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #4D596F;
  }

  .no-result-wrap .no_data span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #8694B1;
    padding-top: 8px;
    padding-bottom: 96px;
  }

  .board-view {
    border-top: 2px solid #4D596F;
    border-bottom: 2px solid #E0E6F1;
    /* margin-bottom: 32px; */
  }

  .board-view .board-view-head {
    padding: 32px 0 32px 16px;
    border-bottom: 1px solid #E0E6F1;
  }

  .board-view .board-view-head .title {
    font-family: 'Pretendard';
    color: #000;
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: left;
    cursor: default;
  }

  .board-view .board-view-head .write-info {
    display: block;
    margin-top: 8px;
  }

  .board-view .board-view-head .write-info .date-info {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    font-weight: 400;
    padding-top: 16px;
    cursor: default;
  }

  .board-view .board_file .file_group {
    padding: 20px 0;
  }

  .board-view .board_file .file_group span a {
    position: relative;
    display: block;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #252B37;
    padding-left: 44px;
  }

  .btn_board {
    display: flex;
  }

  .btn_board a {
    margin-left: auto;
    width: 180px;
    height: 72px;
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: -0.02em;
    text-align: center;
    border-radius: 12px;
  }

  .btn_board a.btn_qna {
    width: 120px;
    height: 56px;
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    padding: 16px 0;
  }

  .board-view .board-view-body {
    font-size: 16px;
    line-height: 24px;
    padding: 24px 16px;
    cursor: default;
  }

  /*Q&A*/
  .board-view-head.qna .detail_title {
    margin-top: 16px;
  }

  #wrap .inner.cs3 {
    padding: 40px 32px 143px 32px;
  }

  .board-list.qna_list .col-name em {
    display: none;
  }

  .board-list.qna_list .th-head .col-date {
    width: 120px;
  }

  .board-list.qna_list .col-date {
    width: 120px;
  }

  .board-list.qna_list .col-name {
    width: 120px;
  }

  .board-list.qna_list li {
    padding: 23px 0;
  }

  .board-list.qna_list li .td-body span {
    font-size: 16px;
  }

  .board-list.qna_list li .td-body span.col-name {
    width: 120px;
  }

  .board-list li > div .col-title em.qna-type a {
    padding-left: 26px;
  }

  .board-list li div .col-title em.qna-type a .icon-secret {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1rem;
  }

  .icon-secret {
    display: inline-flex;
    width: 20px;
    height: 20px;
    font-size: 0;
    background: url(/img/icon/icon_password.png) no-repeat 50% 50% / 20px 20px;
  }

  .board-list li div .col-comp .question {
    position: static;
    font-size: 14px;
    letter-spacing: -0.02em;
    display: inline-block;
    width: 72px;
    height: 32px;
    padding: 5px 0;
    line-height: 22px;
  }

  .board-list li div .col-comp .complete {
    position: static;
    font-size: 14px;
    letter-spacing: -0.02em;
    display: inline-block;
    width: 72px;
    height: 32px;
    padding: 5px 0;
    line-height: 22px;
  }

  .board-list li div .col-title .icon_file {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-left: 0;
  }

  .btn_board2 {
    display: flex;
    margin-top: 0;
    position: absolute;
    top: -14px;
    right: 0;
  }

  .btn_board2 > a {
    margin-left: auto;
    width: 130px;
  }

  .page_group {
    position: relative;
  }

  .btn_board.btn_top {
    margin-top: 32px;
  }


  .pg_btn {
    position: relative;
  }

  .pg_btn .btn_board {
    position: absolute;
    top: -12px;
    right: 0;
  }

  .pg_btn .btn_board.btn_top {
    margin-top: 0;
  }

  .board-view-head.qna .complete_box .complete {
    height: 32px;
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: center;
    cursor: default;
  }

  .comment_wrap .comment_wrap_head {
    position: relative;
    padding: 24px 16px 24px 66px;
  }

  .comment_wrap .comment_wrap_head:after {
    content: '';
    display: block;
    clear: both;
    background-image: url(/img/icon/icon_kbank.png);
    background-size: 40px 40px;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 24px;
    left: 16px;
  }

  .comment_wrap .comment_wrap_head .title {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #252B37;
  }

  .comment_wrap .comment_wrap_head .title em {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #67748E;
    cursor: default;
  }

  .comment_wrap .comment_wrap_head p {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    word-break: break-all;
    padding-top: 6px;
    color: #252B37;
    cursor: default;
  }


  /*회원가입*/
  .terms_box {
    margin-top: 64px;
  }

  .info_txt {
    color: #4D596F;
    background: #F7F9FD;
    border-radius: 8px;
    padding: 12px;
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.2px;
    text-align: left;
  }

  .terms_box p {
    font-size: 24px;
    cursor: default;
  }

  .join_info .info1 label {
    width: 20%;
    text-align: left;
  }

  .join_info .info1 {
    display: flex;
    margin-top: 32px;
    justify-content: start;
  }

  .join_info .btn_application .common_btn_type_1 {
    width: 220px;
    cursor: pointer;
  }

  .join_info .info1 .info_line {
    display: flex;
    width: 736px;
    position: relative;
  }

  .join_info .info1 .info_line .info_select {
    width: 180px;
    margin-left: 8px;
  }

  .join_info .info1 .info_line .dash {
    width: 17px;
    display: inline-block;
    text-align: center;
  }

  .join_info .info1 .info_line .special_t {
    width: 26px;
    display: inline-block;
    text-align: center;
  }

  .join_info .info1 .info_line .common_input_type_1.w_input {
    width: 588px;
  }

  .join_info .info1 .info_line .input.w_hp1 select {
    width: 149px;
  }

  .join_info .info1 .info_line .input.w_hp2 input {
    width: 197px;
  }

  .join_info .info1 .btn_check {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
  }

  .join_info .info1 .certify_box .certify_time {
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 11px;
    z-index: 0;
    font-size: 16px;
    color: #E23A32;
    font-family: 'Pretendard';
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
  }

  /*회원가입 - 약관동의*/
  .total_wrap {
    padding: 28px 28px 40px 28px;
    margin-top: 24px;
  }

  .top_info {
    padding: 24px 32px 24px 32px;
    margin-bottom: 32px;
  }

  .top_info span {
    font-size: 16px;
    line-height: 24px;
  }

  .total_wrap .inp_check.s_tit label {
    font-size: 16px;
  }

  .total_wrap .inp_check.b_tit label {
    font-size: 18px;
  }

  /*기관회원가입*/
  .agency_info .info1 {
    display: flex;
    margin-top: 32px;
    justify-content: start;
    position: relative;
  }

  .agency_info .info1 label {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    width: 180px;
  }

  .agency_info .info1 .info_line {
    display: flex;
    width: 588px;
    justify-content: start;
  }

  .agency_info .info1 .btn_check {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
  }

  .agency_info .info1 .info_line .inp_wd3 {
    width: 184px;
  }

  .agency_info .info1 .info_line .inp_wd4 {
    width: 160px;
  }

  .agency_info .info1 .info_line .inp_wd5 {
    width: 210px;
  }

  .agency_info .info1 .info_line .dash {
    padding: 0 4px;
    line-height: 40px;
    width: 17px;
    text-align: center;
  }

  .agency_info .info1 .info_line .filebox .file_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
  }

  .agency_info .info1 .info_line .filebox label {
    padding: 0 20px;
    line-height: 40px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .agency_info .info1 .certify_box {
    display: flex;
    width: 100%;
  }

  .list-dot {
    margin-top: 8px;
    width: 100%;
  }

  .list-dot.list {
    margin-top: 16px;
  }

  .list-dot.list > p {
    line-height: 30px;
  }

  .list-dot.list > p::before {
    top: 12px;
  }

  /*아이디 찾기, 비밀번호 초기화*/
  .inp_radio label:before {
    top: -6px;
  }

  #wrap .inner.cs2 {
    /* padding: 96px 120px; */
    padding: 40px 32px 64px 32px;
  }

  #wrap .inner.inner_wh {
    padding: 96px 120px;
  }

  .tab_nav {
    border-bottom: none;
    margin-bottom: 103px;

  }

  .tab_nav.tab_bt {
    margin-bottom: 0;
  }

  .tab_nav.tabm {
    margin-bottom: 64px;
  }

  .tab_nav li {
    position: relative;
    border-top: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-bottom: 0 none;
    background: #EDF1F7;
  }

  .tab_nav li a {
    border-bottom: 1px solid #140064;
    font-weight: 400;
    font-size: 20px;
    padding: 18px 15px;
    font-family: 'Pretendard';
    font-size: 20px;
    cursor: pointer;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #3B4659;
  }

  .sub_tab_nav {
    padding-top: 0;
  }

  .sub_tab_nav li:nth-child(2) {
    margin-left: 42px;
  }

  .tab_nav li.active a {
    border-bottom: none;
    background: #fff;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    border-left: 1px solid #222;
    font-family: 'Pretendard';
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #140064;
  }

  .tab_nav li.active {
    border-bottom: 0 none;
  }

  .inp_radio.radio_txt label {
    font-family: 'Pretendard';
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #252B37;
  }

  .result_view {
    padding-top: 0;
  }

  .form_type .result_view .title {
    font-family: 'Pretendard';
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    padding-top: 17px;
    margin: 0 auto;
    display: table-cell;
  }

  .result_view li {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #020616;
  }

  .result_view li span {
    font-family: 'Pretendard';
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    color: #066AE5;
  }

  .result_view .result_info_box {
    margin: 48px auto 0 auto;
    width: 454px;

  }

  .result_view .result_info_box .infor {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .top_info2 {
    font-family: 'Pretendard';
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 64px;
  }

  .top_info2.m_btm {
    margin-bottom: 64px;
  }

  .top_info2 span {
    font-family: 'Pretendard';
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    font-weight: normal;
  }

  .top_info3 {
    font-family: 'Pretendard';
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 40px;
  }

  .top_info3 span {
    font-family: 'Pretendard';
    font-size: 24px;
    line-height: 30px;
    text-align: center;
  }

  .radio_tab_nav.tabm {
    padding: 0 0 32px 0;
  }

  .radio_tab_nav li:nth-child(2) {
    padding-left: 56px;
  }


  .custom_select {
    height: 48px;
  }

  .custom_select .select_items li {
    font-size: 16px;
  }


  /* faq */
  .box-brandInfo ul li .box-ct:before {
    left: 32px;
  }

  .box-brandInfo > ul > li > a {
    padding: 24px 45px 24px 15px;
  }

  .box-brandInfo > ul > li > a:after {
    top: 24px;
    right: 24px;
  }

  .box-brandInfo li a:before {
    top: 16px;
    left: 20px;
  }

  .box-brandInfo.faq .inner-ct p {
    margin-left: 80px;
  }

  .box-brandInfo > ul > li > .box-ct .inner-ct:before {
    top: 52px;
    left: 20px;
  }

  /* .box-brandInfo > ul > li > .box-ct:before{top: 42%;} */
  .box-brandInfo li:before {
    top: 17px;
  }

  .box-brandInfo ul li a {
    padding: 24px 45px 24px 110px;
    height: 72px;
  }

  .box-brandInfo ul li a:before {
    left: 32px;
  }

  .box-brandInfo ul li a:after {
    top: 50%;
    right: 10px;
    transform: translate(-50%, -50%);
  }

  .box-brandInfo ul li.sel .box-ct {
    padding-left: 80px;
  }

  .box-brandInfo ul li .box-ct .list_txt .text1 {
    border-bottom: 0 none;
  }


  /* popup */
  .content.pop {
    margin-top: 0;
  }

  .popup_wrap {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .popup_wrap .pop_body {
    padding: 24px 32px 32px 32px;
  }

  .popup_wrap .pop_body .inner_txt .title h4 {
    font-size: 24px;
    line-height: 30px;
    text-align: left;
    color: #020616;
    margin-bottom: 32px;
    cursor: default;
  }

  .popup_wrap .pop_body .contents > p {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }

  /* .popup_wrap .pop_body .contents .con_txt span{
        font-size: 20px;
        line-height: 26px;
    } */
  .popup_wrap .pop_dim .inner {
    width: 640px;
  }

  .popup_wrap .pop_dim .inner.inner2 {
    width: 640px;
  }

  .popup_wrap .contents .inp_box {
    margin: 15px 45px 0 45px;
  }

  .popup_wrap .pop_body .pop_btn a {
    width: 120px;
    height: 56px;
    line-height: 56px;
    margin-right: 8px;
  }

  .popup_wrap .pop_body .pop_btn.p_btn {
    margin-top: 32px;
  }

  .popup_wrap .contents .inp_box input::placeholder {
    font-size: 18px;
  }

  .popup_wrap .contents .inp_box .common_input_type_1 {
    width: 500px;
    height: 64px;
  }

  .popup_wrap .pop_body .btn_close {
    top: 27px;
    right: 32px;
  }

  .popup_wrap .pop_body .btn_close img {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }

  .popup_wrap .pop_body .contents > .con_txt {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #252B37;
    margin-top: 32px;
  }

  .popup_wrap .pop_body .contents > .con_txt2 {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #252B37;
    margin-top: 32px;
    cursor: default;
  }

  .popup_wrap .pop_body .contents > .con_txt .txt_bold {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .popup_wrap .pop_body .contents > .con_txt.txt_mail {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .popup_wrap .pop_body .contents > p span {
    font-size: 20px;
    line-height: 26px;
  }

  .popup_wrap .pop_body .pop_btn {
    width: 248px;
    margin: 24px auto 0 auto;
  }

  .popup_wrap .pop_body .contents .con_txt.l_text {
    font-size: 18px;
    line-height: 24px;
    cursor: default;
  }

  .popup_wrap .pop_body .contents .con_info_box p {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
    cursor: default;
  }

  /*Error*/
  .wp_pt {
    padding-top: 236px;
  }

  .content.ct_pd {
    padding-top: 0;
    padding-bottom: 0;
  }

  .error_wrap {
    padding: 0;
  }

  .content.con_wrap {
    padding-top: 236px;
    padding-bottom: 0;
  }

  .error_wrap .error_logo img {
    width: 206px;
    height: 26px;
  }

  .error_wrap .error_con .e_txt {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.02em;
  }

  .error_wrap .error_con .e_icon {
    margin: 24px auto 0 auto;
    text-align: center;
  }

  .error_wrap .error_con .e_txt2 {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: center;
  }

  /*마이페이지*/
  .terms_box.title p {
    padding-bottom: 16px;
  }

  .sub_tab_nav li a {
    padding: 0 15px 0 0;
  }

  .board_search .search_txt.ser_api.w_inp {
    width: 233px;
  }

  .tb_conbox.top2 {
    margin-top: 10px;
  }

  .popup_total .popup-content .pop_text.pop_text2 {
    margin-left: 76px;
    cursor: default;
  }

  .table_type2 .table_col.tb_bdtop thead th {
    border-top: 2px solid #4D596F;
    cursor: default;
  }

  .board_search.sh_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkt-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .board_search .search_txt.ser_mypage {
    position: relative;
    height: 48px;
    line-height: 48px;
    border-radius: 6px;
    text-align: left;
    width: 100%;
    max-width: 330px;
  }

  .board_search .search_txt.ser_mypage .common_input_type_1 {
    width: 330px;
    height: 48px;
    max-width: 100%;
  }

  .con_title.mypage p {
    font-size: 32px;
    line-height: 46px;
  }

  .con_title.mypage p span {
    font-size: 40px;
    line-height: 46px;
  }

  .sub_title2 .title.icon_no:after {
    display: none;
  }

  #wrap .dash_bg {
    background: 0 none;
  }

  .form_type_box {
    width: 500px;
    margin: 0 auto;
  }

  .form_type .info_box1.add {
    justify-content: end;
  }

  .form_type .info_box1.add2 {
    justify-content: end;
    width: 100%;
  }

  .form_type .info_box1.add input {
    width: 320px;
  }

  .list-dot.info_text {
    height: 70px;
    margin: 20px auto 0 auto;
  }

  .list-dot.info_text p {
    padding: 24px 16px 24px 26px;
  }

  .list-dot.info_text p:before {
    top: 33px;
    left: 16px;
  }

  .tb_board_list .table_box .table th:nth-child(1) {
    width: 80px;
    cursor: default;
  }

  .tb_board_list .table_box .table th:nth-child(2) {
    width: 546px;
    cursor: default;
  }

  .tb_board_list .table_box .table th:nth-child(3) {
    width: 290px;
    cursor: default;
  }

  .tb_board_list .table_box .table td, .table th {
    padding: 15px 0;
  }

  .tb_board_list .table_box .table tbody td {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #252B37;
    text-align: center;
    cursor: default;
  }

  .btn_wrap.bt_location {
    /* margin-top: 8px; */
    margin-top: 20px;
  }

  .btn_wrap.btn_set {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .btn_wrap.btn_set a {
    margin-right: 4px;
  }

  .btn_wrap.btn_set a.rt_none {
    margin-right: 0;
  }

  .user_top {
    margin-top: 0;
  }

  .terms_box.user_top2 {
    margin-top: 64px;
  }

  .terms_box.user_top3 {
    margin-top: 64px;
  }

  .btn_board3 > a {
    width: 130px;
    margin: 0 auto;
  }

  .form_type .info1.info2 .api_box .btn_plus {
    width: 135px;
    height: 48px;
    margin-left: 10px;
  }

  .form_type .info1.info2 .api_box {
    margin-left: 8px;
  }

  .form_type .btn_application.application {
    display: flex;
    margin-top: 32px;
    justify-content: center;
    align-items: baseline;
  }

  .withdrawal a {
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
  }

  .pagination.page_top {
    margin-top: 32px;
  }

  .form_type .info_line.info_w {
    width: 554px;
  }

  .custom_select.select_w {
    width: 220px;
  }

  .custom_select .select_selected.select_w {
    width: 220px;
    height: 48px;
  }

  .custom_select .select_selected.h_inp {
    height: 48px;
    line-height: 48px;
  }

  /* 달력 */
  .datepicker_wrapper {
    position: absolute;
    top: 82px;
    right: 32px;
    width: 240px;
    margin-bottom: 0;
    margin-top: 0;
  }

  .datepicker_wrapper img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .datepicker_input {
    height: 48px;
  }

  .dashboard_box .api_use .use_box .tit_m {
    padding-left: 0;
    cursor: default;
  }

  .daterangepicker {
    padding: 64px 24px 24px 24px !important;
  }

  .daterangepicker .drp-buttons {
    padding: 16px 0 24px 0 !important;
  }

  .daterangepicker .drp-buttons .btn {
    margin-left: 8px;
    font-weight: bold;
    padding: 9px 16px;
    background: #0114A7;
    width: 120px !important;
    height: 40px !important;
    line-height: 24px;
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    border-radius: 6px;
  }

  .daterangepicker .drp-buttons .btn.btn-default {
    background: #EDF1F7;
    color: #0114A7;
  }

  .daterangepicker .drp-calendar.right {
    padding: 0 0 16px 0 !important;
  }

  .daterangepicker .drp-calendar.left {
    padding: 0 0 16px 0 !important;
  }

  .daterangepicker .drp-calendar.right {
    margin-left: 10px !important;
  }

  .daterangepicker .drp-calendar.left {
    margin-right: 10px !important;
  }


  /*API 포탈안내*/
  .api_content {
    margin-top: 0;
  }

  .api_portal_info1 {
    background: url(/img/bg_portal_info01.png) no-repeat 0 0;
    background-size: 100% 520px;
    height: 520px;
    padding: 148px 0 0 0;
  }

  .api_portal_info1 .title {
    font-size: 56px;
    line-height: 56px;
    width: 656px;
    margin: 0 auto;
  }

  .api_portal_info1 .title span {
    display: inline-block;
    cursor: default;
  }

  .api_portal_info1 .title span:nth-child(2) {
    padding-left: 156px;
    cursor: default;
  }

  .api_portal_info1 .detail {
    font-family: 'Pretendard';
    cursor: default;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #140064;
    margin: 0 auto;
    padding-top: 24px;
  }

  .api_portal_info2 {
    background: url(/img/bg_portal_info04.png) no-repeat 0 0;
    background-size: 100% 520px;
    height: 520px;
    margin: 0 auto;
    text-align: center;
    padding: 214px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .api_portal_info2 .title_group {
    display: contents;
  }

  .api_portal_info2 img {
    width: 97px;
    height: 156px;
  }

  .api_portal_info2 .detail {
    font-size: 40px;
    cursor: default;
    font-weight: 100;
    line-height: 46px;
    text-align: left;
    padding-left: 33px;
  }

  .api_portal_info2 .detail span {
    font-size: 40px;
    cursor: default;
    line-height: 46px;
  }

  .api_portal_info3 {
    background: url(/img/bg_portal_info06.png) no-repeat 0 0;
    background-size: 100% 489px;
    height: 489px;
  }

  .api_portal_info3 .title {
    font-size: 48px;
    line-height: 56px;
    cursor: default;
    width: 100%;
  }

  .api_portal_info4 {
    margin: 0 auto;
    text-align: center;
    padding: 34px 0 120px 0;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .api_portal_info4 .title_group {
    display: contents;
  }

  .api_portal_info4 img {
    width: 280px;
    height: 366px;
  }

  .api_portal_info4 .text_group {
    padding-left: 32px;
  }

  .api_portal_info4 .text_group .title {
    font-family: 'Pretendard';
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.02em;
    padding-top: 74px;
  }

  .api_portal_info4 .text_group .detail {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .detail_box {
    display: flex;
    clear: both;
    margin: 0 auto;
    text-align: center;
    width: 779px;
    position: relative;
    justify-content: center;
  }

  .detail_box .detail01 img:first-child {
    position: absolute;
    top: -46px;
    left: -18px;
    width: 118px;
    height: 115px;
  }

  .detail_box .detail01 img:last-child {
    position: absolute;
    top: 120px;
    right: -104px;
    z-index: 1;
    width: 203px;
    height: 186px;
  }

  .detail_box .detail02 {
    position: relative;
  }

  .detail_box .detail02 img:first-child {
    position: absolute;
    top: -56px;
    left: 257px;
    width: 141px;
    height: 141px;
  }

  .api_guide_count {
    padding: 56px 0;
  }

  .api_portal_info3 .detail01 {
    background: url(/img/bg_portal_sinfo03.png) no-repeat 0 0;
    background-size: 100% 200px;
    height: 200px;
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 400;
    cursor: default;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    padding: 74px 0;
    margin-top: 46px;
    width: 324px;
    float: left;
  }

  .api_portal_info3 .detail02 {
    background: url(/img/bg_portal_sinfo04.png) no-repeat 0 0;
    background-size: 100% 200px;
    height: 200px;
    font-family: 'Pretendard';
    cursor: default;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    padding: 74px 0;
    width: 324px;
    float: left;
    margin-top: 93px;
    margin-left: 26px;
  }

  .api_guide_count .api_guide .title {
    font-size: 40px;
    line-height: 46px;
    cursor: default;
    text-align: left;
  }

  .api_guide_count .api_guide .detail {
    font-size: 18px;
    cursor: default;
    line-height: 24px;
    text-align: left;
  }

  .api_guide_count ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 32px;
  }

  .api_guide_count li {
    width: calc(50% - 16px);
    margin: 0 0 16px 0;
    padding: 32px 0;
    border: 1px solid #C8D2E4;
    text-align: center;
    border-radius: 16px;
    background: #fff;
    box-sizing: border-box;
    width: 482px;
  }

  .api_guide_count li:nth-child(1) {
    margin-top: 0;
  }

  .api_guide_count li:nth-child(2) {
    margin-right: 0;
  }

  .api_guide_count li:nth-child(3) {
    margin-bottom: 0;
  }

  .api_guide_count li:nth-child(4) {
    margin-right: 0;
    margin-bottom: 0;
  }

  .api_guide_count li .list_check p {
    display: inline-block;
    margin-left: 12px;
    cursor: default;
  }

  .api_guide_count li .list_check.check_no p {
    margin-left: 0;
  }

  .api_guide_count li .list_check p:after {
    top: 2px;
    cursor: default;
  }

  .api_guide_count li .note {
    margin: 0 0 -14px 0;
    padding: 0;
  }

  .api_guide_count li .note p {
    font-size: 14px;
    color: #6B7684;
    line-height: 18px;
    margin: 0;
    padding: 0;
  }

  .form_type .info1.info_mypage {
    padding-top: 32px;
  }

  .form_type .info1.info_mypage2 {
    padding-top: 4px;
  }

  .api_guide_count li .step {
    width: 80px;
    height: 32px;
    cursor: default;
  }

  /*이용약관, 개인정보처리방침*/
  .custom_select .select_selected {
    font-size: 16px;
    height: 48px;
    line-height: 48px;
  }

  .form_type .info1.ts_top {
    padding-top: 32px;
  }

  .form_type .info_line.ts_left {
    justify-content: start;
  }

  .form_type .info_line.ts_left .info_box1 {
    width: 328px;
  }

  .terms_contents {
    display: block;
    color: #252B37;
  }

  .terms_contents.m_termst {
    margin-top: 16px;
  }

  .terms_contents h3 {
    font-size: 18px;
  }

  .terms_contents .ts_tit {
    font-size: 16px;
    line-height: 24px;
  }

  .terms_contents .ts_tit2 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
  }

  .terms_contents p {
    font-size: 16px;
    line-height: 24px;
  }

  /* 팝업 */
  .popup_total .popup-content {
    width: 640px;
    padding: 24px 32px 32px 32px;
  }

  .popup_total .popup-content.popup400 {
    width: 400px;
    padding: 24px 32px 32px 32px;
  }

  .popup_total .popup-content h2 {
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 32px;
    cursor: default;
  }

  .popup_total .popup-content .pop_text {
    font-size: 18px;
    line-height: 24px;
    padding: 24px 0 16px 0;
    font-weight: 700;
    cursor: default;
  }

  #wrap .pop_text {
    font-size: 18px;
    line-height: 24px;
    padding: 24px 0 16px 0;
    font-weight: 700;
    cursor: default;
  }

  .popup_total .popup-content .btn_close {
    position: absolute;
    top: 27px;
    right: 32px;
  }

  .popup_total .popup-content .btn_close img {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }

  .popup_total .pop_btnbox button {
    font-size: 16px;
    line-height: 24px;
  }

  .popup_total .popup_button_gray {
    width: 120px;
    height: 56px;
    background: #EDF1F7;
    color: #0114A7;
    border: none;
    cursor: pointer;
    margin-right: 2px;
  }

  .popup_total .popup_button_blue {
    width: 120px;
    height: 56px;
    background: #0114A7;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-left: 2px;
  }

  .popup_total .inner_button {
    margin-left: 0;
  }

  .popup_total .popup-content .pop_btnbox {
    margin-top: 24px;
  }

  .popup-content .application_box .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    cursor: default;
  }

  .popup-content .application_box .title_box {
    width: 384px;
  }

  /*main slick*/
  .slider-container {
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }

  .slider-container .slick_txt {
    margin: 0 150px;
    top: 100px;
  }

  /*transform: translate(0px, 19%);*/
  .slider-container .slick_txt p {
    font-size: 56px;
    font-weight: 100;
    line-height: 64px;
  }

  .slider-container .slick_txt p span {
    font-size: 56px;
    line-height: 64px;
  }

  .slider-container .slick-prev,
  .slider-container .slick-next {
    display: block !important;
    position: absolute;
    top: 198px;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 0;
    background: transparent;
    cursor: pointer;
    width: 56px;
    height: 56px;
  }

  .slider-container .slick-dots {
    position: absolute;
    top: 414px;
    left: 150px;
    display: flex !important;
    list-style: none;
    padding: 0;
    width: 10px;
    height: 10px;
  }

  .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 6px;
    height: 6px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
  }

  .slider-container .slick-dots button:before {
    content: none;
  }

  .slider-container .slick-prev {
    top: 290px;
    left: 10px;
    background: url('/img/icon/icon_slick_prev.png') no-repeat center center;
    background-size: contain;
    width: 56px;
    height: 56px;
  }

  .slider-container .slick-next {
    top: 290px;
    right: 10px;
    background: url('/img/icon/icon_slick_next.png') no-repeat center center;
    background-size: contain;
    width: 56px;
    height: 56px;
  }

  .search_type {
    width: 720px;
    margin: 0 auto;
  }

  .search_type .search-container {
    display: flex;
    position: relative;
    width: 100%;
    margin: -40px 0;
  }

  .search_type .search-box {
    border: 4px solid #B6F23D;
    border-radius: 40px;
    outline: none;
    padding: 10px 72px 10px 32px;
    height: 80px;
    font-size: 20px;
  }

  .search_type .search-button {
    width: 32px;
    height: 32px;
    background: url('/img/icon/icon_main_search2.png') no-repeat center center;
    background-size: 32px 32px;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 40px;
  }

  /* input[type="text"].search-box{padding-left: 32px;padding-right:72px;font-size: 20px;height: 80px;} */
  .search-box::placeholder {
    color: #8694B1;
    font-size: 20px;
  }

  .search-box::-webkit-input-placeholder {
    color: #8694B1;
  }

  /* Chrome/Opera/Safari */
  .main-container {
    background: #fff;
    margin-top: 0;
    z-index: 1;
    border-radius: 32px 32px 0 0;
  }

  .main-container .hashtag ul {
    padding: 0 16px;
    margin: 72px auto 0 auto;
    flex-wrap: wrap;
    gap: 32px;
  }

  .main-container .hashtag ul li {
    font-family: 'Pretendard';
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #252B37;
  }

  .main-container .main_con {
    margin-top: 120px;
  }

  .main-container .main_con .con_img {
    margin: 16px auto 0 auto;
    text-align: center;
  }

  .main-container .main_con .con_img img {
    width: 1280px;
    height: 574px;
  }

  .main-container .main_con .con_txt {
    font-size: 20px;
    line-height: 26px;
    cursor: default;
    text-align: center;
    width: 896px;
    margin: 72px auto 0 auto;
  }

  .main-container .main_con .con_txt span {
    font-size: 20px;
    line-height: 26px;
    cursor: default;
    letter-spacing: -0.02em;
  }

  .main_con .main_btn {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: baseline;
  }

  .main_con .main_btn a {
    width: 300px;
    height: 100px;
    line-height: 100px;
    text-decoration: none;
  }

  .main_con .main_btn a span {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    margin-left: -20px;
  }

  .main_con .main_btn a span:after {
    top: 2px;
  }

  .main_con .main_btn a.m_btn {
    margin-left: 16px;
  }

  #main_kw {
    background: #EDF1F7;
  }

  .main_keyword {
    padding: 100px 150px 0 150px;
    background: #fff;
  }

  .main_keyword .no_date {
    margin: 0 auto;
    text-align: center;
    padding-top: 241px;
  }

  .main_keyword .no_date img {
    width: 136px;
    height: 136px;
  }

  .main_keyword .no_date .text {
    padding-bottom: 246px;
    font-family: 'Pretendard';
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #8694B1;
  }

  .tiding_box {
    padding: 49px 182px 64px 182px;
    background: #fff;
    clear: both;
  }

  .tiding_box .api_type {
    clear: both;
    width: 916px;
    margin: 0 auto;
  }

  .api_tiding {
    float: left;
    padding-top: 15px;
  }

  .api_tiding .api_tit h2 {
    font-family: 'Pretendard';
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    cursor: default;
    letter-spacing: -0.02em;
    text-align: left;
    color: #252B37;
  }

  .api_tiding .api_tit .total_view {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #252B37;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .api_tiding .api_tiding_list {
    width: 508px;
  }

  .api_tiding .api_tiding_list li {
    display: table;
    padding: 32px 0;
    border-bottom: 1px solid #E0E6F1;
  }

  .api_tiding .api_tiding_list li p {
    width: 508px;
    font-size: 20px;
  }

  .api_info {
    float: right;
    width: 360px;
    padding-top: 15px;
  }

  .api_info li {
    margin-top: 14px;
    padding: 10px;
    height: 122px;
    cursor: pointer;
    position: relative;
  }

  .api_info li p {
    font-size: 24px;
    line-height: 30px;
    cursor: pointer;
  }

  .api_info li span {
    font-size: 16px;
    padding-top: 4px;
    display: inline-block;
  }

  .api_info li:first-child {
    margin-top: 0;
  }

  .api_info_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    width: 980px;
    margin: 40px auto 0 auto;
  }

  .api_info_container.box_list {
    justify-content: start;
  }

  .api_info_container.box_list .api_box {
    margin-left: 12px;
  }

  .api_info_container.box_list .api_box:nth-child(4n+1) {
    margin-left: 0;
  }

  .api_info_container.box_list .api_box:nth-child(1) {
    margin-left: 0;
  }

  .api_info_container.mt_0 {
    margin-top: 0;
  }

  .ser_result {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #000;
    padding: 32px 32px 0 32px;
  }

  .ser_result span {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #020616;
  }

  .main_keyword .api_tit {
    width: 980px;
    margin: 0 auto;
  }

  .main_keyword .api_keyword {
    margin: 0 auto;
    padding-top: 48px;
  }

  .main_keyword .api_tit h2 {
    font-size: 32px;
    line-height: 40px;
    cursor: default;
  }

  .main_keyword .api_keyword .keyword_list li a {
    position: relative;
    background: #fff;
    border: 1px solid #C8D2E4;
    display: inline-block;
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #020616;
    margin-top: 12px;
    font-size: 20px;
    line-height: 48px;
    height: 48px;
    border-radius: 24px;
    padding: 0 24px;
  }

  .main_keyword .api_tit .total_view {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #252B37;
    text-decoration: underline;
    padding-left: 24px;
    display: inline-block;
    padding-top: 11px;
  }

  .api_keyword {
    position: relative;
    width: 980px;
  }

  .keyword_list {
    display: flex;
    flex-wrap: wrap; /* 기본적으로 한 줄로 표시 */
    overflow: hidden; /* 가로 스크롤 없애기 */
    width: 898px;
    padding: 0;
    margin: 0;
    height: 60px;
    list-style-type: none; /* 기본 목록 스타일 제거 */
    transition: height 0.3s ease; /* 높이 전환 효과 */
    gap: 8px;
  }

  .keyword_list.expanded {

    height: 100%;
  }

  .main_keyword .api_keyword .keyword_list li a:hover {
    background: #fff;
    color: #020616;
    border-radius: 24px;
    border: 1px solid #C8D2E4;
  }

  .main_keyword .api_keyword .keyword_list li a:focus {
    color: #fff;
    background: #0114A7;
    text-decoration: none;
    display: inline-block;
    border-radius: 24px;
  }

  .more_type {
    position: absolute;
    top: 59px;
    right: 0;
  }

  .more_type .showmore img {
    width: 48px;
    height: 48px;
  }

  .api_info_box {
    flex-basis: calc(25% - 16px);
    margin-top: 0;
    cursor: pointer;
    box-shadow: 0px 10px 15px -3px #414E651A;
    margin-left: 12px;
  }

  .api_info_box {
    flex-basis: calc(25% - 16px);
    margin-top: 0;
    cursor: pointer;
    box-shadow: 0px 10px 15px -3px #414E651A;
    margin-left: 12px;
  }

  .api_info_container.box_list .api_info_box:nth-child(4n+1) {
    margin-left: 0;
  }

  .api_info_container.box_list .api_info_box:nth-child(n+5) {
    margin-top: 10px;
  }

  .api_info_box .api_list .txt1 {
    font-size: 24px;
    line-height: 30px;
    width: 150px;
  }

  .api_info_box .api_list .txt2 {
    font-size: 16px;
    line-height: 24px;
  }

  .api_info_box .api_list {
    height: 196px;
    width: 150px;
  }

  .api_info .img1 img {
    position: absolute;
    top: -15px;
    right: 24px;
    width: 110px;
    height: 91px;
    cursor: pointer;
    z-index: 1;
  }

  .api_info .img2 img {
    position: absolute;
    top: 8px;
    right: -24px;
    width: 110px;
    height: 107px;
    z-index: 1;
    cursor: pointer;
  }

  .api_info .img3 img {
    position: absolute;
    top: 38px;
    right: 24px;
    width: 110px;
    height: 89px;
    cursor: pointer;
  }

  .api_count {
    background: #fff;
    height: 300px;
  }

  .api_total_box {
    background: url(/img/bg_api.png) no-repeat 0 0;
    padding: 72px 60px;
    border-radius: 40px;
    margin: 0 auto 0 auto;
    position: relative;
    z-index: 1;
    width: 980px;
    overflow: hidden;
  }

  .api_total_box .txt {
    font-family: 'Pretendard';
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    cursor: default;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
  }

  .api_total_box .txt em {
    font-family: 'Pretendard';
    font-size: 32px;
    font-weight: 700;
    cursor: default;
    line-height: 40px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
  }

  .api_total li {
    width: 252px;
    padding-right: 0;
  }

  .api_total li p {
    font-family: 'Pretendard';
    font-size: 24px;
    font-weight: 700;
    cursor: default;
    line-height: 30px;
    letter-spacing: -0.02em;
    color: #fff;
  }

  .api_total li span {
    font-family: 'Pretendard';
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    cursor: default;
    letter-spacing: -0.02em;
    color: #fff;
  }

  .api_total li img {
    width: 72px;
    height: 72px;
  }

  .api_total .api_num {
    display: inline-block;
    text-align: left;
    padding: 7px 16px;
  }

  #main_bg {
    height: 94px;
  }

  .keyword_list .number {
    position: absolute;
    top: -10px; /* 항목 위쪽에 위치 */
    right: -5px; /* 항목 오른쪽에 위치 */
    background: #E23A32;
    color: #fff; /* 텍스트 색상 (흰색) */
    border-radius: 16px; /* 원형 배경 */
    width: 34px; /* 숫자 배경 크기 */
    height: 26px; /* 숫자 배경 크기 */
    display: none;
    justify-content: center; /* 숫자 중앙 정렬 */
    align-items: center; /* 숫자 중앙 정렬 */
    font-size: 14px; /* 숫자 크기 */
    font-weight: bold; /* 숫자 두껍게 표시 */
  }

  .keyword_list a:hover .number {
    display: none; /* 마우스를 올렸을 때 숫자 표시 */
  }

  .keyword_list a:focus .number {
    display: flex; /* 마우스를 올렸을 때 숫자 표시 */
  }

  /* common */
  /* .common_input_type_1:focus{font-size:16px;} */
  /* btn */
  .btn_search {
    height: 48px;
    padding: 0 20px 0 42px;
    font-size: 16px;
    line-height: 48px;
    color: #0114A7;
    background: #EDF1F7 url(/img/icon/icon_search2.png) no-repeat 20px center / 20px 20px;
    background-size: 20px;
    letter-spacing: -0.2px;
    font-family: 'Pretendard';
    font-weight: 400;
    border: 1px solid #EDF1F7;
    border-radius: 6px;
  }

  .btn_add {
    height: 48px;
    padding: 0 16px 0 32px;
    font-size: 14px;
    line-height: 24px;
    color: #0114A7;
    background: #EDF1F7 url(/img/icon/icon_plus.png) no-repeat 10px center / 16px 16px;
    background-size: 16px;
    letter-spacing: -0.2px;
    font-family: 'Pretendard';
    font-weight: 400;
    border: 1px solid #EDF1F7;
    border-radius: 6px;
  }

  .btn_add2 {
    width: 133px;
    height: 48px;
    padding: 12px 0 12px 24px;
    font-size: 16px;
    line-height: 24px;
    color: #0114A7;
    background: #EDF1F7 url(/img/icon/icon_plus.png) no-repeat 20px center / 16px 16px;
    background-size: 16px;
    letter-spacing: -0.2px;
    font-family: 'Pretendard';
    font-weight: 400;
    border: 1px solid #EDF1F7;
    border-radius: 6px;
  }

  .btn_key {
    height: 48px;
    padding: 0 16px 0 34px;
    font-size: 14px;
    line-height: 22px;
    color: #0114A7;
    background: #EDF1F7 url(/img/icon/icon_key.png) no-repeat 10px center / 16px 16px;
    background-size: 16px;
    background-position: 12px center;
    letter-spacing: -0.2px;
    font-family: 'Pretendard';
    font-weight: 400;
    border-radius: 6px;
  }

  .btn_del {
    width: 72px;
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 22px;
    color: #E23A32;
    background: #FFE5E0;
    letter-spacing: -0.2px;
    font-family: 'Pretendard';
    font-weight: 400;
    border-radius: 4px;
  }

  .btn_refresh {
    height: 48px;
  }

  /* PAGINATION */
  .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 41px;
  }

  .pagination a {
    display: block;
    width: 32px;
    height: 32px;
    font-size: 16px;
    line-height: 32px;
    margin: 0 3px;
    font-family: 'Pretendard';
    font-weight: 400;
    letter-spacing: -0.02em;
    text-align: center;
    color: #252B37;
  }

  .pagination a.page-current {
    width: 32px;
    color: #0114A7;
    border: 1px solid #E0E6F1;
    font-weight: 700;
    border-radius: 8px;
    font-size: 16px;
    line-height: 32px;
    cursor: pointer;
  }

  .pagination a.page-prev, .pagination a.page-next {
    background: url("/img/icon/icon_page_arrow_l.png") no-repeat center;
    background-size: 24px;
    margin: 0 12px;
  }

  .pagination a.page-next {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .pagination a.page-current.pc_current {
    width: 24px;
    color: #0114A7;
    border: 1px solid #E0E6F1;
    font-weight: 700;
    border-radius: 4px;
    font-size: 16px;
  }

  .form_type .info_box1 .input .common_input_type_1.trash {
    background: none;
    border: 1px solid #E0E6F1;
  }

  .form_type .info_box1 .input .common_input_type_1.trash::placeholder {
    color: #8694B1;
  }

  /* API */

  .api_stit2 ul {
    padding: 0 0 0 0;
  }

  .api_stit2.api_dot ul li {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #140064;
    position: relative;
    padding-left: 12px;
  }

  .api_stit2.api_dot ul li:after {
    content: '';
    width: 6px;
    height: 6px;
    background: #140064;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
  }

  .box.pop_arrow p:nth-child(1) {
    margin-bottom: 16px;
  }

  .api_inner .api_box {
    border: 1px solid #E0E6F1;
    border-radius: 20px;
    width: 220px;
  }

  .api_inner .api_info_box {
    margin-top: 20px;
  }

  .api_inner .api_info_box:hover {
    border: 4px solid #1728C4;
  }

  .api_inner .api_info_box:nth-child(1) {
    margin-top: 0;
  }

  .api_inner .api_info_box:nth-child(2) {
    margin-top: 0;
  }

  .api_inner .api_info_box:nth-child(3) {
    margin-top: 0;
  }

  .api_inner .api_info_box:nth-child(4) {
    margin-top: 0;
  }

  .api_inner .api_keyword .keyword_list::after {
    background: 0 none;
  }

  .api_inner .api_keyword .keyword_list.grt::after {
    background: 0 none;
  }

  .board_search .search_txt.ser_api.w_inp2 {
    width: 304px;
  }

  .popup-content .application_box {
    padding-top: 34px;
  }

  .board_search.sh_box.top {
    padding-top: 30px;
  }

  .tb_conbox.top {
    margin-top: 11px;
  }

  .popup_total .popup-content .pop_text.l_text {
    padding: 14px 0;
    cursor: default;
  }

  #wrap .pop_text.l_text {
    padding: 14px 0;
    cursor: default;
  }

  .popup_total .popup-content .pop_text.l_text.p_pop {
    padding: 32px 0 16px 0;
    cursor: default;
  }

  .popup_total .popup-content .pop_textbox.p_pop2 {
    padding-top: 0;
    cursor: default;
  }

  .board_search .search_txt.ser_api {
    position: relative;
    height: 48px;
    line-height: 48px;
    border-radius: 6px;
    text-align: left;
    width: 220px;
    max-width: 330px;
    padding-left: 12px;
  }

  .board_search .search_txt.ser_api2 {
    padding-left: 28px;
  }

  .board_search .search_txt.ser_api .common_input_type_1 {
    width: 100%;
  }

  .popup_total .popup-content .pop_text.pop_text3 {
    margin-left: 76px;
    margin-top: -10px;
    cursor: default;
  }

  #wrap .api_inner {
    padding: 24px 0 56px 0;
  }

  /* .sub_title4{padding-top: 56px;} */
  .sub_title4 {
    padding: 56px 0 0 0;
  }

  .sub_title4 h2 {
    font-family: 'Pretendard';
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #000;
  }

  .sub_title4 .infotxt {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #020616;
    margin-top: 4px;
    cursor: default;
  }

  .sub_title4 .title {
    position: relative;
    z-index: 1;
    cursor: default;
  }

  .sub_title4 .title:after {
    content: '';
    display: block;
    clear: both;
    background: #B6F23D;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 0;
    left: -11px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    z-index: -1;
    cursor: default;
  }

  .content_wrap.w_api {
    /* width: 1564px; */
    width: 100%;
    max-width: 1644px;
    padding: 0 40px;
  }

  .api_service_type .service_txt {
    position: absolute;
    top: 57px;
    left: 50px;
  }

  .api_service_type .service_txt p {
    font-family: 'Pretendard';
    cursor: default;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #fff;
  }

  .api_service_type .service_txt span {
    font-family: 'Pretendard';
    cursor: default;
    font-size: 16px;
    font-weight: 100;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #FFFFFFB2;
  }

  .api_service_type {
    position: relative;
    margin-top: 56px;
    background-color: #1728C4;
    border-radius: 24px;
  }

  .api_service_type img {
    width: 100%;
    height: 240px;
    border-radius: 24px;
    max-width: 980px;
  }

  .api_inner .main_keyword {
    border-radius: 16px;
  }

  /* .api_inner .api_info_box{
        margin-top: 0;
    } */
  .search_type2 {
    padding-top: 48px;
  }

  .search_type2 .search-box2 {
    padding: 10px;
    font-size: 20px;
    border: 2px solid #0114A7;
    border-radius: 40px;
    outline: none;
    width: 660px;
    height: 80px;
    text-indent: 40px;
  }

  .search_type2 .search-button2 {
    width: 32px;
    height: 32px;
    background: url('/img/icon/icon_main_search2.png') no-repeat center center;
    background-size: 32px 32px;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 200px;
  }

  .api_inner .main_keyword .api_keyword {
    padding: 56px 32px 0 32px;
    width: 980px;
  }

  .api_inner .api_keyword .keyword_list {
    width: 834px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 0;
    margin: 0;
    height: 60px;
    list-style-type: none;
    transition: height 0.3s ease;
    gap: 1px;
  }

  .api_inner .api_keyword .keyword_list.expanded {

    height: 100%;
  }

  .api_inner .api_keyword .more_type {
    position: absolute;
    top: 66px;
    right: 32px;
  }

  .api_inner .api_keyword {
    height: 100%;
  }

  .api_inner .main_keyword .api_info_container {
    padding: 0 32px 64px 32px;
  }

  .popup-content .infor {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
    padding: 32px 0 0 10px;
  }

  .popup-content .infor.top {
    padding-top: 12px;
  }


  .lnb {
    display: block; /* PC에서는 LNB 표시 */
    width: 276px;
    background-color: #fff;
    padding: 20px;
    position: fixed;
    left: 0;
    top: 60px; /* 헤더 높이에 따라 조정 */
    bottom: 0;
    overflow-y: auto; /* 콘텐츠가 많을 경우 스크롤 추가 */
  }

  .lnb ul {
    margin-top: 105px;
  }

  .lnb .lnb_list_nav {
    display: none;
  }

  .lnb .lnb_list_nav li {
    padding: 4px 0;
  }

  .lnb ul li a {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #020616;
  }

  .lnb > nav > ul > li.on .lnb_list_nav {
    display: block;
    margin-top: 4px;
  }

  .lnb > nav > ul > li.on .lnb_list_nav a {
    position: relative;
    padding-left: 20px;
  }

  .lnb > nav > ul > li.on .lnb_list_nav a:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #4D596F;
    border-radius: 50%;
    position: absolute;
    left: 8px;
    top: 5px;
  }

  .lnb .lnb_list_nav a {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
  }

  .content.api_con {
    padding-left: 276px; /* LNB 너비 + 여백 */
  }

  .lnb nav .lnb_list_type > li > a {
    position: relative;
    display: block;
    border-bottom: 1px solid #E0E6F1;
    padding: 16px 0;
  }

  .lnb nav .lnb_list_type > li > a::after {
    content: '';
    display: block;
    clear: both;
    background-image: url(/img/icon/icon_api_arrow.png);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 16px;
    right: 0;
  }

  .lnb nav .lnb_list_type > li.on > a::after {
    background-image: url(/img/icon/icon_api_arrow_sel.png);
  }

  .api_stit h3 {
    font-family: 'Pretendard';
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #020616;
    cursor: default;
  }

  .api_stit ul {
    background: #F7F9FD;
    padding: 24px 26px 24px 26px;
    margin-top: 16px;
    border-radius: 8px;
  }

  .api_stit ul .tit.m_top {
    margin-top: 0;
  }

  .api_stit.stit ul {
    padding: 24px 32px 24px 32px;
  }

  .api_stit .tb_top {
    margin-top: 48px;
  }

  .api_stit.api_dot ul li p {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
    cursor: default;
  }

  .api_stit.api_star ul li p {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
  }

  .api_stit.api_star ul li span {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
  }

  .api_stit.stit ul li .dash li {
    margin-top: 0;
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
  }

  .api_stit.stit {
    margin-top: 80px;
    overflow: hidden;
  }

  .api_table.api_tb {
    border-top: 2px solid #252B37;
    margin-top: 10px;
    width: 50%;
    float: left;
  }

  .api_stit.stit .api_data {
    display: flex;
    float: right;
    width: 47%;
    padding: 0;
    height: 392px;
  }

  .api_stit .api_data .data_lt {
    margin: auto 0;
    padding: 0 40px;
  }

  .api_data dl {
    position: relative;
    padding: 8px 0;
  }

  .api_data dl dt {
    padding: 8px 0;
    top: 0;
  }

  .api_stit.api_sc {
    margin-top: 48px;
  }

  .api_stit.api_sc2 {
    margin-top: 0;
  }

  .api_stit.api_sc3 {
    /* margin-top: 40px; */
    margin-top: 24px;
  }

  .api_stit.api_sc4 {
    margin-top: 48px;
  }

  .api_stit.api_sc4_1 {
    margin-top: 24px;
  }

  .api_stit.api_sc5 {
    margin-top: 0;
  }

  .api_stit.api_sc ul li .tit {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #140064;
    position: relative;
  }

  .api_stit.api_sc ul li .tit:after {
    content: '';
    width: 6px;
    height: 6px;
    background: #140064;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
  }

  .api_stit.api_sc ul li .tit span {
    padding-left: 4px;
  }

  .api_stit .api_sauce {
    background: #252B37;
    padding: 32px 40px;
    margin-top: 8px;
    border-radius: 12px;
    /* height: 658px; */
    min-height: 100%;
  }

  .api_stit .api_table.tb_col tbody td {
    padding: 21px 0;
  }

  .api_btn {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .api_btn a {
    width: 180px;
    height: 72px;
    line-height: 72px;
    border-radius: 12px;
  }

  .api_btn a.gray {
    height: 72px;
    line-height: 72px;
    border-radius: 12px;
    font-size: 20px;
  }

  .api_line {
    border-top: 1px solid #67748E;
    margin: 64px 0;
  }

  .api_table {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    table-layout: auto;
  }

  .api_table.m_top {
    margin-top: 0;
  }

  .api_tabs.m_tabs {
    margin-top: 48px;
  }

  .api_tabs .api_nav {
    margin-bottom: 24px;
  }

  .api_tabs .api_nav li {
    position: relative;
    border-top: 1px solid #C8D2E4;
    /* border-left: 1px solid #C8D2E4; */
    border-right: 1px solid #C8D2E4;
    background: #EDF1F7;
  }

  .api_tabs .api_nav li a {
    border-bottom: 1px solid #140064;
    border-left: 1px solid #C8D2E4;
    font-weight: 400;
    font-size: 20px;
    padding: 18px 15px;
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #3B4659;
  }

  .api_tabs .api_nav li a span {
    display: inline-block;
  }

  .api_tabs .api_nav li.active a {
    border-bottom: none;
    background: #fff;
    border-top: 1px solid #140064;
    border-right: 1px solid #140064;
    border-left: 1px solid #140064;
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #140064;
  }

  .api_stit.structure_box img {
    width: 100%;
  }

  .api_stit.structure_box .structure_img {
    margin-top: 80px;
  }

  /* 마이페이지 */
  .withdrawal {
    margin-top: 56px;
  }

  .suv_ck ul li a:after {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }

  .form_type .info_box1 .key_box {
    padding: 20px 16px;
    height: 88px;
  }

  .dashboard_box {
    box-shadow: none;
  }

  .popup_total .popup-content .pop_text.l_text2 {
    padding: 26px 0 0 0;
    cursor: default;
  }

  #wrap .pop_text.l_text2 {
    padding: 26px 0 0 0;
    cursor: default;
  }

  .board_search.sh_box.top2 {
    padding-top: 24px;
  }

  .popup_total .popup-content.pop_w {
    width: 1000px;
  }

  .popup_total .popup-content.pop_w2 {
    width: 1000px;
  }

  .tb_conbox {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .box.table_type2 {
    width: 430px;
    align-self: flex-start;
  }

  .box.pop_arrow {
    width: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  }

  .box {
    height: 100%;
  }

  .table_type2.top_type {
    margin-top: 0;
    overflow-y: auto;
    height: 384px;
  }

  .dashboard_content .month_date {
    margin-bottom: 4px;
    cursor: default;
  }

  .dashboard_box2 .table_type {
    overflow-x: auto;
    margin-top: 12px;
  }

  .dashboard_box2 .table_type.api_tb .table_col {
    border-top: 2px solid #4D596F;
  }

  .dashboard_box2.i_cs {
    padding: 40px 32px 64px 32px;
    position: relative;
  }

  .dashboard_content {
    overflow: hidden;
    position: relative;
    padding: 0;
    width: 980px;
    margin-top: 56px;
  }

  .dashboard_box {
    height: 200px;
    padding: 28px 32px;
    display: inline-block;
  }

  .dashboard_box.bd_box {
    width: 978px;
    float: left;
  }

  .dashboard_box.bd_box1 {
    width: 190px;
    float: left;
  }

  .dashboard_box.bd_box2 {
    width: 558px;
    float: left;
    margin-left: 16px;
    margin-right: 16px;
  }

  .dashboard_box.bd_box3 {
    width: 200px;
    float: left;
  }

  .dashboard_box .icon1 .tit {
    font-family: 'Pretendard';
    font-size: 18px;
    cursor: default;
  }

  .dashboard_box .num {
    display: inline-block;
    padding-top: 50px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    cursor: default;

  }

  .dashboard_box .num span {
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
    padding-left: 15px;
  }

  .dashboard_box .api_use {
    display: inline-block;
    padding-top: 32px;
  }

  .dashboard_box .api_use ul {
    display: flex;
  }

  .dashboard_box .api_use ul li{
    flex: 1;
  }

  .dashboard_box .api_use li {
    display: inline-block;
    border-right: 1px solid #E0E6F1;
    padding: 0 18px;
    width: 161px;
    margin-top: 0;
    cursor: default;
  }

  .dashboard_box .api_use li:first-child {
    padding-left: 0;
    cursor: default;
  }

  .dashboard_box .api_use li:last-child {
    border-right: none;
    padding-right: 0;
    cursor: default;
  }

  .dashboard_box .api_use li:first-child {
    margin-top: 0;
    cursor: default;
  }

  .dashboard_box .api_use .use_box {
    display: inline;
  }

  .dashboard_box .api_use .use_box .tit_m {
    line-height: 30px;
    cursor: default;
  }

  .dashboard_box .api_use .use_box .num_m {
    display: table;
    cursor: default;
  }

  .dashboard_box2 .form_type .info1.w220 {
    width: 220px;
  }

  .dashboard_box2 h3 {
    font-size: 24px;
    line-height: 30px;
    text-align: left;
    cursor: default;
  }

  /*margin-bottom: 16px;*/
  .tab_type .tab_link {
    top: 106px;
    right: 34px;
  }

  .tab_type .tab_link li {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
  }

  .tab_type .tab_link li.active {
    font-size: 18px;
  }

  .api_line {
    border-top: 1px solid #67748E;
    margin: 64px 0;
  }

  .btn_inventory.btn_top {
    margin-top: 32px;
  }

  .btn_inventory.btn_mtop {
    margin-top: 64px;
  }

  .btn_inventory a {
    margin: 0 auto;
    width: 180px;
    height: 72px;
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: -0.02em;
    text-align: center;
    border-radius: 12px;
  }

  .dashboard_box .api_use_num li {
    padding: 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: default;
  }

  .tb_board_list.ip_list .table_box .table thead th {
    height: 48px;
    padding: 0 16px;
  }

  .tb_board_list.ip_list .table_box .table tbody td {
    height: 64px;
  }

  /* swagger */
  .swagger_infor {
    background: #F7F9FD;
  }

  .swagger_infor .text {
    padding: 24px 16px 24px 32px;
    cursor: default;
  }

  .swagger_infor .text::after {
    top: 27px;
    left: 16px;
    cursor: default;
  }



  /* 2024-11-25 수정 */
  .api_info_box:hover {
    padding: 28px 8px;
    background-color: #1728C4;
    color: #fff;
  }

  .api_info_box:hover .txt1,
  .api_info_box:hover .txt2 {
    color: #fff;
  }

  .api_info_box .txt1:hover {
    color: #fff !important;
  }

  .api_info_box .api_list {
    max-width: calc(100% - 60px);
    margin-left: 12px;
    width: 150px;
  }

  .api_info_box .api_img img {
    width: 40px;
    height: 40px;
    transition: content 0.3s;
  }

  .api_info_box {
    padding: 28px 8px;
  }

  .api_info_box .txt1:hover {
    color: #fff !important;
  }

}


@media all and (min-width: 1920px) {
  /* navigation */
  #navigation {
    background: #17008C;
    width: 100%;
    height: 66px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .navigation {
    display: block;
    position: relative;
    z-index: 100;
    background: #64738b;
    border: solid rgba(255, 255, 255, 0.2);
    border-width: 1px 0;
    justify-content: center;
    align-items: center;
  }

  .navigation.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    border-top: 0;
  }

  .navigation-area {
    margin: 0 276px !important;
    width: 980px;
    display: flex;
    max-width: 100%;
  }

  .navigation-area.api_navi {
    margin: 0 276px;
    width: 1920px;
  }

  /* common */
  /* readonly 스타일 */
  .common_input_type_1.input-readonly {
    background-color: #f8f9fa !important;
    cursor: default;
    pointer-events: none !important;
  }

  /* w_inp 클래스를 가진 요소에 대한 readonly 스타일 */
  .common_input_type_1.w_inp.input-readonly {
    background-color: #f8f9fa !important;
    cursor: default;
    pointer-events: none !important;
  }

  /* w_inp2 클래스를 가진 요소에 대한 readonly 스타일 */
  .common_input_type_1.w_inp2.input-readonly {
    background-color: #f8f9fa !important;
    cursor: default;
    pointer-events: none !important;
  }

  .common_input_type_1 {
    height: 64px;
    font-size: 16px;
    line-height: 64px;
  }

  .common_input_type_1.w_inp {
    width: 52%;
  }

  .common_input_type_1.w_inp2 {
    width: 51%;
  }

  .common_input_type_1.w_inp3 {
    width: 197px;
  }

  .common_input_type_1.w_inp4 {
    width: 100%;
  }

  .common_input_type_1.w_inp5 {
    width: 184px;
  }

  .common_input_type_1.w_inp6 {
    width: 160px;
  }

  .common_input_type_1.w_inp7 {
    width: 210px;
  }

  .common_input_type_1.h_inp {
    height: 64px;
  }

  .common_input_type_1.h_inp::placeholder {
    font-size: 16px;
  }

  .common_input_type_1::placeholder,
  .common_selectType::placeholder {
    border: 0;
    font-size: 16px !important;
    color: #8694B1;
    height: 64px;
    line-height: 64px;
    position: relative;
    top: 0;
  }

  .common_input_type_1:focus,
  .common-select-type:focus {
    background: #E0E6F1;
    border: 1px solid #E0E6F1;
    font-size: 16px;
    letter-spacing: -0.02em;
    outline: none;
    height: 64px;
    line-height: 64px;
    color: #252B37;
  }

  .common_input_type_1.type-1:focus,
  .common-select-type.type-1:focus {
    background: #fff;
  }

  /*btn*/
  .common_btn_type_1 {
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
  }

  /* formtype */
  .form_type .info1 .info_line.info_add {
    display: block;
  }

  .form_type .info_line .btn_check {
    width: 140px;
    margin-left: 8px;
    margin-top: 0;
    z-index: 0;
  }

  .form_type .info_box1.info_add2 {
    display: inline-flex;
    width: 100%;
  }

  .filebox {
    width: 100%;
    max-width: 584px;
  }

  .m-only {
    display: none !important;
  }

  .pc-only {
    display: block !important;
  }

  #lnb_type {
    position: relative;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  /* API */
  .api_tabs .api_nav {
    margin-bottom: 24px;
  }

  .box.pop_arrow p:nth-child(1) {
    margin-bottom: 16px;
  }

  .api_inner .api_info_box {
    margin-top: 20px;
  }

  .api_inner .api_info_box:nth-child(1) {
    margin-top: 0;
  }

  .api_inner .api_info_box:nth-child(2) {
    margin-top: 0;
  }

  .api_inner .api_info_box:nth-child(3) {
    margin-top: 0;
  }

  .api_inner .api_info_box:nth-child(4) {
    margin-top: 0;
  }

  .api_inner .api_keyword .keyword_list::after {
    background: 0 none;
  }

  .api_inner .api_keyword .keyword_list.grt::after {
    background: 0 none;
  }

  .tb_conbox.top {
    margin-top: 11px;
  }

  .board_search .search_txt.ser_api.w_inp2 {
    width: 304px;
  }

  .board_search.sh_box.top {
    padding-top: 30px;
  }

  .popup-content .application_box {
    padding-top: 34px;
  }

  #wrap .inner2.i_cs {
    padding: 40px 32px 64px 32px;
  }

  #wrap .api_inner {
    padding: 24px 0 56px 0;
  }

  #wrap .inner2 {
    padding: 166px 32px 166px 32px;
    background: #fff;
    border-radius: 16px;
    margin-top: 16px;
  }

  .sub_title4 {
    padding-top: 56px;
  }

  .sub_title4 h2 {
    font-family: 'Pretendard';
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #000;
  }

  .sub_title4 .infotxt {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #020616;
    margin-top: 4px;
    cursor: default;
  }

  .sub_title4 .title {
    position: relative;
    z-index: 1;
    cursor: default;
  }

  .sub_title4 .title:after {
    content: '';
    display: block;
    clear: both;
    background: #B6F23D;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 0;
    left: -11px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    z-index: -1;
    cursor: default;
  }

  .content_wrap.w_api {
    /* width: 1564px; */
    width: 100%;
    max-width: 1644px;
    padding: 0 40px;
  }

  .api_service_type .service_txt {
    position: absolute;
    top: 57px;
    left: 50px;
  }

  .api_service_type .service_txt p {
    font-family: 'Pretendard';
    font-size: 32px;
    cursor: default;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #fff;
  }

  .api_service_type .service_txt span {
    font-family: 'Pretendard';
    font-size: 16px;
    cursor: default;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #FFFFFFB2;
  }

  .api_service_type {
    position: relative;
    margin-top: 56px;
    background-color: #1728C4;
    border-radius: 24px;
  }

  .api_service_type img {
    width: 100%;
    max-width: 980px;
    height: 240px;
    border-radius: 24px;
  }

  .api_inner .main_keyword {
    border-radius: 16px;
  }

  .api_inner .api_info_box {
    margin-top: 0;
  }

  .search_type2 {
    padding-top: 48px;
  }

  .search_type2 .search-box2 {
    padding: 10px;
    font-size: 20px;
    border: 2px solid #0114A7;
    border-radius: 40px;
    outline: none;
    width: 660px;
    height: 80px;
    text-indent: 40px;
  }

  .search_type2 .search-box2::placeholder {
    font-size: 20px;
    color: #8694B1;
  }

  .search_type2 .search-button2 {
    width: 32px;
    height: 32px;
    background: url('/img/icon/icon_main_search2.png') no-repeat center center;
    background-size: 32px 32px;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 200px;
  }

  .api_inner .api_info_box {
    margin-top: 20px;
  }

  .api_inner .main_keyword .api_keyword {
    padding: 56px 32px 0 32px;
    width: 980px;
  }

  .api_inner .api_keyword .keyword_list {
    width: 834px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 0;
    margin: 0;
    height: 60px;
    list-style-type: none;
    transition: height 0.3s ease;
    gap: 1px;
  }

  .api_inner .api_keyword .keyword_list.expanded {

    height: 100%;
  }

  .api_inner .api_keyword .more_type {
    position: absolute;
    top: 66px;
    right: 32px;
  }

  .api_inner .api_keyword {
    height: 100%;
  }

  .api_inner .main_keyword .api_info_container {
    padding: 0 32px 64px 32px;
    margin: 0 auto;
  }

  .api_info_container.mt_0 {
    margin-top: 0;
  }

  .ser_result {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: #000;
  }

  .ser_result span {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #020616;
  }

  .lnb {
    display: block; /* PC에서는 LNB 표시 */
    width: 276px;
    background-color: #fff;
    padding: 20px;
    position: fixed;
    left: 0;
    top: 60px; /* 헤더 높이에 따라 조정 */
    bottom: 0;
    overflow-y: auto; /* 콘텐츠가 많을 경우 스크롤 추가 */
  }

  .lnb ul {
    margin-top: 105px;
  }

  .lnb .lnb_list_nav {
    display: none;
  }

  .lnb .lnb_list_nav li {
    padding: 4px 0;
  }

  .lnb .lnb_list_nav a {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
  }

  .lnb ul li a {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #020616;
  }

  .lnb > nav > ul > li.on .lnb_list_nav {
    display: block;
    margin-top: 4px;
  }

  .lnb > nav > ul > li.on .lnb_list_nav a {
    position: relative;
    padding-left: 20px;
  }

  .lnb > nav > ul > li.on .lnb_list_nav a:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #4D596F;
    border-radius: 50%;
    position: absolute;
    left: 8px;
    top: 5px;
  }

  .content.api_con {
    padding-left: 276px; /* LNB 너비 + 여백 */
  }

  .lnb nav .lnb_list_type > li > a {
    position: relative;
    display: block;
    border-bottom: 1px solid #E0E6F1;
    padding: 16px 0;
  }

  .lnb nav .lnb_list_type > li > a::after {
    content: '';
    display: block;
    clear: both;
    background-image: url(/img/icon/icon_api_arrow.png);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 16px;
    right: 0;
  }

  .lnb nav .lnb_list_type > li.on > a::after {
    background-image: url(/img/icon/icon_api_arrow_sel.png);
  }

  .api_stit h3 {
    font-family: 'Pretendard';
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #020616;
    cursor: default;
  }

  .api_stit .infor {
    font-family: 'Pretendard';
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #020616;
    padding-top: 12px;
  }

  .api_stit ul {
    background: #F7F9FD;
    padding: 24px 26px 24px 26px;
    margin-top: 16px;
    border-radius: 8px;
  }

  .api_stit.stit ul {
    padding: 24px 32px 24px 32px;
  }

  .api_stit .tb_top {
    margin-top: 48px;
  }

  .api_stit.api_dot ul li p {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
    cursor: default;
  }

  .api_stit.api_star ul li p {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
  }

  .api_stit.api_star ul li span {
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
  }

  .api_stit.stit ul li .dash li {
    margin-top: 0;
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #4D596F;
  }

  .api_stit.stit {
    margin-top: 80px;
  }

  .api_table.m_top {
    margin-top: 0;
  }

  .api_table.api_tb {
    border-top: 2px solid #252B37;
    margin-top: 10px;
    width: 50%;
    float: left;
  }

  .api_stit.stit .api_data {
    float: right;
    width: 47%;
  }

  .api_stit .api_data .data_lt {
    margin: 100px 0;
    height: 194px;
    padding: 0 40px;
  }

  .api_stit.api_sc {
    /* margin-top: 80px; */
    margin-top: 48px;
  }

  .api_stit.api_sc2 {
    margin-top: 0;
  }

  .api_stit.api_sc3 {
    /* margin-top: 40px; */
    margin-top: 24px;
  }

  .api_stit.api_sc4 {
    margin-top: 48px;
  }

  .api_stit.api_sc4_1 {
    margin-top: 24px;
  }

  .api_stit.api_sc5 {
    margin-top: 0;
  }

  .api_stit.api_sc ul li .tit {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #140064;
    position: relative;
  }

  .api_stit.api_sc ul li .tit:after {
    content: '';
    width: 6px;
    height: 6px;
    background: #140064;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
  }

  .api_stit.api_sc ul li .tit span {
    padding-left: 4px;
  }

  .api_stit .api_sauce {
    background: #252B37;
    padding: 32px 40px;
    margin-top: 8px;
    border-radius: 12px;
    /* height: 658px; */
    min-height: 100%;
  }

  .api_btn {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .api_btn a {
    width: 180px;
    height: 72px;
    line-height: 72px;
    border-radius: 12px;
  }

  .api_btn a.gray {
    height: 72px;
    line-height: 72px;
    border-radius: 12px;
    font-size: 20px;
  }

  .api_table {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    table-layout: auto;
  }

  .api_tabs.m_tabs {
    margin-top: 48px;
  }

  .api_stit.structure_box img {
    width: 100%;
  }

  .api_stit.structure_box .structure_img {
    margin-top: 80px;
  }

  .api_stit .api_table.tb_col tbody td {
    padding: 21px 0;
  }

  .api_stit.stit .api_data {
    display: flex;
    float: right;
    width: 47%;
    padding: 0;
    height: 392px;
  }

  .api_stit .api_data .data_lt {
    margin: auto 0;
    padding: 0 40px;
  }

  .api_data dl {
    position: relative;
    padding: 8px 0;
  }

  .api_data dl dt {
    padding: 8px 0;
    top: 0;
  }

}
