@charset "UTF-8";
@import "./tokens.css";
@import "./font.css";
/* ---- reset ---- */
* {box-sizing: border-box;}

*:focus {
  outline: none;
  box-shadow: var(--box-shadow-outline-inset);
  border-radius: var(--radius-small1);
}

button:focus,
button:focus-visible {
  outline: none;
  box-shadow: var(--box-shadow-outline-inset);
  border-radius: var(--radius-small1);
}


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
input,
select,
textarea,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  /*border:0;*/
  list-style: none;
  border-collapse: collapse;
  border-spacing: 0;
  resize: none;
  word-break: keep-all;
}

html,
body {
  position: relative;
  width: 100%;
  color: var(--text-basic);
  font-family: 'PretendardGOV';
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-base);
  word-break: keep-all;
  word-wrap: break-word;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: var(--fs-base);
}

body {
  background-color: var(--background-white);
  font-size: var(--pc-fs-body-medium);
  -webkit-font-smoothing: antialiased;
  /* 텍스트를 부드럽게 렌더링 */
  -moz-osx-font-smoothing: grayscale;
  /* macOS에서 텍스트 렌더링 최적화 */
  -webkit-overflow-scrolling: touch;
  /* 모바일에서 터치 스크롤 최적화 */
  /* padding-top: constant(safe-area-inset-top);
  padding-bottom: constant(safe-area-inset-bottom); 안전 영역 env과 동일하여 권장하지 않음 */
  padding-top: env(safe-area-inset-top);
  /* 안전 영역 상단 패딩 */
  padding-bottom: env(safe-area-inset-bottom);
  /* 안전 영역 하단 패딩 */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
      overflow-x: auto;
}


#wrap {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 1024px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  #wrap {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
}

body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
a,
button,
select,
ul,
li,
span,
em,
label,
:before,
:after {
  -webkit-text-size-adjust: 100%;
  font-family: inherit;
  line-height: var(--line-height-base);
  padding: 0;
}

pre {
  font-family: inherit;
}

input,
textarea,
a,
button,
select,
span,
label,
:before,
:after {
  font-size: inherit;
  font-weight: inherit;
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img,
fieldset {
  border: 0;
}

fieldset {
  min-width: 100%;
}

img {
  max-width: 100%;
  vertical-align: top;
}

ul,
ol {
  list-style: none;
}

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

a,
button {
  transition: var(--transition-base);
}

a,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

a:visited.visited,
a:visited .visited {
  color: var(--link-visited);
}

button,
input[type=submit],
input[type=button] {
  overflow: visible;
  margin: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: button;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  resize: none;
}

/* label {
  cursor: pointer;
} */

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=text],
input[type=tel],
input[type=password],
input[type=file],
input[type=number],
input[type=email],
input[type=date],
input[type=search],
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

