* {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
ol {
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
em {
  font-style: normal;
}

html {
  font-size: 62.5%;
  font-family: "Pretendard", sans-serif;
  letter-spacing: -0.1rem;
} /* 1rem = 10px */

.w_100p {
  width: 100%;
}
.w_900 {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.w_1034 {
  max-width: 1034px;
  margin: 0 auto;
  width: 100%;
}
.w_1170 {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
}
.w_1280 {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.w_1357 {
  max-width: 1357px;
  margin: 0 auto;
  width: 100%;
}

.h_100p {
  height: 100%;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
}

.c_blue {
  color: #104899;
}
.c_blue_back {
  background-color: #104899;
}
.c_white {
  color: #fff;
}
.c_lightgray {
  color: #c3c3c3;
}
.c_lightgray_back {
  color: #c3c3c3;
}
.c_gray {
  color: #707070;
}
.c_gray_back {
  color: #707070;
}

.b_grey {
  border: 1px solid #cfcfcf;
}

.f_12px {
  font-size: 1.2rem;
}
.f_14px {
  font-size: 1.4rem;
}
.f_18px {
  font-size: 1.8rem;
}
.f_20px {
  font-size: 2rem;
}
.f_24px {
  font-size: 2.4rem;
}
.f_26px {
  font-size: 2.6rem;
}
.f_28px {
  font-size: 2.8rem;
}
.f_35px {
  font-size: 3.5rem;
  line-height: 4.5rem;
}
.f_48px {
  font-size: 4.8rem;
}
.f_60px {
  font-size: 6rem;
}
.f_72px {
  font-size: 7.2rem;
}
.f_bold {
  font-weight: 800;
}
.f_mid {
  font-weight: 600;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-content-between {
  -ms-flex-pack: space-between !important;
  justify-content: space-between !important;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.m_br {
  display: none;
}
/* header */
/* pc */
header {
  width: 100%;
  position:relative;
  position: fixed;
  z-index: 20;
  top: 0;
}
#pc_header {
  background-color: #ffffff;
  transition: transform 0.3s ease;
  height: 80px;
}
#pc_header .pchd_logo {
  width: 20%;
  height: 80px;
  float: left;
}
#pc_header .pchd_logo a {
  height: 80px;
  position: absolute;
  left: 10rem;
  display: flex;
  align-items: center;
  z-index: 10;
}
#pc_header .pchd_logo a img {
  width: 240px;
  height: auto;
  display: block;
  object-fit: contain;
}
#pc_menu_wrap .w_100p {
  position: relative;
  top: -0.1rem;
  height: 80px;
  border-color: #2e6ac2;
}
/* 260715 기존코드 #pc_menu_wrap .w_1280{text-align: center; position: relative;} */

/* #pc_menu_wrap .pcm_dep1{max-width: 900px; width: 100%; display: flex; position: absolute; z-index: 20; font-size: 2.4rem;} */
#pc_menu_wrap .pcm_dep1 {
  width: 100%;
  max-width: 1034px;
  display: flex;
  position: absolute;
  z-index: 20;
  font-size: 2.4rem;
}
/* 260715 기존코드 #pc_menu_wrap .pcm_dep1 > li{height: 100px; border-bottom: 3px solid transparent; transition: border-bottom 0.3s, color 0.3s;}*/
#pc_menu_wrap .pcm_dep1 > li {
  width: 20%;
  height: 80px;
  border-bottom: 3px solid transparent;
  transition:
    border-bottom 0.3s,
    color 0.3s;
}
/* #pc_menu_wrap .pcm_dep1 > li{width: 100%; height: 100px; border-bottom: 3px solid transparent; transition: border-bottom 0.3s, color 0.3s;} */
#pc_menu_wrap .pcm_dep1 > li.active {
  border-bottom: 3px solid #1688d1;
  color: #1688d1;
  /* background-color: rgb(255, 255, 255); */
}
#pc_menu_wrap .pcm_dep1 > li.active a {
  color: #1688d1;
}
/* 260715 기존코드 #pc_menu_wrap .pcm_dep1 > li > a{line-height: 100px; padding: 0 45px;} */
#pc_menu_wrap .pcm_dep1 > li > a {
  display: block;
  width: 100%;
  line-height: 80px;
  padding: 0;
}
#pc_menu_wrap ul {
  text-align: center;
}
#pc_menu_wrap ul li a {
  color: #333;
}
#pc_menu_wrap .pcm_dep1 li:hover a {
  color: #1688d1;
}
#pc_menu_wrap .pcm_dep2 li a:hover {
  color: #1688d1;
}
#pc_menu_wrap .gnb_sub {
  width: 100%;
  height: 0px;
  background-color: rgb(255, 255, 255); /* 260715 내비게이션 색상변경*/
  position: absolute;
  top: 80px;
  z-index: 10;
  transition: height 0.3s ease-in-out;
  overflow: hidden;
  font-size: 1.7rem;
}
#pc_menu_wrap .gnb_sub .pcm_dep2_wrap {
  display: flex;
  height: 100%;
}
/* #pc_menu_wrap .pcm_dep2{max-width: 900px; width: 100%; padding-top: 40px; border-top: 3px solid transparent; transition: border-top 0.3s, color 0.3s;} */
/* #pc_menu_wrap .pcm_dep2{padding-top: 40px; border-top: 3px solid transparent; transition: border-top 0.3s, color 0.3s;} */

