@charset "UTF-8";
/* ---------- Sub - Layout ---------- */
.wrap_sub {
  display: flex;
  column-gap: 90px;
  padding-bottom: 50px;
}

.wrap_sub .cont_sub {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wrap_sub .cont_inner {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
}
.wrap_sub .tab_comm + .cont_inner{
  padding-top: 0;
}

/* // ---------- Sub - Layout ---------- */
/* ---------- Sub - 좌측 메뉴 ---------- */
.menu_left {
  display: none;
  width: 310px;
  transition: all 0.3s;
}

.menu_left .bg_menu {
  height: 200px;
  padding-left: 40px;
  border-radius: 10px;
  color: #fff;
  background: url(/home/edjahwal/images/sub/layout/img_subtit_bg.png) 0 0 no-repeat;
  background-size: cover;
}

.menu_left .bg_menu h2 {
  padding-top: 50px;
  font-family: "SUITE", sans-serif;
  font-size: 38px;
  line-height: 48px;
}

.menu_left .bg_menu p {
  padding-top: 5px;
  font-size: 12px;
  line-height: 15px;
}

.list_left_menu {
  padding: 30px 0 0 20px;
}

.list_left_menu > li {
  position: relative;
}

.list_left_menu > li + li {
  margin-top: 8px;
}

.list_left_menu .link_menu {
  display: block;
  position: relative;
  padding: 19px 45px 18px 23px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #616161;
  background-color: #fff;
  transition: all 0.3s;
}
.list_left_menu .link_menu[target=_blank]{display: flex;justify-content: space-between;padding-right: 18px}
.list_left_menu .link_menu[target=_blank]:before{order:1;font-family: "Font Awesome 6 Pro", sans-serif;font-weight: 300;content: '\f08e'}
.list_left_menu .link_menu:after {
  position: absolute;
  top: 50%;
  right: 19px;
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-size: 21px;
  line-height: 1;
  color: #858585;
  transform: translateY(-50%);
  transition: all 0.3s;
  content: "\f107";
}

.list_left_menu .sub_none .link_menu:after {
  content: normal;
}

.list_left_menu .on .link_menu {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: transparent;
  font-weight: 700;
  color: #fff;
  background-color: #0969C2;
}
.list_left_menu .active .link_menu{
  border-color: transparent;
  font-weight: 700;
  color: #fff;
  background-color: #0969C2;
}

.list_left_menu .on.sub_none .link_menu, .list_left_menu .active.sub_none .link_menu {
  border-radius: 10px;
}
.list_left_menu .active .link_menu:after{
  color:#fff
}

.list_left_menu .on .link_menu:after {
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}

.list_sub_menu {
  display: none;
  padding: 10px 20px;
  border-radius: 0 0 10px 10px;
  border: 1px solid #0969C2;
  border-top: 0;
  background-color: #fff;
}

.list_sub_menu li + li {
  border-top: 1px dashed #ddd;
}

.list_sub_menu a {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  position: relative;
  padding: 15px 0 14px;
  font-size: 16px;
  line-height: 20px;
  color: #616161;
}

.list_sub_menu a[target=_blank]:after {
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 300;
  content: "\f08e";
}

.list_sub_menu .on a {
  font-weight: 700;
  color: #358CE2;
}

/* // ---------- Sub - 좌측 메뉴 ---------- */
/* ---------- Sub - 상단 ---------- */
.tit_head {
  padding: 20px;
  margin: 0 -20px;
  border-bottom: 1px solid #DDD;
  background: #FAFAFA;
}

.head_bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  padding-top: 10px;
}

.list_navigation {
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  align-items: center;
  margin-right: auto;
  padding-right: 10px;
}

.list_navigation li {
  display: flex;
  position: relative;
  color: #858585;
}

.list_navigation li + li:before {
  margin: 0 10px;
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 300;
  font-size: 14px;
  content: "\f054";
}

.list_navigation .on {
  font-weight: 500;
  color: #000;
}