input[type=number] {
  -moz-appearance: textfield;
  margin: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear {
  display: none;
}

caption {
  position: static !important;
  margin: 0 !important;
}

table {
  table-layout: fixed;
  max-width: none;
  width: auto;
  min-width: 100%;
  border-collapse: collapse;
}

[role=button] {
  cursor: pointer;
}

.img img {
  min-width: 100%;
  max-width: 100%;
}

.img.bg-img {
  background-size: cover;
}

.blind,
hr,
.sr-only,
legend,
caption {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

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

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

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

.underline {
  text-decoration: underline;
  text-underline-offset: var(--font-underline-offset);
}

.break-all {
  word-break: break-all;
}

.svg-icon {
  display: inline-flex;
  width: var(--icon--size-large);
  height: var(--icon--size-large);
  background-color: var(--text-basic);
  forced-color-adjust: none;
}

.svg-icon.pure {
  display: inline-flex;
  width: var(--icon--size-large);
  height: var(--icon--size-large);
  background-color: var(--text-basic);
  background-color: transparent !important;
  forced-color-adjust: none;
}

.svg-icon.medium {
  width: var(--icon--size-medium);
  height: var(--icon--size-medium);
}

.svg-icon.small {
  width: var(--icon--size-small);
  height: var(--icon--size-small);
}

@media (max-width: 767px) {
  body {
    font-size: var(--mobile-fs-body-medium);
  }

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

  .pc-only.read {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .mob-line {
    display: block;
    line-height: inherit;
  }
}

@media (min-width: 768px) {
  .mob-only {
    display: none !important;
  }

  .mob-only.read {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .pc-line {
    display: block;
    line-height: inherit;
  }
}

.text-point-primary {
  color: var(--text-primary);
}




/*------------------------------------------------ */

/***** skip *****/
#skip li {
  list-style: none;
}

#skip a {
  display: block;
  position: absolute;
  top: 0;
  margin-bottom: -1px;
  width: 100%;
  height: 1px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  overflow: hidden;
  z-index: 600;
}

#skip a:focus,
#skip a:active {
  height: 45px;
  line-height: 45px;
  color: #fff;
  background-color: #666;
}

/*** 포털, 워크 공통 스타일 적용 ***/

/*** 조회단 ***/
.search-wrap{width: 100%;}
.search-wrap .search-inner{position:relative;padding:20px 30px;border:1px solid #c6c8cb;border-radius:10px;background-color: #f2f5f8;}
.search-wrap .padr20{padding-right:20px;}
.search-wrap .search-con{display:flex;align-items:center;justify-content:flex-start;gap: 30px;margin-bottom: 10px;}
.search-wrap .search-con .item{display:flex;align-items:center;width:calc(50% - 15px);min-width:0;margin-right:0;}
.search-wrap .search-con .item3{display:flex;align-items:center;width:33%;margin-right:0;border:0 solid #444565;}
.search-wrap .search-con .item1{display:flex;align-items:center;width:100%;}

.search-wrap .search-con .title{position:relative;display:flex;align-items:center;width:120px;height:42px;padding:0 0 0 10px;border:0 solid #333;font-weight:600;box-sizing:border-box;flex-shrink:0;}
.search-wrap .search-con .title2{position:relative;display:flex;align-items:center;height:42px;margin-right:10px;padding:0 0 0 10px;font-weight:600;box-sizing:border-box;flex-shrink:0;}
.search-wrap .search-con .title3{position:relative;display:flex;align-items:center;width:130px;height:42px;padding:0 0 0 10px;font-size:16px;font-weight:600;box-sizing:border-box;flex:0 0 130px;}
.search-wrap .search-con .title4{position:relative;display:flex;align-items:center;width:90px;height:42px;padding:0 0 0 10px;font-weight:600;box-sizing:border-box;flex-shrink:0;}
.search-wrap .search-con .title5{position:relative;display:flex;align-items:center;width:220px;height:42px;padding:0 0 0 10px;font-weight:600;box-sizing:border-box;flex-shrink:0;}
.search-wrap .search-con .title6{position:relative;display:flex;align-items:center;width:120px;height:42px;padding:0 0 0 10px;font-weight:600;box-sizing:border-box;flex-shrink:0;}
.search-wrap .search-con .title7{position:relative;display:flex;align-items:center;width:100px;height:42px;padding:0 0 0 10px;font-weight:600;box-sizing:border-box;flex-shrink:0;}

.search-wrap .search-con label{font-size:16px;font-weight:normal;line-height:20px!important;}
.search-wrap .search-con .title3 label{display:block!important;max-width:100%!important;margin:0!important;font-weight:600!important;}
.search-wrap .search-con .title::before,.search-wrap .search-con .title2::before,.search-wrap .search-con .title3::before,.search-wrap .search-con .title4::before,.search-wrap .search-con .title5::before,.search-wrap .search-con .title6::before,.search-wrap .search-con .title7::before{/* content:""; */position:absolute;top:50%;left:0;width:3px;height:2px;background-color:#777;transform:translateY(-50%);}

.search-wrap .search-con .list{display:flex;align-items:center; width: 100%;}
.search-wrap .select-bjdngcd_2{display:flex!important;align-items:center;gap:5px;}
.search-wrap .select-st1{height:40px;box-sizing:border-box;}

.search-wrap .date-con{display:flex;align-items:center;gap:20px;min-width:0;}
.search-wrap .date-first,.search-wrap .date-last{position:relative;flex-shrink:0;}
.search-wrap .date-last::before{content:"~";position:absolute;top:50%;left: -25px;width:12px;text-align:center;transform:translateY(-50%);}
.search-wrap .searchse-day{width:115px;height:40px;padding:0 35px 0 10px;border:1px solid #ddd;background-color:#fff;box-sizing:border-box;}
.search-wrap .btn-calendar{position:absolute;top:50%;right:8px;transform:translateY(-50%);}

.search-wrap .input-text{width:220px;height:40px;padding:0 10px;}
.search-wrap .input-text2{width:240px;height:40px;padding:0 10px;}
.search-wrap .board-search{width:242px;margin-right:10px;padding:0 10px;font-size:14px;}
.search-wrap .search-con .list input:focus{box-shadow:var(--box-shadow-outline-inset);}

.search-wrap .btn-search-wrap{position:static;display:flex;align-items:center;justify-content: center;gap:5px;width:100%;margin-top:20px;transform:none;}
.search-wrap .btn-search-wrap .btselect-stn-search{width:90px;height:40px;margin:0;}
.search-wrap .btn-search-wrap .btn-refrish{width:90px;height:40px;margin:0;}


.search-wrap .select-bjdngcd_2{display:flex!important;align-items:center;gap:5px;}
.search-wrap .select_xeicon{position:relative;display:inline-block;}
.search-wrap .select_xeicon::after{content:"\e941";position:absolute;top:50%;right:10px;color:#555;font-family:"xeicon"!important;font-size:14px;line-height:1;transform:translateY(-50%);pointer-events:none;}
.search-wrap .select_xeicon .select-st1{height:40px;padding:0 32px 0 10px;border:1px solid #e5e5e5;color:#222;background:#fff!important;box-sizing:border-box;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none;font-size: 16px;}
.search-wrap .select_xeicon .select-st1:focus{outline:3px solid #ffbf00!important;outline-offset:2px;}

/*0723추가*/
.select_st2 {position:relative; display:inline-block;}
.select_st2::after {content:"\e941"; position:absolute; top:50%; right:10px; color:#555; font-family:"xeicon"!important; font-size:14px; line-height:1; transform:translateY(-50%); pointer-events:none;}
.select_st2 select {width:100%; height:40px; padding:0 32px 0 10px; color:#222; background:#fff!important; border:1px solid #e5e5e5; box-sizing:border-box; cursor:pointer; -webkit-appearance:none; -moz-appearance:none; appearance:none;}
.select_st2 select:focus {outline:3px solid #ffbf00!important; outline-offset:2px;}
.select_st2.w80 {width:80px;}
.select_st2.w90 {width:90px;}
.select_st2.w100 {width:100px;}
.select_st2.w120 {width:120px;}
.select_st2.w150 {width:150px;}
.select_st2.full {width:100%;}

.input-text {
  height: 40px;
  padding: 0 10px;
  width: 240px;
}

/*인풋 텍스트 박스*/
.input-text80 {
  height: 40px;
  padding: 0 10px;
  width: 80px;
}

.input-text100 {
  height: 40px;
  padding: 0 10px;
  width: 100px !important;
}

.input-text120 {
  height: 40px;
  padding: 0 10px;
  width: 120px !important;
}

.input-text150 {
  height: 40px;
  padding: 0 10px;
  width: 150px !important;
}

.input-text180 {
  height: 40px;
  padding: 0 10px;
  width: 180px !important;
}

.input-text200 {
  height: 40px;
  padding: 0 10px;
  width: 200px !important;
}

.input-text220 {
  height: 40px;
  padding: 0 10px;
  width: 220px !important;
}

.input-text400 {
  height: 40px;
  padding: 0 10px;
  width: 550px !important;
}

.btn-search {
  display: inline-block;
  width: 80px;
  height: 40px;
  margin-left: -1px;
  color: #fff;
  border: 1px solid #224a85;
  border-radius: 2px;
  background-color: #224a85;
  transition: opacity .3s;
}

/* 포털관리자와 맞추기 위해 주석 후 추가
.btn-search:hover {background-color:#224a85;}
*/
.search-inner .btn-search-wrap>.btn-search:hover {
  opacity: .7;
}

.btn-refrish {
  width: 90px;
  height: 40px;
  margin-left: 3px;
  color: #333;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: opacity .3s;
  font-size: 16px;
}

.btn-refrish:hover {
  border: 1px solid #777;
  background-color: #777;
  color: #fff;
}

/*** 공통 ***/
.text-Blue {
  color: #2a66e7;
}

.requ-text {
  position: relative;
  padding-left: 10px;
}

.requ-text::before {
  content: "*";
  display: block;
  position: absolute;
  left: 0px;
  top: 3px;
  width: 10px;
  height: 10px;
  color: #1759dd;
}

.hide {
  display: none !important;
}

.icon {
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
}

.textBlue {
  color: #777;
}

.textBlack {
  color: #333;
}

.textWhite {
  color: #555;
}

.disn {
  display: none;
}

.texterror {
  color: #a7b0cc;
}

label.error {
  position: relative;
  color: #2a66e7;
  margin-left: 10px;
}

/*필수입력 필드 안내문*/
/*label.error::before {content: "*"; display: block; position: absolute; left: -10px; top:3px; width: 5px; height: 5px;}*/

/* 필수 항목 표시 */
strong.required {
  display: inline-block;
  font-size: 0;
  margin: 0 5px;
  vertical-align: middle;
  padding-top: 5px;
}

strong.required:before {
  content: "*";
  color: #1759dd;
  font-size: 16px;
  font-weight: 400;
}

.txt-required {
  color: #1759dd !important;
}

/* 필수 항목을 텍스트만으로 표시 */


/***** search 공통 *****/
.board-search {
  width: 262px;
  padding: 0 26px;
  margin-right: 10px;
}

/*검색단*/
.td-select {
  width: 100%;
}

/*테이블*/
.td-inputtext {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

/*테이블 입력폼*/
.search-wh2 {
  width: 262px;
  padding: 0 26px;
  margin-right: 10px;
}

.search-wh3 {
  width: 130px;
  padding: 0 10px;
  margin-right: 0px;
}



.select-st1 option:disabled {
  color: #999;
}

.select-st1::-ms-expand {
  display: none;
}

select {
  height: 40px;
  border: 1px solid #e5e5e5;
  width: 240px;
  padding: 0 10px;
  color: #222;
  background: url("../img/icon_select_arrow.png") no-repeat right 10px center #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.board-search,
.search-text {
  height: 42px;
  border: 1px solid #ddd;
  vertical-align: middle;
}

/*.btn-search{height:38px; border:1px solid #e5e5e5;vertical-align:middle;}*/

.search-inner .btn-search-wrap {
  /* position: absolute; */
  right: 20px;
  bottom: 20px;
 border-top: 1px solid #d7d7d7;
  padding-top: 20px;
}

.btn-item .btnExcel{background: url(../img/new/common/ico_excel.png) no-repeat left 10px center; padding:8px 15px 8px 40px;}

.search-inner .btn-search-wrap .btn-search {
  width: 90px;
  height: 40px;
  margin-left: -1px;
  color: #fff;
  background-color: #224a85;
  border: 1px solid #224a85;
  transition: opacity .3s;
  font-size: 15px;
}

.search-inner .btn-search-wrap .btn-search:hover {
  background-color: #224a85;
  border: 1px solid #224a85;
}

.search-inner .btn-search-wrap .btn-refrish {
  width: 90px;
  height: 40px;
  margin-left: 0px;
  color: #333;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: opacity .3s;
  font-size: 15px;
}

.search-inner .btn-search-wrap .btn-refrish:hover {
  border: 1px solid #777;
  background-color: #777;
  color: #fff;
}

/* 2023-06-08 추가
.search-inner .btn-search-wrap button:focus {
  border: 2px solid #727272;
}

.search-inner .btn-search-wrap a:focus {
  border: 2px solid #727272;
}
*/

.btn-search-box2 {
  position: absolute;
  right: 20px;
  bottom: 22px;
}

.btn-search-box2 .btn-search {
  width: 90px;
  height: 40px;
  margin-left: -1px;
  color: #fff;
  background-color: #224a85;
  border: 1px solid #224a85;
  transition: opacity .3s;
  font-size: 16px;
}

.btn-search-box2 .btn-search:hover {
  background-color: #224a85;
}

.btn-search-box2 .btn-refrish {
  width: 90px;
  height: 40px;
  margin-left: 0px;
  color: #333;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: opacity .3s;
  font-size: 16px;
}

.btn-search-box2 .btn-refrish:hover {
  border: 1px solid #777;
  background-color: #777;
  color: #fff;
}

.btn-search-box2 .btn-reset {
  width: 90px;
  height: 40px;
  margin-left: 3px;
  color: #333;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: opacity .3s;
  font-size: 16px;
}

.btn-search-box2 .btn-reset:hover {
  border: 1px solid #777;
  background-color: #777;
  color: #fff;
}


/*** category-wrap ***/
.category-wrap {
  margin-top: 20px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #ddd;
  padding: 0px 0 20px 0;
}

.category-wrap .btn-tab {
  display: block;
  background-color: transparent;
  color: #555;
  width: 200px;
  padding: 10px 0px;
  margin: 0 auto;
 font-weight:600;
}

/* tab */
.tab-area {
  position: relative;
  margin-top: 10px;
}

/* 2023-06-08 추가 */
.tab-area ul li.tab-tit a:focus {
  border: 2px solid #727272;
}

/* 기본탭 */
.mu-tab-box .mu-tab {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.mu-tab-box .mu-tab>li {
  flex: 1;
  margin: 0px 0 -1px -1px;
  border: 1px solid #cecece;
  background-color: #fff;
}

.mu-tab-box .mu-tab>li>a {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 50px;
  color: #707070;
  line-height: 1.4em;
  font-size: 18px;
  text-align: center;
  word-break: keep-all;
}

.mu-tab-box .mu-tab>li>a br {
  display: none;
}

/* PC에서는 안보임 */
.mu-tab-box .mu-tab>li>a>span {
  display: block;
  padding-top: 3px;
  color: #707070;
}

.mu-tab-box .mu-tab>li.active {
  border: 1px solid #005eb8;
  background-color: #0975da;
  z-index: 1;
}

.mu-tab-box .mu-tab>li.active>a,
.mu-tab-box .mu-tab>li.active>a>span {
  color: #fff;
 font-weight:600;
}

/* 하위탭2 */
.mu-tab-box {
  margin-top: 1px;
  margin-left: 1px;
}

.mu-tab-box .mu-tab {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.mu-tab-box.sub-tab2 {
  background-color: #fff;
}

/* 라운드형탭이라 스크롤시 배경이 필요함 */
.mu-tab-box.sub-tab2 .mu-tab {
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
}

.mu-tab-box.sub-tab2 .mu-tab>li {
  flex: none;
  min-width: 195px;
  border: 2px solid #dde0e2;
  border-radius: 20px;
  background-color: #fff;
}

.mu-tab-box.sub-tab2 .mu-tab>li+li {
  margin-left: 5px;
}

.mu-tab-box.sub-tab2 .mu-tab>li>a {
  font-size: 14px;
  height: 40px;
}

.mu-tab-box.sub-tab2 .mu-tab>li.active {
  border: 2px solid #0975da;
  background-color: #fff;
  z-index: 1;
}

.mu-tab-box.sub-tab2 .mu-tab>li.active>a {
  color: #0975da;
 font-weight:600;
}

/***** board-top TOTAL 과 버튼  *****/
.board-wrap {
  position: relative;
}

.board-top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.board-total {
  font-size: 14px;
  color: #777;
}

.board-total .title {
  margin-right: 7px;
  color: #333;
  font-size: 15px;
}

.board-total .icon {
  display: inline-block;
  position: relative;
  top: -1px;
  margin-right: 8px;
  font-size: 16px;
  color: #ccc;
  vertical-align: top;
}

.board-total .board-length {}

.board-total .idx {
 font-weight:600;
  color: #224a85;
  font-size: 16px;
}

.board-total .page-length {}

.board-top .alignL {
  position: relative;
}

.board-top .mu-item-group {
  position: absolute;
  left: 200px;
  top: 7px;
}

.board-wrap.flexST {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.board-wrap.flexST .h5_title {
  padding-top: 0;
}

.board-wrap.flexST .h5_title::before {
  top: 3px;
}

/* 2023-06-08 추가 */
.board-wrap .half-wrap button:focus {
  border: 2px solid #727272;
}

.board-wrap .half-wrap a:focus {
  border: 2px solid #727272;
}

.btn-item {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: flex-end;
}

.btn-item button {
 border: 1px solid #e5e5e5;
 padding: 0 15px;
 height : 40px;
 margin-left: 5px;
 background-color: #fff;
 color: #666;
 border: 1px solid #ccc;
 transition: color .3s, border-color .3s, background-color .3s;
 box-sizing: border-box;
 font-size: 14px;
}

.btn-item button:hover,
.border-wrap .btn_group button:active,
.border-wrap .btn_group button:visited {
  border: 1px solid rgb(82, 119, 223);
  color: #005eb8;
  /*background-color #2e3550; color: #fff; border:1px solid #2e3550;*/
}

.btn-item .btn-layerpop,
.btn-item .btn-layerpop:hover {
  border: 1px solid #4284ee;
  background-color: #4284ee;
  color: #fff;
  margin-top: 20px;
  margin-left: 20px;
  height: 35px;
}

.btn-item .btn_close {
  border: none !important;
  font-size: 24px;
  width: 40px;
}

.btn-item .btn_close:hover {
  color: #222;
}

.btn-item .btn_close:active .layerpop {
  display: none;
}

.board-top .word strong {
  color: #005eb8 !important;
}

.board-top .word {
  color: #555;
}

.board-top .word span {
  color: #333;
  font-weight: 600;
}

.btn-listop {
  border: none !important;
  height: 30px !important;
}

.btn-listop:hover {
  border: none !important;
}

/*** 화면 나누기 ***/
.half-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.half-wrap .item {
  width: 50%;
}

.half-wrap .item:first-child {
  margin-left: 0px;
}

.half-wrap .item:last-child {
  margin-left: 20px;
}

.half-wrap .item80 {
  width: 145%;
}

.half-wrap .item30 {
  width: 27% !important;
}

.half-wrap .item70 {
  width: 73% !important;
  margin-left: 30px;
}

.half-wrap .item40 {
  width: 40% !important;
}

.half-wrap .item60 {
  width: 60% !important;
  margin-left: 30px;
}


.half-wrap .tree-wrap {
  border: 1px solid #ddd;
  height: 350px;
}

.half-wrap .box-plR {
  padding-right: 50px;
}

.half-wrap .box-plL {
  padding-left: 50px;
}

.half-wrap .movie-btn-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50px;
  height: 50px;
  text-align: center;
}

.half-wrap .guide-chart {
  border: 1px solid #ddd;
  height: 500px;
}

.half-wrap .tree-input {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: 10px 10px;
  border-radius: 2px;
}

.half-wrap .tree-input .filter {
  width: 100%;
  padding: 0px 10px;
  box-sizing: border-box;
}

/*** 기본 탭 메뉴 ***/
.tab-wrap {margin-top: 10px;}
.tab_type01 {border-bottom: 1px solid #1039A0;display: flex;}
.tab_type01 li {flex: 1;}
.tab_type01 li.on {position:relative;}
.tab_type01 li.on:before {position: absolute;content: '';background-color: #1039A0;width: calc(100% - 2px);height: 1px;bottom: -1px;left: 50%;box-sizing: border-box;transform: translateX(-50%);}
.tab_type01 li a {display: flex;align-items: center;justify-content: center;position: relative;border-top: 1px solid #e7e7e7;border-left: 1px solid #e7e7e7;border-right: 1px solid #e7e7e7;text-align: center;padding: 12px 20px;border-radius: 14px 14px 0 0;height: 57px;box-sizing: border-box;line-height: 1;font-weight: 600;font-size: 17px;letter-spacing: 0px;}
.tab_type01 li a:hover, .tab_type01 li a.active {color: #fff;background-color: #1039A0;}
.tab_type01 li.on a, .tab_type01 li:hover a {border-bottom-color:transparent;font-weight:bold;color: #fff;background-color: #1039A0;border-color: #1039A0;font-weight: 600;}

@media (max-width: 1360px) {
    .tab_type01 li.long_txt a {padding: 12px;}
}

/* 0204 김원희 탭메뉴 추가 */
.tab-content {display:none; margin-top:20px;}
.tab-content.on {display:block;}
.tab_type01 li a:hover, .tab_type01 li.on a {color: #fff;}
.tab_type01 li a.active {color:#fff;font-weight:600;}

.tab_type02 {position: relative; display:table; width:100%; border-left:1px solid #e7e7e7;position:relative; }
.tab_type02::after {content: ""; display: block; position: absolute; left: 0px; bottom: -2px; width: 100%; height: 1px; background-color: #e7e7e7;}
.tab_type02 li {float: left; height:40px; position: relative;}
.tab_type02 li a { display:block;position:relative;height:40px;padding: 0 20px; border-top:1px solid #e7e7e7;border-bottom:1px solid #e7e7e7;line-height:40px;text-align:center;background-color: #fff}
.tab_type02 li a:after { content:''; display:block; position:absolute; top:0; right:0; bottom:0; width:1px; background-color:#e6e3df}
/*
.tab_type02 li::after {content:''; display:block; position:absolute; left:0; bottom:0; width:100%; height: 1px; background-color:#333; z-index: 5;}*/
.tab_type02 li.on a {border-bottom-color:#5c87d8; border-top:1px solid #5c87d8;z-index: 1;background-color: #5c87d8;color:#fff}
.tab_type02 li:hover a {border-bottom-color:#5c87d8; border-top:1px solid #5c87d8;z-index: 1;}
.tab_type02 li.on a:after, .tab_type02 li:hover a:after { content:''; display:block; position:absolute; top:0; right:0; bottom:-1px; width:1px; background-color:#5c87d8}
.tab_type02 li.on a:before, .tab_type02 li:hover a:before { content:''; display:block; position:absolute; top:0; left:0; bottom:-1px; width:1px; background-color:#5c87d8}



/** 탭 하단 검색어 **/
.keyword-search {
  margin-top: 10px;
}

.keyword-search .inner {
  background-color: #f7fbff;
  padding: 20px 25px;
  border: 1px solid #e1eaf4;
}

.keyword-search .search-item {
  display: flex;
  justify-content: start;
}

.keyword-search .item:first-child {
  width: 700px;
}

.keyword-search .search-item .title {
  position: relative;
  margin-right: 20px;
  display: inline-block;
 font-weight:600;
  height: 35px;
  line-height: 35px;
  padding-left: 7px;
}

.keyword-search .search-item .title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 16px;
  width: 3px;
  height: 2px;
  background-color: #777;
}

.keyword-search .search-item .btn-search {
  width: 80px;
  height: 40px;
  margin-left: -1px;
  color: #fff;
  background-color: #224a85;
  transition: opacity .3s;
  border: 1px solid #224a85;
  border-radius: 2px;
}

.keyword-search .search-item .btn-search:hover {
  opacity: .7;
}

.keyword-search .search-item .btn-refrish {
  width: 80px;
  height: 40px;
  margin-left: -1px;
  color: #555;
  border: 0;
  background-color: #fff;
  margin-left: 3px;
  border: 1px solid #ccc;
}

.keyword-search .search-item .btn-refrish:hover {
  border: 1px solid #777;
  background-color: #777;
  color: #FFF;
}

.keyword-search .search-item strong {
  display: inline-block;
  font-weight: 400;
  padding-top: 10px;
  margin-right: 5px;
  color: #777;
}

.keyword-search .search-item .stitle {
  color: #333;
}

.keyword-search .search-item .btn-keyword {
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  padding: 5px 10px;
  border-radius: 2px;
}

.keyword-search .search-item .btn-keyword:hover {
  border: 1px solid #aaa;
  color: #333;
}

.keyword-search .search-result {
  padding-top: 15px;
  padding-left: 72px;
}

.keyword-search mark {
  position: relative;
  display: inline-block;
  padding: 3px 10px;
  font-size: 13px;
  color: #333;
  border-radius: 2px;
  background-color: #21a5b9;
  color: #fff;
  margin-right: 5px;
}

/* 2023-06-08 추가 */
.keyword-search .search-item button:focus {
  border: 2px solid #727272;
}

/*** 게시글 리스트 ***/
/*
.scroll-table {max-height: 644px; min-height: auto; overflow: hidden; overflow: hidden; overflow-x:auto; overflow-y:auto;}
*/
.board-list {
  width: 100%;
  border-top: 1px solid #0a194e;
}

.board-list > thead > tr > th {
   padding:10px;
 font-size: 16px;
 font-weight:600;
 border-bottom: 1px solid #e5e5e5;
 vertical-align: middle;
 white-space: nowrap;
 background-color: #f2f5f8;
}

.board-list thead .th-num {
  width: 60px;
}

.board-list thead .th-title {
  padding-left: 30px;
}

.board-list thead .thline {
  border-right: 1px solid #ddd;
}

.board-list > tbody > tr:hover > td {
  background-color: #fafcff;
}

.board-list > tbody > tr > td {
 font-size: 16px;
 color: #414141;
 border-bottom: 1px solid #e6ecf3;
 vertical-align: middle;
 text-align: center;
 padding:10px;
}

.board-list tbody td a {
  text-align: left;
  color: #333;
}

.board-list tbody td a:hover {
  text-decoration: underline;
}



.board-list tbody td button::before,
.board-list tbody td button:hover:before {
  display: none;
}

.board-list tbody td .alL {
  text-align: left;
  padding-left: 20px;
}

.icon-reply {
  display: inline-block;
  width: 30px;
  height: 17px;
  background: url("../img/icon-reply.png") no-repeat center top;
}

.border-line {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}

.board-list .board-text {
  padding: 10px 0;
  line-height: 25px;
}

.board-list .board-text strong {
  font-weight: 600;
  color: #333;
  display: block;
}

/*** 버튼 공통 ***/
.btn-movieup,
.btn-moviedown {
  width: 37px;
  height: 37px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.btn-td-delete {
  width: 60px;
  height: 37px;
  border: 1px solid #ddd;
  text-align: center;
  background-color: #fff;
}

/*삭제*/
.btn-td-delete:hover,
.btn-td-pick:hover {
  border: 1px solid rgb(82, 119, 223);
  color: #005eb8;
}

.btn-td-pick {
  width: 60px;
  height: 37px;
  border: 1px solid #ddd;
  text-align: center;
  background-color: #fff;
}

/*선택*/
.btn-defalut {
  padding: 0 10px;
  height: 40px;
  text-align: center;
  border: 1px solid #7589c0;
  background-color: #fff;
  color: #324e9c;
  border-radius: 2px;
}
.btn-defalut:hover{background-color: #2e92ef; color: #fff; border: 1px solid #2e92ef; }
.btn-movright {
  width: 65px;
  height: 40px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  color: #333;
  font-size: 20px;
}

/*** 테이블 컨텐츠 상세  ***/
.board-detail-info {
  width: 100%;
  border-top: 1px solid #d5e0ed;
}

.board-detail-info tbody th {
  height: 44px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #e6ecf3;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #fafcff;
}

.board-detail-info tbody td {
  height: 44px;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #e6ecf3;
  padding: 5px 0 5px 10px;
}

.board-detail-info .gud-text {
  font-size: 14px;
  padding-top: 5px;
  color: #666;
}

.board-detail-info tbody td a {
  color: #333;
}

.board-detail-info tbody td a:hover {
  text-decoration: underline;
}

/*** 게시글 상세 ***/
.board-detail {
  width: 100%;
  border-top: 1px solid #222;
}

.board-topline {
  border-top: 1px solid #222;
}

.board-detail thead th .view-title {
  padding: 15px 30px;
  font-size: 17px;
  font-weight: 400;
  border-top: 1px solid #d5e0ed;
  border-bottom: 1px solid #d5e0ed;
  background-color: #fff;
  text-align: left;
}

.board-detail thead th.lineNone,
.board-detail thead td.lineNone {
  border-bottom: none;
}

.board-detail > thead > tr > th,
.board-detail > tbody > tr > th {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #e6ecf3;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #f2f5f8;
  text-align: left;
  padding: 15px;
}

.board-detail > thead > tr > td {
  padding-left: 10px;
  border-bottom: 1px solid #e5e5e5;
}

.board-detail > tbody > tr > td {
  font-size: 16px;
  color: #222;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px;
}

.board-detail tbody td .view-cont {
  padding: 20px 50px 60px 0px;
  min-height: 300px;
}

.board-detail tbody td .view-cont p {
  word-break: break-all;
}

.board-detail tbody td a:hover {
  text-decoration: underline;
}

.video-wrap {
  display: flex;
  justify-self: start;
  padding: 20px 0px;
}

.video-wrap .item {
  position: relative;
  width: 200px;
  height: 220px;
  border: 1px solid #efefef;
  margin-left: 20px;
}

.video-wrap .item:first-child {
  margin-left: 0px;
}

.video-wrap .title {
  padding-left: 10px;
  margin-top: 10px;
}

.video-wrap .video-con {
  width: 100%;
  height: 150px;
  margin: 0 auto;
  overflow: hidden;
}

.video-wrap .data-info {
  position: absolute;
  left: 10px;
  bottom: 15px;
  color: #777;
  font-size: 13px;
}

.video-wrap .data-info dt,
.video-wrap .answer-info dt {
  display: none;
}

.video-wrap .answer-info {
  position: absolute;
  right: 10px;
  bottom: 15px;
  color: #777;
  font-size: 13px;
}

.video-wrap .answer-info dl {
  display: inline-block;
  margin-left: 10px
}

.video-wrap .answer-info em {
  margin-left: 5px;
}

/*** 이전글  다음글 ***/
.view-bottom {}

.view-ctrl {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.view-ctrl .item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.view-ctrl .item .link {
  display: flex;
}

.view-ctrl .item .title {
  display: flex;
  align-items: center;
  position: relative;
  width: 170px;
  padding: 20px 0 20px 30px;
  font-size: 16px;
  color: #222;
  line-height: 1;
}

.view-ctrl .item .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 15px;
  background-color: #e5e5e5;
  transform: translateY(-50%);
}

.view-ctrl .item .title .icon {
  display: inline-block;
  margin-right: 35px;
  font-size: 13px;
  color: #ccc;
}

.view-ctrl .item .text {
  width: calc(100% - 170px);
  overflow: hidden;
  padding: 20px 20px 20px 30px;
  font-size: 16px;
  color: #999;
  white-space: nowrap;
  word-wrap: normal;
  text-overflow: ellipsis;
}

.view-ctrl .item .link:hover .text {
  text-decoration: underline;
}

/*** 댓글 등록 / 글 등록 ***/
.comment-wrap {}

.comment-wrap .write {
  display: flex;
  justify-content: space-between;
  border-top: 0px solid #e5e5e5;
  border-bottom: 0px solid #e5e5e5;
  padding: 15px 15px;
  background-color: #efefef;
  border-radius: 2px;
  overflow: hidden;
}





/***** 게시글 페이징 *****/

.pagenation .page-num {
  display: flex;
  justify-content: center;
  margin: 0 -2.5px;
}

/* 디자인 공통 2022-12-16  margin-right 추가 */
.pagenation .page-num .item {
  padding: 0 2.5px;
  width: 42px;
  margin-right: 0px;
}

.pagenation .page-num .item:last-child {
  margin-left: 0px;
}

.pagenation .page-num .num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 15px;
  color: #444;
  border: 1px solid #e5e5e5;
  transition: color .3s, border-color .3s, background-color .3s;
}

.pagenation .page-num .num:hover,
.pagenation .page-num .item.active .num {
  color: #fff;
  border-color: #224a85;
  background-color: #224a85;
}

.pagenation .page-num .icon {
  margin-top: 0px;
}

.pagenation .page-num .prev .icon {
  transform: rotate(180deg);
}

/* 2023-06-08 추가 */
/* .pagenation .page-num a:focus {
  border: 2px solid #727272;
} */


/***** 레이어 팝업 *****/
.prive-pop2 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background-color: #fff;
  box-shadow: 3px 5px 10px 5px rgba(0, 0, 0, .1);
  border: 0px solid #ccc;
  border-radius: 5px;
}

.prive-pop2 .pop-wrap {
  position: relative;
  padding: 20px 30px;
}

.prive-pop2 .pop-wrap .pop-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.prive-pop2 .pop-wrap .pop-close button {
  background-color: #fff;
  font-size: 20px;
}

.prive-pop2 .pop-wrap .pop-close button:hover {
  color: #000;
}

.prive-pop2 .pop-wrap .pop-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

.prive-pop2 .pop-scroll {
  width: 100%;
  height: 610px;
  background-color: #fff;
  box-sizing: border-box;
  overflow: hidden;
  overflow-y: auto;
  margin-top: 20px;
}

.prive-pop2 .pop-inner {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0px 10px;
}

.prive-pop2 .data-info {
  margin-top: 10px;
  height: 45px;
}

.prive-pop2 .data-info dl {
  float: left;
  margin-right: 20px;
  color: #777;
}

.prive-pop2 .data-info dt {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  padding-left: 8px;
}

.prive-pop2 .data-info dt:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
  width: 2px;
  height: 2px;
  background-color: #aaa;
}

.prive-pop2 .data-info dd {
  display: inline-block;
}

.prive-pop2 .img-wrap {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 300px;
}

.prive-pop2 .img-wrap img {
  width: 100%;
  height: 300px;
}

.prive-pop2 .reply-wrap {
  border-top: 1px solid #ddd;
  margin-bottom: 10px;
  margin-top: 10px;
}

.prive-pop2 .reply-wrap ul {
  margin-top: 5px;
}

.prive-pop2 .reply-wrap li {
  display: block;
  padding: 5px 3px;
  color: #777;
}

.prive-pop2 .pop-scroll::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}

.prive-pop2 .pop-scroll::-webkit-scrollbar-thumb {
  background-color: #c4c4da;
  border-radius: 10px;
}

.prive-pop2 .pop-scroll::-webkit-scrollbar-track {
  background-color: rgb(248, 248, 248);
}

/***** 파일첨부 *****/
.file_input label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  width: 90px;
  height: 42px;
  background-color: rgb(119, 119, 119);
  border-radius: 2px;
  color: #fff;
  text-align: center;
  line-height: 42px;
  margin-bottom: 0px;
}

.file_input label input {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  top: -2px;
}

.file_input input[type=text] {
  vertical-align: top;
  display: inline-block;
  width: 750px;
  height: 42px;
  line-height: 28px;
  font-size: 14px;
  padding-left: 10px;
  border: 0;
  border: 1px solid #ddd;
  background-color: #fff !important;
}


.guide-info {
  position: relative;
  border: 1px solid #d6dbe0;
  padding: 20px 30px 15px 30px;
  border-radius: 2px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.guide-info h2{font-weight: 700; font-size: 26px;}
.guide-info .guide-info-img {
  display: block;
  width: 100%;
  max-width: 262px;
  height: auto;
}
.guide-info .guide-info-txt { flex: 1; }

.guide-info li {
  position: relative;
  display: block;
  margin-bottom: 15px;
  padding-left: 14px;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.4;
}
.guide-info li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #777;
}
/***** API 소개 0207 *****/
.api-step-box {width:100%; margin-top:20px; padding:30px; background-color:#f4f6fa; box-sizing:border-box;}
.api-step-head {display:flex; align-items:center; gap:20px; margin-bottom: 26px;}
.api-step-badge {display:inline-flex; align-items:center; justify-content:center; min-width:85px; height:32px; padding:0 16px; color:#fff; background-color:#359cf4; border-radius:20px; box-sizing:border-box; font-size:16px; font-weight:700; line-height:1;}
.api-step-title {margin:0;color: #222;font-size: 20px;font-weight:700;line-height:1.4;}
.api-step-content {width:100%;min-height:375px;margin-top: 10px;background-color:#fff;box-sizing:border-box; display: flex;  justify-content:center;}

.api-description-list {margin:30px 0 0; padding:0; list-style:none; counter-reset:api-description;}
.api-description-list li {position:relative;min-height:26px;padding-left:36px;line-height:1.6;word-break:keep-all;font-size: 20px;counter-increment:api-description;letter-spacing: 0px;color: #222;font-weight: 600;}
.api-description-list li + li {margin-top:8px;}
.api-description-list li::before {content:counter(api-description);position:absolute;top:2px;left:0;display:flex;align-items:center;justify-content:center;width:24px;height:24px;color:#fff;background:#359cf4;border-radius:50%;box-sizing:border-box;font-size:14px;font-weight:700;line-height:1;}

.api-step-intro {margin:0 0 24px;line-height:1.6;word-break:keep-all;color: #444;font-weight: 600;font-size: 18px; letter-spacing: 0px;}
.api-call-title {display:flex;align-items:center;gap:5px;margin-bottom:16px;color: #265dd0;font-size: 22px;font-weight: 600;}
.api-call-check {display:inline-block;}
.api-call-content {display:grid; grid-template-columns:minmax(300px, 42%) minmax(0, 58%); gap:40px; width:100%; padding:22px 35px 30px; background:#fff; box-sizing:border-box;}
.api-service-area {min-width:0;}
.api-response-area {min-width:0;}
.api-section-title {display:flex;align-items:center;gap:8px;min-height:25px;margin-bottom:15px;font-size: 18px;font-weight: 600;color: #222;}
.api-section-title img {display:block; width:20px; height:auto; object-fit:contain;}
.api-service-list {display:flex; flex-direction:column; gap:40px; margin:0; padding:5px 0 0 30px; list-style:none;}
.api-service-item {display:flex;align-items:center;gap: 40px;}
.api-service-icon {display:flex;flex:0 0 80px;align-items:center;justify-content:center;width: 100%;height: auto;}
.api-service-icon img {display:block; max-width:100%; max-height:100%; object-fit:contain;}
.api-service-info {display:flex; flex-direction:column; align-items:center; gap:7px; min-width:0;}
.api-service-label {display:inline-flex;align-items:center;min-height:29px;padding: 10px 40px;background:#e2ebff;border-radius:20px;box-sizing:border-box;font-weight: 600;white-space:nowrap;font-size: 18px;}
.api-service-text {display:block;word-break:keep-all;font-size: 18px;font-weight: 400;color: #222;}
.api-response-image {width:100%;}
.api-response-image img {display:block; width:100%; height:auto; object-fit:contain;}

.api-step-content .mb-img {display: none;}


/* 컨텐츠 트리 */
.nav_tree {
  margin: 0;
  padding: 20px 20px 0 20px;
  font-size: 15px;
  background-color: #fff;
  min-width: 200px;
  z-index: 1;
  *zoom: 1;
}

/* 왼쪽메뉴 트리 */
.nav_tree .folder_box {
  padding: 0px 0 0 0px;
  margin: 0px 0 0 0;
}

.left_tree .menu_fold ul.h4_menu,
.nav_tree .menu_fold ul.h4_menu,
.nav_tree .menu_fold ul.h5_menu {
  display: none;
}

.left_tree .menu_fold button,
.nav_tree .menu_fold button {
  background: url(../img/btn_tree_collapse.gif) no-repeat 0 0;
}

.folder_box h3 {
  padding: 0px;
  margin: 5px 0 5px 0;
  background: none;
  font-size: 15px;
 font-weight:600;
}

.folder_box h3 a {
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  color: #333;
}

.folder_box h3 a img {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

.folder_box h3 button {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
  width: 13px;
  height: 13px;
  border: none;
  background: url(../img/btn_tree_collapse.gif) no-repeat 0 -13px;
  cursor: pointer;
}

.folder_box .h4_menu button {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
  width: 13px;
  height: 13px;
  border: none;
  background: url(../img/btn_tree_collapse.gif) no-repeat 0 -13px;
  cursor: pointer;
}

.folder_box .h4_menu {
  padding: 0 0 0 18px;
  margin: 0;
}

.folder_box .h4_menu li {
  margin: 0 0 5px 0;
}

.folder_box .h4_menu li a {
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  color: #333;
}

.folder_box .h4_menu li a img {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

.folder_box .h5_menu {
  padding: 0 0 0 36px;
  margin: 0;
}

.folder_box .h5_menu li {
  margin: 0 0 5px 0;
}

.folder_box .h5_menu li a {
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  color: #333;
}

.folder_box .h5_menu li a img {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

.folder_box .h6_menu {
  padding: 0 0 0 54px;
  margin: 0;
}

.folder_box .h6_menu li {
  margin: 0 0 5px 0;
}

.folder_box .h6_menu li a {
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  color: #333;
}

.folder_box .h6_menu li a img {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

.folder_box .navi-tree {
  padding: 0 0 0 22px;
  margin: 0;
}

.folder_box .navi-tree li {
  margin: 0 0 7px 0;
}

.folder_box .navi-tree li a {
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  color: #333;
  margin-bottom: 3px;
}

.folder_box .navi-tree li a img {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

.folder_box .navi-tree1 {
  padding: 0 0 0 15px;
  margin: 0;
}

.folder_box .navi-tree1 li {
  margin: 0 0 7px 0;
}

.folder_box .navi-tree1 li a {
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  color: #333;
  margin-bottom: 3px;
}

.folder_box .navi-tree1 li a img {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

/* 왼쪽메뉴 트리 */

/*** 회원가입정보  ***/
.agree-wrap {
  margin-bottom: 30px;
}

.agree-item {
  border: 1px solid #ddd;
  background-color: #f7f7f7;
  padding: 10px 10px;
  margin-bottom: 20px;
  color: #777;
  line-height: 25px;
  border-radius: 2px;
}

.agree-item h3 {
  margin-top: 10px;
  padding-left: 10px;
  font-size: 18px;
  color: #333;
}

.agree-item h4,
.agree-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.agree-item h5 {
  margin-top: 10px;
}

.agree-item p {
  margin-top: 10px;
}

.agree-scroll {
  margin-top: 10px;
  max-height: 300px;
  min-height: auto;
  overflow: hidden;
  overflow: hidden;
  overflow-x: auto;
  overflow-y: auto;
  padding: 20px 20px;
  background-color: #fff;
}

/*** 공통팝업 ***/
.popcom-wrap {}

.popcom-wrap .header {
  background-color: salmon;
}

.popcom-wrap .pop-content {
  background-color: rgb(74, 49, 185);
}

.pop-size {
  padding: 0 20px 30px 20px;
  width: 1200px;
  margin: 0 auto;
}


/** 실행버튼 **/
.btn-wrap {
  text-align: right;
}

.btn-alC {
  text-align: center !important;
}

.btn-wrap .btn-board-list {
  display: inline-block;
  min-width: 70px;
  padding: 0px 10px;
  height: 45px;
  line-height: 45px;
  margin-left: 5px;
  text-align: center;
  font-size: 16px;
  color: #222;
  border-radius: 2px;
  border: 1px solid #ddd;
  transition: color .3s, border-color .3s, background-color .3s;
}

.btn-wrap .btn-board-list .icon {
  vertical-align: top;
  padding-top: 10px;
}

.btn-wrap .btn-board-list:hover {
  color: #fff;
  border: 1px solid rgb(40, 58, 138);
  background-color: rgb(40, 58, 138);
  border-radius: 2px;
}

.btn-wrap .btn-size4 {
  width: 110px;
}

.btn-wrap .close {
  background-color: #696d75;
  color: #fff;
  border: none;
}

.btn-wrap .close:hover {
  background-color: #525968 !important;
  border: 1px solid #525968;
}

.btn-wrap button {
  display: inline-block;
  background-color: #fff;
  height: 45px;
  line-height: 45px;
  margin-left: 5px;
  text-align: center;
  font-size: 16px;
  color: #222;
  border-radius: 2px;
  border: 1px solid #ddd;
  transition: color .3s, border-color .3s, background-color .3s;
}

.btn-wrap button .icon {
  vertical-align: top;
  padding-top: 7px;
}

.btn-wrap button:hover {
  color: #fff;
  border: 1px solid rgb(40, 58, 138);
  background-color: rgb(40, 58, 138);
  border-radius: 2px;
}

.btn-wrap a {
  display: inline-block;
  background-color: #fff;
  min-width: 70px;
  padding: 0px 10px;
  height: 45px;
  line-height: 45px;
  margin-left: 5px;
  text-align: center;
  font-size: 16px;
  color: #222;
  border-radius: 2px;
  border: 1px solid #ddd;
  transition: color .3s, border-color .3s, background-color .3s;
}

.btn-wrap a .icon {
  vertical-align: top;
  padding-top: 10px;
}

.btn-wrap a:hover {
  color: #fff;
  border: 1px solid rgb(40, 58, 138);
  background-color: rgb(40, 58, 138);
  border-radius: 2px;
}

/***** 일정검색 *****/


.ax5-group-picker .date,
.input-group .date {
  width: 160px 
}

.date-first {
  position: relative;
  display: inline-block;
}

.date-last {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.date-last::before {
  content: "~";
  width: 20px;
  height: 20px;
  text-align: center;
  position: absolute;
  left: -20px;
  top: 10px
}

.btn-calendar {
  position: absolute;
  top: 10px;
  right: 5px;
  background-color: transparent;
}

.btn-calendar {
  width: 25px;
  /* height: 20px; */
  line-height: 20px;
  margin-left: -1px;
  font-size: 22px;
  color: rgb(120, 139, 165);
  background-color: #fff;
  transition: opacity .3s;
   pointer-events:auto;
}

.btn-month {
  width: 50px;
  height: 41px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-weight: 400;
}

.btn-month:hover {
  border: 1px solid #666;
}

/* 포커스 링 명확히 */
 #searchBizYr:focus, #searchBizYr:focus-visible{
 outline: none;
 box-shadow: var(--box-shadow-outline-inset);
 border-radius: var(--radius-small1);
 }
 /* AX5 레이어 가림 방지 */
 .ax5-ui-picker { z-index:1000 !important; }

/*** 레이어 팝업 ***/
.layerpop {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 500;
  width: 1000px;
  height: 990px;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 20px 10px 20px 30px;
  border-radius: 10px;
  box-shadow: 0px 10px 10px 10px rgb(0, 0, 0, 0.08);
}

.pop-scroll {
  max-height: 990px;
  min-height: auto;
  overflow: hidden;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}

.layerpop h5,
.layerpop h6 {
  font-weight: 600;
}

.layerpop {
  display: none;
}

.layerpop.on {
  display: block;
}

/* 김원희 0210 */
.layerpop {
  overflow-y: auto;
}

.table-wrap .scroll-tb {
  transition: max-height .2s;
}

.table-wrap.active .scroll-tb {
  max-height: 450px;
  overflow-y: auto;
}

.btn-item .btn-listop.on i.icon {
  transform: rotate(180deg);
}

.table-wrap.active .pagenation {
  display: block;
}

.table-wrap .pagenation {
  display: none;
}

.table-wrap .pop-paging .page-num .num {
  width: 25px;
  height: 25px;
}

.table-wrap .pop-paging .page-num i.icon {
  margin-top: 0;
}

/*** 데이터네비게이션  리스트 ***/
.scroll-tb {
  max-height: 125px;
  min-height: auto;
  overflow: hidden;
  overflow: hidden;
  overflow-x: auto;
  overflow-y: auto;
}

.laypop-list {
  width: 100%;
}

.laypop-list thead tr:nth-child(1) {
  position: sticky;
  top: 0px;
}

.laypop-list thead tr:nth-child(2) {
  position: sticky;
  top: 40px;
}

.laypop-list thead th {
  position: sticky;
  top: 0px;
  height: 40px;
  font-size: 15px;
 font-weight:600;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #fafdff;
}

.laypop-list thead th::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #d5e0ed;
}

.laypop-list thead th::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #d5e0ed;
}

.laypop-list tbody td {
  height: 40px;
  font-size: 15px;
  color: #666;
  border-bottom: 1px solid #d5e0ed;
  vertical-align: middle;
  text-align: center;
  padding: 5px 10px;
}

.laypop-list tbody td a {
  text-align: left;
  color: #333;
  font-weight: 600;
}

.laypop-list tbody td a:hover {
  text-decoration: underline;
}

/*** 데이터네비게이션 상세 리스트 ***/
.laypop-list-detail {
  width: 100%;
  border-top: 1px solid #d5e0ed;
  table-layout: fixed;
}

.laypop-list-detail tbody th {
  height: 30px;
  font-size: 15px;
 font-weight:600;
  border-bottom: 1px solid #d5e0ed;
  vertical-align: middle;
  white-space: nowrap;
  background: #f5f7fa;
}

.laypop-list-detail tbody td {
  height: 30px;
  font-size: 15px;
  font-weight: 400;
  color: #444;
  border-bottom: 1px solid #d5e0ed;
  padding: 5px 0 5px 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.laypop-list-detail tbody td a {
  color: #333;
}

.laypop-list-detail tbody td a:hover {
  text-decoration: underline;
}

.laypop-list-detail tbody td .btn_down {
  border: 1px solid #ddd;
  text-align: center;
  padding: 5px 10px;
  background: #fff;
  font-size: 13px;
}

.laypop-list-detail tbody td .btn_down:hover {
  border: 1px solid rgb(82, 119, 223);
  background: #f3f9fd;
  color: #005eb8;
}

.keyword-icon {
  background: #4dbab1;
  color: #fff;
  font-weight: 300;
  font-size: 13px;
  text-align: center;
  padding: 5px 10px;
  display: inline-block;
  margin-right: 3px;
  margin-top: 2px;
  border-radius: 2px;
}

.td-select {
  margin-top: 10px;
}

.td-select select {
  height: 40px;
  width: 100%;
}

.lineBox {
  border: 1px solid #ddd;
}

.data-tree {
  border-right: 1px solid #ddd;
}

.tree_top {
  position: relative;
  border-bottom: 1px solid #ddd;
  padding: 15px 20px;
}

.tree_top .title {
  font-weight: 600;
}

.tree_top .btn_close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 48px;
  font-size: 25px;
  font-weight: 600;
  padding-top: 5px;
  background: #fff;
  border-left: 1px solid #ddd;
}

.expan {
  position: relative;
}

.expan .btn_open {
  position: absolute;
  left: -50px;
  top: 0px;
  width: 50px;
  height: 53px;
  font-size: 25px;
  font-weight: 600;
  padding-top: 5px;
  background: #fff;
  border: 1px solid #ddd;
  border-left: none;
  border-top: none;
}

.tree-chart {
  overflow: hidden;
}

.tree-nav {
  padding: 15px 20px 20px 20px;
}

.tree-dpth {
  padding-left: 27px;
}

.tree-checkbox .tree_line {
  position: absolute;
  left: -10px;
  top: 9px;
  z-index: 20;
  width: 50px;
  height: 50px;
  background: url(../img/tree/tree_line4.png) no-repeat left top;
}

.ckmb10 {
  margin-bottom: 10px;
}

.folder_box2 {}

.folder_box2 h3 {
  padding: 0px;
  margin: 5px 0 5px 0;
  background: none;
  font-size: 15px;
 font-weight:600;
}

.folder_box2 h3 a {
  color: #333;
}

.expan .btn_open {
  display: none;
}

.expan.on .btn_open {
  display: block;
}

.expan.on {
  width: calc(100% - 100px) !important;
  margin-right: 50px;
  margin-left: 50px;
}

.expan20.on {
  width: calc(100% - 40px) !important;
  margin-right: 0px;
  margin-left: 20px;
}

.side-item.off {
  width: 0 !important;
  overflow: hidden;
}

.layerpop.ex {
  width: 1335px !important;
}

.layerpop.ex .btn-item .expan_btn,
.layerpop .btn-item .compress_btn {
  display: none;
}

.layerpop.ex .btn-item .compress_btn {
  display: block;
}

.expan.on .compress_btn {
  display: block;
}

.expan.on .expan_btn {
  display: none;
}

.expan .compress_btn {
  display: none;
}


/*******************************************************  수정 적용하고 있음 ********************************************/

.page-tab {
  padding: 0 20px;
}

.page-tab .tab-list {
  display: flex;
  justify-content: center;
  margin: 0 -2.5px;
}

.page-tab .tab-list .item {
  width: 100%;
  max-width: 210px;
  height: 65px;
  padding: 0 2.5px;
}

.page-tab .tab-list .link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 17px;
  color: #222;
  border: 1px solid #e5e5e5;
  transition: color .3s, border-color .3s, background-color .3s, box-shadow .3s;
}

.en-page .page-tab .tab-list .link {
  text-align: center;
}

.page-tab .tab-list .link:hover,
.page-tab .tab-list .link.active {
  color: #fff;
  border-color: #333;
  background-color: #333;
  box-shadow: 0 0 15px rgba(0, 0, 0, .5);
}

/***** step-wrap *****/
.step-wrap {
  padding: 0 20px;
}

.step-wrap .step-list {
  display: flex;
  justify-content: center;
  margin: 0 -2.5px;
}

.step-wrap .step-list li {
  position: relative;
  margin-right: 40px;
}

.step-wrap .step-list li:last-child {
  margin-right: 0px;
}

.step-wrap .step-list li .step-arr {
  position: absolute;
  right: -38px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 42px;
  text-align: center;
  font-size: 25px;
  color: #aaa;
}

.step-wrap .step-list li .step-check {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 42px;
  text-align: center;
  font-size: 25px;
  color: #fff;
}

.step-wrap .step-list .item {
  width: 100%;
  max-width: 200px;
  height: 65px;
  padding: 0 2.5px;
}

.step-wrap .step-list .link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 17px;
  color: #222;
  border: 1px solid #e5e5e5;
  transition: color .3s, border-color .3s, background-color .3s, box-shadow .3s;
}

.step-wrap .step-list .link:hover,
.step-wrap .step-list .link.active {
  color: #fff;
  border-color: rgb(7, 73, 172);
  background-color: rgb(7, 73, 172);
  box-shadow: 0 0 15px #7a7b8d;
}

/***** info-wrap *****/
.info-wrap {
  padding: 0 20px;
}

.info-wrap .info-list {
  display: table;
  width: 100%;
  border: 1px solid #ddd;
  padding: 20px 20px;
}

.info-wrap .info-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-left: 10px;
}

.info-wrap .info-list li:last-child {
  margin-bottom: 0px;
}

.info-wrap .info-list li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 3px;
  background: #333;
}

.ability-wrap {}

/* 타이틀 부분 각 구분 지어 준다.*/
.ability-wrap .title {
  font-size: 28px;
  line-height: 1.4em;
}

.border-wrap .title {
  font-size: 15px;
  line-height: 1.4em;
}

.ability-wrap .mtitle,
.border-wrap .mtitle {
  position: relative;
  font-size: 22px;
  line-height: 1.4em;
  padding-left: 30px;
}

.border-wrap .mtitle::before,
.ability-wrap .mtitle::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-45%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url(../img/icon_mtitle.png) no-repeat 9px 6px #022494;
}

.ability-wrap .stitle,
.border-wrap .stitle {
  position: relative;
  font-size: 16px;
  line-height: 1.4em;
  padding-left: 25px;
}

.border-wrap .stitle::before,
.ability-wrap .stitle::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-45%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: url(../img/icon_stitle.png) no-repeat 7px 5px #001453;
}

.essen-box {
  display: flex;
  justify-content: end;
  margin-top: -20px;
}

.essen-box .essen-text {
  position: relative;
  padding-left: 10px;
}

.essen-box .essen-text::before {
  content: "*";
  display: block;
  position: absolute;
  left: 0px;
  top: 5px;
  width: 10px;
  height: 10px;
  color: #e31d1a;
}

.stitle-list {
  display: table;
  width: 100%;
  padding: 20px 20px;
}

.stitle-list li {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-left: 10px;
}

.stitle-list li:last-child {
  margin-bottom: 0px;
}

.stitle-list li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 3px;
  background-color: #333;
}

.ability-wrap .img-wrap {
  position: relative;
  height: 500px;
  padding: 20px 20px;
  border: 1px solid #e5e5e5;
}

/***** 공통 버튼 *****/
.btn-add {
  width: 70px;
  height: 44px;
  margin-left: 2px;
  color: #333;
  background-color: #fff;
  border: 1px solid #aaa;
  transition: color .3s, border-color .3s, background-color-color .3s;
}

.btn-add:hover {
  color: #fff;
  border: 1px solid #222;
  background-color: #222;
}

.btn-download {
  width: 110px;
  height: 44px;
  margin-left: 2px;
  color: #333;
  background-color: #fff;
  border: 1px solid #aaa;
  transition: color .3s, border-color .3s, background-color .3s;
}

.btn-download:hover {
  color: #fff;
  border: 1px solid #222;
  background-color: #222;
}


/***** member-icon *****/
.member-icon {
  margin: 0 auto;
  width: 700px;
  padding-top: 50px;
}

.member-icon ul {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.member-icon ul::before {
  content: "";
  display: block;
  position: absolute;
  left: 154px;
  top: 50%;
  transform: translate(-50% -50%);
  width: 121px;
  height: 1px;
  background-color: #efefef;
}

.member-icon ul::after {
  content: "";
  display: block;
  position: absolute;
  left: 429px;
  top: 50%;
  transform: translate(-50% -50%);
  width: 121px;
  height: 1px;
  background-color: #efefef;
}

.member-icon ul li {
  height: 150px;
  width: 150px;
}

.member-icon ul li span {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ddd;
  border: 2px solid #e9e9e9;
}

.member-icon ul li .member-img1 {
  background: url(../img/member_img1.png) no-repeat center center #fff;
}

.member-icon ul li .member-img2 {
  background: url(../img/member_img2.png) no-repeat center center #fff;
}

.member-icon ul li .member-img3 {
  background: url(../img/member_img3.png) no-repeat center center #fff;
}

.member-step {
  margin: 0 auto;
  padding-top: 30px;
}

.member-step ul {
  display: flex;
  justify-content: space-between;
}

.member-step ul li {
  position: relative;
  width: 210px;
  height: 95px;
  padding-left: 110px;
  border: 1px solid #ddd;
  padding-top: 20px;
  margin-right: 30px;
  border-radius: 10px 10px;
}

.member-step ul li:last-child {
  margin-right: 0PX;
}

.member-step ul li .step {
  position: relative;
  display: block;
  font-size: 16px;
  color: #555;
  font-weight: 400;
}

.member-step ul li.active {
  position: relative;
}

.member-step ul li.active::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  height: 3px;
  width: 150px;
  background-color: #5eaaf1;
}

/*
.member-step ul li .step::before {content: ""; display: block; position: absolute; left: 11%;  top:-10px; transform: translateX(-50%); height: 3px; width: 30px; background: #1c51c4; }*/
.member-step ul li span {
  display: block;
  font-size: 16px;
 font-weight:600;
  margin-bottom: 5px;
}

.member-step ul li .arr {
  position: absolute;
  right: -20px;
  top: 49%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  font-size: 20px;
  color: #777;
}

.member-step ul li .step-img {
  position: absolute;
  left: 20px;
  top: 10px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.member-step ul li .step-img1 {
  background: url(../img/step_img1.png) no-repeat center center #fff;
}

.member-step ul li .step-img2 {
  background: url(../img/step_img2.png) no-repeat center center #fff;
}

.member-step ul li .step-img3 {
  background: url(../img/step_img3.png) no-repeat center center #fff;
}

.member-step ul li .step-img4 {
  background: url(../img/step_img4.png) no-repeat center center #fff;
}

.member-step ul li .step-img5 {
  background: url(../img/step_img5.png) no-repeat center center #fff;
}

.member-step ul li .step-img6 {
  background: url(../img/step_img6.png) no-repeat center center #fff;
}

.channel-wrap {
  margin: 0 auto;
  width: 1000px;
  padding-top: 100px;
  margin-bottom: 100px;
}

.channel-wrap ul {
  display: flex;
  justify-content: space-between;
}

.channel-wrap ul li {
  position: relative;
  height: 100px;
  width: 250px;
  height: 100px;
  border: 1px solid #ddd;
  border-radius: 5px 5px;
  padding-top: 20px;
  padding-left: 50px;
  box-sizing: border-box;
  margin-right: 30px;
}

.channel-wrap ul li a {
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: 100%;
  height: 100%;
}

.channel-wrap ul li:last-child {
  margin-right: 0px;
}

.channel-wrap ul li .step {
  position: relative;
  display: block;
  font-size: 16px;
  color: #555;
}

.channel-wrap ul li span {
  display: block;
  font-size: 16px;
 font-weight:600;
  text-align: center;
}

.channel-wrap ul li .channel-img {
  position: absolute;
  left: 20px;
  top: 10px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.channel-wrap ul li .channel-img1 {
  background: url(../img/channel-img2.png) no-repeat center center #fff;
}

.security-wrap {
  display: flex;
  justify-content: space-between;
}

.security-wrap div {
  position: relative;
  width: 50%;
  border: 1px solid #ddd;
  padding: 190px 0px 30px 0px;
  text-align: center;
  border-radius: 2px;
}

.security-wrap div:last-child {
  margin-left: 30px;
}

.security-wrap .img-box {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  background-color: #f5f5f5;
  overflow: hidden;
  border-radius: 50%;
}

.security-wrap .img-box img {
  vertical-align: middle;
  padding-top: 40px;
  width: 90px;
}

.security-wrap dl {}

.security-wrap dt {
  display: block;
  font-weight: 600;
  font-size: 20px;
  color: #333;
}

.security-wrap dd {
  margin-top: 10px;
}

.security-wrap button {
  height: 45px;
  width: 200px;
  text-align: center;
  font-size: 16px;
  background-color: #0072de;
  color: #fff;
  margin-top: 20px;
}


/**검색단 입력 필드 버튼 사이즈 적용**/
.select-higt {
  height: 40px !important;
  padding: 0 10px !important;
}

.search-higt {
  height: 40px !important;
  padding: 0 10px !important;
}

.btn-higt {
  height: 42px !important;
}

.btn_blue {
  background-color: #021983;
  height: 42px !important;
  border: 1px solid #000f50;
}

/** 버튼 색상변경 **/
.search-day {
  width: 120px;
  height: 50px;
  padding: 0 20px;
}

.search-text {
  width: 320px;
  height: 50px;
  padding: 0 20px;
}

/** 컨텐츠 버튼 **/
.btn-wrap2 {
  text-align: center;
}

.btn-wrap2 .btn-next {
  display: inline-block;
  width: 90px;
  height: 45px;
  line-height: 45px;
  margin-left: 5px;
  text-align: center;
  font-size: 16px;
  color: #222;
  border: 1px solid #aaa;
  transition: color .3s, border-color .3s, background-color .3s;
}

.btn-wrap2 .btn-next .icon {
  vertical-align: top;
  padding-top: 10px;
}

.btn-wrap2 .btn-next:hover {
  color: #fff;
  border-color: #fff;
  background-color: rgb(16, 30, 90);
}

.btn-wrap2 .btn-cencel {
  display: inline-block;
  width: 90px;
  height: 45px;
  line-height: 45px;
  margin-left: 5px;
  text-align: center;
  font-size: 16px;
  color: #222;
  border: 1px solid #aaa;
  transition: color .3s, border-color .3s, background-color .3s;
}

.btn-wrap2 .btn-cencel .icon {
  vertical-align: top;
  padding-top: 10px;
}

.btn-wrap2 .btn-cencel:hover {
  color: #fff;
  border-color: #fff;
  background-color: rgb(16, 30, 90);
}


/***** 공통 *****/
.wd50{width:50%;}
.wd100{width: 100%;}
.ml20 {
  margin-left: 20px !important;
}
.mt0 {
  margin-top: 0px !important;
}

.mt03 {
  margin-top: 3px !important;
}

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

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

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

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

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

.mt15 {
  margin-top: 15px !important;
}


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

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

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

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

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

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

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

.mt45 {
  margin-top: 45px !important;
} 

.mb45 {
  margin-bottom: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

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

.mb60 {
  margin-bottom: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}
.mt100 {
  margin-top: 100px !important;
}

.pr20 {
  padding-right: 20px !important;}

.w13p {
  width: 13% !important;
}

.w15p {
  width: 15% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

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

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

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

.vtop {
  vertical-align: top !important;
}

.vmid {
  vertical-align: middle !important;
}

.vbot {
  vertical-align: bottom !important;
}

.text-red {
  color: #e31d1a;
}

.text-base {
  color: #333;
}

.refer-wrap {
  margin-top: 10px;
}

.poppins {
  font-family: "Poppins", sans-serif !important;
}

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

.red {
  color: #de5555 !important;
}

.txt-primary {
  color: #0a6fc5 !important;
}

.txt-muted {
  color: #6c757d !important;
}

.txt-success {
  color: #28a745 !important;
}

.txt-info {
  color: #17a2b8 !important;
}

.txt-warning {
  color: #ffc107 !important;
}

.txt-danger {
  color: #ff5969 !important;
}

.word_break {
  word-break: keep-all;
}

/***** 스크롤 색상 *****/
.scroll-box .scroll::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

.scroll-box .scroll::-webkit-scrollbar-thumb {
  background-color: #2f3542;
}

.scroll-box .scroll::-webkit-scrollbar-track {
  background-color: grey;
}

.table_min_700{min-width:700px !important;}
.table_min_900{min-width:900px !important;}
.table_min_1000{min-width:1000px !important;}
.max_1200{max-width:1200px !important;}


/***** 모달팝업 *****/
.prive-pop {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 500px;
  height: 90%;
  max-height: 400px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: visibility .3s, opacity .3s;
  z-index: 1600;
}

.prive-pop.show {
  visibility: visible;
  opacity: 1;
}

.prive-pop .pop-close {
  position: absolute;
  top: -40px;
  right: -10px;
}

.prive-pop .pop-close .icon {
  display: inline-block;
  font-size: 40px;
  color: #fff;
}

.prive-pop .pop-inner {
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-sizing: border-box;
}

.prive-pop .title {
  text-align: center;
  font-size: 18px;
}

.prive-pop .text-box {
  width: 95%;
  height: calc(100% - 50px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
  margin-top: 10px;
  font-size: 14px;
  border: 1px solid #e5e5e5;
}

.mask {
  position: fixed;
  display: block;
  visibility: hidden;
  opacity: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1550;
  -webkit-transition: opacity 0.25s linear, visibility 0.25s linear;
  transition: opacity 0.25s linear, visibility 0.25s linear
}

.mask.show {
  visibility: visible;
  opacity: 1
}

.show {
  display: none;
}

.body-pop {
  min-width: 100% !important;
  overflow-x: auto;
  overflow-y: scroll;
}

.pop-wrap {}

.pop-wrap .header {
  position: relative;
  height: 80px;
}

.pop-wrap .pop-header {
  background-color: #2950bb;
  padding: 15px 20px;
}

.pop-wrap h2 {
  font-size: 20px;
  color: #fff;
 font-weight:600;
}

.pop-wrap .logo {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 500px;
  height: 40px;
}

.pop-wrap .logo img {
  vertical-align: top;
}

.pop-wrap .logo span {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: #555;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -1px;
  vertical-align: top;
  margin-left: 20px;
  margin-top: 8px;
}

.pop-wrap .logo span::before {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: 6px;
  width: 1px;
  height: 15px;
  background-color: #ccc;
}

.pop-wrap .topmenu {
  position: absolute;
  right: 20px;
  top: 10px;
  height: 70px;
}

.pop-wrap .topmenu .pop-mypage {
  vertical-align: middle;
  font-size: 32px;
  margin-right: 10px;
  margin-left: 10px;
  color: #707070;
}

.pop-wrap .topmenu .pop-allmenu {
  vertical-align: middle;
  font-size: 32px;
  color: #707070;
}

.pop-wrap .topmenu .icon-one {
  display: inline-block;
  background-color: #b9b9b9;
  color: #fff;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  text-align: center;
  margin-right: 5px;
}

.pop-wrap .topmenu .pop-system-hover {
  position: absolute;
  left: 0px;
  top: 43px;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 4px 4px 10px 6px rgba(37, 73, 170, .05);
  width: 200px;
  padding: 15px 15px;
  box-sizing: border-box;
}

.pop-wrap .topmenu .pop-system-hover .title {
 font-weight:600;
  position: relative;
}

.pop-wrap .topmenu .pop-system-hover .btn-close {
  position: absolute;
  right: 15px;
  top: 12px;
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
}

.pop-wrap .topmenu .pop-system-hover ul {
  margin-top: 15px;
}

.pop-wrap .topmenu .pop-system-hover ul li {
  display: block;
  height: 35px;
}

.pop-wrap .topmenu .pop-system-hover ul li a:hover {
  color: #333;
}

.pop-wrap .topmenu .btn-system {
  border: 1px solid #ddd;
  width: 200px;
  height: 40px;
  line-height: 40px;
  padding-left: 20px;
  text-align: left;
  color: #333;
  background-color: #fff;
  background: url("../img/icon_select_arrow.png") no-repeat 180px center;
}

.pop-wrap .topmenu .pop-allmenu-hover {
  position: absolute;
  right: 0px;
  top: 43px;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 4px 4px 10px 6px rgba(37, 73, 170, .05);
  width: 200px;
  padding: 15px 20px;
  box-sizing: border-box;
}

.pop-wrap .topmenu .pop-allmenu-hover .title {
 font-weight:600;
  position: relative;
}

.pop-wrap .topmenu .pop-allmenu-hover .btn-close {
  position: absolute;
  right: 15px;
  top: 12px;
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
}

.pop-wrap .topmenu .pop-allmenu-hover ul {
  margin-top: 15px;
}

.pop-wrap .topmenu .pop-allmenu-hover ul li {
  display: block;
  height: 35px;
}

.pop-wrap .topmenu .pop-allmenu-hover ul li a:hover {
  color: #333;
}

.pop-wrap .topmenu .pop-login-hover {
  position: absolute;
  right: 0px;
  top: 43px;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 4px 4px 10px 6px rgba(37, 73, 170, .05);
  width: 200px;
  padding: 15px 20px;
  box-sizing: border-box;
}

.pop-wrap .topmenu .pop-login-hover .title {
 font-weight:600;
}

.pop-wrap .topmenu .pop-login-hover .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
}

.pop-wrap .topmenu .pop-login-hover ul {
  margin-top: 10px;
}

.pop-wrap .topmenu .pop-login-hover ul li {
  display: block;
  text-align: center;
  color: #555;
  font-size: 13px;
}

.pop-wrap .topmenu .pop-login-hover .pop-user {
  display: block;
  margin: 0 auto;
  width: 68px;
  height: 68px;
  margin-bottom: 10px;
  background: url("../img/pop-login-img.png") no-repeat center center;
}

.pop-wrap .topmenu .pop-login-hover .name {
  color: #333;
 font-weight:600;
  font-size: 15px;
}

.pop-wrap .topmenu .pop-login-hover .btn-time {
  height: 27px;
  line-height: 27px;
  font-size: 13px;
  padding: 0px 10px;
  margin-top: 5px;
  color: #fff;
  background-color: #0888e1;
}

.pop-wrap .spot {
  height: 198px;
  padding-top: 50px;
  box-sizing: border-box;
  background: url("../img/pop_img1.png") no-repeat center center #2950bb;
}

.pop-wrap .spot p {
  color: #fff;
  font-size: 32px;
  text-align: center;
  font-weight: 600;
}

.pop-wrap .spot span {
  display: block;
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: 300;
  padding-top: 5px;
}

.btn-search-pop {
  position: absolute;
  right: 30px;
  top: 2px;
  /*display: flex;  justify-content:center;*/
}

.pop-content {
  padding-bottom: 50px;
}

.pop-con {
  padding: 20px 20px;
}

.pop-inner {
  max-width: 100% !important;
}


/** 커뮤니티 룸 **/
.Community-wrap {
  height: 100vh;
  width: 1263px;
  background: url("../img/Community-bg.png") no-repeat 270px top #f5f8fa;
  box-sizing: border-box;
}

.Community-wrap .header {
  position: relative;
  height: 190px;
  padding-top: 40px;
  padding-left: 50px;
}

.Community-wrap .header h2 {
  font-size: 40px;
  color: #333;
}

.Community-wrap .header p {
  font-size: 20px;
  color: #555;
  margin-top: 5px;
}

.Community-wrap .content {}

.Community-wrap .visual-img {
  display: flex;
  justify-content: start;
  height: 628px;
}

.Community-wrap .visual-img .left-con {
  width: 640px;
  background: url("../img/visual-img.jpg") no-repeat -150px top;
  border-left: 1px solid #333;
}

.Community-wrap .visual-img .right-con {
  width: 560px;
  margin-left: 45px;
  box-sizing: border-box;
}

.Community-wrap .visual-img .border-con {
  position: relative;
  width: 560px;
}

.Community-wrap .visual-img .border-con h3 {
  font-size: 28px;
  color: #333;
}

.Community-wrap .visual-img .border-con .btn-more {
  position: absolute;
  right: 0px;
  top: -5px;
  font-size: 30px;
  width: 30px;
  height: 30px;
}

.Community-wrap .visual-img .border-con ul {
  margin-top: 20px;
}

.Community-wrap .visual-img .border-con ul li {
  position: relative;
  margin-bottom: 15px;
  font-size: 17px;
}

.Community-wrap .visual-img .border-con ul li a {
  display: inline-block;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 75%;
}

.Community-wrap .visual-img .border-con ul li span {
  position: absolute;
  right: 0px;
  top: 0px;
  color: #555;
  font-weight: 300;
}

.Community-wrap .visual-img .border-con ul li a.btn-down {
  border: 1px solid #ddd;
  padding: 5px 15px;
  border-radius: 2px;
  font-size: 14px;
}

.user-pop.on,
.link-pop.on {
  display: block;
}

.user-pop,
.link-pop {
  display: none;
}

.etc-menu {
  position: absolute;
  right: 20px;
  top: 50px;
}

.etc-menu a {
  color: #555;
  font-size: 35px;
  margin-left: 10px;
}

.etc-item {
  position: absolute;
  top: 50px;
  right: 0px;
  z-index: 20;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, .20);
  width: 250px;
  height: 180px;
  padding: 20px 30px;
  background: url("../img/etc-item.png") no-repeat 210px 140px #fff;
}

.bgnone {
  background-color: #fff;
}

.etc-item span {
  font-size: 18px;
 font-weight:600;
}

.etc-item ul {
  margin-top: 20px;
}

.etc-item ul li {
  position: relative;
  margin-bottom: 10px;
}

.etc-item ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
  width: 3px;
  height: 2px;
  background-color: #777;
}

.etc-item ul li a {
  font-size: 14px;
 font-weight:600;
}

.btn-close {
  position: absolute;
  right: 30px;
  top: 20px;
  z-index: 30;
  width: 10px;
  height: 10px;
  text-align: center;
  font-size: 18px;
  background-color: #fff;
}

.btn-close:hover {
  border: 0px !important;
}

.etc-item .login-info {
  position: relative;
  padding-left: 85px;
  padding-top: 15px;
}

.etc-item .login-info img {
  position: absolute;
  left: 0px;
  top: 20px;
}

.etc-item .login-info p {
  position: relative;
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 3px;
}

.etc-item .btn-time {
  position: absolute;
  right: -10px;
  top: 0px;
  display: inline-block;
  font-size: 12px;
}

.etc-item .btn-con {
  text-align: center;
}

.etc-item .btn-mypage {
  display: inline-block;
  background-color: #558cf0;
  font-size: 14px;
  color: #fff;
  padding: 2px 15px;
  border-radius: 2px;
  height: 30px;
  margin-top: 10px;
}

.etc-item .btn-logout {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #555;
  padding: 2px 15px;
  border-radius: 2px;
  height: 30px;
  margin-top: 10px;
}

/** 커뮤니티 룸 **/

/*** 로그인 화면 ***/
.login-section {
  position: relative;
  height: 100vh;
  background: url("../img/login-bg.jpg") no-repeat center center;
  background-size: cover;
}

.login-section .login-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.login-section .login-box .login-logo {
  margin-top: 10px;
}

.login-section .login-box .login-logo img {
  margin-right: 40px;
}

.login-section .etc-wrap {
  margin-top: 30px;
}

.login-section .etc-wrap>span {
  display: block;
  font-weight: 600;
  font-size: 15px;
  padding-left: 20px;
  background: url("../img/title-bu.png") no-repeat left center;
}

.login-section .etc-wrap a {
  display: inline-block;
  padding: 5px 10px 5px 13px;
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: 14px !important;
  border: 1px solid #ddd;
  border-radius: 2px;
}

.login-section .etc-wrap a:hover {
  border: 1px solid #333;
  color: #333;
}

.login-section .etc-wrap dl {
  margin-top: 10px;
}

.login-section .etc-wrap dt {
  display: block;
  font-weight: 600;
  font-size: 15px;
  padding-left: 20px;
  background: url("../img/title-bu.png") no-repeat left center;
  margin-bottom: 5px;
}

.login-section .etc-wrap dd {
  position: relative;
  display: block;
  color: #666;
  margin-top: 3px;
  padding-left: 10px;
}

.login-section .etc-wrap dd::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
  width: 3px;
  height: 2px;
  background-color: #777;
}

.login-section .etc-wrap dd:last-child::before {
  display: none;
}

.login-section .etc-wrap dd a {
  display: inline-block;
  padding: 5px 10px 5px 13px;
  margin-top: 10px;
  font-size: 14px !important;
  border: 1px solid #ddd;
  border-radius: 2px;
}

.login-section .etc-wrap dd a:hover {
  border: 1px solid #333;
  color: #333;
}

.login-section .login-con {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, .10);
  padding: 10px 10px;
  box-sizing: border-box;
  margin-top: 15px;
  width: fit-content;
}

.login-section .login-con .left {
  width: 50%;
  padding: 30px 40px;
}

.login-section .login-con .right {
  position: relative;
  background-color: #fff;
  padding: 30px 40px;
  width: 50%;
}

.login-section .login-con .right::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 35px;
  height: 430px;
  width: 1px;
  background-color: #eee;
}

.login-section .login-con .right .title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.login-section .login-con .right .cert-login {
  height: 180px;
}

.login-section .login-con .right .btn-login {
  display: block;
  color: #fff;
  text-align: center;
  height: 55px;
  line-height: 55px;
 font-weight:600;
  width: 342px;
  border-radius: 2px;
  background-color: #575dcd;
  background: linear-gradient(0deg, rgb(65 78 201) 0%, rgb(65 78 201) 50%, rgb(87 95 206) 51%, rgb(87 95 206) 100%);
}

.login-section .login-con .right .btn-renew {
  display: block;
  background-color: #276cea;
  color: #fff;
  text-align: center;
  height: 47px;
  line-height: 45px;
 font-weight:600;
  width: 342px;
  margin-top: 7px;
  margin-left: 0px !important;
  border-radius: 2px;
}

.login-section .login-con .right .id-login {}

.login-section .login-con .right .id-login span {
  display: block;
  margin-bottom: 7px;
}

.login-section .login-con .right .id-login .btn-login {
  display: block;
  background-color: #2e5bb1;
  color: #fff;
  text-align: center;
  height: 45px;
  line-height: 45px;
 font-weight:600;
  width: 342px;
}

.login-section .login-con .right .login-info {
  margin-top: 20px;
}

.login-section .login-con .right .login-info a {
  position: relative;
  font-size: 14px;
  color: #666;
  height: 27px;
  padding: 0 10px;
  display: inline-block;
  margin-right: 22px;
}

.login-section .login-con .right .login-info a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
  width: 3px;
  height: 2px;
  background-color: #777;
}

.login-section .idpw {
  height: 45px !important;
  padding: 0 10px;
  width: 340px !important;
  border: 1px solid #ddd !important;
  font-size: 15px !important;
  background-color: rgb(232, 240, 254);
}

.login-section .idpw:hover {
  border: 1px solid #ccc;
}

/*** 로그인 화면  ***/


/***** 사이트맵 *****/
.sitemap-wrap {
  display: flex;
  flex-wrap: wrap;
}

.sitemap-wrap .map-item {
  width: 25%;
  height: 300px;
  box-sizing: border-box;
  padding-right: 40px;
  margin-bottom: 30px;
}

.sitemap-wrap .map-item dl {
  border-radius: 2px;
}

.sitemap-wrap .map-item dt {
  position: relative;
  border: 1px solid #ddd;
  padding: 0 30px 0px 30px;
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #333;
  height: 40px;
  padding-top: 15px;
  text-align: center;
  background-color: #efefef;
}

.sitemap-wrap .map-item dd {
  padding: 0 30px 0px 30px;
  border: 1px solid #ddd;
  border-top: none;
  height: 240px;
  padding-top: 10px;
}

.sitemap-wrap .map-item dd a {
  position: relative;
  display: block;
  font-size: 15px;
  color: #555;
  padding-left: 10px;
  margin-top: 10px;
}

.sitemap-wrap .map-item dd a:hover {
  color: #000;
  text-decoration: underline;
}

.sitemap-wrap .map-item dd a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
  width: 3px;
  height: 2px;
  background: #aaa;
}


/* 레이어팝업 */
#layer-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9997;
}

#layer-popup .popup {
  width: 800px;
  height: 640px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -320px 0 0 -400px;
  border-radius: 3px;
  background-color: #ffffff;
  overflow: hidden;
}

#layer-popup .popup .popup-top {
  height: 60px;
  line-height: 60px;
  position: relative;
  background: #2950bb;
  /* background:linear-gradient(90deg, rgba(55,127,194,1) 0%, rgba(70,199,179,1) 100%); */
  padding: 0 20px;
}

#layer-popup .popup .popup-title {
  font-size: 18px;
 font-weight:600;
  color: #ffffff;
  padding-top: 20px;
}

#layer-popup .popup .popup-close {
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  display: block;
  background: url(../../images/ico-close-white.svg) no-repeat center center;
  background-size: 70%;
  position: absolute;
  right: 25px;
  top: 25px;
}

#layer-popup .popup .popup-content {
  padding: 20px;
  height: calc(100% - 50px);
  overflow-y: auto;
}

#layer-popup .popup.w300 {
  margin-left: -150px;
}

#layer-popup .popup.w400 {
  margin-left: -200px;
}

#layer-popup .popup.w500 {
  margin-left: -250px;
}

#layer-popup .popup.w600 {
  margin-left: -300px;
}

#layer-popup .popup.w700 {
  margin-left: -350px;
}

#layer-popup .popup.w800 {
  margin-left: -400px;
}

#layer-popup .popup.w900 {
  margin-left: -450px;
}

#layer-popup .popup.w1000 {
  margin-left: -500px;
}

#layer-popup .popup.w1200 {
  margin-left: -600px;
}

#layer-popup .popup.w1600 {
  margin-left: -800px;
}

#layer-popup .popup.h200 {
  margin-top: -100px;
}

#layer-popup .popup.h250 {
  margin-top: -125px;
}

#layer-popup .popup.h270 {
  margin-top: -145px;
}

#layer-popup .popup.h300 {
  margin-top: -150px;
}

#layer-popup .popup.h350 {
  margin-top: -175px;
}

#layer-popup .popup.h400 {
  margin-top: -200px;
}

#layer-popup .popup.h500 {
  margin-top: -250px;
}

#layer-popup .popup.h600 {
  margin-top: -300px;
}

#layer-popup .popup.h700 {
  margin-top: -350px;
}

#layer-popup .popup.h750 {
  margin-top: -375px;
}

#layer-popup .popup.h800 {
  margin-top: -400px;
}

#layer-popup .popup.h900 {
  margin-top: -450px;
}

#layer-popup .popup.h1000 {
  margin-top: -500px;
}

.message-text {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  padding: 0px 20px;
  color: #333;
  font-size: 16px;
}

.poptop-btn {
  position: relative;
  height: 40px;
}

.poptop-btn .popup-close {
  position: absolute;
  right: 30px !important;
  top: 20px !important;
  width: 40px;
  height: 20px;
  text-indent: -9999px;
  color: #555 !important;
  display: block;
  background: url(../../images/ico-close-white.svg) no-repeat center center;
  filter: brightness(1) invert(1);
  background-size: 70%;
}

/***** 아이디, 비번 찾기 가이드 *****/
.content-body .info-con {
  margin: 30px 0 0 40px;
}

.content-body .info-text {}

.content-body .img-idpw {
  position: relative;
  padding-left: 100px;
}

.content-body .img-idpw ::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url(../img/idpw-img.png) no-repeat 20px center #ebeff3;
}

.content-body .img-con1 {
  position: relative;
  padding-left: 100px;
}

.content-body .img-con1::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url(../img/img-con1.png) no-repeat 20px center #ebeff3;
}

.content-body .img-con2 {
  position: relative;
  padding-left: 100px;
}

.content-body .img-con2::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url(../img/img-con2.png) no-repeat 20px center #ebeff3;
}

.content-body .img-con3 {
  position: relative;
  padding-left: 100px;
}

.content-body .img-con3::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url(../img/img-con3.png) no-repeat 20px center #ebeff3;
}

