/* 서브레이아웃 */
.sub_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  height: 205px;
  animation-name: sub_Back;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
@keyframes sub_Back{
  0%{
    background-size: 105% 115%;
  }
  100%{
    background-size: 100% 100%;
  }
}
.sub_wrap .sub_tit{
  font-size: 40px;
  font-weight: 700;
  animation-name: fade_up;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  animation-delay: 0.2s;
}

@keyframes fade_up{
  0%{
    opacity: 0;
    transform: scale(1.1);
  }
  100%{
    opacity: 1;
    transform: scale(1);
  }
}
.sub_wrap.type00{
  background-image: url(../img/sub/sub_bg00.jpg);
}
.sub_inner{
  max-width: 1320px;
  width: calc(100% - 40px);
  margin: 38px auto 55px;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.sub_inner .sub_content_wrap{
  width: 100%;
  padding-top: 30px;
}
.sub_inner .sub_content_wrap .sub_content:has(iframe){
  overflow: hidden;
  overflow-x: auto;
}
.sub_content_wrap .sub_content iframe {
  max-width: initial;
}
.sub_depth_wrap .depth_link{
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sub_depth_wrap > li{
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 24px;
}
.sub_depth_wrap{
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.sub_depth_wrap > li:first-of-type .depth_link::before{
  content: '';
  display: block;
  width: 17px;
  aspect-ratio: 17 / 16;
  background: url(../img/sub/ico_home02.png) no-repeat center;
  background-size: contain;
}
.sub_depth_wrap > li:not(:last-of-type)::after{
  content: '';
  display: block;
  width: 7px;
  aspect-ratio: 7 / 13;
  background: url(../img/sub/ico_detph_arrow.png) no-repeat center;
}
.sub_title_box{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  min-height: 46px;
}
.sub_title_box.line {
  border-bottom: 2px solid #000;
}
.sub_title_box .sub_title{
  font-size: 32px;
  font-weight: 500;
}
.sub_title_box .sub_text{
  font-size: 18px;
  padding-top: 14px;
  font-weight: 300;
}
.aside_menuWrap.type01 .menu_con > .depth_1 > a[target=_blank]::after{
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../img/common/ico_blank.png) no-repeat;
  margin: 0 0 -1px 5px;
  transition: 0.3s;
}
.aside_menuWrap.type01 .menu_con > .depth_1 > a[target=_blank]:hover:after{
  background-image: url(../img/common/ico_blank_on.png);
}
@media screen and (max-width:768px) {
  .sub_wrap {
    height: 120px;
  }
  .sub_title_box {
    margin-bottom: 0;
    min-height:0;
  }
  .sub_wrap .sub_tit {
    font-size: 28px;
  }
  .sub_title_box .sub_title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .sub_title_box .sub_text {
    display: none;
  }
  .sub_inner .sub_content_wrap {
    padding-top: 0;
  }
  .sub_depth_wrap {
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .sub_depth_wrap .depth_link {
    font-size: 14px;
    gap:2px;
  }
  .sub_depth_wrap > li {
    gap: 6px;
  }
  .sub_depth_wrap > li:first-of-type .depth_link::before {
    width: 14px;
  }
}
/* 사이드바 */
#side_bar {
  min-width: 130px;
  letter-spacing: -0.06em;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  right: -185px;
  top: 0px;
  background: #fff;
  box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.1);
  -webkit-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.1);
  border-radius: 10px;
}
#side_bar .quick_menu {
  /* display: flex;
  flex-direction: column; */
  height: 100%;
  text-align: center;
}
#side_bar .quick_menu .quick_title_box {
  background-color: #0080cc;
  height:68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#side_bar .quick_menu .quick_title {
  color: #fff;
  font-size: 18px;
}
#side_bar .quick_menu .quick_item_list {
  /* display: flex;
  flex-direction: column; */
  padding: 0 18px;
  border-left : 1px solid #d9d9d9;
  border-right : 1px solid #d9d9d9;
}
#side_bar .quick_menu .quick_item {
  display: block;
  flex: 1;
}
#side_bar .quick_menu .quick_item:not(:last-of-type){
  border-bottom: 1px solid #d9d9d9;
}
#side_bar .quick_menu .quick_item_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  width: 100%;
  height: 60px;
}
#side_bar .quick_menu .quick_item_title {
  text-align: center;
  font-size: 16px;
  transition: 0.3s;
  position: relative;
}
#side_bar .quick_menu .quick_item_title::after{
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #008cab;
  right: -9px;
  transform: scale(0);
  transition: 0.4s;
}
#side_bar .quick_menu .quick_item_inner:hover .quick_item_title::after{
  transform: scale(1);
}
#side_bar .quick_menu .quick_item_inner:hover{
  color:  #0080cc;
}
#side_bar .quick_util_box{
  border : 1px solid #d9d9d9;
  border-top: none;
  border-radius: 0 0 10px 10px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}