.list_navigation .link_home {
  display: inline-block;
  padding: 5px;
  vertical-align: top;
}

.list_navigation a {
  position: relative;
}

.list_navigation a:not(.link_home):after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #575757;
  transition: width 0.3s;
  content: "";
}

.list_navigation a:hover:not(.link_home):after, .list_navigation a:focus:not(.link_home):after {
  width: 100%;
}

.list_navigation .link_home .ico_comm {
  width: 13px;
  height: 14px;
  background-image: url(/home/edjahwal/images/sub/layout/home.png);
}

.list_subetc {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}

.list_subetc li {
  position: relative;
}

.list_subetc .btn_etc {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 5px 0;
  color: #575757;
}

.list_subetc .ico_bookmark {
  width: 22px;
  height: 22px;
  background-image: url(/home/edjahwal/images/sub/layout/ico_bookmark.png);
}

.list_subetc .ico_bookmark.on {
  background-image: url(/home/edjahwal/images/sub/layout/ico_bookmark_on.png);
}

.list_subetc .fa-clone {
  color: #269BFF;
}

.list_subetc .fa-share-from-square {
  color: #159098;
}

.list_subetc .fa-print {
  color: #000;
}

.layer_comm {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.layer_comm.on {
  opacity: 1;
  visibility: visible;
}

.layer_comm .inner_layer {
  overflow: auto;
  width: 362px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  padding: 30px 25px;
  border-radius: 6px;
  background-color: #fff;
  text-align: center;
}

.layer_comm .tit_layer {
  font-size: 18px;
  line-height: 21px;
  color: #232323;
}

.layer_comm .layer_body {
  padding-top: 25px;
}

.layer_comm .layer_sns_list {
  display: inline-flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.layer_comm .layer_sns_list a {
  display: block;
}

.layer_comm .layer_sns_list img {
  vertical-align: top;
}

.layer_comm .layer_body .img_qr {
  margin-top: 30px;
  vertical-align: top;
}

.layer_comm .layer_body .txt_qr {
  font-size: 16px;
  line-height: 19px;
  color: #575757;
}

.layer_comm .layer_foot {
  padding-top: 20px;
}

/* // ---------- Sub - 상단 ---------- */
/* ---------- Sub - 하단 ---------- */
.content_foot {
  padding-top: 50px;
  margin-top: auto;
}

.content_foot .head_cont {
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(110deg, #c737ff 0%, #8191ff 100%);
}

.content_foot .tit_ai {
  flex: none;
  display: flex;
  align-items: center;
  padding: 0 20px 0 0;
  min-height: 80px;
  word-break: keep-all;
  word-wrap: break-word;
}

.content_foot .tit_ai img {
  display: none;
  float: left;
  width: 147px;
}

.content_foot .tit_ai .cont_ai {
  overflow: hidden;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
}

.content_foot .tit_ai strong {
  font-size: 18px;
  line-height: 24px;
}

.content_foot .tit_ai strong em {
  font-weight: 800;
}

.content_foot .tit_ai p {
  padding-top: 5px;
}

.content_foot .suggest_page {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.content_foot .suggest_page a {
  overflow: hidden;
  position: relative;
  padding: 12px 46px 11px 20px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 19px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content_foot .suggest_page a:after {
  position: absolute;
  top: 50%;
  right: 16px;
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-weight: 300;
  font-size: 20px;
  transform: translateY(-50%);
  content: "\f08e";
}

.content_foot .bottom_cont {
  display: flex;
  flex-direction: column;
}

.content_foot .cont_tit {
  display: flex;
  font-weight: 600;
}

.content_foot .cont_tit .txt_part {
  flex: none;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 170px;
  min-height: 48px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  background: #404961;
}

.content_foot .cont_tit .txt_manage {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  border-right: 1px solid #404961;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.content_foot .cont_body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  padding: 10px;
  border: 1px solid #404961;
  font-size: 16px;
  line-height: 24px;
  color: #232323;
}

.content_foot .txt_last {
  display: flex;
  gap: 16px;
  align-items: center;
}

.content_foot .txt_last span {
  display: flex;
  align-items: center;
  color: #404961;
}

.content_foot .txt_last i {
  margin-right: 5px;
}

.content_foot .bottom_cont img {
  width: 127px;
  vertical-align: top;
}

/* // ---------- Sub - 하단 ---------- */
/* ---------- Sub - 컨텐츠 ---------- */
.list_box_comm {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.list_box_comm li {
  padding: 40px 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.list_box_comm .wrap_thumb img {
  width: 100%;
  vertical-align: top;
}

.list_box_comm .cont_thumb {
  padding-top: 30px;
  text-align: center;
}

.list_box_comm .cont_thumb strong {
  display: block;
  font-size: 22px;
  line-height: 26px;
  color: #2F51B2;
}

.list_box_comm .cont_thumb p {
  padding-top: 16px;
}

.list_box_comm.list_type2 .cont_thumb {
  text-align: left;
}

/* // ---------- Sub - 컨텐츠 ---------- */
/* == board == */
.paging {
  clear: both;
  text-align: center;
  padding: 25px 0;
  overflow: hidden;
}

.paging ul {
  font-size: 0;
}

.paging ul li {
  display: inline-block;
  vertical-align: top;
  margin: 0 0.5%;
}

.paging ul li:first-child {
  margin-left: 0;
}

.paging ul li:last-child {
  margin-right: 0;
}

.paging ul li a {
  display: block;
  width: 32px;
  height: 34px;
  border: #e2e2e2 solid 1px;
  border: #ccc solid 1px;
  line-height: 32px;
  font-size: 14px;
  font-weight: 400;
}

.paging ul li a.active {
  background: #444;
  border: #006 solid 1px;
  color: #fff;
}

.paging ul li a.first,
.paging ul li a.prev,
.paging ul li a.next,
.paging ul li a.last {
  font-size: 22px;
  border: 0;
}

.board_search {
  margin-bottom: 40px;
  background: #f9f9f9;
  padding: 20px;
  overflow: hidden;
  text-align: center;
}

.board_search .opt_comm {
  margin-bottom: 5px;
  width: 100%;
}

.board_search .inp_comm {
  width: 100%;
  margin-bottom: 5px;
}

.board_search .btn {
  width: 100%;
}

@media
only screen and (min-width: 768px) {
  .board_search .opt_comm {
    width: auto;
    margin-bottom: 0;
  }
  .board_search .inp_comm {
    width: 250px;
    margin-bottom: 0;
  }
  .board_search .btn {
    width: 80px;
  }
}
.board_view_head {
  border-top: #232323 solid 2px;
  padding: 25px;
  border-bottom: #ccc solid 1px;
  background: #f9f9f9;
}

.board_view_info span {
  display: inline-block;
  font-size: 14px;
  padding: 0 10px;
  border-right: #ccc solid 1px;
}

.board_view_info span:last-child {
  border: 0;
}

.board_view_info dl {
  position: relative;
  border-top: #ccc solid 1px;
  padding: 15px 20px;
  overflow: hidden;
}

.board_view_info dl:first-child {
  border-top: none;
}

.board_view_info dl dt {
  font-size: 14px;
  font-weight: bold;
  color: #181818;
  padding-right: 15px;
}

.board_view .add_file {
  position: relative;
  border-top: #ccc solid 1px;
  padding: 15px 10px 10px 20px;
  overflow: hidden;
}

.board_view .add_file span {
  float: none;
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #181818;
  text-align: left;
  margin-bottom: 7px;
}

.board_view .add_file ul li {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.board_view .add_file ul li a {
  background: #fff;
  font-size: 14px;
  color: #838383;
  margin-right: 7px;
}

.board_view .add_file ul li a:before {
  display: inline-block;
  content: "\f0c6";
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  margin-right: 5px;
}

.board_view .add_file ul li a.no_fileicon:before {
  display: none;
}

.board_view .add_file .file_down {
  display: inline-block;
  background: #000;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 10px 7px;
}

@media
only screen and (min-width: 768px) {
  .board_view_info dl {
    display: flex;
  }
  .board_view_info dl dt {
    min-width: 120px;
    font-size: 16px;
  }
  .board_view .add_file {
    display: flex;
  }
  .board_view .add_file span {
    min-width: 120px;
    margin-bottom: 0;
    font-size: 16px;
  }
}
.board_view_body {
  padding: 20px;
  border-top: #ccc solid 1px;
  border-bottom: #ccc solid 1px;
  line-height: 1.5;
}

.total_num {
  display: inline-block;
  padding: 0 0 15px 0;
  color: #1b1b1b;
  font-weight: 500;
}

.total_num span {
  font-weight: bold;
}

.nodata, .noData {
  padding: 60px 0;
  border: #ccc solid 1px;
  border-top: 0;
  text-align: center;
}

.total {
  margin-bottom: 10px;
  color: #595959;
}

@media
only screen and (min-width: 768px) {
  /* ---------- Sub - 컨텐츠 ---------- */
  .list_box_comm li {
    overflow: hidden;
  }
  .list_box_comm .wrap_thumb {
    float: left;
    width: 40%;
  }
  .list_box_comm .cont_thumb {
    overflow: hidden;
    padding: 0 0 0 30px;
    text-align: left;
  }
  .list_box_comm .cont_thumb p {
    font-size: 16px;
    line-height: 24px;
  }
  /* // ---------- Sub - 컨텐츠 ---------- */
}
@media
only screen and (min-width: 1024px) {
  /* ---------- Sub - Layout ---------- */
  /* // ---------- Sub - Layout ---------- */
}
@media
only screen and (min-width: 1280px) {
  /* ---------- Sub - 하단 ---------- */
  .content_foot .bottom_cont {
    flex-direction: row;
  }
  .content_foot .cont_tit .txt_manage {
    border-right: 0;
    border-bottom: 1px solid #404961;
  }
  .content_foot .cont_tit .txt_part {
    justify-content: flex-start;
    width: 210px;
    padding-left: 26px;
  }
  .content_foot .cont_body {
    flex: 1;
    flex-direction: row;
    gap: 40px;
    padding: 15px 20px;
    border-top: 0;
    border-left: 0;
    justify-content: flex-end;
  }
  /* // ---------- Sub - 하단 ---------- */
}
@media
only screen and (min-width: 1440px) {
  /* ---------- Sub - Layout ---------- */
  .wrap_sub {
    position: relative;
    padding-top: 50px;
  }
  /* // ---------- Sub - Layout ---------- */
  /* ---------- Sub - 좌측 메뉴 ---------- */
  .menu_left {
    display: block;
  }
  /* // ---------- Sub - 좌측 메뉴 ---------- */
  /* ---------- Sub - 상단 ---------- */
  .tit_head {
    padding: 20px 0 15px;
    margin: 0;
    background: none;
  }
  .layer_comm {
    position: absolute;
    background: none;
    top: calc(100% + 5px);
    right: 0;
    left: auto;
    bottom: auto;
  }
  .layer_comm .inner_layer {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 5px 8px 20px 3px rgba(146, 146, 146, 0.16);
  }
  /* // ---------- Sub - 상단 ---------- */
  /* ---------- Sub - 컨텐츠 ---------- */
  .list_box_comm {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
  .list_box_comm .wrap_thumb {
    float: none;
    width: auto;
  }
  .list_box_comm .cont_thumb {
    padding: 20px 0 0;
  }
  .list_box_comm.list_type2 {
    grid-template-columns: 1fr;
  }
  .list_box_comm.list_type2 .wrap_thumb {
    float: left;
    width: 320px;
  }
  .list_box_comm.list_type2 .cont_thumb {
    padding: 0 0 0 30px;
  }
  .list_box_comm.list_type2 .cont_thumb strong {
    font-size: 24px;
    line-height: 29px;
  }
  .list_box_comm.list_type2 .cont_thumb p {
    padding-top: 13px;
  }
  /* // ---------- Sub - 컨텐츠 ---------- */
}
@media
only screen and (min-width: 1590px) {
  /* ---------- Sub - 하단 ---------- */
  .content_foot .head_cont {
    align-items: center;
    flex-direction: row;
    padding: 0 20px 0 0;
  }
  .content_foot .tit_ai {
    flex: none;
    width: 380px;
    min-height: 100px;
    padding: 0 20px 0 162px;
    margin-left: 0;
    background: url(/home/edjahwal/images/sub/layout/img_ai_character.png) 0 0 no-repeat;
    background-size: 147px auto;
  }
  .content_foot .suggest_page {
    flex: 1;
    gap: 20px;
    grid-template-columns: repeat(3, 230px);
    justify-content: end;
  }
  .content_foot .suggest_page a {
    padding: 16px 46px 15px 20px;
    font-size: 16px;
  }
  /* // ---------- Sub - 하단 ---------- */
}


/* 행정조직도 */
.org_wrap {max-width:687px; margin:40px auto 0;background:url(/home/edjahwal/images/sub/0104000000_01_230206.jpg) no-repeat 45% -6px;text-align:center}
.org_wrap .org_headoffice{position:relative;}
.org_wrap .org_headoffice .headoffice_top span{display:inline-block; }
.org_wrap .chief_st{width:210px;height:auto;padding:15px 0 15px 0;font-size:1.286em;color:#fff;letter-spacing:-1px;border-radius: 10px;}
.org_wrap .chief{background:#406abf}
.org_wrap .deputy_chief{margin-top:20px;background: #c36a1a}
.org_wrap .immediate_st{position:absolute;width:168px;height:auto;padding:15px 0 15px 0;font-size:1.143em;color:#595c63;font-weight:600;letter-spacing:-1px;background:#fff;border:2px solid #c0c3ca;border-radius: 10px;box-sizing: border-box}
.org_wrap .immediate_part1{top: 60px;right:0;}
.org_wrap .immediate_part2{top:60px; left:10px; }

.org_wrap .org_substructure {overflow:hidden;margin-top: 50px}
.org_wrap .org_subbox{float:left; width:214px; text-align:center}

.org_wrap .org_subbox + .org_subbox{margin-left: 20px}
.org_wrap .org_subcont p.org_sub_title{height:auto;padding:15px 0 15px 0;font-size:1.143em;color: #ffffff;font-weight:500;letter-spacing:-1px;background: #2e812a;border-radius: 10px;}
.org_wrap .org_subcont ul{margin-top:15px; }
.org_wrap .org_subcont ul li{margin-bottom:5px;font-size:0.95em;letter-spacing:-1px;border:1px solid #ddd;color:#333;background-color:#fff;height:45px;line-height:45px;border-radius: 10px}

@media
only screen and (max-width: 767px) {
  .org_wrap{
    --line1-gap: 15px;
    --line2-gap: 20px;
    --line-color: #ddd;
    width: 100%;
    background: none;
  }
  .org_wrap .immediate_st{position: relative;top:auto;width: 210px;margin-top: var(--line1-gap)}
  .org_wrap .deputy_chief{position: relative}
  .org_wrap .deputy_chief:before,
  .org_wrap .immediate_st:before{position: absolute;left:50%;bottom:100%;width: 1px;;background: var(--line-color);content: ''}
  .org_wrap .deputy_chief:before{height: var(--line2-gap)}
  .org_wrap .immediate_st:before{height: var(--line1-gap);margin-bottom:2px}

  .org_wrap .org_substructure{display: flex;gap:20px;flex-wrap: wrap;margin-top: 30px}
  .org_wrap .org_subbox{flex:1 1 210px;float: none;width: auto}
  .org_wrap .org_subbox + .org_subbox{margin-left: 0}
  .org_wrap .org_subcont ul li{margin-bottom: 0}
  .org_wrap .org_subcont ul li + li{margin-top: 5px}
}

/* // ---------- 사진외곽둥글 ---------- */
.img_box img{border-radius:10px}