@charset "UTF-8";
/* header */
/* =========
color
========= */
/* =========
fonts
========= */
/* =========
미디어쿼리 pc, tablet, mobile 중단점
========= */
/* =========
color
========= */
/* =========
fonts
========= */
/* =========
미디어쿼리 pc, tablet, mobile 중단점
========= */
#header {
  position: relative;
  z-index: 9999;
}

/* 헤더탑 */
.hd_top_wrap {
  background-color: #f7f7f7;
  border-bottom: 1px solid #d6dde6;
  width: 100%;
  position: fixed;
}
.hd_top_wrap .hd_top {
  width: 100%;
  height: 51px;
  justify-content: space-between;
  align-items: center;
}
.hd_top_wrap .top_left ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hd_top_wrap .top_left ul li a {
  font-family: "Pretendard";
  font-size: 0.778rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #333;
  display: flex;
  align-items: center;
}
.hd_top_wrap .top_left ul li a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: #d9d9d9;
  margin-left: 15px;
}
.hd_top_wrap .top_left ul li a:hover {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.hd_top_wrap .top_left ul li:last-child a::after {
  display: none;
}
.hd_top_wrap .top_right {
  display: flex;
  gap: 20px;
}
.hd_top_wrap .top_right .top_logout,
.hd_top_wrap .top_right .top_admin,
.hd_top_wrap .top_right .top_login,
.hd_top_wrap .top_right .top_join {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hd_top_wrap .top_right .top_logout img,
.hd_top_wrap .top_right .top_admin img,
.hd_top_wrap .top_right .top_login img,
.hd_top_wrap .top_right .top_join img {
  width: 14px;
  height: 14px;
}
.hd_top_wrap .top_right a {
  font-family: "Pretendard";
  font-size: 0.778rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #333;
}
.hd_top_wrap .top_right a:hover {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* 메인메뉴 */
#gnb {
  width: 100%;
  position: fixed;
  top: 51px;
  z-index: 9999;
}
#gnb .gnb_wrap {
  display: flex;
  flex: 1 0 0;
  position: relative; /*gnb_2dul 위치 기준점*/
}
#gnb .gnb_wrap > .container {
  justify-content: space-between;
}
#gnb .logo a {
  display: inline-block;
  width: 240px;
  height: 55px;
  background-repeat: no-repeat;
  background-image: url(../img/common/logo.svg);
}
#gnb .logo img {
  -webkit-transition: width 0.5s, height 0.5s, -webkit-transform 0.5s ease-in-out;
  transition: width 0.5s, height 0.5s, transform 0.5s ease-in-out;
}

#gnb:hover {
  background: #fff;
}

/*depth1*/
#gnb_1dul {
  display: flex;
  max-width: 1440px;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
}

.gnb_1dli {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 140px;
}
.gnb_1dli:hover > a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  border-radius: 999px;
  background: #042e6f;
  position: absolute;
  top: 25px;
  left: calc(50% - 4px);
}
.gnb_1dli a.gnb_1da {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 40px 0;
  font-family: "Hakgyoansim-Allimjang";
  font-size: 1.222rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #333;
  position: relative;
  -webkit-transition: justify-content 0.5s, height 0.5s, font-size 0.5s, -webkit-transform 0.5s ease-in-out;
  transition: justify-content 0.5s, height 0.5s, font-size 0.5s, transform 0.5s ease-in-out;
}

/*depth2*/
.gnb_2dul {
  display: none;
}

.gnb_1dli_over .gnb_2dul,
.gnb_1dli_over2 .gnb_2dul {
  display: inherit;
  width: 100%;
  height: auto;
  border-top: 1px solid #d6dde6;
  position: absolute;
  top: 111px;
  left: 0;
  z-index: -1;
  background-color: #fff;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: position 0.5s, -webkit-transform 0.5s ease-in-out;
  transition: position 0.5s, transform 0.5s ease-in-out;
}
.gnb_1dli_over .gnb_2dul > .container,
.gnb_1dli_over2 .gnb_2dul > .container {
  align-items: flex-start;
  justify-content: space-between;
  height: 320px;
}

/*depth2-왼쪽*/
.gnb_2dul_left {
  width: 345px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px 0 50px;
}
.gnb_2dul_left::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: url(../img/common/bg_gnb_dep2.svg);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: left center;
  height: 320px;
  width: 100%;
}

.gnb_1li_name {
  color: #333;
  font-family: "Hakgyoansim-Allimjang";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 42px */
}

.gnb_1li_descript {
  color: #444;
  font-family: "Pretendard";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.54px;
  color: #333;
}

/*depth2-오른쪽*/
.gnb_2dul_right {
  padding: 40px 0 50px;
  height: 100%;
  background: #fff;
}
.gnb_2dul_right .gnb_2dul_box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 25px;
  align-self: stretch;
  padding-left: 40px;
  max-width: 1215px;
  width: 1215px;
  flex: 1 0 0;
}

.gnb_2dli {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  width: calc(33.333% - 17px);
  border-radius: 10px;
  border: 1px solid #d6dde6;
  background-color: #fff;
}
.gnb_2dli::after {
  content: url("../img/common/ico_nav_arrow_dark.svg");
  display: block;
  padding-right: 20px;
}
.gnb_2dli:hover {
  border: 1px solid #005bac;
  background-color: #005bac;
}
.gnb_2dli:hover .gnb_2da {
  color: #fff;
  font-weight: 700;
}
.gnb_2dli:hover::after {
  content: url("../img/common/ico_nav_arrow_light.svg");
}

.gnb_2da {
  display: block;
  width: 100%;
  padding: 10px 20px;
  color: #333;
  font-family: "Pretendard";
  font-weight: 500;
  line-height: 40px;
}