#pc_menu_wrap .pcm_dep2 {
  width: 20%;
  padding-top: 40px;
  border-top: 3px solid transparent;
  box-sizing: border-box;
  transition:
    border-top 0.3s,
    color 0.3s;
}
#pc_menu_wrap .pcm_dep2_wrap {
  display: flex;
  width: 100%;
  max-width: 1034px;
  height: 100%;
}

#pc_menu_wrap .pcm_dep2.active {
  border-top: 3px solid #1688d1;
  color: #1688d1;
  overflow: visible;
  background-color: rgba(255, 255, 255); /* 260715 gnb하단 색상변경*/
}
#pc_menu_wrap .pcm_dep2 li {
  margin-bottom: 1rem;
}

/* .gnb .gnb1, .gnb_sub1{width:18.5rem}
.gnb .gnb2, .gnb_sub2{width:13.6rem}
.gnb .gnb3, .gnb_sub3{width:21.5rem}
.gnb .gnb4, .gnb_sub4{width:19.6rem}
.gnb .gnb5, .gnb_sub5{width:15.1rem}
.gnb .gnb6, .gnb_sub6{width:15.1rem}
 */

#pc_menu_wrap .pcm_dep1 > li {
  width: 20%;
}

/* header mobile */
#mob_header {
  display: none;
  width: 100%;
  margin: 0 auto;
  background-color: rgb(255,255,255);
}
#mob_header .mob_header_wrap {
  position: relative;
}
#mob_header .gnb_btn {
  position: absolute;
  top: 2.2rem;
  left: 1rem;
  width: 3.2rem;
  height: 2.1rem;
  background-image: url(/images/ico_nav_ham.png);
  background-size: cover;
}
#mob_header .logo {
  width: 50%;
  margin: 0 auto;
  padding: 1.2rem 0;
  text-align: center;
}
#mob_header .logo img {
  /* width: 16.9rem; */
  height: 5rem;
  object-fit: contain;
}
.menu_mo {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 600ms;
  z-index: 30;
}
.menu_mo.on {
  left: 0;
  background: url(/images/ico_nav_bg.png);
}
.gnb_close {
  position: absolute;
  top: 2.3rem;
  right: 2.3rem;
  width: 2.2rem;
  height: 2.2rem;
  background-image: url(/images/ico_nav_x.png);
  background-size: cover;
}
.gnb_mo > ul > li {
  background-color: #0b3672;
  border-bottom: 1px solid #325fa0;
}
.gnb_mo li a {
  display: block;
  padding: 1.6rem 3rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2rem;
  color: #fff;
  background-image: url(/images/ico_nav_arr_down.png);
  background-repeat: no-repeat;
  /* background-size: 1.5rem; */
  background-position: center right 2rem;
}
.gnb_mo li a:hover {
  color: #1bcfea;
  background-color: #0a2953;
  background-image: url(/images/ico_nav_arr_down.png);
}
.gnb_mo li a.on {
  color: #1bcfea;
  background-color: #0a2953;
  background-image: url(/images/ico_nav_arr_up.png);
}
.gnb_mo .subGnb {
  display: none;
}
.gnb_mo .subGnb li {
  border-top: 1px solid #325fa0;
  background-color: #041833;
}
.gnb_mo .subGnb li a {
  color: #fff;
  padding-left: 6.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  background-image: url(/images/ico_nav_arr_right.png);
  background-repeat: no-repeat;
  /* background-size: 0.9rem; */
  background-position: center left 4.5rem;
}
.gnb_mo .subGnb li a:hover {
  color: #0b3672;
  background-color: #1bcfea;
  background-image: url(/images/ico_nav_arr_right_on.png);
}