.content-body .info-text .blue-text {
  color: #021983;
  margin-bottom: 10px;
}

.btn-certifi {
  display: inline-block;
  padding: 0 15px;
  height: 40px;
  background: #2166c4;
  color: #fff;
}


/* 탭 세로 스타일 2023.04.10 추가*/
.row-wrap {
  max-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}

.row-wrap .tab-wrap03 {
  background: #FFF;
  width: 15%;
  height: 100%;
  overflow: hidden;
}

ul.tab_type03 {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  float: left;
  display: block;
}

.row-wrap .tab-wrap03>ul {
  width: 200px;
}

ul.tab_type03 li {
  border: 1px solid #e7e7e7;
  height: 50px;
  padding: 0 13px;
}

ul.tab_type03 li a {
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  transition: all .3s ease;
}

.tab-content-wrap03 {
  width: 95%;
}

.tab_type03 li.on {
  z-index: 1;
  background-color: #5c87d8;
}

.tab_type03 li.on a {
  color: #fff;
}

.tab_type03 li:hover {
  background-color: #5c87d8;
}

.tab_type03 li:hover a {
  color: #fff;
}


/* 팝업창 */
.ui-dialog-titlebar button:focus {
  border: 2px solid #727272;
}

.search-inner .btn-search-wrap .btn-search .icon,
 .search-inner .btn-search-wrap .btn-refrish .icon{
 margin-top: 3px;
 margin-right: 4px;
 }