/*gnb_all*/
.gnb_all .gnb_all_btn {
  position: relative;
  display: flex;
  width: 24px;
  height: 24px;
  background: url("../img/common/ico_sitemap.svg") center no-repeat;
  background-size: cover;
  z-index: 9999;
}
.gnb_all .gnb_all_btn:hover {
  opacity: 0.8;
}
.gnb_all .gnb_all_btn.active {
  background: url("../img/common/ico_sitemap_close.svg") center no-repeat !important;
}
.gnb_all .sitemap_wrap {
  width: 100%;
  height: 0%;
  position: fixed;
  visibility: hidden;
  left: 0px;
  top: 0px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, height 0.35s, visibility 0.35s;
  transition: opacity 0.35s, height 0.35s, visibility 0.35s;
  z-index: 9998;
}
.gnb_all .sitemap_wrap.open {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  opacity: 1;
  background: #042e6f;
  visibility: visible;
  overflow-y: scroll;
}
.gnb_all .sitemap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 1440px;
  max-width: 1920px;
  padding: 120px 170px;
}
.gnb_all .sitemap .dep1_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.gnb_all .sitemap .dep1_wrap a {
  font-family: "Pretendard";
  font-size: 1.111rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.6px;
}
.gnb_all .sitemap .dep1_wrap a:hover {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.gnb_all .sitemap .dep1_wrap li.dep1 {
  width: calc(25% - 10px);
  display: flex;
  gap: 40px;
  padding-left: 40px;
}
.gnb_all .sitemap .dep1_wrap li.dep1 .menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 80px;
}
.gnb_all .sitemap .dep1_wrap li.dep1 .menu > a {
  color: #fff;
  font-family: "Hakgyoansim-Allimjang";
  font-size: 1.444rem;
  line-height: normal;
  letter-spacing: -0.78px;
  padding: 20px 0;
}
.gnb_all .sitemap .dep1_wrap li.dep1::after {
  content: "";
  border-right: 1px solid #c2d4e8;
}
.gnb_all .sitemap .dep1_wrap li.dep1:nth-child(5) .menu,
.gnb_all .sitemap .dep1_wrap li.dep1:nth-child(6) .menu,
.gnb_all .sitemap .dep1_wrap li.dep1:nth-child(7) .menu,
.gnb_all .sitemap .dep1_wrap li.dep1:nth-child(8) .menu {
  padding-bottom: 0;
}
.gnb_all .sitemap .dep2_wrap {
  display: flex;
  flex-direction: column;
}
.gnb_all .sitemap .dep2_wrap li.dep2 {
  padding: 15px 0;
  gap: 10px;
  flex: 1 0 0;
}
.gnb_all .sitemap .dep2_wrap li.dep2 > a {
  color: #e6eef7;
  font-weight: 700;
}
.gnb_all .sitemap .dep3_wrap {
  display: flex;
  flex-direction: column;
}
.gnb_all .sitemap .dep3_wrap li.dep3 {
  flex: 1 0 0;
}
.gnb_all .sitemap .dep3_wrap li.dep3 > a {
  color: #c2d4e8;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
}
.gnb_all .sitemap .dep3_wrap li.dep3 > a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #c2d4e8;
}
.gnb_all .mobile_nav {
  display: none;
}

/*풀페이지 2번째 3번째, 푸터 섹션으로 넘어갔을때 헤더변화*/
.fp-viewing-1 #gnb .logo img,
.fp-viewing-2 #gnb .logo img,
.fp-viewing-3 #gnb .logo img {
  width: 220px;
  height: auto;
}
.fp-viewing-1 #gnb .gnb_1dli a.gnb_1da,
.fp-viewing-2 #gnb .gnb_1dli a.gnb_1da,
.fp-viewing-3 #gnb .gnb_1dli a.gnb_1da {
  font-size: 1.111rem;
}
.fp-viewing-1 #gnb .gnb_1dli_over .gnb_2dul,
.fp-viewing-1 #gnb .gnb_1dli_over2 .gnb_2dul,
.fp-viewing-2 #gnb .gnb_1dli_over .gnb_2dul,
.fp-viewing-2 #gnb .gnb_1dli_over2 .gnb_2dul,
.fp-viewing-3 #gnb .gnb_1dli_over .gnb_2dul,
.fp-viewing-3 #gnb .gnb_1dli_over2 .gnb_2dul {
  top: 108px;
}