/* footer */
/* pc */
/* #footer{height: 26.8rem !important; background-color: #212529; }
#footer .fp-tableCell{height: 26.8rem !important;}
#footer .foot_wrap .foot{text-align: left;}
#footer .foot_wrap .foot .foot_logo_pc{margin: 4rem 0 2.5rem;}
#footer .foot_wrap .foot .foot_logo_mo{display: none;}
#footer .foot_wrap .foot ul{margin-bottom: 2.5rem;}
#footer .foot_wrap .foot ul li{line-height: 2.2rem; color: #fff;}
#footer .foot_wrap .foot ul li span{color:#ced4da !important; margin-right: 1rem;}
#footer .foot_wrap .foot ul li p{display: inline-block; color: #fff;} */

@media screen and (max-width: 1640px) {
  /* 1640px 헤더 header */
  #pc_header .pchd_logo a img {
    content: url("/images/top_logo.svg");
  }
}
/* ===========================
   footer renewal
=========================== */

#footer {
  width: 100%;
  height: auto !important;
  min-height: auto !important;
  background: #f3f3f3;
  color: #555;
  text-align: left;
}

#footer .fp-tableCell {
  display: block;
  width: 100%;
  height: auto !important;
  vertical-align: top !important;
}

/* ===========================
   협력기관
=========================== */

.partner_wrap {
  width: 100%;
  padding: 26px 0 18px;
  background: #f3f3f3;
  box-sizing: border-box;
}

.partner_inner {
  margin: 0 auto;
  width:100%;
  max-width:1580px;
  display: flex;
  align-items: center;
  height: 76px;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 14px;
  background: #fff;
  box-sizing: border-box;
}

.partner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex: 0 0 120px;
  background: #136db7;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.partner_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f1f1f1;
  color: #666;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.partner_prev {
  margin-left: 12px;
}

.partner_next {
  margin-right: 12px;
}

.partner_list {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
}

.partner_list a {
 display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 calc(100% / 6);   /* 6개만 보임 */
  height: 100%;

  padding: 10px 22px;
  border-left: 1px solid #ededed;
  box-sizing: border-box;
}

.partner_list a:first-child {
  border-left: 0;
}

.partner_list img {
  display: block;
  max-width: 100%;
  max-height: 45px;
  object-fit: contain;
}

/* ===========================
   푸터 정보
=========================== */

.footer_wrap {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 22px 0 38px;
  box-sizing: border-box;
}

.footer_logo {
  flex: 0 0 245px;
  width: 245px;
  padding-top: px;
}

.footer_logo img {
  display: block;
  width: 225px;
  max-width: 100%;
  height: auto;
}

.footer_right {
  flex: 1;
  min-width: 0;
}

.footer_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 18px;
  padding: 0;
  font-size: 18px;
}

.footer_menu li {
  position: relative;
  margin-right: 30px;
}

/* .footer_menu li + li::before {
  content: "";
  position: absolute;
  top: 70%;
  left: -15px;
  width: 1px;
  height: 12px;
  background: #d2d2d2;
  transform: translateY(-50%);
} */

.footer_menu li a {
  color: #444;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.footer_menu li a:hover {
  color: #1688c8;
}

.footer_name {
  margin: 0 0 7px;
  color: #777;
  font-size: 14px;
  line-height: 1.7;
}

.footer_info {
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.9;
}

.footer_info span {
  margin: 0 10px;
  color: #c7c7c7;
}

.copyright {
  margin: 9px 0 0;
  color: #999;
  font-size: 12px;
  line-height: 1.6;
}



/* ===========================
   반응형
=========================== */

@media screen and (max-width: 1200px) {
  .partner_inner,
  .footer_wrap {
    width: calc(100% - 60px);
  }

  .footer_wrap {
    gap: 40px;
  }

  .footer_logo {
    flex-basis: 210px;
    width: 210px;
  }

  .footer_logo img {
    width: 195px;
  }

  .partner_list a {
    padding: 10px 15px;
  }
}

@media screen and (max-width: 768px) {
  .partner_wrap {
    padding: 20px 0 15px;
  }

  .partner_inner,
  .footer_wrap {
    /* width: calc(100% - 32px); */
  }

  .partner_inner {
    height: 65px;
    border-radius: 10px;
  }

  .partner_title {
    flex-basis: 85px;
    font-size: 14px;
  }

  .partner_arrow {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .partner_prev {
    margin-left: 7px;
  }

  .partner_next {
    margin-right: 7px;
  }

  .partner_list {
    overflow-x: auto;
  }

  .partner_list a {
    flex: 0 0 150px;
    padding: 8px 15px;
  }

  .partner_list img {
    max-height: 38px;
  }

  .footer_wrap {
    flex-direction: column;
    gap: 22px;
    padding: 18px 0 30px;
  }

  .footer_logo {
    flex: none;
    width: 100%;
    padding-top: 0;
  }

  .footer_logo img {
    width: 205px;
  }

  .footer_menu {
    margin-bottom: 14px;
  }

  .footer_menu li {
    margin-right: 20px;
  }

  /* .footer_menu li + li::before {
    left: -10px;
  } */

  .footer_menu li a {
    font-size: 13px;
  }

  .footer_name {
    font-size: 13px;
  }

  .footer_info {
    font-size: 12px;
  }

  .footer_info span {
    display: none;
  }

  .copyright {
    font-size: 11px;
  }
}

@media screen and (max-width: 480px) {
  .partner_title {
    flex-basis: 72px;
    font-size: 12px;
  }

  .partner_list a {
    flex-basis: 125px;
  }

  .footer_menu {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 8px;
  }

  .footer_menu li {
    margin-right: 0;
  }

  .footer_menu li + li::before {
    display: none;
  }

  .footer_info {
    max-width: 300px;
  }
}
@media screen and (max-width: 1500px) {
  /* 1500px 헤더 header */
  #pc_header {
    display: none;
  }
  #mob_header {
    display: block;
  }
  #mob_header .mob_back {
    display: none;
  }
}