.btn-calendar .icon{
 margin-top: 0;
 }

 
a:focus,button:focus,input:focus,select:focus,textarea:focus,summary:focus,[tabindex]:focus{outline:3px solid #ffbf00!important;outline-offset:3px!important;box-shadow:0 0 0 2px #fff!important;border-radius:3px;}

/* 레이어 팝업 */
.layerPop {display:none; z-index:9999; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5)}
.layerPop.on {display:block}
html:has(.layerPop.on) {overflow:hidden !important}
.layerPop .modalWrap {overflow:hidden; position:fixed; top:50%; left:50%; max-width:90%; max-height:90%; transform:translate(-50%, -50%) scale(0); -webkit-transform:translate(-50%, -50%) scale(0); -moz-tansform:translate(-50%, -50%) scale(0); transition:0.3s; -webkit-transition:all 0.3s; -moz-transition:all 0.3s;box-sizing:border-box}
.layerPop.on .modalWrap {transform:translate(-50%, -50%) scale(1); -webkit-transform:translate(-50%, -50%) scale(1); -moz-transform:translate(-50%, -50%) scale(1)}
.modalWrap .header {display:flex;justify-content:flex-start;align-items:center;position:sticky;top:0;left:0;width:100%;min-height:60px;max-height:60px;padding:0px 20px;border-radius:10px 10px 0px 0px;background: #2c57aa;}
.modalWrap .header h2 {font-size:22px; color:#fff; font-weight:600; line-height:1.2}
.modalWrap .contsWrap {overflow-y:auto; /*min-height:150px;*/ max-height:calc(100vh - 245px); padding:20px; border-radius:0px; background:#fff}
.modalWrap .conts .find_info{font-size: 20px;}
.modalWrap:not(:has(.footer)) {border-radius:0 0 10px 10px}
.modalWrap .footer {display:flex; justify-content:center; align-items:center; position:sticky; bottom:1px; width:100%;border-radius:0px 0px 10px 10px; background:#fff}
.modalWrap .footer .btnBox {margin-top:0}
.modalWrap .conts {display:flex; flex-direction:column; justify-content:space-between; align-items:center; width:100%; font-size:1.7rem; color:#232323; text-align:center}
.modalWrap .conts.left {align-items:flex-start}
.modalWrap .close {position:absolute; right:20px; top:20px; width:20px; height:20px; background:url("../images/contents/ico_close.svg") no-repeat; background-size:contain}

[id*="alert"] .modalWrap .header, [id*="confirm"] .modalWrap .header {justify-content:flex-start}
[id*="alert"] .modalWrap .contsWrap, [id*="confirm"] .modalWrap .contsWrap {width:100%}
[id*="alert"] .modalWrap .footer .btnBox, [id*="confirm"] .modalWrap .footer .btnBox {margin-top:0px}

.line-table {width:100%; border-collapse:collapse; table-layout:fixed; border-top:1px solid #555; border-left:1px solid #ddd;}
.line-table > thead > tr > th, .line-table > thead > tr > td, .line-table > tbody > tr > th, .line-table > tbody > tr > td {padding:14px 10px; text-align:center; vertical-align:middle; border-right:1px solid #ddd; border-bottom:1px solid #ddd;}
.line-table > thead > tr > th {color:#222; font-weight:600; background-color:#f5f5f5;}

/* 모바일 가로 스크롤 테이블 - 필요한 테이블의 부모 요소에만 사용 */
.table_scroll_x{width:100%;max-width:100%;}
@media (max-width:768px){
.table_scroll_x{overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;}
.table_scroll_x > table{width:100%;min-width:700px;}
  .pagenation{width:100%;overflow:hidden;}
.pagenation .page-num{align-items:center;width:100%;margin:0;gap:4px;}
.pagenation .page-num .item{width:32px;margin:0;padding:0;}
.pagenation .page-num .num{width:32px;height:32px;font-size:13px;}
.pagenation .page-num .item:nth-child(n+8):nth-child(-n+12){display:none;}
}

/* 레이어 팝업안의 구성요소 */
.api-search-modal {width:900px !important;}
.popup-search-wrap .search-inner {padding:20px 25px;}
.popup-search-wrap .popup-search-con {display:flex; align-items:center; gap:15px; margin-bottom:0;}
.popup-search-wrap .popup-search-con .item3 {display:flex; align-items:center; width:calc((100% - 30px) / 3); min-width:0;}
.popup-search-wrap .popup-search-con .title3 {width:90px; flex:0 0 90px; padding-left:0;}
.popup-search-wrap .popup-search-con .list {flex:1; min-width:0;}
.popup-search-wrap .popup-search-con .select_xeicon {display:block; width:100%;}
.popup-search-wrap .popup-search-con .select-st1 {width:100%; height:40px;}
.popup-search-wrap .popup-search-con .input-text {width:100%; box-sizing:border-box;}
.popup-search-wrap .btn-search-wrap {display:flex; align-items:center; justify-content:center; gap:5px; width:100%; margin-top:20px;}

.popup-result-wrap {margin-top:30px;}
.popup-result-head {display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; font-size: 16px;}
.popup-result-head h3 {margin:0;}
.popup-result-head strong{font-weight: 700; font-size: 18px; color: #3569c8;}
.popup-table-scroll {width:100%; overflow-x:auto;}
.popup-table-scroll .board-list {min-width:700px;}
.popup-table-scroll input[type="checkbox"] {width:16px; height:16px; margin:0; vertical-align:middle; cursor:pointer;}
.popup-table-scroll .popup-empty {height:100px; text-align:center;}

@media screen and (max-width:800px) {
    .popup-search-wrap .popup-search-con {flex-wrap:wrap;}
    .popup-search-wrap .popup-search-con .item3 {width:calc((100% - 15px) / 2);}
}

@media screen and (max-width:600px) {
    .popup-search-wrap .popup-search-con {display:block;}
    .popup-search-wrap .popup-search-con .item3 {width:100%;}
    .popup-search-wrap .popup-search-con .item3 + .item3 {margin-top:12px;}
    .popup-search-wrap .popup-search-con .title3 {width:80px; flex-basis:80px;}
}

/* 검색 영역 반응형 */
@media (max-width:1460px){
.search_filter_basic .search-inner .search-con{display:flex;flex-direction:column;align-items:stretch;gap:14px;margin-bottom:0;}
.search_filter_basic .search-inner .search-con .item{width:100%;}
.search_filter_inline .search-inner.keyword-search .search-con02.filter-search-con{display:grid;grid-template-columns:170px minmax(0,1fr) 85px;grid-template-areas:"select radio radio" "keyword keyword button";align-items:center;width:100%;max-width:100%;gap:12px;margin:0;}
.search_filter_inline .search-con02.filter-search-con .filter-search-select{grid-area:select;width:100%;min-width:0;}
.search_filter_inline .search-con02.filter-search-con .filter-search-radio{grid-area:radio;min-width:0;}
.search_filter_inline .search-con02.filter-search-con .filter-search-keyword{grid-area:keyword;width:100%;min-width:0;}
.search_filter_inline .search-con02.filter-search-con > .btn-search{grid-area:button;width:85px;min-width:85px;margin:0;}
}

@media (min-width:601px) and (max-width:1460px){
.search_filter_inline .search-inner.keyword-search .search-con02.filter-search-con.filter-search-simple{display:grid;grid-template-columns: 120px minmax(0,1fr) 85px;grid-template-areas:
"select keyword button";align-items:stretch;gap:12px;}
}

@media (max-width:1024px){
.search_filter_basic .search-inner{padding:20px;}
.search_filter_basic .search-con{gap:18px;}
.search_filter_basic .search-con .item{width:100%;}
.search_filter_basic .search-con .title3{width:90px;flex-basis:90px;padding-left:0;}
.search_filter_basic .date-con{flex:1;gap:18px;}
.search_filter_basic .date-first,.search_filter_basic .date-last{flex:1;min-width:0;}
.search_filter_basic .date-first input,.search_filter_basic .date-last input{width:100%;min-width:0;box-sizing:border-box;}
.search_filter_basic .select-bjdngcd_2{flex:1;min-width:0;}
.search_filter_basic .select-bjdngcd_2 .select_xeicon{flex:1;min-width:0;}
.search_filter_basic .select-bjdngcd_2 .select-st1{width:100%!important;}
.search_filter_inline .filter-search-select,.search_filter_inline .filter-search-keyword{width:100%;min-width:0;}
.search_filter_inline .filter-search-radio{flex-wrap:wrap;gap:8px 12px;}
.search_filter_column .filter-search-option,.search_filter_column .filter-search-input{width:100%;}
}

@media (max-width:768px){
.search_filter_basic .search-inner{padding:18px;}
.search_filter_basic .search-con{display:flex;flex-direction:column;gap:14px;margin-bottom:0;}
.search_filter_basic .search-con .item{width:100%;}
.search_filter_basic .btn-search-wrap{justify-content:center;margin-top:18px;}
.search_filter_inline .keyword-search{padding:18px;}
.search_filter_inline .search-inner.keyword-search .search-con02.filter-search-con{grid-template-columns:150px minmax(0,1fr) 85px;grid-template-areas:"select radio radio" "keyword keyword button";}
.search_filter_inline .filter-search-con > .btn-search{width:85px;min-width:85px;}
.search_filter_column .keyword-search{padding:18px;}
.search_filter_column .filter-search-option{justify-content:center;}
  .responsive_detail_table > tbody > tr > td.agreement_cell{flex-direction:column;align-items:flex-start;justify-content:center;}
.responsive_detail_table .agreement_cell .purpose-radio{display:flex;width:100%;flex-wrap:wrap;gap:8px 12px;}
.responsive_detail_table .agreement_cell .purpose-radio label{display:inline-flex;align-items:center;flex-shrink:0;gap:4px;}
.responsive_detail_table .agreement_cell .agreement-guide{display:block;width:100%;margin:10px 0 0;line-height:1.7;word-break:keep-all;overflow-wrap:break-word;}

}

@media (max-width:600px){
.search_filter_basic .search-inner{padding:16px 12px;}
.search_filter_basic .search-con .item{display:block;}
.search_filter_basic .search-con .title3{width:100%;height:auto;margin-bottom:8px;padding:0;}
.search_filter_basic .search-con .list{width:100%;}
.search_filter_basic .date-con{width:100%;}
.search-wrap .date-con.date_vertical_mobile{display:flex;flex-direction:column;align-items:stretch;gap:8px;width:100%;}
.search-wrap .date-con.date_vertical_mobile .date-first,.search-wrap .date-con.date_vertical_mobile .date-last{display:block;width:100%;margin-left:0;}
.search-wrap .date-con.date_vertical_mobile .date-first input,.search-wrap .date-con.date_vertical_mobile .date-last input{width:100%;min-width:0;box-sizing:border-box;}
.search-wrap .date-con.date_vertical_mobile .date-last::before{display:none;}
.search_filter_basic .btn-search-wrap{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;}
.search_filter_basic .btn-search-wrap button{width:100%!important;margin:0!important;}
.search_filter_inline .keyword-search,.search_filter_column .keyword-search{padding:15px 12px;}
.search_filter_inline .search-inner.keyword-search .search-con02.filter-search-con{display:flex;flex-direction:column;align-items:stretch;gap:12px;}
.search_filter_inline .filter-search-select,.search_filter_inline .filter-search-keyword,.search_filter_inline .filter-search-con > .btn-search{width:100%;min-width:0;}
.search_filter_inline .search-con02.filter-search-con > .btn-search{width:100%;min-width:0;}
.search_filter_inline .filter-search-select .select_xeicon,.search_filter_inline .filter-search-select .select-st1{display:block;width:100%;}
.search_filter_inline .filter-search-radio{justify-content:flex-start;width:100%;}
.search_filter_column .filter-search-option{display:flex;flex-direction:column;align-items:stretch;gap:12px;}
.search_filter_column .filter-search-select{width:100%;}
.search_filter_column .filter-search-radio{flex-wrap:wrap;justify-content:flex-start;width:100%;}
.search_filter_column .filter-search-input{gap:8px;}
}

@media (max-width:480px){
.search_filter_basic .date-con{gap:16px;}
.search_filter_basic .date-last::before{left:-21px;}
.search_filter_basic .select-bjdngcd_2{width:100%;}
.search_filter_inline .filter-search-radio,.search_filter_column .filter-search-radio{gap:10px 14px;}
.search_filter_column .filter-search-input{display:flex;flex-direction:column;align-items:stretch;}
.search_filter_column .filter-search-keyword,.search_filter_column .filter-search-input .btn-search{width:100%;}
}

/* 상세정보 테이블 반응형 - responsive_detail_table 적용 테이블만 사용 */
.responsive_detail_table{width:100%;table-layout:fixed;}
.responsive_detail_table .purpose-textarea{display:block;width:100%;height:82px;padding:10px;resize:vertical;background:#f7f7f7;border:1px solid #d7d7d7;border-radius:4px;box-sizing:border-box;}

@media (max-width:768px){
.responsive_detail_table{display:block;width:100%;table-layout:auto;border-top:1px solid #aaa;}
.responsive_detail_table > colgroup{display:none;}
.responsive_detail_table > tbody{display:block;width:100%;}
.responsive_detail_table > tbody > tr{display:grid;grid-template-columns:200px minmax(0,1fr);width:100%;}
.responsive_detail_table > tbody > tr > th,.responsive_detail_table > tbody > tr > td{display:flex;align-items:center;width:auto;min-width:0;min-height:48px;height:auto;margin:0;padding:12px 14px;border:0;border-bottom:1px solid #e5e5e5;box-sizing:border-box;font-size:14px;line-height:1.6;text-align:left;word-break:break-word;}
.responsive_detail_table > tbody > tr > td{background:#fff;}
.responsive_detail_table > tbody > tr > td a{max-width:100%;word-break:break-all;}
.responsive_detail_table > tbody > tr > td .btn-defalut{margin:3px 4px 3px 0;}

}

@media (max-width:480px){
.responsive_detail_table > tbody > tr{grid-template-columns:105px minmax(0,1fr);}
.responsive_detail_table > tbody > tr > th,.responsive_detail_table > tbody > tr > td{min-height:44px;padding:10px;font-size:13px;}
.responsive_detail_table > tbody > tr > td{flex-wrap:wrap;}
}



/* API 소개 반응형 */
@media (max-width:1280px){
  .api-call-content { display: block; }
  .api-response-area { margin-top: 40px; }
  .api-service-list { align-items: center; padding: 20px 0 26px;}
  .api-service-info { flex: 1; }
  .api-service-label { width: 100%; justify-content: center; }
  .api-service-item { width: 100%; max-width: 470px; }

  .guide-info h2 { font-size: 22px; }
  .guide-info li { font-size: 18px; }
  .guide-info li::before { top: 9px; }
  .api-description-list li { font-size: 18px; }
}

@media (max-width:1024px){
  .guide-info { flex-direction: column; }
  .guide-info .guide-info-txt { min-width: 0; }
}

@media (max-width:768px){
  .api-step-content { min-height: 0; }
  .api-step-content .pc-img { display: none; }
  .api-step-content .mb-img { display: block; }
}

@media (max-width:600px){
  .guide-info { padding: 20px 15px; }
  .api-step-head { flex-direction: column; gap: 10px; }

  .api-call-title { font-size: 18px; }
  .api-service-label { font-size: 18px; }
  .api-step-content { margin-top: 15px; }
  .api-step-title { text-align: center; }
  .h5_title { font-size: 20px; }
  .guide-info h2 { font-size: 20px; }
  .guide-info li { font-size: 16px; padding-left: 12px; }
  .guide-info li::before { width: 5px; height: 5px; top: 7px;}
}

@media (max-width:480px){
 .api-step-box { padding: 20px; margin-top: 15px; }
 .guide-info .guide-info-img { padding: 10px 20px; }
 .api-service-item { flex-direction: column; gap: 20px;}
 .api-service-icon { width: 70px; flex: 0; }
 .api-call-content { padding: 22px 20px 30px; }
 .api-step-title { font-size: 18px; }

}

/* 게시판 검색영역 */
.search_filter_board .search-con { margin-bottom: 0; }
.search_filter_board .search-con .list { gap: 15px; flex-wrap: wrap;}
.search_filter_board .filter-search-option { display: flex; align-items: center; gap: 12px; }
.search_filter_board .filter-search-input { display: flex; align-items: center; gap: 10px; flex: 1; }
.search_filter_board .filter-search-keyword { width: auto; flex: 1; }

@media (max-width:600px){
  .search_filter_board .search-inner { padding: 15px 12px; }
  .search_filter_board .filter-search-option { flex-direction: column; width: 100%; }
  .search_filter_board.search-wrap .select_xeicon { width: 100%; }
  .search_filter_board .select_xeicon .select-st1 { width: 100% !important; }
  .search_filter_board.search-wrap .date-con { width: 100%; }
  .search_filter_board.search-wrap .date-first, .search_filter_board.search-wrap .date-last { width: calc((100% - 35px)/2); } 
  .search_filter_board .ax5-group-picker .date { width: 100%; }
  .search_filter_board .filter-search-input { flex-direction: column; gap: 8px; }
  .search_filter_board .filter-search-input .filter-search-keyword { width: 100%; }
  .search_filter_board .filter-search-input .btn-search { width: 100%; }
}

/* 서브타이틀 */
.sub-title { font-size: 24px; font-weight: 700; }

/* 게시판 목록 */
.board-info { margin-bottom: 10px; }
.board-info .total { color: #1759dd; }
.search-wrap + .board-info { margin-top: 40px; }
.notice-table { border-left: 0; }
.notice-table tbody tr {border-bottom: 1px solid #e6ecf3;}
.notice-table.board-list tbody td { border-bottom: 0; }
.notice-table thead th, .notice-table tbody td { border-right: 0; }
.notice-table tbody tr .c-tit a { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; word-wrap: break-word; }
.notice-table tbody tr .c-tit a:hover { color: #1759dd; text-decoration: none;}
.notice-table tbody tr .c-file .file { display: inline-block; width: 17px; height: 17px; background: url(../images/sub/attach_ico.svg) center / cover no-repeat; }

/* 게시판 상세 */
.board-view { border-top: 1px solid #555; border-bottom: 1px solid #555; }
.board-view .board-view-top { padding: 26px 25px 20px; text-align: center; background-color: #f5f5f5; border-bottom: 1px solid #e5e5e5;}
.board-view .board-view-top .tit { display: block; margin-bottom: 20px; font-size: 24px; font-weight: 700; line-height: 1.5; }
.board-view .board-view-top .info { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; color: #767676; font-size: 15px; font-weight: 500;}
.board-view .board-view-top .info .info-each { line-height: 1.5; }
.board-view .board-view-top .info .info-each:not(:last-child) { margin-right: 35px; position: relative; }
.board-view .board-view-top .info .info-each:not(:last-child):before { content: ''; width: 1px; height: 65%; position: absolute; top: 50%; right: -20px; transform: translateY(-50%); background: #e5e5e5; }

.board-view .board-view-cont { padding: 40px 25px; }
.board-view .board-view-cont > div { line-height: 1.5; }

.board-view .board-view-file { border-top: 1px solid #e5e5e5; padding: 20px 0; display: flex; align-items: stretch; }
.board-view .board-view-file .right { width: 160px; position: relative; min-height: 40px; display: flex; align-items: center; justify-content: center; }
.board-view .board-view-file .right::before { content: ''; position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: #e5e5e5; }
.board-view .board-view-file .left { padding: 0 30px; flex: 1; display: flex; align-items: center; justify-content: start; }
.board-view .board-view-file .file-item + .file-item { margin-top: 10px; }
.board-view .board-view-file .file-item a { display: inline-block; position: relative; padding-left: 20px; line-height: 1.5; }
.board-view .board-view-file .file-item a:hover { text-decoration: underline; }
.board-view .board-view-file .file-item span { position: absolute; width: 14px; height: 14px; background-image: url(../images/sub/attach_ico.svg); background-repeat: no-repeat; background-size: cover; top: 5px; left: 0; }

.btn-wrap.right { justify-content: flex-end; }

.board-view-nav { display: flex; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; margin-top: 30px; height: 100px; }
.board-view-nav > a { flex: 1; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; padding: 0 25px; }
.board-view-nav > a p { position: relative; font-size: 18px; font-weight: 600;}
.board-view-nav > a:hover p { color: #1759dd; }
.board-view-nav > a span { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; word-wrap: break-word; color: #767676;}
.board-view-nav .prev { border-right: 1px solid #e5e5e5; }
.board-view-nav .prev p { padding-left: 42px; }
.board-view-nav .next p { padding-right: 42px; }
.board-view-nav .prev p::before { content: ''; display: inline-block; width: 32px; height: 10px; background-image: url(../images/sub/icon_arrow_pre.png); background-repeat: no-repeat; background-size: cover; position: absolute; top: 3px; left: 0; }
.board-view-nav .next p::after { content: ''; display: inline-block; width: 32px; height: 10px; background-image: url(../images/sub/icon_arrow_next.png); background-repeat: no-repeat; background-size: cover; position: absolute; top: 3px; right: 0; }

@media (max-width:1024px){
  .search-wrap + .board-info { margin-top: 30px; }
  .notice-table { display: block; }
  .notice-table thead { display: none; }
  .notice-table tbody { display: block; width: 100%; }
  .notice-table tbody tr { display: block; padding: 16px 5px 10px 5px; text-align: left; width: 100%; }
  .notice-table tbody tr td { display: inline-block; font-size: 14px; color: #767676;}
  .notice-table tbody tr .c-num { display: none; }
  .notice-table tbody tr .c-tit { width: 100%; margin-top: 5px;}
  .notice-table tbody tr .c-file { padding-top: 6px !important; }
  .notice-table.board-list tbody tr td { height: auto; line-height: 25px; padding: 0; }
  .notice-table.board-list tbody tr td:not(.c-num):not(.c-tit):not(:last-child) { margin-right: 15px; position: relative;}
  .notice-table.board-list tbody tr td:not(.c-num):not(.c-tit):not(:last-child)::before { content: ""; width: 1px; height: 10px; position: absolute; top: 50%; right: -9px; background-color: #777; transform: translateY(-50%);} 
  .notice-table.board-list tbody tr .c-tit { font-size: 15px; font-weight: 600; }

  .board-view .board-view-top { padding: 26px 25px 20px; }
  .board-view .board-view-top .tit { font-size: 18px; }
}

@media (max-width:768px){
  .board-info { font-size: 14px; }
  .board-view .board-view-file .right { display: none; }
  .board-view .board-view-top .info .info-each:not(:last-child) { margin-right: 18px; }
  .board-view .board-view-top .info .info-each:not(:last-child)::before { right: -11px; }
  .board-view .board-view-file .file-item a { font-size: 14px; }
  .board-view .board-view-cont { padding: 20px 15px; }
  .board-view .board-view-file .left { padding: 0 15px; }
  .board-view-nav { height: 90px; }
  .board-view-nav > a span { display: none; }
}

@media (max-width:600px){
  .board-view-nav > a p { font-size: 16px; }
}


/* API 사용 신청서 */
.input-group { display: flex; }
.board-detail .btn-calendar { position: absolute; top: 50%; right: 8px; transform: translateY(-50%); }
.board-detail .date-last { margin: 0; }
.board-detail .date-last::before { display: none; }
.responsive_detail_table > tbody > tr > th, .purpose-file-table > tbody > tr > th { white-space: wrap; }
.purpose-col { width: 19%; }
.input-etc { width: 37%; }

@media (max-width:768px){
  .purpose-col { width: 130px; }
  .input-etc { width: 100%; }
  .responsive_detail_table input { width: 100%; }
  .responsive_detail_table .input-group { width: 100%; }
}


/* API 검색 팝업창 */
/* .btn-search-wrap.btn-center { justify-content: center; } */
.search_result_head { width: 100%; font-size: 16px; display: flex; align-items: center; justify-content: space-between; }
.search_result_head h3 { font-size: 18px; }
.search_result_head p span { font-weight: 700; color: #2c57aa; }
/* .search-wrap.modal-line .search-con .list { gap: 30px; flex-wrap: wrap; }
.search-wrap.modal-line .search-con .title3 { width: auto; flex: none; margin-right: 30px;}
.search-wrap.modal-line .search-con .item { width: auto; } */


/* 카드뉴스 */
.board-gallery { width: 100%; border-top: 1px solid #555; padding-top: 20px; }
.board-gallery .gallery-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px 40px; }
.board-gallery .gallery-item { min-width: 0; }
.board-gallery .gallery-link { display: block; border: 1px solid #eee;}
.board-gallery .gallery-thumb { position: relative; overflow: hidden; background-color: #f7f7f7; padding: 0 0 68% 0; }
.board-gallery .gallery-thumb-img { display: flex; justify-content: center; align-items: center; position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.board-gallery .gallery-thumb-img img { display: inline-block; max-width: fit-content; height: 100%; transition: all .3s ease; }
.board-gallery .gallery-link:hover .gallery-thumb-img img { transform: scale(1.5); }
.board-gallery .gallery-link:hover .gallery-title { color: #1759dd; }
.board-gallery .gallery-info { padding: 10px; border-top: 1px solid #eee; }
.board-gallery .gallery-title { margin-bottom: 10px; font-weight: 600; font-size: 17px; line-height: 22px; color: #333; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; word-wrap: break-word; vertical-align: middle; }
.board-gallery .gallery-meta { font-size: 14px; color: #727272; line-height: 21px; }
.board-gallery .gallery-meta .date { padding-right: 11px; margin-right: 10px; position: relative; }
.board-gallery .gallery-meta .date::before { content: ''; position: absolute; top: 50%; right: 0; transform: translateY(-50%); width: 1px; height: 10px; background-color: #727272; }

@media (max-width:1280px){
  .board-gallery .gallery-list { gap: 40px 30px; grid-template-columns: repeat(2, 1fr);}
}

@media (max-width:768px){
  .board-gallery .gallery-list { grid-template-columns: 1fr; gap: 30px 15px; }
}

@media (max-width:480px){
  .board-gallery .gallery-title { font-size: 15px; line-height: 20px; margin-bottom: 10px;  overflow: inherit; text-overflow: inherit; display: inherit; -webkit-line-clamp: inherit; -webkit-box-orient: inherit; word-wrap: inherit; vertical-align: inherit; }
  .board-gallery .gallery-meta { font-size: 13px; }
}


/* 데이터맵 영역 */
.data-map-layout{display:flex;align-items:stretch;width:100%;height:clamp(520px,60vw,720px);box-sizing:border-box;}
.data-map-layout > .side-item{width:27%!important;min-width:250px;margin:0!important;}
.data-map-layout > .expan{width:73%!important;min-width:0;margin:0 0 0 30px!important;}
.data-map-layout .data-tree{display:flex;flex-direction:column;width:100%;height:100%;border-right:1px solid #ddd;box-sizing:border-box;}
.data-map-layout .tree_top{flex:none;}
.data-map-layout .data-map-tree{flex:1;width:100%;height:auto;min-height:0;padding:0;overflow:auto;box-sizing:border-box;}
.data-map-layout #chart{width:100%;height:100%;min-width:0;overflow:auto;}
.board-top .word{line-height:1.6;text-align:right;word-break:keep-all;overflow-wrap:break-word;}

@media (max-width:1024px){
.data-map-layout{height:600px;}
.data-map-layout > .side-item{width:32%!important;min-width:220px;}
.data-map-layout > .expan{width:68%!important;margin-left:20px!important;}
}

@media (max-width:908px){
.board-top .word{text-align:left;}
.data-map-layout{display:flex;flex-direction:column;height:auto!important;border:0;}
.data-map-layout > .side-item{display:block;width:100%!important;min-width:0;height:auto;margin:0!important;border:1px solid #ddd;box-sizing:border-box;}
.data-map-layout > .expan{display:block;width:100%!important;min-width:0;height:450px;margin:16px 0 0!important;border:1px solid #ddd;box-sizing:border-box;}
.data-map-layout .data-tree{height:auto;border-right:0;}
.data-map-layout .data-map-tree{height:260px;min-height:260px;max-height:260px;overflow:auto;}
.data-map-layout .tree_top .btn_close{display:block!important;}
.data-map-layout .tree_top .btn_close i{display:inline-block;transform:rotate(-90deg);}
.data-map-layout .expan .btn_open{display:none!important;}
.data-map-layout #chart{width:100%;height:100%;overflow:auto;}
  }

@media (max-width:480px){
.data-map-layout .tree_top{padding:14px 50px 14px 14px;}
.data-map-layout .tree_top .title{font-size:15px;}
.data-map-layout .data-map-tree{height:220px;min-height:220px;max-height:220px;}
.data-map-layout > .expan{height:360px;}
}

/* 데이터 카탈로그 결과 영역 */
.data-catalog-layout{display:flex;align-items:stretch;width:100%;min-height:700px;box-sizing:border-box;}
.data-catalog-layout > .side-item{width:27%!important;min-width:230px;margin:0!important;}
.data-catalog-layout > .data-catalog-results{width:73%!important;min-width:0;margin:0 20px 0 30px!important;}
.data-catalog-layout .data-tree{display:flex;flex-direction:column;width:100%;height:100%;border-right:1px solid #ddd;box-sizing:border-box;}
.data-catalog-layout .data-catalog-tree{flex:1;width:100%;min-height:650px;padding:0;overflow-y:auto;box-sizing:border-box;}
.data-catalog-layout .data-catalog-results > .btn_open{display:none;}
.data-catalog-results .board-top{flex-wrap:wrap;gap:12px;min-height:40px;}
.data-catalog-results .board-top .board-total{margin-right:auto;white-space:nowrap;}
.data-catalog-results .board-top .btn-item{margin-left:12px;}
.data-catalog-results .laypop-list th:last-child,.data-catalog-results .laypop-list td:last-child{white-space:nowrap;}
.data-catalog-results .laypop-list .btn_down{display:inline-flex;align-items:center;justify-content:center;height:34px;margin:2px;padding:0 10px;border:1px solid #7589c0;background:#fff;color:#324e9c;border-radius:2px;box-sizing:border-box;font-size:13px;white-space:nowrap;transition:background-color .2s,color .2s,border-color .2s;}
.data-catalog-results .laypop-list .btn_down:hover,.data-catalog-results .laypop-list .btn_down:focus{border-color:#2e92ef;background:#2e92ef;color:#fff;}
.data-catalog-layout .board-top .word{display:flex;align-items:center;justify-content:flex-end;flex-wrap:wrap;gap:4px;text-align:right;}
.data-catalog-list-wrap{width:100%;margin-right:0!important;overflow:visible;}
.data-catalog-list{width:100%;table-layout:fixed;border-collapse:collapse;}
.data-catalog-list > tbody > tr{border-bottom:1px solid #d6e0ed;}
.data-catalog-list > tbody > tr > td{height:auto;padding:12px 8px;vertical-align:middle;box-sizing:border-box;}
.data-catalog-list > tbody > tr > td.ptb15{width:auto!important;overflow:visible;text-overflow:clip;white-space:normal;}
.data-catalog-list > tbody > tr > td.position{width:220px;}
.data-catalog-list .ptb15 a{display:block;width:100%;min-width:0;overflow:visible;text-overflow:clip;white-space:normal;}
.data-catalog-list .ptb15 p{display:block;width:100%;margin:0;overflow:visible;line-height:1.55;text-overflow:clip;white-space:normal;word-break:break-all;overflow-wrap:anywhere;}
.data-catalog-list .list-text{display:none;}
.data-catalog-list .inner-con{display:flex;flex-direction:column;align-items:flex-start;gap:8px;}
.data-catalog-list .process-info{display:flex;flex-wrap:wrap;gap:5px;}
.data-catalog-list .process-info .btn_down{height:30px;margin:0;padding:0 10px;white-space:nowrap;}
.data-catalog-list .data-info{display:flex;align-items:center;flex-wrap:wrap;gap:5px 16px;margin-top:0!important;}
.data-catalog-list .data-info::after{display:none;}
.data-catalog-list .data-info dl{float:none;margin:0;color:#777;}
.data-catalog-list .data-info dt,.data-catalog-list .data-info dd{display:inline-block;}

@media (max-width:1024px){
.data-catalog-layout > .side-item{width:30%!important;min-width:210px;}
.data-catalog-layout > .data-catalog-results{width:70%!important;margin-left:20px!important;}
.data-catalog-list > tbody > tr > td.position{width:190px;}
}

@media (max-width:900px){
.data-catalog-layout{display:flex!important;flex-direction:column!important;align-items:stretch!important;min-height:0;border:0;}
.data-catalog-layout > .side-item{display:block!important;width:100%!important;min-width:0!important;height:auto!important;margin:0!important;border:1px solid #ddd;box-sizing:border-box;}
.data-catalog-layout > .data-catalog-results{display:block!important;width:100%!important;min-width:0!important;height:auto!important;margin:16px 0 0!important;border:0;box-sizing:border-box;}
.data-catalog-layout .data-tree{height:auto;border-right:0;}
.data-catalog-layout .data-catalog-tree{height:190px!important;min-height:190px!important;max-height:190px!important;overflow-y:auto!important;}
.data-catalog-layout .tree_top .btn_close{display:block!important;}
.data-catalog-layout .tree_top .btn_close i{display:inline-block;transform:rotate(-90deg);}
.data-catalog-layout .data-catalog-results > .btn_open{display:none!important;}
.data-catalog-results .tab_type02{display:flex;width:100%;}
.data-catalog-results .tab_type02 li{float:none;flex:1;width:33.333%;}
.data-catalog-results .tab_type02 li a{width:100%;padding:0 6px;box-sizing:border-box;}
.data-catalog-layout .data-catalog-results .board-top{align-items:center;justify-content:space-between;margin:16px 0 12px!important;gap:10px 16px;}
.data-catalog-layout .data-catalog-results .board-top .board-total{margin:0;}
.data-catalog-layout .data-catalog-results .board-top .btn-item{margin:0;}
.data-catalog-layout .board-top{height:auto;margin:0 0 12px;}
.data-catalog-layout .board-top .word{justify-content:flex-start;margin-top:0!important;text-align:left;line-height:1.6;}
.data-catalog-list-wrap{margin-top:0!important;}
.data-catalog-list,.data-catalog-list > tbody{display:block;width:100%;}
.data-catalog-list > colgroup{display:none;}
.data-catalog-list > tbody > tr{display:block;width:100%;margin-bottom:12px;padding:16px;background:#fff;border:1px solid #d8e0ea;border-radius:6px;box-sizing:border-box;}
.data-catalog-list > tbody > tr > td,.data-catalog-list > tbody > tr > td.ptb15,.data-catalog-list > tbody > tr > td.position{display:block;width:100%!important;height:auto;padding:0;border:0;box-sizing:border-box;}
.data-catalog-list > tbody > tr > td.position{margin-top:14px;padding-top:12px;border-top:1px solid #e5e9ef;}
.data-catalog-list .ptb15 p{font-size:15px;line-height:1.6;word-break:break-all;}
.data-catalog-list .inner-con{gap:10px;}
.data-catalog-list .process-info{width:100%;}
.data-catalog-list .process-info .btn_down{flex:1;min-width:70px;height:36px;}
.data-catalog-list .data-info{gap:5px 14px;}
.data-catalog-layout .pagenation{margin-top:22px!important;overflow-x:auto;overflow-y:hidden;}
.data-catalog-layout .pagenation .page-num{width:max-content;min-width:100%;justify-content:center;}
}

@media (max-width:480px){
.data-catalog-layout .tree_top{padding:14px;}
.data-catalog-layout .tree_top .title{font-size:15px;}
.data-catalog-layout .data-catalog-tree{height:160px!important;min-height:160px!important;max-height:160px!important;}
.data-catalog-layout .board-top .word{display:block;font-size:13px;}
.data-catalog-layout .board-top .btn-keyword{margin:4px 2px 0 0;}
.data-catalog-list > tbody > tr{padding:14px 12px;}
.data-catalog-list .process-info{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:6px;}
.data-catalog-list .process-info .btn_down{width:100%;min-width:0;padding:0 5px;font-size:13px;}
.data-catalog-list .data-info{font-size:13px;}
}
/* 데이터 네비게이션 */
.guide-wrap { position: relative; width: 100%; max-width: 1500px; margin: 0 auto; padding: 50px 30px 80px; box-sizing: border-box; }
.guide-wrap .title-st1 { font-size: 24px; }

@media (max-width:1024px){
  .guide-wrap { padding-right: 24px; padding-left: 24px; }
}

@media (max-width:768px){
  .guide-wrap { padding-right: 16px; padding-left: 16px; padding-bottom: 50px; }
}

/* 서비스 개선 의견 */
.service-page .inquiry_intro_icon { flex-shrink: 0; }
.service-page .inquiry_field.is_start { align-items: flex-start; padding: 6px 0;}
.service-page input:disabled { background: #eaeaea; border-color: #ddd; color: #666; -webkit-appearance: none; font-size: 14px; box-sizing: border-box; }
.service-page .select_xeicon { position: relative; display: inline-block; width: fit-content;}
.service-page .select_xeicon::after { content: "\e941"; position: absolute; top: 50%; right: 10px; color: #555; font-family: "xeicon" !important; font-size: 14px; line-height: 1; transform: translateY(-50%); pointer-events: none; }
.service-radio { display: flex; align-items: center; gap: 8px 30px; flex-wrap: wrap; }
.service-radio label { display: flex; align-items: center; gap: 5px; }

@media (max-width:768px){
  .service-radio { gap: 8px 20px; }
  .service-radio label span { font-size: 14px; }
  .service-page .inquiry_field.is_start { padding: 3px 0; }
  .service-page .select_xeicon { width: 100%; }
  .service-page .select_xeicon select { width: 100% !important; }
}

@media (max-width:600px){
  .service-page .inquiry_intro_icon { display: none; }
}

/* 서비스 소개 */
.service-intro-box { width: 100%; padding: 40px; padding-right: 370px; box-sizing: border-box; border-radius: 8px; background-color: #E2F6FD; background-size: auto 100%; position: relative; }
.service-intro-box::before { content: ''; background-image: url(../images/contents/int_visual.png); background-repeat: no-repeat; background-size: contain; display: block; width: 370px; height: 300px; position: absolute; right: 0; top: 50%; transform: translateY(-50%);}
.service-intro-box h2 { margin-top: 10px; }
.service-intro-box .service-intro-box-desc p { line-height: 1.5; margin-top: 24px;}
.service-intro-box .service-intro-box-summary { font-size: 18px; }

.service-intro-cont { margin-top: 70px; }
.service-intro-cont .service-intro-title { padding-top: 12px; margin-bottom: 20px; font-size: 22px; position: relative; }
.service-intro-cont .service-intro-title::before { content: ''; width: 38px; height: 4px; border-radius: 4px; background-color: #0a6fc5; position: absolute; left: 0; top: 0; }
.service-intro-cont .service-intro-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.service-intro-cont .service-intro-list li { border: 1px solid #e7e7e7; padding: 32px 40px; border-radius: 16px; } 
.service-intro-cont .service-intro-list li.st1 { display: flex; align-items: center; }
.service-intro-cont .service-intro-list li .service-intro-txt { width: 265px; }
.service-intro-cont .service-intro-list li .tit { font-size: 20px; font-weight: 600; margin-bottom: 20px; }
.service-intro-cont .service-intro-list li .desc { color: #555; line-height: 1.5;}
.service-intro-cont .service-intro-list li .desc span { white-space: nowrap; }
.service-intro-cont .service-intro-list li .service-intro-img { width: calc(100% - 265px); text-align: center; }
.service-intro-cont .service-intro-item-blue { padding: 38px 50px; border-radius: 16px; background-color: #DCEFFF; display: flex; gap: 50px; align-items: center; }
.service-intro-cont .service-intro-item-blue p { font-size: 18px; line-height: 1.6; }
.service-intro-cont .service-intro-item-blue .btn-wrap { text-align: inherit; width: 100%; display: flex; gap: 14px 20px; flex-wrap: wrap; margin-top: 24px; }
.service-intro-cont .service-intro-item-blue button { margin-left: 0; border-radius: 8px; padding: 0 30px; display: flex; gap: 10px; align-items: center; justify-content: center; border: none; font-weight: 600; height: 48px; box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12); }
.service-intro-cont .service-intro-item-blue button.blue { color: #fff; background-color: #0064dd; }
.service-intro-cont .service-intro-item-blue button.white { color: #0064dd; background-color: #fff; display: none; }
.service-intro-cont .service-intro-item-blue button::after { content: ''; display: block; width: 14px; height: 14px; background-repeat: no-repeat; background-size: contain; background-position: center;  }
.service-intro-cont .service-intro-item-blue button.blue::after { background-image: url(../images/contents/bul_arr.svg); }
.service-intro-cont .service-intro-item-blue button.white::after { background-image: url(../images/contents/bul_down.svg); }
.service-intro-cont .service-intro-item-blue .left { width: 280px; flex-shrink: 0; }

@media (max-width:1400px){
  .service-intro-box::before { width: 340px; }
  .service-intro-box { padding-right: 340px; }
}

@media (max-width:1280px){
  .service-intro-box { padding-right: 40px; }
  .service-intro-box::before { display: none; }
  .service-intro-cont .service-intro-list { grid-template-columns: 1fr; gap: 18px; }
  .service-intro-cont .service-intro-list li .service-intro-img { width: 140px; }
  .service-intro-cont .service-intro-list li.st1 { justify-content: space-between; }
  .service-intro-cont .service-intro-item-blue .left { width: 220px; }
  .service-intro-cont .service-intro-item-blue .btn-wrap { margin-top: 20px; }
  .service-intro-cont .service-intro-item-blue button { height: 42px; font-size: 16px; padding: 0 24px; }
  .service-intro-cont .service-intro-item-blue p { font-size: 17px; }

}
@media (max-width:1024px){
  .service-intro-cont .service-intro-list { grid-template-columns: 1fr; gap: 18px; }
  .service-intro-cont .service-intro-list li { padding: 22px 30px; }
  .service-intro-cont .service-intro-list li .service-intro-img { width: 100px; }
  .service-intro-cont .service-intro-item-blue p { font-size: 16px; }
  .service-intro-cont .service-intro-item-blue .left { width: 180px; }
  .service-intro-cont .service-intro-item-blue { padding: 30px; gap: 20px; }
  .service-intro-cont .service-intro-item-blue button { height: 36px; font-size: 14px; padding: 0 20px; }
}

@media (max-width:768px){
  .service-intro-box { padding: 20px; }
  .service-intro-box .service-intro-box-summary { font-size: 16px; }
  .service-intro-box .service-intro-box-desc p { margin-top: 16px; }
  .service-intro-cont { margin-top: 40px; }
  .service-intro-cont .service-intro-item-blue { padding: 20px; }
  .service-intro-cont .service-intro-item-blue .left { display: none; }
  .service-intro-cont .service-intro-item-blue button { flex: 1; }
  .service-intro-cont .service-intro-list li .service-intro-txt { width: auto; }
}

@media (max-width:600px){
  .service-intro-cont .service-intro-item-blue .btn-wrap { flex-direction: column; }
  .service-intro-cont .service-intro-item-blue .btn-wrap button { width: 100%; }
} 

@media (max-width:500px){
  .service-intro-cont .service-intro-list li .service-intro-img { display: none; }
}