/* ======== */
/* 미디어쿼리 */
@media (max-width: 1600px) {
  /*depth2-왼쪽*/
  .gnb_2dul_left {
    display: none;
  }
  /*depth2-오른쪽*/
  .gnb_2dul_right {
    width: 100%;
  }
  .gnb_2dul_right .gnb_2dul_box {
    padding-right: 40px;
    max-width: 100%;
    width: 100%;
  }
  /*gnb_all*/
  .gnb_all .sitemap {
    padding: 120px 30px;
  }
}
@media (max-width: 1280px) {
  /* 메인메뉴 */
  #gnb .gnb_wrap {
    padding: 20px 0;
  }
  /*depth1*/
  #gnb_1dul {
    display: none;
  }
  .gnb_all .gnb_all_btn {
    width: 35px;
    height: 35px;
  }
  .gnb_all .gnb_all_btn.active {
    background: url("../img/common/ico_sitemap_close_m.svg") center no-repeat;
    width: 20px;
    height: 20px;
    position: fixed;
    top: 20px;
    right: 20px;
  }
  .gnb_all .sitemap_wrap.open {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    opacity: 1;
    background: #fff;
    visibility: visible;
    overflow-y: initial;
  }
  .gnb_all .sitemap {
    display: none;
  }
  .gnb_all .mobile_nav {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .gnb_all .mobile_nav .moblie_top {
    width: 100%;
    display: flex;
    padding: 15px 20px;
    background: #042e6f;
  }
  .gnb_all .mobile_nav .moblie_top .m_logo {
    width: 160px;
    height: 30px;
  }
  .gnb_all .mobile_nav .mobile_menu {
    padding: 0 20px;
  }
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1 {
    border-bottom: 1px solid #d6dde6;
    width: 100%;
    display: inline-block;
  }
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1 a.dep1_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding: 20px 10px;
    color: #333;
    font-family: "Hakgyoansim-Allimjang";
    font-size: 0.889rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
  }
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1 a.dep1_btn::after {
    content: url("../img/common/ico_arrow_m.svg");
    display: block;
    width: 15px;
    height: 8.33px;
    flex-shrink: 0;
  }
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1 a.dep1_btn.active::after {
    transform: rotate(90deg);
    flex-shrink: 0;
  }
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1 .m_dep2_wrap {
    display: none;
  }
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1 .m_dep2_wrap .m_dep2_ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
  }
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1 .m_dep2_wrap .m_dep2 {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #d6dde6;
    background: #fff;
  }
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1 .m_dep2_wrap .m_dep2 a {
    display: flex;
    padding: 10px 15px;
    justify-content: flex-start;
    align-items: center;
    font-family: "Pretendard";
    font-size: 0.778rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #333;
  }
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1 .m_dep2_wrap .m_dep2:hover, .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1 .m_dep2_wrap .m_dep2:active {
    border: 1px solid #c2d4e8;
    background: #f3f9ff;
  }
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1 .m_dep2_wrap .m_dep2:hover a, .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1 .m_dep2_wrap .m_dep2:active a {
    color: #042e6f;
  }
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1:hover a.dep1_btn,
  .gnb_all .mobile_nav .mobile_menu .m_dep1_wrap .m_dep1:active a.dep1_btn {
    color: var(--Primary-Default, #173c7b);
  }
  .gnb_all .mobile_nav .mobile_user {
    display: flex;
    padding-top: 20px;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .gnb_all .mobile_nav .mobile_user img {
    width: 14px;
    height: 14px;
  }
  .gnb_all .mobile_nav .mobile_user .m_login,
  .gnb_all .mobile_nav .mobile_user .m_join,
  .gnb_all .mobile_nav .mobile_user .m_admin,
  .gnb_all .mobile_nav .mobile_user .m_logout {
    display: flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--Neutral-Border-Default, #e0e0e0);
  }
  .gnb_all .mobile_nav .mobile_user .m_login span,
  .gnb_all .mobile_nav .mobile_user .m_join span,
  .gnb_all .mobile_nav .mobile_user .m_admin span,
  .gnb_all .mobile_nav .mobile_user .m_logout span {
    font-family: "Pretendard";
    font-size: 0.778rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #333;
  }
}
@media (max-width: 767px) {
  #gnb {
    position: initial;
  }
  #gnb .gnb_wrap {
    padding: 10px 0;
  }
  .hd_top_wrap {
    display: none;
  }
  .logo a {
    width: 160px;
    height: 37px;
    background-image: url(../img/common/mobile_logo.png);
  }
  .logo img {
    width: 160px;
  }
}
/* main */
#main .main_wrap .main_con {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main .main_wrap .main_con .container {
  height: 100vh;
}
#main .main_wrap .main_con .con_pg_wrap {
  width: 100%;
  margin-top: 139px;
}
#main .main_wrap .main_con:nth-child(1)::before {
  content: url(" ../img/main/bg_main_visual_left.svg ");
  display: block;
  width: 648px;
  height: 902px;
  position: absolute;
  top: 51px;
  left: 0;
  z-index: -2;
}
#main .main_wrap .main_con:nth-child(1)::after {
  content: url("../img/main/bg_main_visual_right.svg");
  display: block;
  width: 884px;
  height: 822px;
  position: absolute;
  bottom: 1px;
  right: 0;
  z-index: -3;
}
#main .main_wrap .main_con:nth-child(2) {
  position: relative;
}
#main .main_wrap .main_con:nth-child(2)::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #e5f2fe 0%, #e8f9f6 100%);
  position: absolute;
  top: 0;
  z-index: -2;
}
#main .main_wrap .main_con:nth-child(2)::after {
  content: "";
  width: 100%;
  height: calc(100vh - 170px);
  background: url(" ../img/main/bg_main_gallery.svg ") left top no-repeat;
  background-size: cover;
  position: absolute;
  top: 170px;
  z-index: -1;
}
#main .main_wrap .main_con:nth-child(3) {
  background: url(" ../img/main/bg_main_subinstitute.svg ") right 157px top no-repeat;
  background-size: cover;
}