#side_bar .quick_util_box::before{
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: url(../img/sub/ico_top_btn.png) no-repeat center;
}
@media screen and (max-width:1720px) {
  .sub_inner {
    max-width: none;
    padding-right: 175px;
  }
  #side_bar {
    right:0;
  }
}
@media screen and (max-width:1500px) {
  .sub_inner {
    max-width: none;
    padding-right: 0;
  }
  #side_bar {
    display: none;
  }
}
@media screen and (max-width:1200px) {
  .aside_menuWrap.type01 {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .sub_inner {
    margin: 10px auto 50px;
  }
}
/* 게시글 하단 검색 */
.paginate + .under_srh_wrap{
  margin-top: 45px;
}
.under_srh_wrap .board_srh_inner{
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.checkbox label{
  display: flex;
}
.checkbox label::before{
  content: '';
  display: block;
  width: 22px;
  aspect-ratio: 1 / 1;
  background-image:url(../img/module/checkbox01.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-top: -2px;
}
.checkbox input[type="checkbox"]:checked + label::before{
  background-position: bottom;
}
.checkbox {
  display: flex;
}
.checkbox label{
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}
.formkit input[type=checkbox]{
  display: none;
}
.under_srh_wrap .input_box input[type="text"]{
  width: 343px;
  height: 39px;
  border: 1px solid #c6c6c6;
  padding: 2px 12px 0;
  background-color: #fff;
}
.input_box:has(button, a) input[type="text"]{
  border-right: none;
}
.input_box{
  display: flex;
  align-items: center;
}
.input_box button{
  width: 72px;
  height: 39px;
  border: 1px solid #414141;
  font-size: 18px;
  color: #fff;
  background-color: #414141;
  padding: 2px 0 0;
  transition: 0.3s;
}
.input_box button:hover{
  background-color: #fff;
  color: #414141;
}
@media screen and (max-width:768px) {
  .under_srh_wrap .board_srh_inner {
    flex-wrap: wrap;
  }
  .board_srh_inner .input_box{
    width: 100%;
    justify-content: center;
  }
  .paginate + .under_srh_wrap {
    margin-top:30px;
  }
  .input_box button {
    font-size: 16px;
  }
  .under_srh_wrap .checkbox label {
    font-size: 16px;
    gap: 4px;
  }
}
/* 게시글 검색 */
.board_srh_wrap{
  border-top: 2px solid #000;
  background-color: #f8f9fa;
  padding: 20px;
  font-size: 18px;
}
.board_srh_wrap .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.board_srh_wrap .left{
  display: flex;
  align-items: center;
  gap: 40px;
  padding-left: 30px;
}
.board_srh_wrap .input_box{
  flex: 1;
  width: 100%;
  gap: 18px;
}
.input_box input[type="text"],
.input_box select{
  width: 255px;
  height: 39px;
  border: 1px solid #c6c6c6;
  padding: 2px 12px 0;
  background-color: #fff;
}
.input_box select{
  background-image: url(../img/sub/ico_selelct02.png);
  background-repeat: no-repeat;
  background-position: center right 15px;
}
.board_srh_wrap .srh_btn{
  width: 131px;
  height: 73px;
  border: 2px solid #0080cc;
  background-color: #0080cc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  padding: 8px 20px 8px 8px;
  transition: 0.3s;
}
.board_srh_wrap .srh_btn:hoveR{
  background-color: #fff;
  color:  #0080cc;
}
.board_srh_wrap .srh_btn::before{
  content: '';
  display: block;
  width: 20px;
  aspect-ratio: 1 / 1;
  background: url(../img/sub/ico_srh_btn.png) no-repeat;
  background-size: cover;
}
.board_srh_wrap .srh_btn:hover::before{
  background: url(../img/sub/ico_srh_btn_on.png) no-repeat;
  background-size: cover;
}
.board_srh_wrap + .board_wrap{
  margin-top: 25px;
}
.board_wrap .board_list.type01 .tr .board_tit .re{
  display: flex;
  gap: 5px;
  align-items: center;
}
.board_wrap .board_list.type01 .tr .board_tit .re::before{
  content: '';
  display: block;
  width: 67px;
  aspect-ratio: 67 / 38;
  background: url(../img/sub/ico_re.png) no-repeat center;
  background-size: contain;
}
.board_wrap .board_list.type01 .tr .board_tit .re span{
  max-width: calc(100% - 72px);
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .board_wrap .board_list.type01 .tr .board_tit .re::before{
    width: 36px;
  }
}



/* 검색정보 */
.board_info_list{
  padding: 0 4px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 18px;
}
.board_wrap .board_list.type01 .tr > td:not(.board_file) a{
  font-size: 18px;
}
.board_wrap .board_list.type01 .tr > td a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (max-width:768px) {
  .board_wrap .board_list.type01 .tr > td:not(.board_file) a{
    font-size: 14px;
  }
}
/* 게시판 - 상세 */
.board_detail_wrap{
  border-top: 2px solid #000;
}
.board_detail_wrap > .board_wrap .board_list.type01{
  border-top: none;
}
.board_detail_wrap .board_title_box{
  min-height: 75px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  padding: 15px;
}
.board_detail_wrap .board_info_box{
  padding: 22px 13px;
  display: flex;
  flex-wrap: wrap;
  gap:10px 0;
  align-items: center;
  border-bottom: 1px solid #d3d3d3;
}
.board_detail_wrap .board_info_box > li{
  padding: 0 22px;
  line-height: 28px;
  font-size: 18px;
}
.board_detail_wrap .board_info_box .info_title{
  font-weight: 700;
  margin-right: 4px;
}
.board_detail_wrap .board_info_box .info_data{
  font-weight: 300;
  word-break: break-all;
}
.board_detail_wrap .board_info_box .info_data a:hover {
  color: #2255cb;
}
.board_detail_wrap .board_info_box > li:not(:last-of-type){
  border-right: 1px solid #d3d3d3;
}
.board_detail_wrap .board_cont_box{
  padding: 50px 25px;
  border-bottom: 1px solid #d3d3d3;
}
.board_detail_wrap .board_cont_box img {
  height: auto !important;
}
.board_detail_wrap .sns_list{
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  align-items: center;
}
.board_detail_wrap .board_cont_box + .sns_list_box{
  margin-top: 17px;
}
.board_detail_wrap .sns_list button{
  width: 49px;
  aspect-ratio: 49 / 41;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #b6b6b6;
}
.board_detail_wrap .sns_list button.facebook{
  background-image: url(../img/sub/ico_d_facebook.png);
}
.board_detail_wrap .sns_list button.x{
  background-image: url(../img/sub/ico_d_x.png);
}
.sns_list_box + .btn_wrap{
  margin-top: 10px;
}
:is(.no_data, .board_list, .formkit, .board_wrap, .board_cont_box) + .btn_wrap{
  margin-top: 20px;
}
.btn_wrap{
  display: flex;
  align-items: center;
  font-size: 18px;
}
.btn_wrap.right{
  justify-content: flex-end;
}
.btn_wrap:has(.left, .right){
  justify-content: space-between;
}
.btn_wrap .left {
  order: 2;
}
.btn_wrap .right {
  order: 3;
}
.btn_wrap > div{
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn_wrap > div.right,
.btn_wrap.right,
.btn_wrap .center{
  gap: 12px;
}
.btn_wrap button{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.btn_wrap .left button{
  width: 89px;
}
.btn_wrap .right button,
.btn_wrap.right button,
.btn_wrap .center button{
  width: 104px;
}
.btn_wrap .center{
  justify-content: center;
  width: 100%;
}
.btn_wrap .list_btn::before{
  content: '';
  display: block;
  width: 18px;
  aspect-ratio: 18 / 14;
  background-image: url(../img/sub/ico_list_btn.png);
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.btn_wrap .list_btn:hover::before{
  background-image: url(../img/sub/ico_list_btn_on.png);
}
.board_detail_wrap table img {
  height: auto !important;
}
@media screen and (max-width:768px) {
  .board_detail_wrap .board_title_box {
    justify-content: flex-start;
    padding: 20px 15px;
  }
  .board_detail_wrap .board_title_box .board_title {
    font-size: 18px;
    line-height: 22px;
  }
  .board_detail_wrap .board_info_box > li {
    width: 50%;
    font-size: 14px;
    padding: 0;
    line-height: 20px;
  }
  .board_detail_wrap .board_info_box {
    padding: 15px 10px;
    gap: 7px 0;
  }
  .board_detail_wrap .board_info_box > li:not(:last-of-type) {
    border: none;
  }
  .board_info_box:has(li:nth-of-type(odd):last-child) li:last-of-type {
    width: 100%;
  }
  .board_detail_wrap .board_cont_box {
    padding: 20px 15px;
  }
  .btn_wrap button{
    font-size: 14px;
  }
  .btn_wrap:has(.left, .right) {
    flex-wrap: wrap;
    gap:10px;
  }
  .btn_wrap > div.right:has(.btn-bn_nv, .btn-bn_og) {
    order: 1;
    width: 100%;
  }
  .btn_wrap > div.right:has(.btn-bn_nv, .btn-bn_og) button{
    flex:1;
  }
}
/* 첨부파일 2개 이상일 때 */
.board_detail_wrap .board_info_box .info_data a:not(:first-of-type)::before{
  content: ',';
  display: inline-block;
  margin: 0 3px;
}

/* 교육 및 행사 */
.sub_content .board_detail_wrap .board_wrap .board_list.type01 .tr:hover{
  background: none;
}
.board_detail_wrap .board_wrap .board_list.type01 .tr th{
  background: #f8f9fa;
  text-align: left;
  font-size: 18px;
  padding: 10px 35px;
}
.board_detail_wrap .board_wrap .board_list.type01 .tr td{
  text-align: left;
  font-size: 18px;
  font-weight: 300;
  padding: 25px 30px;
}
.board_detail_wrap .board_wrap .board_list.type01 .tr td a:hover{
  color: #0080cc;
}
.board_detail_wrap .board_wrap + .sns_list_box {
  margin-top: 17px;
}
@media screen and (max-width:768px) {
  .board_detail_wrap .board_wrap .board_list.type01 .tr th{
    font-size: 14px;
    padding: 10px;
  }

  .board_detail_wrap .board_wrap .board_list.type01 .tr td {
    font-size: 14px;
    padding: 10px;
  }
}
/* 에로상담 */
.gr_ico_box{
  background-color: #f8f9fa;
  padding: 40px 35px;
  display: flex;
  gap:35px;
  margin-bottom: 55px;
  align-items: flex-start;
  border-top: 2px solid #000;
}
.gr_ico_box .text{
  font-size: 20px;
  line-height: 30px;
}
.gr_ico_box .inner{
  flex: 1;
  min-width: 0;
}
.gr_ico_box::before{
  content: '';
  display: block;
  width: 101px;
  aspect-ratio: 101 / 96;
  background-image: url(../img/sub/ico_gr01.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.gr_ico_box .bold{
  font-weight: 700;
}
.gr_ico_box .small{
  font-size: 18px;
  display: block;
}
.gr_ico_box .text + .text{
  margin-top: 25px;
}
.top_srh_wrap .board_srh_inner{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 18px;
}
.top_srh_wrap .input_box select{
  width: 150px;
}
.top_srh_wrap .input_box input[type="text"]{
  width: 340px;
}
.homepage_btn{
  display: inline-block;
  border-bottom: 1px solid transparent;
}
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}
.homepage_btn .material-symbols-outlined{
  font-size: 20px;
  vertical-align: text-top;
}
.homepage_btn:hover{
  text-decoration: none !important;
  border-bottom: 1px solid #0080cc;
  color: #0080cc;
}
.homepage_btn:hover span{
  color: #0080cc !important;
}
.circle_list{
  padding: 15px 0;
}
.circle_list.has_mark p{
  display: flex;
  gap: 3px;
}
.board_wrap .board_list.type01 .tr > td span.mark{
  font-size: 16px;
  font-weight: 300;
  min-width: 12px;
  line-height: 22px;
}
.circle_list > li{
  font-size: 18px;
  line-height: 26px;
  padding-left: 12px;
  position: relative;
  text-align: left;
}
.circle_list > li + li{
  margin-top: 4px;
}
.circle_list > li::before{
  content: '';
  display: block;
  width: 4px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #3b3b3b;
  top: 11px;
  position: absolute;
  left: 0;
}
@media screen and (max-width:768px) {
  .gr_ico_box {
    flex-direction: column;
    padding: 25px 15px;
    gap: 20px;
    margin-bottom: 20px;
  }
  .gr_ico_box::before {
    margin: 0 auto;
    width: 70px;
  }
  .gr_ico_box .text {
    font-size: 14px;
    line-height: 20px;
  }
  .gr_ico_box .text + .text {
    margin-top: 15px;
  }
  .gr_ico_box .small {
    font-size: 14px;
    line-height: 20px;
  }
  .circle_list > li {
    font-size: 16px;
    line-height: 20px;
  }
  .circle_list > li:not(:last-of-type) {
    margin-bottom: 10px;
  }
}

/* 조직도 */
.orgz_wrap .img{
  text-align: center;
}
.orgz_wrap .orgz_list{
  margin-top: 50px;
}
.orgz_wrap .board_wrap .board_list.type01 .tr.thead span {
  font-weight: 600;
}
.orgz_wrap .board_wrap .board_list.type01 .tr > td:last-of-type{
  text-align: left;
  padding: 10px 5px;
}
.orgz_deatil_wrap .orgz_list{
  margin-top: 50px;
}
.orgz_deatil_wrap .board_wrap .board_list.type01 .tr.thead span {
  font-weight: 600;
}
.board_srh_wrap .inner{
  gap: 20px;
}
.input_box input[type="text"], .input_box select{
  max-width: 255px;
  min-width: auto;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .board_srh_wrap .inner{
    flex-direction: column;
  }
  .board_srh_wrap .left{
    width: 100%;
    align-items: baseline;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
  }
  .board_srh_wrap .right{
    width: 100%;
  }
  .board_srh_wrap .input_box label{
    min-width: 58px;
  }
  .input_box input[type="text"], .input_box select {
    max-width: 100%;
  }
  .board_srh_wrap .srh_btn{
    width: 100%;
    height: 40px;
  }

}

@media screen and (max-width: 768px) {
  .no_data span {
    line-height: 55px !important;
  }
  .board_srh_wrap .input_box label{
    font-size: 14px;
  }
  .input_box input[type="text"], .input_box select{
    font-size: 14px;
  }
  .orgz_deatil_wrap .board_srh_wrap .inner {
    gap: 10px;
  }
  .board_srh_wrap .srh_btn {
    font-size: 14px;
  }
  .board_srh_wrap .srh_btn::before{
    width: 16px;
    height: 16px;
  }
  .board_srh_wrap .input_box{
    gap: 0;
  }
  .board_srh_wrap .input_box label {
    min-width: 80px;
  }
  .board_info_list {
    font-size: 14px;
  }
  .sub_inner .paginate.type01 .paginate_input_wrap > .total_num{
    font-size: 16px;
  }
}

/* 클린신고센터 */
.txt_blue{
  color: #26498b !important;
  font-weight: 600;
}
.input-box.address{
  flex-direction: column;
}
.input-box .zip_code{
  display: flex;
  gap: 10px;
}
.input-box .zip_code input{
  max-width: 270px;
}
.input-box .zip_code button{
  min-width: 120px;
  height: 39px;
  border: 1px solid #414141;
  font-size: 18px;
  color: #fff;
  background-color: #414141;
  padding: 2px 0 0;
  transition: 0.3s;
}
.input-box .zip_code button:hover{
  background-color: #fff;
  color: #414141;
}
.input-box.address .detail_adr{
  display: flex;
  align-items: center;
  gap: 10px;
}
.input-box.address .detail_adr span{
  flex-shrink: 0;
}
.sub_inner .formkit .radiobox_wrap{
  gap: 10px 25px;
}
.sub_inner .formkit .radio_box label{
  cursor: pointer;
  line-height: 41px;
}
.sub_inner .formkit input[type=radio]{
  width: 22px;
  height: 22px;
  background-image: url(../img/sub/radio.png);
  cursor: pointer;
}
.fk_tr .both{
  display: flex;
  padding: 0;
}
.fk_tr .both .fk_th {
  padding: 15px 35px;
}
.fk_tr .both .fk_td{
  padding: 15px;
}
.copyright_box{
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  border: 1px solid #bfbfbf;
  margin-top: 40px;
}
.copyright_box span{
  font-size: 18px;
  text-align: center;
}
.board_wrap .checkbox{
  display: flex;
  justify-content: center;
  align-items: center;
}
.board_wrap .board_list.type01 .tr.rowspan.thead{
  height: 55px;
  border-bottom: 1px solid #d3d3d3;
}
.board_wrap .board_list.type01 .tr .line{
  border-right: 1px solid #d3d3d3;
}
.formkit .fk_td:has(.ft_text){
  min-height: 75px;
  align-items: center;
  line-height: 30px;
}
.formkit .input-box.address:has(.ft_text) {
  gap: 5px;
}
.clean_complain_wrap .gr_ico_box{
  gap: 15px;
}
.clean_complain_wrap .gr_ico_box::before{
  width: 70px;
  height: 63px;
  aspect-ratio: inherit;
  background-image: url(../img/sub/ico_gr02.png);
}
.formkit_tit{
  margin-bottom: 15px;
}
.formkit_tit p{
  font-size: 20px;
  font-weight: 600;
}
.formkit_tit p span{
  font-weight: 400;
}
.formkit_tit p span sub{
  color: #f42d1e;
  vertical-align: text-bottom;
  letter-spacing: -0.04em;
}
.formkit .input-box.call{
  align-items: center;
}
.formkit .input-box.call input{
  max-width: 120px;
}
.formkit .input-box.call span{
  font-weight: 600;
}
.fk_tr .both{
  width: 100%;
}
.formkit .select{
  max-width: 120px;
  width: 100%;
  background-image: url(../img/sub/ico_selelct02.png);
  background-repeat: no-repeat;
  background-position: center right 15px;
}
.formkit .input-box textarea{
  padding: 15px;
  border: 1px solid #c6c6c6;
  min-height: 150px;
}
.formkit .input-box .con{
  overflow: auto;
  max-height: 150px;
  padding: 15px;
  border: 1px solid #c6c6c6;
}
.formkit .input-box .con .txt_bold{
  font-weight: 500;
  color: #000;
}
.formkit .input-box .con p{
  font-size: 18px;
  line-height: 30px;
  color: #575757;
}
.formkit .input-box .con::-webkit-scrollbar{
  width: 7px;
  background: #e5e5e5;
}
.formkit .input-box .con::-webkit-scrollbar-thumb{
  background: #707070;
  border-radius: 20px;
}
.sub_inner .formkit input[type=checkbox]{
  position: absolute;
  background: none;
}
.input-box.captchaImg{
  flex: inherit;
  flex-direction: column;
}
.input-box.captchaImg img{
  max-width: 148px;
}
.formkit + .formkit_tit{
  margin-top: 35px;
}
.clean_complain_wrap .formkit .select{
  max-width: 360px;
}

/* 전문인력 등록안내 */
.gr_ico_box.type02::before{
  width: 99px;
  aspect-ratio: 99 / 89;
  background-image: url(../img/sub/ico_gr03.png);
}
.gr_ico_box p + .gr_btn_wrap{
  margin-top: 20px;
}
.gr_btn_wrap{
  display: flex;
  gap: 12px;
}
.gr_btn_wrap :is(button, a){
  flex-basis: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 49px;
  border: 2px solid #0080cc;
  background-color: #0080cc;
  color: #fff;
  border-radius: 5px;
  gap: 8px;
  transition: 0.3s;
  padding: 3px 10px;
}
.gr_btn_wrap :is(button, a):hover{
  background-color: #fff;
  color: #0080cc;
  transition: 0.3s;
}
.gr_btn_wrap :is(button, a)::before{
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}
.gr_btn_wrap :is(button, a).setting::before{
  background-image: url(../img/sub/ico_setting.png);
  width: 27px;
  aspect-ratio: 27 / 23;
}
.gr_btn_wrap :is(button, a).setting:hover::before{
  background-image: url(../img/sub/ico_setting_on.png);
}
.gr_btn_wrap :is(button, a).download::before{
  background-image: url(../img/sub/ico_down.png);
  width: 21px;
  aspect-ratio: 1/ 1;
  background-size: contain;
}
.gr_btn_wrap :is(button, a).download:hover::before{
  background-image: url(../img/sub/ico_down_on.png);
}
@media screen and (max-width:768px) {
  .gr_ico_box.type02::before {
    width: 68px;
  }
  .pro_work_wrap .gr_ico_box {
    align-items: center;
  }
  .pro_work_wrap .sub_cont .text01 {
    font-size: 20px;
  }
  .pro_work_wrap .gr_btn_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pro_work_wrap .gr_ico_box .text{
    text-align: center;
  }
  .pro_work_wrap .order_list {
    flex-direction: column;
    gap: 12px;
  }
  .pro_work_wrap .order_list .order_item {
    width: 100%;
    max-width: none;
  }
  .pro_work_wrap .order_list .order_item::before {
    height: 120px;
  }
  .pro_work_wrap .order_list .order_item .explain {
    font-size: 16px;
  }
  .pro_work_wrap .order_list .arrow {
    width: 18px;
    transform: rotate(90deg);
  }
}
/* 서브컨텐츠 공통 */
.sub_cont_wrap .sub_cont + .sub_cont{
  margin-top: 30px;
}
.sub_cont .text01{
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
.sub_cont .circle_list{
  padding: 0;
}
.sub_cont .circle_list > li:not(:last-of-type):has(p){
  margin-bottom: 15px;
}
.sub_cont .circle_list > li > p {
  margin-top: 6px;
  font-weight: 300;
}
.sub_cont .text01 + :is(ul, div){
  margin-top: 12px;
}
.order_list{
  display: flex;
  gap: 20px;
  align-items: center;
}
.order_list .arrow{
  width: 28px;
  aspect-ratio: 28 / 35;
  padding-left: 2px;
  flex-shrink: 0;
  background: url(../img/sub/ico_arrow.png) no-repeat right center;
  background-size: auto;
}
.order_list .order_item{
  flex: 1;
  min-width: 0;
  border: 1px solid #d2d2d2;
  font-size: 18px;
  max-width: 300px;
}
.order_list .order_item::before{
  content: '';
  display: block;
  width: 100%;
  height: 145px;
  background-repeat: no-repeat;
  background-position: center;
}
.order_list .order_item.type01::before{
  background-image: url(../img/sub/ico_order01.png);
}
.order_list .order_item.type02::before{
  background-image: url(../img/sub/ico_order02.png);
}
.order_list .order_item.type03::before{
  background-image: url(../img/sub/ico_order03.png);
}
.order_list .order_item.type04::before{
  background-image: url(../img/sub/ico_order04.png);
}
.order_list .order_item.type05::before{
  background-image: url(../img/sub/ico_order05.png);
}
.order_list .order_item.type06::before{
  background-image: url(../img/sub/ico_order06.png);
}
.order_list .order_item .target{
  display: flex;
  justify-content: center;
  position: relative;
}
.order_list .order_item .target::before{
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d2d2d2;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}
.order_list .order_item .target span{
  min-width: 105px;
  height: 35px;
  border-radius: 5px;
  background-color: #0080cc;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.order_list .order_item .explain{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 60px;
}
.order_list + .order_list{
  margin-top: 35px;
}
.sub_cont .board_wrap .board_list.type01 .tr:not(.thead):hover{
  background: none;
}
.sub_cont .board_wrap .board_list.type01 .tr > td{
  padding: 20px;
}
.sub_cont .board_wrap .circle_list > li > p{
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}
.sub_cont .board_wrap .guide_text{
  font-size: 16px;
  text-align: left;
  font-weight: 500;
}
.sub_cont .board_wrap .guide_text + .guide_text{
  margin-top: 5px;
}
.sub_cont .board_wrap .circle_list > li + li{
  margin-top: 8px;
}
.copyright_box .circle_list{
  flex: 1;
  min-width: 0;
}
.copyright_box:has(.circle_list){
  align-items: flex-start;
  padding: 25px 60px;
  gap: 30px;
}
.copyright_box:has(.circle_list) > span{
  line-height: 26px;
  font-weight: 700;
}
.copyright_box + .guide_text{
  margin-top: 20px;
}
.sub_cont .guide_text{
  font-size: 18px;
}
@media screen and (max-width:768px) {
  .pro_work_wrap .sub_cont .board_wrap .circle_list > li > p {
    font-size: 14px;
  }
  .pro_work_wrap .circle_list > li {
    font-size: 14px;
  }
  .sub_cont .text01 {
    font-size: 18px;
  }
  .copyright_box:has(.circle_list) {
    padding: 20px;
    gap: 15px
  }
  .copyright_box:has(.circle_list) > span{
    font-size: 16px;
  }
  .sub_cont .guide_text {
    font-size: 16px;
    line-height: 20px;
  }
}

/* 입주기업 소개 */
.board_srh_wrap.type02{
  padding: 40px 35px 40px 50px;
}
.board_srh_wrap.type02 .left{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  padding-left: 0;
}
.board_srh_wrap.type02 .left label{
  min-width: 87px;
  text-align: right;
}
.board_srh_wrap.type02 .input_box input[type="text"], .board_srh_wrap.type02 .input_box select{
  width: 100%;
  height: 36px;
}
.board_srh_wrap.type02 .srh_btn{
  height: 87px;
}
.caution_list{
  margin-top: 20px;
}
.caution_list li{
  font-size: 18px;
  font-weight: 300;
}
.caution_list li + li{
  margin-top: 7px;
}
.caution_list + .board_wrap{
  margin-top: 40px;
}
.fk_tr .fk_th.title_th{
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 30px 35px;
}
.fk_tr .fk_th.title_th .point{
  color: #0080cc;
  font-size: 22px;
  font-weight: 700;
}
.fk_tr:has(.title_th){
  border-bottom: none;
}
.occu_detail_wrap .fk_tbody .fk_tr .fk_th {
  width: 150px;
}
.move_bz_intro_wrap .board_srh_wrap .inner {
  gap: 15px;
}
@media screen and (max-width:1024px) {
  .move_bz_intro_wrap .board_srh_wrap.type02 {
    padding: 25px;
  }
  .move_bz_intro_wrap .board_srh_wrap .srh_btn {
    width: 100%;
    height: 40px;
    font-size: 14px;
  }
  .move_bz_intro_wrap .board_srh_wrap .right {
    width:100%;
  }
}
@media screen and (max-width:768px) {
  .fk_tr .fk_th.title_th {
    padding: 20px 15px;
  }
  .fk_tr .fk_th.title_th .point {
    font-size: 16px;
  }
  .occu_detail_wrap .fk_tr .both .fk_th{
    padding: 0 15px;
  }
  .occu_detail_wrap .fk_tbody .fk_tr .fk_th  {
    width: 95px;
  }
  .occu_detail_wrap .fk_tr .both .fk_td {
    padding: 10px 5px;
  }
  .formkit .fk_td:has(.ft_text) {
    line-height: 20px;
    min-height: 60px;
  }
  .occu_detail_wrap .fk_tr {
    flex-wrap: wrap;
  }
  .occu_detail_wrap .fk_tr .both:first-of-type {
    border-bottom: 1px solid #d3d3d3;
  }
  .move_bz_intro_wrap .board_srh_wrap .inner {
    flex-direction: column;
  }
  .move_bz_intro_wrap .board_srh_wrap .input_box {
    gap: 8px;
  }
  .move_bz_intro_wrap .board_srh_wrap.type02 .left {
    font-size: 14px;
    grid-template-columns: 1fr;
  }
  .move_bz_intro_wrap .board_srh_wrap.type02 .left label {
    min-width: 70px;
    text-align: left;
  }
  .move_bz_intro_wrap .board_srh_wrap .right {
    width: 100%;
  }
  .move_bz_intro_wrap .board_srh_wrap .srh_btn {
    width: 100%;
    height: 40px;
  }
  .caution_list li {
    font-size: 14px;
    line-height: 18px;
  }
  .caution_list li + li {
    margin-top: 10px;
  }
  .move_bz_intro_wrap .board_wrap .board_list.type01 .tr > td.board_title {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
  .move_bz_intro_wrap .board_wrap .board_list.type01 .tr > td.board_title a span{
    font-size: 16px;
  }
}
/* 입주신청안내 */
.circle_list > li .bold{
  font-weight: 600;
}
.sub_cont .bar_txt{
  font-size: 18px;
  line-height: 26px;
}
.sub_cont .text01 + .bar_txt{
  margin-top: 15px;
}
.sub_cont .bar_txt + .circle_list{
  margin-top: 10px;
}
.sub_cont .bar_txt + .board_wrap{
  margin-top: 15px;
}
.board_wrap .board_list.type01 .tr > td.ta_left{
  text-align: left;
}
.sub_cont .text02{
  font-size: 18px;
}
.sub_cont .text01 + .text02{
  margin-top: 12px;
}
.sub_cont .text02 + .circle_list{
  margin-top: 10px;
}
.sub_cont_wrap .sub_cont .gr_btn_wrap{
  margin-top: 25px;
}
.sub_cont_wrap .sub_cont .gr_btn_wrap button{
  font-size: 18px;
  font-weight: 500;
}
.move_bz_appli_wrap .order_list .order_item.type01::before{
  background-image: url(../img/sub/ico_bz_order01.png);
}
.move_bz_appli_wrap .order_list .order_item.type02::before{
  background-image: url(../img/sub/ico_bz_order03.png);
}
.move_bz_appli_wrap .order_list .order_item.type03::before{
  background-image: url(../img/sub/ico_bz_order04.png);
}
.move_bz_appli_wrap .order_list .order_item.type04::before{
  background-image: url(../img/sub/ico_bz_order05.png);
}
.move_bz_appli_wrap .order_list .order_item.type05::before{
  background-image: url(../img/sub/ico_bz_order06.png);
}
.line_table :is(td, th):not(:last-of-type){
  border-right: 1px solid #d3d3d3;
}
.board_info_list.right{
  justify-content: flex-end;
}
.board_wrap .board_list.type01 .line_table .tr.thead span{
  font-weight: 700;
}
.board_wrap .board_list.type01 .line_table tbody .tr{
  min-height: 56px;
}
.sub_cont .board_title{
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .board_wrap .board_list.type01 .line_table tbody .tr{
    min-height: 40px;
  }
  .sub_cont .text01 + .bar_txt {
    font-size: 16px;
    line-height: 20px;
  }
  .sub_cont_wrap .sub_cont .gr_btn_wrap {
    flex-direction: column;
    gap:10px;
  }
  .sub_cont_wrap .sub_cont .gr_btn_wrap button {
    font-size: 16px;
  }
  .gr_btn_wrap :is(button, a) {
    flex-basis: 49px;
  }
  .gr_btn_wrap :is(button, a).download::before {
    width: 18px;
  }
  .sub_cont .bar_txt {
    font-size: 16px;
    line-height: 22px;
  }
  .move_bz_appli_wrap .order_list {
    flex-direction: column;
    gap: 10px;
  }
  .move_bz_appli_wrap .order_list .order_item {
    min-width: 100%;
  }
  .move_bz_appli_wrap .order_list .order_item::before {
    height: 125px;
  }
  .move_bz_appli_wrap .order_list .arrow {
    width: 20px;
    transform: rotate(90deg)
  }
  .order_list .order_item .target span{
    font-size: 16px;
  }
  .board_info_list.right {
    font-size: 12px;
    margin-bottom: 8px
  }
}
/* 시설안내 */
.sub_cont .tp::before{
  content: '';
  display: inline-block;
  width: 21px;
  height: 15px;
  background: url(../img/sub/ico_tp.png) no-repeat center;
  background-size: contain;
  margin-right: 10px;
}
.sub_cont .bold{
  font-weight: 700;
}
.sub_cont .light{
  font-weight: 300;
}
.sub_cont .center{
  text-align: center;
}
.sub_cont .bar_txt + .bar_txt{
  margin-top: 4px;
}
.sub_cont .img_frame{
  display: flex;
  gap: 15px;
}
.sub_cont .cont_frame{
  display: flex;
  gap: 35px;
}
.sub_cont .img_frame > .frame,
.sub_cont .cont_frame > .frame{
  flex: 1;
  min-width: 0;
}
.sub_cont .img_frame .text01{
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width:768px) {
  .sub_cont .bar_txt + .bar_txt {
    margin-top: 7px;
  }
  .sub_cont .img_frame {
    flex-direction: column;
  }
  .sub_cont .img_frame .text01 {
    font-size: 16px;
    margin-top: 10px;
  }
}
/* 청탁금지법소개(교육자료) */
.gr_ico_box.type01::before {
  width: 70px;
  height: 63px;
  aspect-ratio: inherit;
  background-image: url(../img/sub/ico_gr02.png);
}
.circle_list.no_before > li::before{
  display: none;
}
.circle_list.no_before > li{
  padding-left: 0;
}
.ask_ban_board_wrap .gr_ico_box .circle_list{
  padding: 0;
}

/* 경영이념 */
.sub_cont_top {
  text-align: center;
  padding-top: 60px;
  border-bottom: 1px solid #d2d2d2;
}
.sub_cont_top .top_text{
  font-size: 16px;
  color: #0080cc;
  letter-spacing: 6px;
}
.sub_cont_top .title{
  font-size: 28px;
  font-weight: 700;
  margin: 25px 0;
}
.sub_cont_top .sub_text{
  font-size: 22px;
  line-height: 32px;
  color: #4a4a4a;
  margin-bottom: 60px;
}
.sub_cont_top:has(::after){
  border-bottom: none;
}
.ideology::after{
  content: '';
  display: block;
  width: 100%;
  height: 280px;
  background: url(../img/sub/img_ideology.png) no-repeat center;
  background-size: cover;
}
.sub_cont.line{
  border-top: 2px solid #000;
}
.sub_cont.pd_t{
  padding-top: 30px;
}
.sub_cont .text_box{
  padding: 25px 60px;
  background-color: #f8f9fa;
}
.sub_cont .text_box + .text_box{
  margin-top: 20px;
}
.sub_cont_wrap{
  font-size: 18px;
}
@media screen and (max-width:768px) {
  .sub_cont_top{
    padding-top: 25px;
  }
  .sub_cont_top .top_text {
    font-size: 14px;
  }
  .sub_cont_top .title {
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0;
  }
  .sub_cont_top .sub_text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .ideology::after {
    aspect-ratio: 320/165;
    height: auto;
  }
  .sub_cont .text_box {
    padding:15px;
  }
  .sub_cont .text01 {
    font-size: 14px;
    line-height: 20px;
  }
  .sub_cont .text01 br {
    display: none;
  }
  .ideology_wrap .circle_list > li {
    font-size: 13px;
    line-height: 16px;
    padding-left: 8px;
  }
  .ideology_wrap .circle_list > li::before {
    top: 5px;
  }
}

/* 조직 및 인원 - 상세 */
.member_photo{
  border: 1px solid #d2d2d2;
  width: 170px;
  height: 225px;
  margin: 15px auto;
}
.member_photo img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.sub_cont .text02{
  font-weight: 700;
}
.sub_cont .text01 + .text02{
  margin-top: 12px;
}
.sub_cont .text02 + .text03{
  margin-top: 10px;
}
.sub_cont .text03{
  line-height: 24px;
}
.sub_cont .default_list > li{
  line-height: 30px;
}
.sub_cont .text03 + .text03{
  margin-top: 15px;
}
@media screen and (max-width:768px) {
  .member_intro_wrap .circle_list > li {
    font-size: 14px;
    line-height: 16px;
  }
}
/* 임원선임절차 */
.sub_cont_wrap .sub_cont .type01 {
  font-size: 20px;
  font-weight: 600;
}
.sub_cont_wrap .sub_cont .type01 span{
  font-weight: 400;
}
.sub_cont_wrap .sub_cont .type01 + .type02{
  margin-top: 12px;
}
.sub_cont_wrap .sub_cont .type02 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}
.sub_cont_wrap .sub_cont .left_txt{
  margin-left: 20px;
  margin-top: 6px;
}
.sub_cont_wrap .sub_cont .type02 + .type02{
  margin-top: 10px;
}
.sub_cont_wrap .sub_cont .left_txt + .type02{
  margin-top: 10px;
}
.sub_cont_wrap .sub_cont .text_bold{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.sub_cont_wrap .sub_cont .type01 + .text_bold{
  margin-top: 15px;
}
.conduct_box{
  margin-bottom: 5px;
}
.conduct_box .date_list{
  display: grid;
  grid-template-columns: repeat(2, 125px);
  gap: 3px 10px;
  margin-left: auto;
  margin-bottom: 15px;
  max-width: 260px;
  font-size: 16px;
  font-weight: 300;
}
.conduct_box .index_list{
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 1fr);
}
.conduct_box .index_list span{
  margin-right: 4px;
  display: inline-block;
}
@media screen and (max-width:768px) {
  .conduct_wrap .sub_cont .text01 {
    font-size: 18px;
  }
  .conduct_wrap .sub_cont .text02 {
    font-size: 16px;
  }
  .conduct_wrap .sub_cont .text03 {
    font-size: 15px;
    line-height: 20px;;
  }
  .conduct_box .date_list {
    margin:0 auto 12px;
    font-size: 14px;
  }
  .conduct_box .index_list {
    font-size: 14px;
    grid-template-columns: 1fr;
  }
  .sub_cont_wrap .sub_cont .type01 {
    font-size: 18px;
  }
  .sub_cont_wrap .sub_cont .type02 {
    font-size: 15px;
    line-height: 20px;
  }
  .sub_cont_wrap .sub_cont .text_bold {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .board_wrap .board_list.type01:not(.scroll) .tr>td.department::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 13px;
    margin: 0 7px -1px;
    background: #cbcbcb;
  }
}
/* 개인정보처리방침 */
.privacy_policy_wrap .sub_cont_top{
  padding: 20px 70px 40px;
  border-bottom: none;
}
.privacy_policy_wrap .sub_cont_top .sub_text{
  margin-bottom: 0;
  font-size: 20px;
}
.privacy_policy_wrap .sub_cont_wrap .cont_index{
  background: #f8f9fa;
  padding: 25px 45px;
  border-radius: 5px;
  margin-bottom: 35px;
}
.privacy_policy_wrap .sub_cont_wrap .cont_index > p{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.privacy_policy_wrap .sub_cont_wrap .cont_index .idx div + div{
  margin-top: 10px;
}
.privacy_policy_wrap .sub_cont_wrap .cont_index .idx a{
  display: inline-block;
  font-size: 18px;
  position: relative;
}
.privacy_policy_wrap .sub_cont_wrap .cont_index .idx a:hover{
  color: #0080cc;
  font-weight: 600;
}
.privacy_policy_wrap .sub_cont_wrap .cont_index .idx a:hover::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #0080cc;
}
.privacy_policy_wrap .sub_cont_wrap .sub_cont .type01{
  font-size: 18px;
}
.privacy_policy_wrap .sub_cont_wrap .sub_cont .left_txt{
  margin-left: 17px;
}
.privacy_policy_wrap .sub_cont_wrap .sub_cont .last{
  padding-top: 30px;
  border-top: 1px solid #d3d3d3;
}
.privacy_policy_wrap .sub_cont_wrap .sub_cont .last .btn{
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.privacy_policy_wrap .sub_cont_wrap .sub_cont .last .btn button{
  border: 1px solid #d2d2d2;
  min-width: 350px;
  padding: 0 30px;
  line-height: 53px;
  font-size: 18px;
  transition: 0.3s;
}
.privacy_policy_wrap .sub_cont_wrap .sub_cont .last .btn button span{
  font-size: 20px;
  vertical-align: text-bottom;
  margin-left: 10px;
}
.privacy_policy_wrap .sub_cont_wrap .sub_cont .last .btn button:hover{
  background: #eaeaea;
}
@media screen and (max-width:768px) {
  .privacy_policy_wrap .sub_cont_top {
    padding: 20px 0 30px;
  }
  .privacy_policy_wrap .sub_cont_top .title {
    font-size: 18px;
  }
  .privacy_policy_wrap .sub_cont_top .sub_text {
    font-size: 14px;
    line-height: 22px;
  }
  .privacy_policy_wrap .sub_cont_wrap .cont_index {
    padding: 25px 15px;
  }
  .privacy_policy_wrap .sub_cont_wrap .cont_index > p {
    font-size: 16px;
  }
  .privacy_policy_wrap .sub_cont_wrap .cont_index .idx a {
    font-size: 14px;
  }
  .privacy_policy_wrap .sub_cont_wrap .sub_cont .type01 {
    font-size: 16px;
  }
  .privacy_policy_wrap .sub_cont_wrap .sub_cont .last .btn button {
    font-size: 14px;
    min-width: 100%;
  }
  .privacy_policy_wrap .sub_cont_wrap .sub_cont .last .btn button span {
    font-size: 16px;
    margin-left: 6px;
  }
}


/* 이메일 주소 무단 수집 거부 */
.sub_cont_wrap .icon_text_wp{
  background: #f8f9fa;
  border-radius: 5px;
  padding: 50px;
  margin-top: 50px;
}
.sub_cont_wrap .icon_text_wp p{
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  background: url(../img/sub/ico_mail.png) no-repeat center top;
  padding-top: 70px;
}
.no_mail_collect_wrap .sub_cont_wrap .sub_cont .type01{
  font-size: 18px;
}
.no_mail_collect_wrap .sub_cont_wrap .sub_cont .type01 + .type01{
  margin-top: 15px;
}
@media screen and (max-width:768px) {
  .no_mail_collect_wrap .sub_cont_wrap .icon_text_wp {
    padding: 30px 15px;
  }
  .no_mail_collect_wrap .sub_cont_wrap .icon_text_wp p {
    font-size: 16px;
    line-height: 22px;
  }
  .no_mail_collect_wrap .sub_cont_wrap .sub_cont .type01 {
    font-size: 15px;
  }
  .no_mail_collect_wrap .sub_cont_wrap .sub_cont .type02 {
    font-size: 14px;
  }
}
/* 재단 홍보동영상 */
.promotion_video_wrap .video_inner{
  border-top: 2px solid #000;
  border-bottom: 1px solid #000;
  padding: 50px 0;
  text-align: center;
}
.promotion_video_wrap .video_inner iframe{
  width: 100%;
  height: auto;
  aspect-ratio: 695/392;
}
.promotion_video_wrap .btn_wrap{
  margin: 20px auto 0;
  text-align: center;
}
.promotion_video_wrap .btn_wrap button{
  width: 99px;
  gap: 5px;
}
.promotion_video_wrap .btn_wrap button span{
  width: 18px;
  display: inline-block;
  margin-top: 1px;
}
@media screen and (max-width:768px) {
  .promotion_video_wrap .video_inner {
    padding: 25px 0;
  }
}

/* 사이트맵 */
.sitemap_box{
  border-top: 2px solid #ddd;
  padding-top: 30px;
  position: relative;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.sitemap_box a{
  transition: 0.3s;
}
.sitemap_box::before{
  content: '';
  display: block;
  width: 220px;
  height: 2px;
  background-color: #0080cc;
  top: -2px;
  left: 0;
  position:absolute;
}
.sitemap_depth01{
  margin-top: 10px;
  width: 220px;
}
.sitemap_box .depth01{
  font-size: 22px;
  font-weight: 700;
}
.sitemap_box .sitemap_depth01_wrap{
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: baseline;
  gap: 30px 25px;
}
.sitemap_box .depth02{
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  width: 100%;
  height: 55px;
  background-color: #f6f6f6;
  gap: 5px;
}
.sitemap_box .depth03{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 30px;
}
.sitemap_box .depth02[target="_blank"]::after{
  content: '';
  display: block;
  background: url(../img/common/ico_blank.png) no-repeat center;
  width: 20px;
  height: 20px;
  transition: all .3s;
}
.sitemap_box .depth02[target="_blank"]:hover::after{
  background: url(../img/common/ico_blank_wh.png) no-repeat center;
}
.sitemap_box .depth03[target="_blank"]{
  justify-content: flex-start;
  gap: 5px;
}
.sitemap_box .depth03[target="_blank"]::after{
  content: '';
  display: block;
  background: url(../img/common/ico_blank.png) no-repeat center;
  width: 20px;
  height: 20px;
  transition: all .3s;
  margin-bottom: 2px;
}
.sitemap_box .depth03[target="_blank"]:hover::after{
  background: url(../img/common/ico_blank_on.png) no-repeat center;
}
.sitemap_box li:has(.depth04) .depth03::after{
  content: '';
  display: block;
  background: url(../img/module/aside_menu_btn.png) no-repeat center;
  width: 20px;
  height: 20px;
  transition: all .3s;
}
.sitemap_box li.on:has(.depth04) .depth03::after{
  background: url(../img/module/aside_menu_btn_on.png) no-repeat center !important;
}
.sitemap_box li.on:has(.depth04) .depth03,
.sitemap_box .sitemap_depth03_wrap > li:hover .depth03,
.sitemap_box .sitemap_depth04_wrap > li:hover .depth04{
  color: #0080cc;
}
.sitemap_box li:hover::before,
.sitemap_box li.on::before{
  background-color: #0080cc;
}
.sitemap_box li:hover:has(.depth04) .depth03::after{
  background: url(../img/module/aside_menu_btn_hover.png) no-repeat center;
}
.sitemap_box .sitemap_depth02_wrap:hover .depth02{
  background-color: #0080cc;
  color: #fff;
}
.sitemap_box .sitemap_depth03_wrap{
  margin-top: 15px;
}
.sitemap_box .sitemap_depth04_wrap{
  padding: 5px 0;
  display: none;
}
.bar_list > li{
  padding-left: 15px;
  position: relative;
  font-size: 16px;
  line-height: 26px;
}
.bar_list > li + li{
  margin-top: 2px;
}
.bar_list > li::before{
  content: '';
  display: block;
  width: 8px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 12px;
  left: 3px;
}
.sub_cont .bar_txt > .circle_list{
  padding-left: 10px;
  padding-top: 5px;
}

@media screen and (max-width: 1024px) {
  .sitemap_box{
    flex-direction: column;
    align-items: center;
    border-width: 1px;
    gap: 11px;
    padding-top: 20px;
  }
  .sitemap_box .depth01{
    text-align: center;
  }
  .sitemap_box .sitemap_depth01_wrap{
    width: 100%;
  }
  .sitemap_box::before{
    display: none;
  }
  .sub_cont_wrap .sub_cont:first-of-type .sitemap_box{
    border-color: #000;
  }
  .sitemap_depth01 {
    margin-top: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .sitemap_box .depth01 {
    font-size: 18px;
  }
  .sitemap_box{
    padding-top: 20px;
    gap: 13px;
  }
  .sitemap_box .sitemap_depth01_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
  }
  .sitemap_box .depth02 {
    height: 36px;
    font-size: 14px;
  }
  .sitemap_box .depth02[target="_blank"]::after {
    width: 14px;
    height: 14px;
    background-size: contain;
  }
  .sitemap_box .depth03 {
    min-height: inherit;
    font-size: 12px;
  }
  .sitemap_box .sitemap_depth03_wrap > li{
    padding-left: 10px;
  }
  .sitemap_box .sitemap_depth03_wrap > li:not(:last-of-type){
    margin-bottom: 0;
  }

  .sitemap_box .depth03[target="_blank"]::after {
    width: 12px;
    height: 12px;
    background-size: contain;
  }
  .sitemap_box .sitemap_depth03_wrap {
    margin-top: 5px;
    padding: 5px;
  }
  .sitemap_box .sitemap_depth03_wrap > li + li{
    margin-bottom: 5px;
  }
  .sitemap_box li:has(.depth04) .depth03::after{
    width: 10px;
    height: 10px;
    background-size: contain;
  }
  .sitemap_box .bar_list > li {
    padding-left: 12px;
    font-size: 12px;
    line-height: 20px;
  }
  .sitemap_box .bar_list > li::before {
    width: 5px;
    top: 9px;
    left: 2px;
  }
}

/* 안산정보산업진흥센터(창업보육센터) 입주안내 */
.sub_cont p + .txt_wp {
  margin-top: 12px;
}
.sub_cont .txt_wp > p + p{
  margin-top: 8px;
}
.sub_cont .txt_wp > .circle_list{
  margin-top: 4px;
  margin-left: 10px;
}
.sub_cont .txt_wp > .circle_list + p{
  margin-top: 6px;
}

/*안산 IT·SW 기업성장 지원사업*/
.sub_cont .text01 + .text03{
  margin-top: 10px;
}
.venn_diagram{
  display: flex;
}
.venn_diagram > li{
  width: 255px;
  aspect-ratio: 1 / 1;
  position: relative;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
}
.venn_diagram > li::before{
  content: '';
  display: block;
  width: calc(100% + 40px);
  aspect-ratio: 1 / 1;
  opacity: 0.75;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.venn_diagram > li:first-of-type{
  padding-right: 15px;
}
.venn_diagram > li.no_pd{
  padding-right: 0;
}
.venn_diagram > li:first-of-type::before{
  background-color: #0081c7;
}
.venn_diagram > li:nth-of-type(2)::before{
  background-color: #00984b;
}
.venn_diagram > li:not(:last-of-type):after{
  content: '';
  display: block;
  width: 22px;
  aspect-ratio: 1 / 1;
  background: url(../img/sub/ico_plus.png) no-repeat center;
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width:768px) {
  .it_sw_wrap .venn_diagram > li::before {
    width: calc(100% + 40px);
  }
  .it_sw_wrap .sub_cont .text01{
    font-size: 18px;
  }
}

/* 안산정보산업진흥센터  - 센터소개 - 센터개요 */
.sub_cont .bd_box.scroll{
  overflow: auto;
  display: block;
}
.sub_cont .bd_box.scroll img{
  /* min-width: 768px; */
}

@media screen and (max-width:768px) {
  .venn_diagram {
    padding: 20px;
  }
  .ansan_center_wrap .sub_cont .text01{
    font-size: 18px;
  }
  .venn_diagram > li {
    width: 220px;
  }
  .ansan_center_wrap .venn_diagram > li::before {
    width: calc(100% + 40px);
  }
  .venn_diagram > li:not(:last-of-type):after{
    width: 19px;
    right: 50%;
    top: calc(100% - (19px / 2));
    transform: translateY(0) translateX(50%);
  }
}

/* 연혁 */
.history_wrap .inner{
  position: relative;
  margin-bottom: 50px;
}
.history_wrap .inner::before{
  content: '';
  position: absolute;
  width: 19px;
  height: 19px;
  background: #002bc6;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: -109px;
}
.history_wrap .inner::after{
  content: '';
  position: absolute;
  width: 19px;
  height: 19px;
  background: #002bc6;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -21px;
}
.history_wrap .inner > ul{
  margin: 109px auto 0;
  position: relative;
}
.history_wrap .inner > ul::before{
  content: '';
  position: absolute;
  width: 1px;
  height: 90px;
  background: #bfbfbf;
  left: 50%;
  transform: translateX(-50%);
  top: -90px;
}
.history_wrap .inner > ul > li{
  display: flex;
  position: relative;
  justify-content: end;
}
.history_wrap .inner > ul > li .circle_list > li{
  font-weight: 300;
}
.history_wrap .inner > ul > li .circle_list > li .date{
  font-weight: 700;
  color: #064db0;
  margin-right: 8px;
}
.history_wrap .inner > ul > li .circle_list {
  margin-top: 15px;
}
.history_wrap .inner > ul > li::before{
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 40px);
  background: #bfbfbf;
  left: 50%;
  transform: translateX(-50%);
  top: 42px;
}
.history_wrap .inner > ul > li:nth-child(even){
  text-align: right;
  justify-content: flex-start;
}
.history_wrap .inner > ul > li:nth-child(even) .circle_list > li{
  padding-right: 12px;
  padding-left: 0;
  text-align: right;
}
.history_wrap .inner > ul > li:nth-child(even) .circle_list > li::before{
  left: auto;
  right: 0;
}
.history_wrap .inner > ul > li .cont{
  width: 520px;
  padding-left: 50px;
  position: relative;
  min-height: 120px;
}
.history_wrap .inner > ul > li .cont::before{
  content: '';
  position: absolute;
  width: 19px;
  height: 19px;
  border: 4px solid #002bc6;
  border-radius: 50%;
  top: 13px;
  left: -8px;
  background: #fff;
}
.history_wrap .inner > ul > li:nth-child(even) .cont{
  padding-right: 50px;
  padding-left: 0;
}
.history_wrap .inner > ul > li:nth-child(even) .cont::before{
  content: '';
  position: absolute;
  width: 19px;
  height: 19px;
  border: 4px solid #002bc6;
  border-radius: 50%;
  top: 13px;
  right: -8px;
  left: auto;
  background: #fff;
}
.history_wrap .inner > ul > li .cont .year{
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 1720px) {
  .history_wrap .inner > ul > li .cont {
    width: 602px;
  }
  .history_wrap .inner > ul > li {
    padding-left: 50%;
  }
  .history_wrap .inner > ul > li:nth-child(even){
    padding-right: 50%;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .history_wrap .inner {
    margin-bottom: 22px;
  }
  .history_wrap .inner::before {
    width: 15px;
    height: 15px;
    left: 0;
    transform: translateX(0%);
    top: -99px;
  }
  .history_wrap .inner::after {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    transform: translateX(0%);
    bottom: -21px;
    left: 0;
}
  .history_wrap .inner > ul{
    margin: 99px auto 0;
  }
  .history_wrap .inner > ul::before {
    height: 84px;
    left: 7px;
    transform: translateX(0%);
    top: -84px;
  }
  .history_wrap .inner > ul > li {
    justify-content: inherit;
  }
  .history_wrap .inner > ul > li {
    padding-left: 0;
    padding-bottom: 45px;
  }
  .history_wrap .inner > ul > li .cont {
    width: 100%;
    min-height: auto;
    padding-left: 30px;
  }
  .history_wrap .inner > ul > li:nth-child(even) .cont {
    padding-right: 0;
    padding-left: 30px;
    text-align: left;
  }
  .history_wrap .inner > ul > li .cont::before{
    width: 15px;
    height: 15px;
    left: 0;
    top: 9px;
  }
  .history_wrap .inner > ul > li:nth-child(even) .cont::before{
    right: auto;
    left: 0;
  }
  .history_wrap .inner > ul > li::before {
    left: 7px;
    transform: translateX(0);
    height: calc(100% - 30px);
    top: 31px;
  }
  .history_wrap .inner > ul > li:nth-child(even) .circle_list > li {
    text-align: left;
    padding-right: 0;
    padding-left: 12px;
  }
  .history_wrap .inner > ul > li:nth-child(even) .circle_list > li::before {
    left: 0;
  }
  .history_wrap .inner > ul > li:nth-child(even) {
    padding-right: 0;
  }
  .history_wrap .inner > ul > li .cont .year {
    font-size: 30px;
  }
  .history_wrap .inner > ul > li:nth-child(even) .cont::before{
    width: 15px;
    height: 15px;
    top: 9px;
  }
}

/*기관상징(C.I)*/
.gr_ico_box.ci::before{
  max-width: 329px;
  width: 100%;
  aspect-ratio: 329 / 57;
  background-image: url(../img/sub/ico_tp_ci.png);
}
.gr_ico_box.ci{
  align-items: center;
  padding: 50px 95px 50px 135px;
}
.gr_ico_box.ci .gr_btn_wrap {
  justify-content: flex-end;
}
.sub_cont .bd_box{
  border: 1px solid #d3d3d3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  min-height: 380px;
}
.sub_cont .text01 + .bd_box{
  margin-top: 20px;
}
.sub_cont .bd_box.type01{
  padding: 25px 40px;
}
.venn_diagram.no_plus{
  padding: 20px;
}
.venn_diagram > li .sm{
  font-size: 20px;
  font-weight: 500;
}
.venn_diagram.no_plus > li:after{
  display: none;
}
.venn_diagram.no_plus > li:first-of-type{
  padding-right: 0;
}
.venn_diagram.no_plus > li{
  width: 280px;
}
.sub_cont .frame .bd_box{
  min-height: 250px;
}

@media screen and (max-width: 1500px) {
  .gr_ico_box.ci{
    padding: 50px;
  }
}

@media screen and (max-width: 768px) {
  .gr_ico_box.ci::before{
    max-width: 220px;
  }
  .gr_ico_box.ci{
    flex-direction: column;
    gap: 25px;
    padding: 25px 50px;
    margin-bottom: 30px;
  }
  .gr_btn_wrap :is(button, a){
    min-width: 195px;
    min-height: 36px;
    height: 32px;
    font-size: 15px;
    padding-top: 2px;
  }
  .gr_btn_wrap :is(button, a).download::before {
    width: 14px;
    margin-bottom: 2px;
  }
  .sub_inner .tab_button-wrap.type02 .tab_button-list{
    grid-template-columns: repeat(2, 1fr);
  }
  .sub_inner .tab_button-wrap.type02 .tab_button-list li:nth-child(even) a{
    border-right: 1px solid #d2d2d2;
  }
  .sub_inner .tab_button-wrap.type02 .tab_button-list li:nth-of-type(2) + li > a{
    border-top: none;
  }
  .sub_inner .tab_button-wrap.type02 .tab_button-list li a {
    font-size: 16px;
    min-height: 45px;
  }
  .sub_cont .bd_box{
    padding: 30px 40px;
  }
  .venn_diagram{
    flex-direction: column;
  }
  .venn_diagram > li .sm {
    font-size: 16px;
    line-height: 24px;
  }
  .venn_diagram.no_plus > li {
    width: 240px;
  }
  .venn_diagram > li::before {
    width: calc(100% + 20px);
  }
  .sub_cont .bd_box{
    min-height: auto;
  }
  .sub_cont .cont_frame{
    flex-direction: column;
  }
  .ci_wrap .sub_cont .text01{
    font-size: 18px;
  }
  .sub_cont .text01 + .text03{
    font-size: 16px;
  }
  .sub_cont .frame .bd_box {
    min-height: 150px;
  }
  .sub_cont .bd_box.type01 .m_wi{
    max-width: 126px;
  }
}
.esg_wrap .vision_wrap .content_box > .box .tit,
.esg_wrap .vision_wrap .content_box > .box:not(:nth-of-type(2)) .tit {
  margin-top: 0;
}
.esg_wrap .vision_wrap .content_box > .box{
  align-items: flex-start;
}
/* 미션 및 비전 */
.vision_wrap .ms_vs_wp{
  display: flex;
  background: url(../img/sub/ms_vs_bg.jpg) no-repeat center center;
  justify-content: space-between;
  gap: 25px;
  padding: 50px 0;
  margin-bottom: 60px;
}
.vision_wrap .ms_vs_wp > div{
  flex: 1;
}
.vision_wrap .ms_vs_wp .center_txt{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 422px;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}
.vision_wrap .ms_vs_wp .txt strong{
  font-size: 26px;
  font-weight: 600;
}
.vision_wrap .ms_vs_wp .txt .gr{
  font-size: 20px;
  font-weight: 300;
  color: #565656;
  margin: 15px auto;
}
.vision_wrap .ms_vs_wp .txt .t{
  font-size: 20px;
}
.vision_wrap .ms_vs_wp .txt.left{
  text-align: right;
}
.vision_wrap .content_box > .box{
  display: flex;
  align-items: center;
  gap: 55px;
}
.vision_wrap .content_box > .box:has(.line_top) {
  gap: 35px;
}
.vision_wrap .content_box > .box + .box{
  margin-top: 30px;
}
.vision_wrap .content_box > .box .tit{
  min-width: 85px;
}
.vision_wrap .content_box > .box:not(:nth-of-type(2)){
  align-items: flex-start;
}
.vision_wrap .content_box > .box:not(:nth-of-type(2)) .tit{
  margin-top: 10px;
}
.vision_wrap .box .tit.line_top {
  min-width: 120px;
  border-top: 2px solid #7f7f7f;
  padding-top: 30px;
}
.vision_wrap .box .tit strong{
  font-size: 24px;
  font-weight: 600;
}

.vision_wrap .box .tit p{
  font-size: 20px;
  font-weight: 300;
  color: #565656;
  margin-top: 10px;
}
.vision_wrap .box .cont{
  flex: 1;
}
.vision_wrap .box .cont > div > ul{
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.vision_wrap .box .cont > div > ul > li{
  flex: 1;
}
.vision_wrap .box .cont .circle_list.padding {
  padding: 5px 0;
}
.vision_wrap .box .cont .circle_list > li.circle_list_tit::before {
  display: none;
}
.vision_wrap .box .cont .circle_list > li.circle_list_tit{
  font-weight: 700;
  text-align: center;
  padding: 0;
  padding-bottom: 12px;
}
.vision_wrap .box .cont .gra {
  width: 100%;
  min-height: 90px;
  background: linear-gradient(90deg,rgba(0, 129, 198, 1) 0%, rgba(0, 140, 136, 1) 50%, rgba(0, 152, 74, 1) 100%);
  border-radius: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 45px;
}
.vision_wrap .box .cont .gra > p {
  font-size: 22px;
  text-align: center;
  color: #fff;
}
.vision_wrap .box .cont.arrow {
  padding-bottom: 130px;
  background: url(../../src/img/sub/arrow.png) no-repeat;
  background-position: bottom center;
}
.vision_wrap .value_wp li p{
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.vision_wrap .value_wp li p::before{
  content: '';
  display: block;
  width: 170px;
  height: 170px;
  background: url(../img/sub/ico_value01.png) no-repeat;
  margin: 0 auto 20px;
}
.vision_wrap .value_wp li:nth-of-type(2) p::before{
  background-image: url(../img/sub/ico_value02.png);
}
.vision_wrap .value_wp li:nth-of-type(3) p::before{
  background-image: url(../img/sub/ico_value03.png);
}
.vision_wrap .objective_wp > ul > li {
  line-height: 90px;
  color: #fff;
  text-align: center;
  background: #0080cc;
  font-size: 18px;
  font-weight: 600;
}
.vision_wrap .objective_wp > ul > li.direction {
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  padding: 20px;
}
.vision_wrap .Initiative_wp > ul > li {
  border: 1px solid #bfbfbf;
  padding: 20px 25px;
}
.vision_wrap .content_box .tit_box{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.vision_wrap .content_box .con_tit {
  font-size: 28px;
  font-weight: 600;
  padding: 25px 0;
}
.vision_wrap .content_box + .content_box{
  margin-top: 35px;
}
.vision_wrap .board_wrap .board_list.type01 .tr > td ul:not(.circle_list) li{
  display: flex;
  line-height: 28px;
  font-size: 18px;
}
.vision_wrap .board_wrap .board_list.type01 .tr > td ul:not(.circle_list) li + li{
  margin-top: 2px;
}
.vision_wrap .board_wrap .board_list.type01 .tr > td ul:not(.circle_list) li span{
  display: inline-block;
  flex-basis: 37px;
  flex-shrink: 0;
}
.scroll_table{
  overflow: auto;
}
.scroll_table table{
  min-width: 650px;
}

/* 추진체계 */
.vision_wrap .chart {
  width: 100%;
  height: 100%;
  padding: 80px 0 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vision_wrap .chart .chart_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.vision_wrap .chart .chart_top::after {
  content: '';
  width: 1px;
  height: 400px;
  background: #c1c1c1;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
}
.vision_wrap .chart .chart_top>li {
  width: calc((100% - 80px) / 3);
  min-height: 87px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.vision_wrap .chart .chart_top>li.top01 {
  background: #26498b;
}
.vision_wrap .chart .chart_top>li.top02 {
  background: #6a83b5;
}
.vision_wrap .chart .chart_top>li.top03 {
  background: #0080cc;
}
.vision_wrap .chart .chart_bot {
  display: flex;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}
.vision_wrap .chart .chart_bot::after {
  content: '';
  width: 600px;
  height: 1px;
  background: #c1c1c1;
  position: absolute;
  top: 40%;
  left: 100px;
  z-index: -1;
}
.vision_wrap .chart .chart_bot>li {
  width: calc((100% - 80px) / 3);
  min-height: 177px;
  border: 1px solid #bfbfbf;
  border-radius: 8px 8px 0 0 ;
}
.vision_wrap .chart .chart_bot>li .bot_tit{
  width: 100%;
  min-height: 87px;
  background: #f3f4f8;
  border-radius: 9px 9px 0 0 ;
  border-bottom: 1px solid #bfbfbf;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.vision_wrap .chart .chart_bot>li .bot_tit span {
  color: #008cab;
}
.vision_wrap .chart .chart_bot>li .bot_txt{
  width: 100%;
  min-height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .vision_wrap .content_box .con_tit {
    text-align: center;
  }
  .esg_wrap .vision_wrap .content_box > .box {
    align-items: center;
  }
  .vision_wrap .box .cont{
    width: 100%;
  }
  .vision_wrap .ms_vs_wp{
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 145px;
    background-image: url(../img/sub/ms_vs_bg_m.jpg);
  }
  .vision_wrap .ms_vs_wp .txt.left {
    text-align: center;
  }
  .vision_wrap .ms_vs_wp > div {
    text-align: center;
  }
  .vision_wrap .content_box > .box{
    flex-direction: column;
    gap: 25px;
  }
  .vision_wrap .content_box > .box:not(:nth-of-type(2)){
    align-items: center;
    gap: 25px;
  }
  .vision_wrap .content_box > .box .tit{
    text-align: center;
  }
  .vision_wrap .content_box > .box:not(:nth-of-type(2)) .tit {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .vision_wrap .content_box .con_tit {
    font-size: 20px;
  }
  .vision_wrap .content_box .con_tit.con2 {
    padding-bottom: 0;
  }
  .vision_wrap .box .cont.arrow {
    padding-bottom: 110px;
  }
  .vision_wrap .objective_wp > ul > li.direction {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1px;
  }
  .vision_wrap .ms_vs_wp {
    gap: 165px;
    margin-bottom: 30px;
  }
  .vision_wrap .box .cont .gra > p {
    font-size: 16px;
  }
  .vision_wrap .ms_vs_wp .txt strong {
    font-size: 20px;
  }
  .vision_wrap .ms_vs_wp .txt .gr {
    font-size: 18px;
    margin: 10px auto;
  }
  .vision_wrap .ms_vs_wp .txt .t {
    font-size: 16px;
  }
  .vision_wrap .ms_vs_wp .center_txt {
    min-width: 190px;
    font-size: 22px;
  }
  .vision_wrap .box .tit p {
    font-size: 16px;
    margin-top: 7px;
  }
  .vision_wrap .box .tit strong {
    font-size: 20px;
  }
  .vision_wrap .box .cont > div > ul {
    gap: 20px;
    flex-direction: column;
  }
  .vision_wrap .objective_wp > ul > li {
    line-height: 70px;
    font-size: 16px;
  }
  .vision_wrap .Initiative_wp > ul > li {
    padding: 17px 20px;
  }
  .circle_list > li::before{
    top: 8px;
  }
  .vision_wrap .content_box .tit_box {
    font-size: 18px;
  }
  .vision_wrap .board_wrap .board_list.type01 .tr > td ul:not(.circle_list) li {
    line-height: inherit;
    font-size: 16px;
  }
  .vision_wrap .chart {
    padding: 0;
  }
  .vision_wrap .chart .chart_top::after {
    height: 500px;
  }
  .vision_wrap .chart .chart_top>li {
    width: 100%;
    min-height: 70px;
    font-size: 16px;
  }
  .vision_wrap .box .cont > div.chart > ul.chart_bot {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 12px;
  }
  .vision_wrap .box .cont > div.chart > ul.chart_bot > li {
    width: 100%;
  }
  .vision_wrap .chart .chart_bot::after {
    width: 12px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
  }
  .vision_wrap .chart .chart_bot::before {
    content: '';
    width: 7px;
    height: 1px;
    background: #c1c1c1;
    position: absolute;
    bottom: 104px;
    right: 50%;
  }
  .vision_wrap .chart .chart_bot>li {
    min-height: 140px;
  }
  .vision_wrap .chart .chart_bot>li .bot_tit {
    min-height: 70px;
    font-size: 14px;
  }
  .vision_wrap .chart .chart_bot>li .bot_txt {
    text-align: center;
    min-height: 70px;
    padding: 0 20px;
    font-size: 14px;
  }
}

/* 인사말 */
.greeting_wrap .sub_cont_wrap .sub_cont + .sub_cont{
  padding-right: 335px;
}
.greeting_wrap .sub_cont .text03{
  line-height: 30px;
  padding: 0 40px;
}
.gr_box{
  padding: 50px 40px;
  background-color: #f8f9fa;
}
.gr_box .text_big{
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
.gr_box .text_big + .text{
  margin-top: 20px;
}
.gr_box .text{
  line-height: 30px;
  font-size: 20px;
}
.gr_box .text_big.point{
  color: #26498b;
}
.greeting_wrap{
  position: relative;
  padding-bottom: 60px;
}
.greeting_wrap .sub_cont.pd_t::after {
  content: '';
  display: block;
  width: 335px;
  aspect-ratio: 335 / 557;
  position: absolute;
  right: 25px;
  top: 150px;
  background: url(../img/sub/cheif.png) no-repeat center;
}
.greeting_wrap.ansan::before{
  width: 293px;
  aspect-ratio: 293 / 324;
  right: 25px;
  top:60px;
  background: url(../img/sub/ico_ansan_greeting.png) no-repeat center;
}
.gr_box .text_big + .text.type01{
  font-size: 24px;
  margin-top: 10px;
  font-weight: 500;
}
.gr_box .gr_text{
  font-size: 20px;
  color: #bababa;
  margin-top: 30px;
  font-weight: 300;
}

@media screen and (max-width: 1024px) {
  .greeting_wrap {
    padding-bottom: 0;
  }
  .greeting_wrap .sub_cont.pd_t::after {
    position: static;
    margin: 30px auto;
  }
  .greeting_wrap .sub_cont_wrap .sub_cont + .sub_cont{
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .greeting_wrap .sub_cont.pd_t::after {
    width: 284px;
    aspect-ratio: 284 / 401;
    background-image: url(../img/sub/cheif_m.jpg);
  }
  .gr_box {
    padding: 30px;
  }
  .gr_box .text_big {
    font-size: 20px;
    line-height: 26px;
  }
  .gr_box .text {
    line-height: 24px;
    font-size: 16px;
  }
  .greeting_wrap .sub_cont .text03 {
    line-height: 26px;
    padding: 0;
    font-size: 16px;
  }
}

/* 경기인터넷데이터센터 */
.it_data_info{
  display: flex;
  gap: 35px;
}
.it_data_info .bg_box{
  flex: 1;
  background-color: #f8f9fa;
  padding: 30px 30px 30px 60px;
}
.it_data_info .bg_box strong{
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.it_data_info .bg_box p{
  font-size: 18px;
}
.it_data_info .bg_box .text{
  background: url(../img/sub/ico_it_data01.png) no-repeat center left;
  padding-left: 90px;
}
.it_data_info .bg_box:nth-of-type(2) .text{
  background-image: url(../img/sub/ico_it_data02.png);
}
.it_data_center_wrap .content_box{
  margin-top: 30px;
}
.it_data_center_wrap .content_box .circle_list{
  padding: 0;
}
.it_data_center_wrap .content_box .tit_box{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.it_data_center_wrap .content_box .sub_tit_box{
  font-size: 18px;
  margin-bottom: 15px;
}
.it_data_center_wrap .service_wrap{
  border: 1px solid #d2d2d2;
  padding: 40px 20px;
}
.it_data_center_wrap .service_wrap ul{
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.it_data_center_wrap .service_wrap ul > li{
  flex: 1;
}
.it_data_center_wrap .service_wrap li p{
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}
.it_data_center_wrap .service_wrap li p.md{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.it_data_center_wrap .service_wrap li .s_txt::before{
  content: '';
  display: block;
  width: 160px;
  height: 160px;
  background: url(../img/sub/ico_data01.png) no-repeat;
  margin: 0 auto 20px;
}
.it_data_center_wrap .service_wrap li:nth-of-type(2) .s_txt::before{
  background-image: url(../img/sub/ico_data02.png);
}
.it_data_center_wrap .service_wrap li:nth-of-type(3) .s_txt::before{
  background-image: url(../img/sub/ico_data03.png);
}
.it_data_center_wrap .gr_btn_wrap{
  margin-top: 40px;
}
.it_data_center_wrap .gr_btn_wrap button{
  min-width: 365px;
}
.it_data_center_wrap .board_wrap .board_list.type01 .tr:not(.thead):hover{
  background: transparent;
}
.it_data_center_wrap .board_wrap .board_list.type01 td{
  padding: 15px 20px !important;
}

/* 오시는길 */
.direction_img{
  border: 1px solid #d2d2d2;
  padding: 20px;
  text-align: center;
}
.direction_center_wrap .it_data_info .bg_box {
  display: flex;
  align-items: center;
}
.direction_center_wrap .tit_box{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.direction_center_wrap .content_box + .content_box{
  margin-top: 30px;
}
.direction_center_wrap .content_box .circle_list{
  padding: 0;
}
.direction_center_wrap .it_data_info .bg_box .text{
  display: flex;
  gap: 40px;
  background: url(../img/sub/ico_it_data03.png) no-repeat top left;
  padding-left: 80px;
}
.direction_center_wrap .it_data_info .bg_box:nth-of-type(2) .text{
  background-image: url(../img/sub/ico_it_data01.png);
  padding-left: 90px;
}
.iframe_wrap{
  width: 100%;
}
/* .iframe_pc iframe{
  min-height: 1270px !important;
} */
.iframe_pc {
  max-width:740px;
  margin:0 auto;
  overflow-x:auto;
}

@media screen and (max-width:1024px) {
  .it_data_info{
    flex-direction: column;
  }
}

@media screen and (max-width:768px) {
  .direction_center_wrap .tit_box {
    font-size: 18px;
  }
  .it_data_info .bg_box {
    padding: 25px 20px;
  }
  .direction_center_wrap .it_data_info .bg_box .text{
    background-size: 34px;
    padding-left: 50px;
    flex-direction: column;
    gap: 10px;
  }
  .it_data_info .bg_box strong {
    font-size: 18px;
  }
  .it_data_info .bg_box p {
    font-size: 16px;
  }
  .direction_center_wrap .it_data_info .bg_box:nth-of-type(2) .text{
    padding-left: 50px;
  }
}

/* 센터시설 안내 */
.center_facilities_info_wrap .bd_box{
  padding: 0;
  position: relative;
}
.sub_cont .img_grid_wp{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 15px;
}
.sub_cont .img_grid_wp .text01{
  text-align: center;
  margin-top: 12px;
}

@media screen and (max-width:768px) {
  .sub_cont .img_grid_wp{
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .sub_cont .img_grid_wp div{
    text-align: center;
  }
  .sub_cont .img_grid_wp .text01{
    font-size: 18px;
  }
  .center_facilities_info_wrap .sub_cont .text02 {
    font-size: 14px;
  }
  .center_facilities_info_wrap .sub_cont .text01{
    font-size: 16px;
  }
}

/* 기관소개 - 위치 안내 */
.location_info_wrap .sub_cont_wrap .sub_cont + .sub_cont{
  margin-top: 40px;
}
.location_bundle > ul{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d2d2d2;
  padding: 0 20px 40px;
}
.location_bundle > ul:nth-of-type(n+2){
  padding-top: 30px;
}
.location_bundle > ul > li{
  flex: 1;
}
.location_bundle > ul > li .name{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
.map_section .map_inner{
  border: 1px solid #d2d2d2;
  overflow: hidden;
}
.map_section .root_daum_roughmap .wrap_map{
  height: 450px !important;
}
.map_section .root_daum_roughmap .map{
  height: 100%;
  position: relative;
  width: 100%;
}
.map_section .map_adr{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0067b6;
  padding: 25px 35px 25px 65px;
}
.map_section .map_adr p{
  font-size: 18px;
  color: #fff;
}
.map_section .map_adr p::before{
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 1px;
}
.map_section .map_adr p + p{
  margin-top: 5px;
}
.map_section .map_adr .map_btn :is(button, a){
  display: inline-block;
  min-width: 133px;
  line-height: 54px;
  border: 1px solid rgba(255,255,255,0.5);
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.map_section .map_adr .map_btn :is(button, a)::before{
  display: inline-block;
  content: '';
  width: 29px;
  height: 30px;
  background: url(../img/sub/ico_map.png) no-repeat;
  vertical-align: middle;
  margin-right: 10px;
  transition: 0.3s;
}
.map_section .map_adr .map_btn :is(button, a):hover{
  background: #fff;
  color: #0067b6;
}
.map_section .map_adr .map_btn :is(button, a):hover:before{
  background-image: url(../img/sub/ico_map_on.png);
}
.floor_info_wrap .title{
  font-size: 18px;
  font-weight: 600;
  color: #0080cc;
  margin-bottom: 13px;
}
.floor_info_wrap .wrap_inner > ul > li{
  display: flex;
  align-items: center;
  gap: 26px;
}
.floor_info_wrap .wrap_inner > ul > li .floor{
  min-width: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: #bfdfff;
  text-align: center;
  font-size: 20px;
}
.floor_info_wrap .wrap_inner > ul > li .con{
  font-size: 18px;
}
.floor_info_wrap .wrap_inner > ul > li + li{
  margin-top: 10px;
}
.floor_info_wrap .wrap_inner + .wrap_inner{
  border-top: 1px solid #d2d2d2;
  padding-top: 25px;
  margin-top: 30px;
}
.floor_info_wrap .text01{
  margin-bottom: 12px;
}

@media screen and (max-width: 768px){
  .location_bundle > ul{
    flex-direction: column;
    gap: 25px;
    padding: 0 10px 30px;
  }
  .location_bundle > ul > li .name {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .map_section .root_daum_roughmap .wrap_map{
  	height: 320px !important;
  }
  .map_section .map_adr{
    padding: 20px;
  }
  .map_section .map_adr p {
    font-size: 16px;
  }
  .map_section .map_adr{
    align-items: inherit;
    flex-direction: column;
    gap: 15px;
  }
  .map_section .map_adr .map_btn{
    text-align: center;
  }
  .map_section .map_adr .map_btn :is(button, a) {
    min-width: 105px;
    line-height: 42px;
    font-size: 14px;
  }
  .map_section .map_adr .map_btn :is(button, a)::before {
    width: 23px;
    height: 24px;
    background-size: contain;
    margin-bottom: 2px;
  }
  .location_info_wrap .sub_cont .text01{
    font-size: 18px;
  }
  .floor_info_wrap .wrap_inner > ul > li{
    gap: 10px;
  }
  .floor_info_wrap .title{
    font-size: 16px;
  }
  .floor_info_wrap .wrap_inner > ul > li .floor {
    min-width: 60px;
    line-height: 60px;
    font-size: 16px;
  }
  .floor_info_wrap .wrap_inner > ul > li .con {
    font-size: 16px;
  }
}

/* 정보공개청구 */
.info_open_wrap .content_box {
  margin-top: 30px;
}
.info_open_wrap .content_box .tit_box {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.info_open_wrap .gr_btn_wrap button {
  min-width: 290px;
}
.line_table .row_line{
  border-bottom: 1px solid #d3d3d3;
}
.info_open_wrap .content_box .bd_img_wp{
  border: 1px solid #d2d2d2;
  padding: 40px 30px;
  text-align: center;
  margin-top: 15px;
}
.info_open_wrap .content_box .bd_img_wp + .gr_btn_wrap{
  margin-top: 20px;
}
.info_open_wrap .content_box table .text02{
  text-align: left;
}
.info_open_wrap .content_box .board_wrap .board_list.type01 .tr > td:not(:first-of-type){
  vertical-align: baseline;
}
.board_wrap .board_list.type01 .tr > td .gr_plus_txt{
  display: block;
  text-align: left;
  color: #7a7a7a;
  margin-top: 5px;
}
.info_open_wrap .content_box table .gr_plus_txt + .text02{
  margin-top: 15px;
}
.info_open_wrap .content_box table .circle_list + .text02{
  margin-top: 15px;
}
.info_open_wrap .content_box table .circle_list > li > .sub{
  font-size: 18px;
  padding-left: 9px;
}
.sub_cont .num_txt {
  margin-top: 10px;
}
.sub_cont .num_txt > p{
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
}
.sub_cont .num_txt > p + p{
  margin-top: 10px;
}
.gr_btn_wrap .link{
  gap: 10px;
}
.gr_btn_wrap .link::before{
  background-image: url(../img/sub/ico_link.png);
  width: 20px;
  aspect-ratio: 1 / 1;
}
.gr_btn_wrap .link:hover::before{
  background-image: url(../img/sub/ico_link_on.png);
}
.info_open_wrap .content_box .bd_img_link{
	border: 1px solid #d2d2d2;
    padding: 40px 30px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 25px;
    display:block;
}
@media screen and (max-width:768px) {
  .info_open_wrap .content_box{
    margin-top: 20px;
  }
  .info_open_wrap .content_box:first-of-type {
    margin-top: 0;
  }
  .info_open_wrap .text02 + .text03 {
    font-size: 16px;
    line-height: 20px;
    margin-top: 5px;
  }
  .info_open_wrap .gr_btn_wrap :is(button, a) {
    flex-basis: 100%;
    height: 50px;
    font-size: 15px;
  }
  .info_open_wrap .content_box .bd_img_wp {
    padding: 20px 15px;
    overflow: hidden;
    overflow-x: auto;
  }
  .info_open_wrap .content_box .bd_img_wp img {
    min-width: 640px;
  }
  .info_open_wrap .content_box .bd_img_link{
    padding: 20px 15px;
}
  .info_open_wrap .line_table.minw {
    font-size: 14px;
  }
  .info_open_wrap .content_box table .text02 {
    font-size: 14px;
  }
  .info_open_wrap .content_box table .circle_list > li {
    font-size: 14px;
  }
  .info_open_wrap .content_box table .circle_list > li > .sub {
    font-size: 14px;
  }
  .info_open_wrap .num_txt > p {
    font-size: 12px;
    line-height: 18px;
  }
}

/* 사전정보공표 */
.info_open_wrap .gr_ico_box{
  align-items: center;
}
.info_open_wrap .gr_ico_box::before{
  width: 59px;
  height: 64px;
  background-image: url(../img/sub/ico_gr04.png);
}

/* 모바일 게시판 스크롤 */
@media screen and (max-width:768px) {
 .board_wrap .board_list.type01.scroll {
  overflow:hidden;
  overflow-x: auto;
 }
 .board_wrap .board_list.type01.scroll > table.minw {
  min-width: 768px;
 }
 .board_wrap .board_list.type01.scroll .tr.thead span {
  font-size: 16px;
 }
 .board_wrap .board_list.type01.scroll .tr > td span {
  font-size: 14px;
 }
 .sub_cont .board_wrap .board_list.type01.scroll .tr > td {
  font-size: 14px;
  padding:10px;
 }
 /* .contract_wrap .sub_cont .board_wrap .board_list.type01.scroll .tr > td {
  font-size: 14px;
 }
 .contract_wrap .sub_cont .board_wrap .board_list.type01.scroll .tr > td span {
  font-size: 14px;
 } */
}

/* 안산정보산업진흥센터  - 센터소개 - 인사말 */
.greeting_wrap.ansan .sub_cont.pd_t{
  position: relative;
}
.greeting_wrap.ansan .sub_cont.pd_t::before{
  content:'';
  display: block;
  position: absolute;
  width: 293px;
  aspect-ratio: 293 / 324;
  right: 25px;
  top:60px;
  background: url(../img/sub/ico_ansan_greeting.png) no-repeat center;
}
.greeting_wrap.ansan .sub_cont.pd_t::after{
  display: none;
}
.greeting_wrap.ansan .sub_cont_wrap .sub_cont + .sub_cont{
  padding-right: 0;
}

@media screen and (max-width:1024px) {
  .greeting_wrap.ansan .sub_cont.pd_t::before{
    width: 151px;
    aspect-ratio: 151 / 166;
    right: 0;
    top: auto;
    bottom: -115px;
    background-image: url(../img/sub/ico_ansan_greeting_m.png);
  }
}

@media screen and (max-width:768px) {
  .greeting_wrap.ansan .gr_box {
    padding: 30px 30px 50px;
  }
  .gr_box .gr_text {
    font-size: 16px;
    margin-top: 20px;
  }
  .gr_box .text_big + .text.type01 {
    font-size: 16px;
  }
}

/* 안산정보산업진흥센터  - 센터소개 - 입주안내 */
@media screen and (max-width:768px) {
  .sub_cont_wrap .sub_cont + .sub_cont {
    margin-top: 25px;
  }
  .sub_cont .txt_wp > p {
    font-size: 16px;
  }
}

/* 안산정보산업진흥센터 - 입주기업현황 - 안산정보산업진흥센터 입주기업 */
@media screen and (max-width:768px) {
  .top_srh_wrap  .board_srh_inner{
    flex-direction: column;
  }
  .top_srh_wrap  .input_box select {
    width: 100%;
  }
  .top_srh_wrap  .input_box input[type="text"] {
    flex: 1;
  }
  .top_srh_wrap  .board_srh_inner .input_box button {
    font-size: 14px;
  }
}

/* 경기인터넷데이터센터 */
@media screen and (max-width: 768px) {
  .sub_inner .tab_button-wrap.type02 {
    margin-bottom: 20px;
  }
  .it_data_center_wrap .it_data_info {
    gap: 15px;
  }
  .it_data_center_wrap .it_data_info .bg_box{
    text-align: center;
  }
  .it_data_center_wrap .it_data_info .bg_box .text{
    min-width: 180px;
    display: inline-block;
    text-align: left;
    background-size: 35px;
    padding-left: 50px;
  }
  .it_data_center_wrap .content_box .tit_box{
    font-size: 18px;
  }
  .it_data_center_wrap .service_wrap {
    padding: 30px 20px;
  }
  .it_data_center_wrap .service_wrap ul {
    gap: 35px;
    flex-direction: column;
  }
  .it_data_center_wrap .service_wrap li .s_txt::before {
    width: 137px;
    height: 137px;
    background-size: cover;
    margin: 0 auto 15px;
  }
  .it_data_center_wrap .service_wrap li p.md {
    font-size: 18px;
    line-height: inherit;
  }
  .it_data_center_wrap .service_wrap li p {
    font-size: 16px;
    line-height: 24px;
  }
  .it_data_center_wrap .content_box .sub_tit_box{
    font-size: 16px;
  }
  .sub_cont .it_data_center_wrap .board_wrap .board_list.type01.scroll .tr > td {
    padding: 10px 5px !important
  }
  .sub_cont .it_data_center_wrap .board_wrap .board_list.type01.scroll .tr > td .circle_list li{
    font-size: 14px;
    margin-bottom: 0;
  }
  .it_data_center_wrap .gr_btn_wrap {
    margin-top: 25px;
  }
  .it_data_center_wrap .gr_btn_wrap button {
    min-width: 100%;
    height: 51px;
  }
}

/* 클린신고센터 */
@media screen and (max-width: 1024px) {
  .fk_td .input-box{
    flex-wrap: wrap;
  }
  .formkit .fk_tr .fk_th{
    padding: 0 10px;
  }
  .occu_detail_wrap .formkit .fk_thead .fk_tr .fk_th {
    padding: 30px 35px;
  }
}

@media screen and (max-width: 768px) {
  .formkit_tit p {
    font-size: 18px;
  }
  .formkit .fk_tr .fk_th {
    width: 125px;
  }
  .member_intro_wrap .formkit .fk_tr .fk_th {
    width: 95px;
  }
  .formkit .input-box.call input {
    flex: 1;
  }
  .fk_td .input-box{
    gap: 6px;
  }
  .occu_detail_wrap .formkit .fk_thead .fk_tr .fk_th {
    width: 100%;
  }
  .input-box .zip_code input {
    max-width: 100%;
  }
  .input-box .zip_code{
    flex-direction: column;
    gap: 8px;
  }
  .input-box .zip_code button {
    min-width: 120px;
    height: 35px;
    font-size: 14px;
    padding: 0px 0 0;
  }
  .input-box.address .detail_adr {
    align-items: baseline;
    gap: 5px;
    flex-direction: column;
  }
  .clean_complain_wrap .formkit .select{
    padding: 0 8px;
  }
  .clean_complain_wrap .formkit .default{
    padding: 0 8px;
  }
  .formkit .input-box textarea {
    padding: 5px 8px;
    min-height: 110px;
  }
  .formkit .input-box .con p {
    font-size: 14px;
    line-height: 22px;
  }
  .checkbox label::before {
    width: 18px;
  }
  .checkbox label {
    font-size: 14px;
  }
  .btn_wrap > div.right, .btn_wrap.right, .btn_wrap .center {
    gap: 7px;
  }
  .sub_inner .formkit input[type=radio] {
    width: 16px;
    height: 16px;
  }
  .sub_inner .formkit .radiobox_wrap {
    gap: 7px;
  }
  .formkit .select {
    background-position: center right 10px;
  }
}
/* pciframe화면 */
.sub_content_wrap:has(.iframe_pc) .sub_top {
  display: none;
}
.sub_inner .iframe_m {
  display: none;
}
@media screen and (max-width: 768px) {
  .sub_content_wrap:has(.iframe_pc) .sub_top {
    display: block;
  }
  .sub_inner .iframe_pc {
    display: none;
  }
  .sub_inner .iframe_m {
    display: block;
    background: #f8f9fa;
    padding:30px 15px 45px;
    border-top: 1px solid #000;
  }
  .sub_inner .iframe_m::before {
    content: '';
    display: block;
    margin: 0 auto 15px;
    width: 67px;
    aspect-ratio: 67 / 55;
    background: url(../img/sub/gtppc_ico.png) no-repeat;
  }
  .sub_inner .iframe_m .m_info_txt {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
  }
}

/* 로그인 */
.login_txt_wp{
  margin-bottom: 50px;
}
.login_txt_wp .strong{
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
.login_txt_wp .sub{
  font-size: 20px;
  text-align: center;
  margin-top: 5px;
}
.login_bd_box{
  border: 1px solid #d2d2d2;
}
.login_bd_box .formkit{
  border: none;
  padding: 65px 20px;
}
.login_bd_box .formkit .radiobox_wrap{
  justify-content: center;
  margin-bottom: 50px;
}
.login_bd_box .formkit .radiobox_wrap label{
  line-height: inherit;
}
.entry_wrap{
  display: flex;
  justify-content: center;
  gap: 10px;
}
.entry_wrap .write_wrap{
  max-width: 470px;
  width: 100%;
}
.entry_wrap .btn_wrap button{
  min-width: 104px;
  height: 94px;
  font-size: 20px;
  font-weight: 600;
}
.entry_wrap .ip_box{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.entry_wrap .ip_box label{
  min-width: 60px;
  font-weight: 500;
}
.entry_wrap .ip_box + .ip_box{
  margin-top: 10px;
}
.other_info_box{
  padding: 45px 20px 70px;
  margin-top: -20px;
  border-top: 1px solid #d2d2d2;
}
.other_info_box .circle_list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 40px;
}
.other_info_box .circle_list li{
  display: flex;
  align-items: center;
  gap: 15px;
}
.other_info_box .circle_list li::before{
  top: 18px;
}
.other_info_box .btn_wrap a{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  min-width: 102px;
  font-size: 16px;
  padding-top: 2px;
}
.login_bt_txt{
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.login_bt_txt ul li{
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-left: 15px;
}
.login_bt_txt ul li::before{
  content: '※';
  position: absolute;
  left: 0;
  top: -1px;
}
.login_bt_txt ul li + li{
  margin-top: 10px;
}
.login_bt_txt ul li span{
  font-weight: 500;
}

@media screen and (max-width: 768px){
  .login_txt_wp .strong {
    font-size: 22px;
    line-height: 28px;
  }
  .login_txt_wp .sub {
    font-size: 14px;
  }
  .login_txt_wp {
    margin-bottom: 25px;
  }
  .login_bd_box .formkit {
    padding: 40px 15px;
  }
  .login_bd_box .formkit .radiobox_wrap {
    margin-bottom: 30px;
    gap: 18px;
  }
  .entry_wrap .ip_box label {
    min-width: 50px;
  }
  .entry_wrap {
    gap: 10px;
    flex-direction: column;
  }
  .entry_wrap .write_wrap {
    margin: 0 auto;
  }
  .entry_wrap .btn_wrap{
    justify-content: center;
  }
  .entry_wrap .btn_wrap button {
    min-width: auto;
    max-width: 360px;
    width: 100%;
    margin-left: 70px;
    height: 38px;
    font-size: 14px;
  }
  .other_info_box {
    padding: 25px 25px 40px;
    margin-top: -15px;
  }
  .other_info_box .circle_list{
    flex-direction: column;
    align-items: center;
    gap: 1px;
  }
  .other_info_box .circle_list li {
    gap: 10px;
    font-size: 12px;
    padding-left: 8px;
  }
  .other_info_box .btn_wrap a {
    min-width: 75px;
    font-size: 12px;
    height: 29px;
  }
  .other_info_box .circle_list li:not(:last-of-type){
    margin-bottom: 0;
  }
  .other_info_box .circle_list li::before{
    width: 3px;
    height: 3px;
    top: 12px
  }
  .login_bt_txt {
    margin-top: 20px;
  }
  .login_bt_txt ul li {
    font-size: 14px;
  }
}

/* 아이디,비밀번호 찾기 */
.entry_wrap.type02 .ip_box label{
  min-width: 105px;
}
.plus_txt{
  position: relative;
  padding-left: 14px;
  font-size: 18px;
  margin-top: 15px;
}
.plus_txt::before{
  content: '※';
  position: absolute;
  left: 0;
  top: -1px;
}
.login_bd_box + .text01{
  margin-top: 55px;
}
.plus_txt + .login_bd_box{
  margin-top: 25px;
}
.txt_bl.type02{
  color: #064db0;
}
.contents .entry_wrap.type02:nth-of-type(2){
  display: none;
}
.entry_wrap.type02{
  align-items: center;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.entry_wrap.type02 .btn_wrap{
  width: 100%;
  justify-content: center;
}
.entry_wrap.type02 .btn_wrap button{
  max-width: 345px;
  width: 100%;
  min-width: auto;
  margin-left: 125px;
  height: 50px;
  font-size: 18px;
  font-weight: 400;
}
.entry_wrap .ip_box :is(input,select){
  flex: 1;
  padding: 0 8px;
  background-position: center right 8px;
}
.entry_wrap .input-box.call input{
  max-width: inherit;
}
.formkit .input-box.call input.small{
  max-width: 45px;
}
.write_wrap .info_text{
  font-size: 16px;
  color: #f42d1e;
  margin-left: 125px;
  margin-top: 10px
}

@media screen and (max-width: 768px){
  .login_bd_box + .text01 {
    margin-top: 20px;
  }
  .entry_wrap.type02{
    gap: 10px;
  }
  .entry_wrap.type02 .btn_wrap button {
    max-width: 360px;
    margin-left: 70px;
    height: 38px;
    font-size: 14px;
    margin-left: 100px;
  }
  .formkit .entry_wrap .input-box.call{
    max-width: 360px;
  }
  .entry_wrap.type02 .ip_box label {
    min-width: 80px;
  }
  .entry_wrap .ip_box :is(input,select){
    background-position: center right 5px;
    background-size: 9px 5px;
    padding: 0 5px;
  }
  .plus_txt {
    padding-left: 10px;
    font-size: 14px;
    margin-top: 10px;
  }
  .write_wrap .info_text {
    font-size: 14px;
    margin-left: 105px;
  }
}

/* 이용약관 */
.terms_wrap{
  border: 1px solid #d2d2d2;
  max-height: 280px;
  overflow: auto;
  padding: 25px;
}
.terms_wrap .terms_con{
  white-space: pre-line;
  font-size: 16px;
  line-height: 24px
}
.terms_wrap + .checkbox{
  margin-top: 15px;
}
.terms_wrap + .checkbox label{
  font-size: 16px;
  font-weight: 300;
}
.join_terms_wrap .btn_wrap{
  margin-top: 30px;
}

@media screen and (max-width: 768px){
  .terms_wrap {
    max-height: 215px;
    padding: 15px;
  }
  .terms_wrap .terms_con {
    font-size: 12px;
    line-height: 15px;
  }
  .terms_wrap + .checkbox label {
    font-size: 12px;
  }
  .terms_wrap + .checkbox {
    margin-top: 10px;
  }
  .join_terms_wrap .btn_wrap {
    margin-top: 20px;
  }
}

/* 아이디찾기 */
.id_find_result .gr_bg{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  min-height: 200px;
  padding: 20px;
}
.id_find_result .txt{
  font-size: 20px;
  background: url(../img/sub/ico_monitor.png) no-repeat center top;
  padding-top: 70px;
}
.id_find_result .txt .point{
  color: #0080cc;
}
.id_find_result .btn_wrap{
  margin-top: 45px;
}
.id_find_result .btn_wrap button{
  min-width: 278px;
  height: 50px;
  line-height: 48px;
}

@media screen and (max-width: 768px){
  .id_find_result .gr_bg{
    min-height: 130px;
  }
  .id_find_result .txt{
    font-size: 16px;
    background-size: 44px;
    padding-top: 55px;
  }
  .id_find_result .btn_wrap {
    margin-top: 20px;
  }
  .id_find_result .btn_wrap button {
    min-width: 200px;
    height: 40px;
    line-height: 38px;
  }
}

/* 2025.07.31 esg경영 */
.text_list > li::before{
  content: '';
  background-color: #0080cc;
  width: 64px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.esg_wrap .text_list > li::before{
  content: '하나,';
}
.text_list > li{
  display: flex;
  gap: 20px;
  font-size: 18px;
  align-items: flex-start;
}
.text_list .text{
  padding-top: 21px;
  flex: 1;
  min-width: 0;
}
.text_list > li + li{
  margin-top: 10px;
}
.sign_wrap{
  text-align: center;
}
.sign_wrap .text{
  font-size: 20px;
  color: #4a4a4a;
}
.sign_wrap .text02{
  margin-top: 20px;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width:768px){
  .text_list > li::before{
    width: 42px;
    font-size: 14px;
  }
  .text_list .text{
    padding-top: 13px;
  }
  .text_list > li{
    font-size: 14px;
    gap: 10px;
  }
  .sign_wrap .text{
    font-size: 14px;
  }
  .sign_wrap .text02{
    margin-top: 15px;
    font-size: 16px;
  }
}