@media screen and (max-width: 1280px) {
  /* 1280px 헤더 header */
  #pc_header .pchd_logo a img {
    content: url("/images/top_logo.svg");
  }
  /* 1280px 푸터 footer */
  #footer .foot_wrap .foot {
    padding: 0 5rem;
  }
}

@media screen and (max-width: 768px) {
  /* 768px 헤더 header */

  /* 768px 푸터 footer */
  #footer {
    height: 26.3rem !important;
  }
  #footer .fp-tableCell {
    height: 26.3rem !important;
  }
  #footer .foot_wrap .foot {
    padding: 0 2rem;
    padding-top: 3.5rem;
  }
  #footer .foot_wrap .foot .foot_logo_pc {
    display: none;
  }
  #footer .foot_wrap .foot .foot_logo_mo {
    display: block;
    margin: 0 auto;
    padding: 3rem 0;
  }
  #footer .foot_wrap .foot ul {
    margin-bottom: 0rem;
  }

  .m_br {
    display: block;
  }
  .pc_br {
    display: none;
  }
}

body:not(.main) #pc_header {
  background-color: #fff;
}


html,
body,
input,
textarea,
select,
button {
  font-family: "Pretendard", sans-serif !important;
}

/* =========================
   모바일 푸터
========================= */
@media screen and (max-width: 768px) {

  /* 협력기관 */
  #footer .partner_wrap {
    width: 100%;
    padding: 8px 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  #footer .partner_inner {
    display: flex;
    /* width: 100%; */
    padding: 0 10px;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* 제목, 화살표 숨김 */
  #footer .partner_title
  /* #footer .partner_arrow */
  { 
    display: none !important;
  }
/* ========================================
   푸터 협력기관 가로 스크롤바 숨김
======================================== */
.partner_list {
  overflow-x: auto;
  overflow-y: hidden;

  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE, Edge 구버전 */
}

.partner_list::-webkit-scrollbar {
  display: none;              /* Chrome, Safari, Edge */
}
  /* 로고 한 줄 */
  #footer .partner_list {
    display: flex;
    align-items: center;
    gap: 16px;
    /* width: max-content; */
    /* min-width: 100%; */
    white-space: nowrap;
  }

  #footer .partner_list a {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    height: 34px;
  }

  #footer .partner_list img {
    width: auto;
    max-width: 110px;
    height: 28px;
    object-fit: contain;
  }

  /* 푸터 */
  #footer .footer_wrap {
    display: block;
    width: 100% !important;
    max-width: none;
    margin: 0;
    padding: 24px 16px 28px;
    box-sizing: border-box;
  }

  #footer .footer_logo {
    margin-bottom: 18px;
  }

  #footer .footer_logo img {
    width: 210px;
    max-width: 75%;
    height: auto;
  }

  #footer .footer_right {
    width: 100%;
  }

  #footer .footer_menu {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 18px;
    flex-direction: row;
  }

  #footer .footer_menu li {
    position: relative;
    padding: 0 9px;
  }

  #footer .footer_menu li:first-child {
    padding-left: 0;
  }

  /* #footer .footer_menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 11px;
    background: #ddd;
    transform: translateY(-50%);
  } */

  #footer .footer_menu a {
    font-size: 12px;
  }

  #footer .footer_name {
    margin-bottom: 12px;
    font-size: 12px;
  }

  #footer .footer_info {
    font-size: 11px;
    line-height: 1.8;
    word-break: keep-all;
  }

  #footer .copyright {
    margin-top: 12px;
    font-size: 10px;
  }


}

@media screen and (max-width: 768px) {
  #footer {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  #footer .fp-tableCell {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  #footer .footer_wrap {
    height: auto !important;
    overflow: visible !important;
  }
}