/* SECTION 1*/
.con_pg1 {
  display: flex;
  flex-direction: row;
  gap: 50px;
  /* section1: left (메인배너) */
  /* section1: right (최신글 탭) */
  /* section1 오른쪽 _02 */
}
.con_pg1 .con_pg_left {
  display: flex;
  width: 100%;
  max-width: 860px;
  height: 601px;
  align-self: stretch;
  flex-shrink: 0;
}
.con_pg1 .con_pg_left .main_slider_wrap {
  width: 100%;
  height: max-content;
  position: relative;
}
.con_pg1 .con_pg_left .main_slider_wrap .main_slider .slick-list {
  border: 1px solid #d6dde6;
  border-radius: 30px;
}
.con_pg1 .con_pg_left .main_slider_wrap .main_slider .slick-list .slick-track .slick-slide {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.con_pg1 .con_pg_left .main_slider_wrap .main_slider .slick-list .slick-track img {
  object-fit: cover;
}
.con_pg1 .con_pg_left .main_slider_wrap .btn_wrap {
  display: flex;
  padding: 5px 30px;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 30px 20px 10px 30px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 20px 0 rgba(51, 51, 51, 0.1);
  position: absolute;
  right: 30px;
  bottom: 27px;
  z-index: 1;
}
.con_pg1 .con_pg_left .main_slider_wrap .btn_wrap .counter {
  display: flex;
  padding-right: 5px;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #333;
  font-family: "Pretendard";
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 155.556%;
}
.con_pg1 .con_pg_left .main_slider_wrap .btn_wrap .counter span.now {
  font-weight: 700;
  letter-spacing: -0.54px;
}
.con_pg1 .con_pg_left .main_slider_wrap .btn_wrap .slider_nav {
  display: flex;
  gap: 10px;
}
.con_pg1 .con_pg_left .main_slider_wrap .btn_wrap .slider_nav .btn_prev {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/main/ico_angle_left.svg") center no-repeat;
}
.con_pg1 .con_pg_left .main_slider_wrap .btn_wrap .slider_nav .btn_next {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/main/ico_angle_right.svg") center no-repeat;
}
.con_pg1 .con_pg_left .main_slider_wrap .btn_wrap .slider_nav .arr_btn .btn_pause {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/main/ico_pause.svg") center no-repeat;
  cursor: pointer;
}
.con_pg1 .con_pg_left .main_slider_wrap .btn_wrap .slider_nav .arr_btn .btn_play {
  display: none;
  width: 20px;
  height: 20px;
  background: url("../img/main/ico_play.svg") center no-repeat;
  cursor: pointer;
}
.con_pg1 .con_pg_right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1 0 0;
  align-self: stretch;
}
.con_pg1 .con_pg_right .latest_wrap {
  border-radius: 30px;
  border: 1px solid #c2d4e8;
  background-color: #fff;
  width: 100%;
  display: flex;
  padding: 15px 30px 30px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  position: relative;
}
.con_pg1 .shortcut_wrap {
  width: 100%;
}
.con_pg1 .shortcut_wrap ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.con_pg1 .shortcut_wrap .shortcut_menu {
  width: calc(25% - 5px);
}
.con_pg1 .shortcut_wrap .shortcut_menu a {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
}
.con_pg1 .shortcut_wrap .shortcut_menu .shortcut_icon {
  display: flex;
  width: 100%;
  height: 147.5px;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 30px;
  border: 1px solid #c2d4e8;
  background-color: rgba(255, 255, 255, 0.8);
}
.con_pg1 .shortcut_wrap .shortcut_menu .shortcut_icon .icon_wrap {
  display: flex;
  width: 85px;
  height: 85px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.con_pg1 .shortcut_wrap .shortcut_menu .shortcut_icon .icon_wrap svg {
  filter: drop-shadow(5px 5px 10px rgba(4, 46, 111, 0.25));
}
.con_pg1 .shortcut_wrap .shortcut_menu .shortcut_name {
  font-family: "Hakgyoansim-Allimjang";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #555;
  color: #333;
}
.con_pg1 .shortcut_wrap .shortcut_menu:hover .shortcut_icon {
  border: 5px solid #d6dde6;
}
.con_pg1 .shortcut_wrap .shortcut_menu:hover .shortcut_icon .icon_wrap svg {
  filter: none;
}
.con_pg1 .shortcut_wrap .shortcut_menu:hover .shortcut_name {
  color: #042e6f;
}

/* SECTION 2*/
.con_pg2 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.con_pg2 .con_pg_top {
  display: flex;
  flex-direction: row;
  gap: 30px;
  /* section2: left (행사앨범) */
  /* section2: right (뉴스레터) */
}
.con_pg2 .con_pg_top .con_pg_left {
  width: calc(100% - 410px);
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .latest_image_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .latest_image_top .btn_group {
  display: flex;
  gap: 15px;
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .swiper {
  width: 100%;
  height: 100%;
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .latest_image a {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .latest_image a .image_wrap > img {
  box-shadow: 0 5px 20px 0 rgba(0, 91, 172, 0.15);
  border-radius: 40px 40px 40px 10px;
  height: 320px;
  object-fit: cover;
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .latest_image a .text_wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .latest_image a .text_wrap p {
  font-family: "Pretendard";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.54px;
  color: #333;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .latest_image a .text_wrap span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Pretendard";
  font-size: 0.778rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #333;
  color: #999;
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .latest_image a .text_wrap span::before {
  content: url("../img/main/ico_clock.svg");
  display: inline-block;
  width: 14px;
  height: 14px;
}
.con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .latest_image:hover a .image_wrap > img {
  box-shadow: none;
  border-radius: 40px 40px 40px 40px;
}
.con_pg2 .con_pg_top .con_pg_right {
  flex-shrink: 0;
}
.con_pg2 .con_pg_top .con_pg_right .newsletter_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.con_pg2 .con_pg_top .con_pg_right .newsletter {
  display: flex;
  width: 380px;
  flex-shrink: 0;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-radius: 30px;
  border: 1px solid #d6dde6;
  background: #f4fcff;
}
.con_pg2 .con_pg_top .con_pg_right .newsletter .newsletter_image > img {
  height: 292px;
  object-fit: cover;
  border-radius: 30px;
}
.con_pg2 .con_pg_top .con_pg_right .newsletter .newsletter_link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.con_pg2 .con_pg_top .con_pg_right .newsletter .newsletter_link a {
  width: calc(50% - 5px);
  text-align: center;
  font-family: "Hakgyoansim-Allimjang";
  font-size: 0.889rem; /*16px*/
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  display: flex;
  padding: 10px 5px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  border-radius: 10px;
  border: 1px solid #d6dde6;
  background: #fff;
}
.con_pg2 .con_pg_top .con_pg_right .newsletter .newsletter_link a:first-child {
  color: #006da3;
}
.con_pg2 .con_pg_top .con_pg_right .newsletter .newsletter_link a:first-child:hover {
  background: #2fa6e0;
  color: #fff;
}
.con_pg2 .con_pg_top .con_pg_right .newsletter .newsletter_link a:last-child {
  color: #0c3c96;
}
.con_pg2 .con_pg_top .con_pg_right .newsletter .newsletter_link a:last-child:hover {
  background: #042e6f;
  color: #fff;
}
.con_pg2 .con_pg_top .con_pg_right .newsletter_label {
  display: flex;
  width: 110px;
  height: 110px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: #fff solid 2px;
  background: rgba(0, 152, 207, 0.8);
  box-shadow: 0 4px 20px 0 rgba(51, 51, 51, 0.1);
  backdrop-filter: blur(2.5px);
  position: absolute;
  right: -1px;
  top: 28.5px;
}
.con_pg2 .con_pg_top .con_pg_right .newsletter_label p {
  color: var(--Neutral-50, #fff);
  text-align: center;
  font-family: "Hakgyoansim-Allimjang";
  font-size: 1rem; /*18px*/
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}
.con_pg2 .con_pg_top .con_pg_right .newsletter_label p > span {
  display: block;
  font-size: 1.111rem; /*20px*/
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info {
  width: calc(33.3% - 6.66px);
  border-radius: 65px;
  border: 1px solid #d6dde6;
  background: #fff;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info a {
  display: flex;
  padding: 20px 40px;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info a::before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background-position: center;
  background-size: inherit;
  background-repeat: no-repeat;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info a::after {
  content: url("../img/main/ico_arrow_gray.svg");
  display: block;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info a .text_box {
  flex-grow: 1;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info a p {
  font-family: "Hakgyoansim-Allimjang";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #555;
  color: #333;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info a span {
  font-family: "Pretendard";
  font-size: 0.889rem;
  font-style: normal;
  line-height: 160%;
  letter-spacing: -0.48px;
  font-weight: 400;
  color: #333;
  color: #64748b;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:nth-child(1) a::before {
  background-image: url("../img/main/ico_chart_histogram_01.svg");
  background-color: #2fa6e0;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:nth-child(1):hover a p {
  color: #2fa6e0;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:nth-child(1):hover a::after {
  content: url("../img/main/ico_arrow_cyan.svg");
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:nth-child(2) a::before {
  background-image: url("../img/main/ico_chart_histogram_02.svg");
  background-color: #005bac;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:nth-child(2):hover a p {
  color: #005bac;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:nth-child(2):hover a::after {
  content: url("../img/main/ico_arrow_deep.svg");
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:nth-child(3) a::before {
  background-image: url("../img/main/ico_chart_histogram_03.svg");
  background-color: #042e6f;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:nth-child(3):hover a p {
  color: #042e6f;
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:nth-child(3):hover a::after {
  content: url("../img/main/ico_arrow_prim.svg");
}
.con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:hover a p {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* SECTION 3*/
.con_pg3 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  flex: 1 0 0;
  /* section3: top (산하기관바로가기) */
  /* section3: bottom (신고센터) */
}
.con_pg3 .con_pg_top .subinstitute_wrap {
  display: flex;
  padding-right: 580px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  position: relative;
}
.con_pg3 .con_pg_top .subinstitute {
  width: 100%;
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 5px 20px 0 rgba(0, 91, 172, 0.25);
}
.con_pg3 .con_pg_top .subinstitute .swiper {
  width: 100%;
  height: 100%;
}
.con_pg3 .con_pg_top .subinstitute .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.con_pg3 .con_pg_top .subinstitute .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.con_pg3 .con_pg_top .subinstitute .subinstitute_list {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1 0 0;
  position: relative;
}
.con_pg3 .con_pg_top .subinstitute .subinstitute_list .subinstitute_image > img {
  border-radius: 30px;
  height: 240px;
  object-fit: cover;
}
.con_pg3 .con_pg_top .subinstitute .subinstitute_list .subinstitute_text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.con_pg3 .con_pg_top .subinstitute .subinstitute_list .subinstitute_text p {
  font-family: "Hakgyoansim-Allimjang";
  font-size: 1.222rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #333;
}
.con_pg3 .con_pg_top .subinstitute .subinstitute_list .subinstitute_text ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.con_pg3 .con_pg_top .subinstitute .subinstitute_list .subinstitute_text ul li {
  font-family: "Pretendard";
  font-size: 0.889rem;
  font-style: normal;
  line-height: 160%;
  letter-spacing: -0.48px;
  font-weight: 400;
  color: #333;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
}
.con_pg3 .con_pg_top .subinstitute .subinstitute_list .subinstitute_text ul li span {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: flex-start;
  border-radius: 10px;
  background: #eee;
  flex-shrink: 0;
  font-family: "Pretendard";
  font-size: 0.889rem;
  font-style: normal;
  line-height: 160%;
  letter-spacing: -0.48px;
  font-weight: 400;
  color: #333;
  font-weight: 600;
}
.con_pg3 .con_pg_top .btn_group {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  right: 610px;
  top: 32px;
}
.con_pg3 .con_pg_bottom .shortcut_rep_center ul {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}
.con_pg3 .con_pg_bottom .shortcut_rep_center ul li {
  width: calc(25% - 10px);
}
.con_pg3 .con_pg_bottom .shortcut_rep_center ul li a {
  display: flex;
  padding: 20px 30px;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 5px 20px 0 rgba(0, 91, 172, 0.15);
  border: rgba(255, 255, 255, 0) solid 1px;
}
.con_pg3 .con_pg_bottom .shortcut_rep_center ul li a::after {
  content: "";
  display: block;
  width: 85px;
  height: 85px;
  background-position: center;
  background-repeat: no-repeat;
}
.con_pg3 .con_pg_bottom .shortcut_rep_center ul li a p {
  font-family: "Hakgyoansim-Allimjang";
  font-size: 1.222rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #333;
  color: #222;
}
.con_pg3 .con_pg_bottom .shortcut_rep_center ul li a p span.br1 {
  display: none;
}
.con_pg3 .con_pg_bottom .shortcut_rep_center ul li a p span.br2 {
  display: none;
}
.con_pg3 .con_pg_bottom .shortcut_rep_center ul li:nth-child(1) a::after {
  background-image: url("../img/main/ico_cleanportal.svg");
}
.con_pg3 .con_pg_bottom .shortcut_rep_center ul li:nth-child(2) a::after {
  background-image: url("../img/main/ico_cleancenter.svg");
}
.con_pg3 .con_pg_bottom .shortcut_rep_center ul li:nth-child(3) a::after {
  background-image: url("../img/main/ico_violence.svg");
}
.con_pg3 .con_pg_bottom .shortcut_rep_center ul li:nth-child(4) a::after {
  background-image: url("../img/main/ico_corruption.svg");
}
.con_pg3 .con_pg_bottom .shortcut_rep_center ul li:hover a {
  color: #005bac;
  border: #005bac solid 1px;
}

/* 미디어쿼리 */
@media (max-width: 1440px) {
  /* SECTION 1*/
  .con_pg1 {
    gap: 40px;
    /* section1: left (메인배너) */
  }
  .con_pg1 .con_pg_left {
    width: 100%;
    max-width: 50%;
    height: auto;
  }
  .con_pg1 .con_pg_left {
    gap: 30px;
  }
}
@media (max-width: 1280px) {
  #main .main_wrap .main_con {
    height: auto !important;
  }
  #main .main_wrap .main_con .fp-tableCell {
    display: flex;
    height: auto !important;
  }
  #main .main_wrap .main_con .container {
    height: auto;
  }
  #main .main_wrap .main_con .con_pg2,
  #main .main_wrap .main_con .con_pg3 {
    margin-top: 0;
  }
  #main .main_wrap .main_con:nth-child(2)::after {
    content: none;
  }
  #main .main_wrap .main_con:nth-child(3) {
    background: url(" ../img/main/bg_main_subinstitute.svg ") right top no-repeat;
    background-size: cover;
  }
  .con_pg1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0 80px 0;
    /* section1: left (메인배너) */
  }
  .con_pg1 .con_pg_left {
    width: 100%;
    max-width: 100%;
    height: auto;
    gap: 40px;
    justify-content: center;
  }
  .con_pg1 .con_pg_left .main_slider_wrap {
    width: 1000px;
  }
  .con_pg1 .con_pg_left .main_slider_wrap .main_slider .slick-list .slick-track {
    height: 601px;
  }
  .con_pg1 .con_pg_left .main_slider_wrap .main_slider .slick-list .slick-track img {
    width: 100%;
    height: 100%;
  }
  .con_pg2 {
    display: flex;
    align-items: flex-start;
    padding: 70px 0;
    align-self: stretch;
  }
  .con_pg2 .con_pg_top {
    width: 100%;
  }
  .con_pg2 .con_pg_bottom {
    width: 100%;
  }
  .con_pg2 .con_pg_bottom .shortcut_info_wrap ul {
    flex-direction: column;
  }
  .con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info {
    width: 100%;
  }
  .con_pg3 {
    padding: 80px 0;
  }
  .con_pg3 .con_pg_top .subinstitute_wrap {
    padding-right: 235px;
  }
  .con_pg3 .con_pg_top .btn_group {
    right: 311px;
    top: 20px;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul {
    gap: 20px;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul li a {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 25px;
    gap: 5px;
    flex: 1 0 0;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul li a p {
    font-size: 1.111rem;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul li a p span.br2 {
    display: inline;
  }
}
@media (max-width: 1023px) {
  .con_pg1 {
    /* section1: left (메인배너) */
  }
  .con_pg1 .con_pg_left .main_slider_wrap {
    width: 100%;
  }
  .con_pg1 .con_pg_left .main_slider_wrap .main_slider .slick-list .slick-track {
    height: 530px;
  }
  .con_pg3 .con_pg_top .subinstitute_wrap {
    padding-right: 0;
  }
  .con_pg3 .con_pg_top .btn_group {
    right: 54px;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul {
    gap: 20px;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul li a {
    align-items: center;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul li a p {
    font-size: 1rem;
    align-items: center;
    text-align: center;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul li a p span.br1 {
    display: inline;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul li a p span.br2 {
    display: none;
  }
}
@media (max-width: 767px) {
  #main .main_wrap .main_con .con_pg_wrap {
    margin-top: 0;
  }
  #main .main_wrap .main_con:nth-child(1) {
    overflow: hidden;
  }
  #main .main_wrap .main_con:nth-child(1)::before {
    width: 100%;
  }
  #main .main_wrap .main_con:nth-child(1)::after {
    width: 100%;
  }
  #main .main_wrap .main_con:nth-child(3) {
    background-size: contain;
  }
  .con_pg1 {
    padding: 20px 0 60px 0;
    /* section1: left (메인배너) */
  }
  .con_pg1 .con_pg_left .main_slider_wrap {
    width: 100%;
  }
  .con_pg1 .con_pg_left .main_slider_wrap .main_slider .slick-list .slick-track {
    height: 300px;
  }
  .con_pg1 .con_pg_left .main_slider_wrap .btn_wrap {
    padding: 5px 20px;
    height: 38px;
    right: 14px;
    bottom: 12px;
  }
  .con_pg1 .con_pg_left .main_slider_wrap .btn_wrap .counter {
    font-size: 0.778rem;
  }
  .con_pg1 .con_pg_left .main_slider_wrap .btn_wrap .slider_nav .btn_prev {
    width: 14px;
    height: 14px;
    background-size: contain;
  }
  .con_pg1 .con_pg_left .main_slider_wrap .btn_wrap .slider_nav .btn_next {
    width: 14px;
    height: 14px;
    background-size: contain;
  }
  .con_pg1 .con_pg_left .main_slider_wrap .btn_wrap .slider_nav .arr_btn .btn_pause {
    width: 14px;
    height: 14px;
    background-size: contain;
  }
  .con_pg1 .con_pg_left .main_slider_wrap .btn_wrap .slider_nav .arr_btn .btn_play {
    width: 14px;
    height: 14px;
    background-size: contain;
  }
  .con_pg1 .con_pg_right .latest_wrap {
    padding: 15px 15px 20px 15px;
    border-radius: 20px;
  }
  .con_pg1 .con_pg_right .latest_wrap .content > div {
    display: flex;
    gap: 15px;
    flex-direction: column;
  }
  .con_pg1 .con_pg_right .latest_wrap .latest_subject {
    gap: 8px;
  }
  .con_pg1 .con_pg_right .latest_wrap .latest_subject .subject_first {
    gap: 15px;
    padding-bottom: 7px;
  }
  .con_pg1 .con_pg_right .latest_wrap .latest_subject .subject_first p {
    width: 55px;
    height: 55px;
    font-size: 0.556rem;
  }
  .con_pg1 .con_pg_right .latest_wrap .latest_subject .subject_first p span.day {
    font-size: 1.333rem;
  }
  .con_pg1 .con_pg_right .latest_wrap .latest_subject .subject_first a {
    height: 45px;
    font-size: 0.889rem;
    flex: 1 0 0;
  }
  .con_pg1 .con_pg_right .latest_wrap .latest_subject .subject_normal a {
    font-size: 0.778rem;
  }
  .con_pg1 .con_pg_right .latest_wrap .latest_subject .subject_normal span.date {
    display: none;
  }
  .con_pg2 {
    padding: 70px 20px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .con_pg2 .con_pg_top {
    flex-direction: column;
  }
  .con_pg2 .con_pg_top .con_pg_left {
    width: 100%;
  }
  .con_pg2 .con_pg_top .con_pg_left .latest_image_wrap {
    gap: 10px;
  }
  .con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .latest_image_top .btn_group {
    gap: 10px;
  }
  .con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .latest_image a {
    gap: 10px;
  }
  .con_pg2 .con_pg_top .con_pg_left .latest_image_wrap .latest_image a .image_wrap > img {
    height: 260px;
  }
  .con_pg2 .con_pg_top .con_pg_right .newsletter_wrap {
    gap: 10px;
  }
  .con_pg2 .con_pg_top .con_pg_right .newsletter {
    width: 100%;
  }
  .con_pg2 .con_pg_top .con_pg_right .newsletter .newsletter_link a {
    font-size: 0.778rem;
  }
  .con_pg2 .con_pg_top .con_pg_right .newsletter_label {
    width: 90px;
    height: 90px;
  }
  .con_pg2 .con_pg_top .con_pg_right .newsletter_label p {
    font-size: 0.889rem;
  }
  .con_pg2 .con_pg_top .con_pg_right .newsletter_label p > span {
    font-size: 1rem;
  }
  .con_pg2 .con_pg_bottom .shortcut_info_wrap ul {
    gap: 15px;
  }
  .con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info a::after {
    content: none;
  }
  .con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:nth-child(1):hover a::after {
    content: none;
  }
  .con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:nth-child(2):hover a::after {
    content: none;
  }
  .con_pg2 .con_pg_bottom .shortcut_info_wrap .shortcut_info:nth-child(3):hover a::after {
    content: none;
  }
  .con_pg3 {
    padding: 60px 0;
  }
  .con_pg3 .con_pg_top .subinstitute_wrap {
    align-items: center;
    gap: 80px;
  }
  .con_pg3 .con_pg_top .subinstitute_wrap .subinstitute {
    padding: 20px;
  }
  .con_pg3 .con_pg_top .subinstitute_wrap .subinstitute .subinstitute_list .subinstitute_text p {
    font-size: 1.111rem;
  }
  .con_pg3 .con_pg_top .subinstitute_wrap .subinstitute .subinstitute_list .subinstitute_text ul li {
    font-size: 0.778rem;
  }
  .con_pg3 .con_pg_top .subinstitute_wrap .subinstitute .subinstitute_list .subinstitute_text ul li span {
    font-size: 0.889rem;
  }
  .con_pg3 .con_pg_top .subinstitute_wrap .btn_group {
    top: 50px;
    left: calc(50% - 75px);
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul {
    flex-direction: column;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul li {
    width: 100%;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul li a {
    flex-direction: row;
    justify-content: space-between;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul li a::after {
    width: 65px;
    height: 65px;
  }
  .con_pg3 .con_pg_bottom .shortcut_rep_center ul li a p {
    text-align: left;
  }
}
.main_tab {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main_tab_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.main_tab_btn {
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 15px 0;
  font-family: "Hakgyoansim-Allimjang";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #555;
  cursor: pointer;
  background: none;
}

.main_tab_btn::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
}

.main_tab_btn:nth-child(1)::before {
  content: url("../img/main/ico_notice.svg");
}

.main_tab_btn:nth-child(2)::before {
  content: url("../img/main/ico_recruit.svg");
}

.main_tab_btn:nth-child(3)::before {
  content: url("../img/main/ico_news.svg");
}

.main_tab_btn:nth-child(4)::before {
  content: url("../img/main/ico_library.svg");
}

.main_tab_btn.is-active {
  color: #005bac;
}

.main_tab_btn:nth-child(1).is-active::before {
  content: url("../img/main/ico_notice_on.svg");
}

.main_tab_btn:nth-child(2).is-active::before {
  content: url("../img/main/ico_recruit_on.svg");
}

.main_tab_btn:nth-child(3).is-active::before {
  content: url("../img/main/ico_news_on.svg");
}

.main_tab_btn:nth-child(4).is-active::before {
  content: url("../img/main/ico_library_on.svg");
}

.main_tab_panel {
  clear: both;
}

.latest_subject {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}

.subject_first {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 3px;
}
.subject_first p {
  display: flex;
  width: 85px;
  height: 85px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 3px;
  color: #333;
  font-family: "Pretendard";
  font-size: 0.667rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 10px;
  border: #2fa6e0 solid 3px;
  background-color: #fff;
}
.subject_first p span.day {
  display: block;
  font-family: "Hakgyoansim-Allimjang";
  font-size: 1.889rem;
  line-height: 117.647%;
}
.subject_first a {
  font-family: "Hakgyoansim-Allimjang";
  font-size: 1.222rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #333;
  height: 61px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: keep-all;
}

.subject_first:hover a {
  color: #005bac;
}

.subject_normal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  align-self: stretch;
}
.subject_normal a {
  font-family: "Pretendard";
  font-size: 0.889rem;
  font-style: normal;
  line-height: 160%;
  letter-spacing: -0.48px;
  font-weight: 400;
  color: #333;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
.subject_normal a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background-color: #64748b;
}
.subject_normal span.date {
  font-family: "Pretendard";
  font-size: 0.778rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #333;
  font-weight: 400;
  color: #64748b;
}

.subject_normal:hover a {
  font-weight: 700;
}
.subject_normal:hover a::after {
  content: "";
  width: 100%;
  height: 10px;
  background-color: rgba(66, 193, 255, 0.2);
  position: absolute;
  left: 15px;
  top: 16px;
}

@media (max-width: 767px) {
  .main_tab_list {
    flex-wrap: nowrap;
    border: 1px solid #d6dde6;
    border-radius: 10px;
    overflow-x: scroll;
  }
  .main_tab_btn {
    width: 25%;
    min-width: 130px;
  }
  .main_tab_panel.is-active {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
/* 메인페이지 section1 더보기 버튼*/
.m_btn_plus_ex {
  width: 65px;
  height: 65px;
  border-radius: 0 30px 0 20px;
  background-color: #042e6f;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}
.m_btn_plus_ex > img {
  width: 16px;
  height: 16px;
}
.m_btn_plus_ex:hover > img {
  -webkit-animation: rotate-center 0.7s ease-in-out both;
  animation: rotate-center 0.7s ease-in-out both;
}

.m_btn_plus_ex_mobile {
  display: none;
}

/* 메인페이지 section2 더보기 버튼 */
.m_btn_mid_left {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 999px;
  background: url("../img/main/ico_btn_arrow_left.svg") center no-repeat, #005bac;
}
.m_btn_mid_left:hover {
  background: url("../img/main/ico_btn_arrow_left_on.svg") center no-repeat, #fff;
  border: #005bac solid 3px;
}

.m_btn_mid_right {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 999px;
  background: url("../img/main/ico_btn_arrow_right.svg") center no-repeat, #005bac;
}
.m_btn_mid_right:hover {
  background: url("../img/main/ico_btn_arrow_right_on.svg") center no-repeat, #fff;
  border: #005bac solid 3px;
}

.m_btn_mid_plus {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 999px;
  background: url("../img/main/ico_btn_plus.svg") center no-repeat, #042e6f;
}
.m_btn_mid_plus:hover {
  -webkit-animation: rotate-center 0.7s ease-in-out both;
  animation: rotate-center 0.7s ease-in-out both;
}

/* 메인페이지 section3 더보기 버튼 */
.m_btn_la_left {
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 999px;
  background: url("../img/main/ico_btn_arrow_left.svg") center no-repeat, #005bac;
  box-shadow: 3px 4px 5px 0 rgba(0, 0, 0, 0.15);
}
.m_btn_la_left:hover {
  background: url("../img/main/ico_btn_arrow_left_on.svg") center no-repeat, #fff;
  border: #005bac solid 3px;
}

.m_btn_la_right {
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 999px;
  background: url("../img/main/ico_btn_arrow_right.svg") center no-repeat, #005bac;
  box-shadow: 3px 4px 5px 0 rgba(0, 0, 0, 0.15);
}
.m_btn_la_right:hover {
  background: url("../img/main/ico_btn_arrow_right_on.svg") center no-repeat, #fff;
  border: #005bac solid 3px;
}

.m_btn_la_plus {
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 999px;
  background-color: #042e6f;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 3px 4px 5px 0 rgba(0, 0, 0, 0.15);
}
.m_btn_la_plus > img {
  width: 18px;
  height: 19px;
}
.m_btn_la_plus:hover > img {
  -webkit-animation: rotate-center 0.7s ease-in-out both;
  animation: rotate-center 0.7s ease-in-out both;
}

.m_btn_sub_shortcut {
  display: flex;
  width: 90px;
  height: 90px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 999px;
  border: #fff solid 2px;
  background: #2fa6e0;
  box-shadow: 0 4px 20px 0 rgba(51, 51, 51, 0.1);
  backdrop-filter: blur(2.5px);
  position: absolute;
  right: 0.5px;
  top: 195px;
}
.m_btn_sub_shortcut > span {
  color: #fff;
  text-align: center;
  font-family: "Hakgyoansim-Allimjang";
  font-size: 0.889rem; /*16px*/
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}
.m_btn_sub_shortcut:hover {
  border: 1px solid #2fa6e0;
  background: #fff;
}
.m_btn_sub_shortcut:hover > span {
  color: #2fa6e0;
}

@media (max-width: 767px) {
  /* 메인페이지 section1 더보기 버튼*/
  .m_btn_plus_ex {
    display: none;
  }
  .m_btn_plus_ex_mobile {
    display: flex;
    padding: 5px 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: #042e6f;
    color: #fff;
    font-family: "Hakgyoansim-Allimjang";
    font-size: 0.778rem; /*14px*/
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    height: 30px;
  }
  .m_btn_plus_ex_mobile::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: url(../img/main/ico_btn_plus.svg) center no-repeat;
    background-size: contain;
  }
  /* 메인페이지 section2 더보기 버튼 */
  .m_btn_mid_left {
    width: 30px;
    height: 30px;
    background-size: 7px 14px;
  }
  .m_btn_mid_right {
    width: 30px;
    height: 30px;
    background-size: 7px 14px;
  }
  .m_btn_mid_plus {
    width: 30px;
    height: 30px;
    background-size: 16px 17px;
  }
  /* 메인페이지 section3 더보기 버튼 */
  .m_btn_la_left {
    width: 40px;
    height: 40px;
  }
  .m_btn_la_right {
    width: 40px;
    height: 40px;
  }
  .m_btn_la_plus {
    width: 40px;
    height: 40px;
  }
  .m_btn_sub_shortcut {
    width: 80px;
    height: 80px;
    right: 0.5px;
    top: 195px;
  }
  .m_btn_sub_shortcut > span {
    font-size: 0.778rem; /*14px*/
  }
}
/* footer */
/* =========
color
========= */
/* =========
fonts
========= */
/* =========
미디어쿼리 pc, tablet, mobile 중단점
========= */
.footer_wrap .footer_top {
  background-color: #021c45;
}
.footer_wrap .footer_top .ft_top_link {
  padding: 5px 0;
  align-items: center;
}
.footer_wrap .footer_top .ft_top_link ul {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.footer_wrap .footer_top .ft_top_link ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.footer_wrap .footer_top .ft_top_link ul li::after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  border-right: 1px solid #fff;
  opacity: 0.8;
}
.footer_wrap .footer_top .ft_top_link ul li:last-child::after {
  content: none;
}
.footer_wrap .footer_top .ft_top_link ul li a {
  padding: 8px 10px;
  font-family: "Pretendard";
  font-size: 0.778rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #333;
  color: #ddd;
}
.footer_wrap .footer_bottom {
  background-color: #f3f9ff;
}
.footer_wrap .footer_bottom > .container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer_wrap .footer_bottom .ft_bottom_left {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
  flex: 1 0 0;
}
.footer_wrap .footer_bottom .ft_text .address {
  font-family: "Pretendard";
  font-size: 0.778rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #333;
  color: #000;
}
.footer_wrap .footer_bottom .ft_text .address span {
  display: inline-block;
  padding-left: 10px;
}
.footer_wrap .footer_bottom .ft_text .copyright {
  font-family: "Pretendard";
  font-size: 0.778rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #333;
  color: #999;
}
.footer_wrap .footer_bottom .ft_bottom_right .relsite_wrap {
  position: relative;
  display: inline-block;
}
.footer_wrap .footer_bottom .ft_bottom_right .btn_relsite_link {
  width: 245px;
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  border: 1px solid #d6dde6;
  font-family: "Pretendard";
  font-size: 0.889rem;
  font-style: normal;
  line-height: 160%;
  letter-spacing: -0.48px;
  font-weight: 400;
  color: #333;
  font-weight: 600;
}
.footer_wrap .footer_bottom .ft_bottom_right .btn_relsite_link::after {
  content: url("../img/common/ico_foot_arrow_up.svg");
}
.footer_wrap .footer_bottom .ft_bottom_right .relsite_list {
  /*display: none;*/
  position: absolute;
  bottom: 55px;
  background: #f7f7f7;
  border: 1px solid #d6dde6;
  width: 245px;
  border-radius: 10px;
  z-index: 1;
}
.footer_wrap .footer_bottom .ft_bottom_right .relsite_list a {
  font-family: "Pretendard";
  font-size: 0.889rem;
  font-style: normal;
  line-height: 160%;
  letter-spacing: -0.48px;
  font-weight: 400;
  color: #333;
  border-top: 1px solid #d6dde6;
  padding: 15px 20px;
  display: block;
}
.footer_wrap .footer_bottom .ft_bottom_right .relsite_list a:first-child {
  border-top: 0px;
}
.footer_wrap .footer_bottom .ft_bottom_right .relsite_list a:hover {
  background-color: #f7f7f7;
  color: #005bac;
  font-weight: 600;
}

/* 미디어쿼리 */
@media (max-width: 1023px) {
  .footer_wrap .container {
    justify-content: center;
  }
  .footer_wrap .footer_bottom > .container {
    flex-direction: column;
    gap: 20px;
  }
  .footer_wrap .footer_bottom .ft_bottom_left {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer_wrap .footer_bottom .ft_bottom_left .ft_text p {
    text-align: center;
  }
}