@charset "utf-8";

html {
  scroll-behavior: smooth;
}
body {
  font-size: 100%;
  background-color: #fff;
  font-family: "Noto Sans KR", sans-serif;
}
body.on {
  overflow: hidden;
}
* {
  color: #000;
  box-sizing: border-box;
  letter-spacing: -0.03em;
}
img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

:root {
  --f100: "Pretendard-ExtraLight";
  --f200: "Pretendard-Thin";
  --f300: "Pretendard-Light";
  --f400: "Pretendard-Regular";
  --f500: "Pretendard-Medium";
  --f600: "Pretendard-SemiBold";
  --f700: "Pretendard-Bold";
  --f800: "Pretendard-ExtraBold";
  --f900: "Pretendard-Black";

  --color: #1e3d86;
}

/* 헤더 영역 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  background-color: #fff;
  transition: 0.4s;
}
.header .inner {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  position: relative;
  width: 180px;
  height: 31px;
  background: url(/image/logo.png) no-repeat;
  background-size: cover;
  transition: 0.4s;
  z-index: 10;
}
.header .logo a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 0;
  text-indent: -9999px;
}
.header .gnb > ul {
  display: flex;
}
.header .gnb > ul > li > a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-family: var(--f600);
  font-size: 18px;
  color: #000;
  padding: 0 45px;
  line-height: 140px;
  transition: 0.4s;
}
.header .gnb > ul > li > .sub_depth {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 130px 0;
}
.header .gnb > ul > li > .sub_depth > li {
  display: flex;
}
.header .gnb > ul > li > .sub_depth > li > .left {
  position: relative;
  z-index: 10;
  width: 550px;
  background-color: #233b8f;
  padding-left: 210px;
  padding-top: 50px;
  padding-bottom: 100px;
}
.header .gnb > ul > li > .sub_depth > li > .left > span {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  font-family: var(--f400);
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #fff;
  opacity: 0.3;
  margin-bottom: 45px;
  cursor: pointer;
  transition: 0.3s;
}
.header .gnb > ul > li > .sub_depth > li > .left > span i {
  position: relative;
  top: -4px;
  font-size: 20px;
  opacity: 0;
  transition: 0.3s;
}
.header .gnb > ul > li > .sub_depth > li > .left > span:last-of-type {
  margin-bottom: 0;
}
.header .gnb > ul > li > .sub_depth > li > .right {
  position: relative;
  width: calc(100% - 550px);
  padding: 50px; /*padding: 50px 210px 80px 100px;*/
  overflow: hidden;
  background-color: #f0f0f0;
  border-radius: 0 0 130px 0;
}
.header .gnb > ul > li > .sub_depth > li > .right::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  right: 150px;
  width: 430px;
  height: 72px;
  background: url(/image/nav_bg.png) no-repeat;
  background-size: cover;
  z-index: 1;
}
.header .gnb > ul > li > .sub_depth > li > .right .all_tab {
  display: none;
}

/*
.header .gnb > ul > li > .sub_depth > li > .right > ul{width: 100%; flex-wrap: wrap; font-size: 0; display: none;}
.header .gnb > ul > li > .sub_depth > li > .right > ul > li{width: calc(100%/5 - 50px); margin-right: 50px; margin-top: 40px; display: inline-block; vertical-align: top;}
.header .gnb > ul > li > .sub_depth > li > .right > ul > li:nth-child(n+1):nth-child(-n+5){margin-top: 0;}
.header .gnb > ul > li > .sub_depth > li > .right > ul > li:nth-child(5n){margin-right: 0;}
*/

.header .gnb > ul > li > .sub_depth > li > .right > ul {
  width: 100%;
  display: none;
}
.header .gnb > ul > li > .sub_depth > li > .right > ul > li {
  width: calc(100% / 4);
  margin-top: 50px;
  vertical-align: top;
  z-index: 2;
}
.header
  .gnb
  > ul
  > li
  > .sub_depth
  > li
  > .right
  > ul
  > li:nth-child(n + 1):nth-child(-n + 4) {
  margin-top: 0;
}

.header .gnb > ul > li > .sub_depth > li > .right > ul > li > a {
  display: inline-block;
  vertical-align: top; /*width: 100%;*/
  max-width: 290px;
  font-size: 18px;
  line-height: 1.3;
  color: #777;
  transition: 0.3s;
}
.header .gnb > ul > li > .sub_depth > li > .right > ul > li > ul {
  margin-top: 20px;
}
.header .gnb > ul > li > .sub_depth > li > .right > ul > li > ul > li > a {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  color: #444;
  transition: 0.3s;
}

.header .header_ui {
  display: flex;
  align-items: center;
}
.header .header_ui .m_btn {
  position: relative;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  font-size: 0;
  text-indent: -9999px;
}
.header .header_ui .m_btn span:not(.clip) {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 24px;
  height: 2px;
  margin: 14px 0;
}
.header .header_ui .m_btn span:not(.clip)::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: 0.3s;
}
.header .header_ui .m_btn span:not(.clip)::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: 0.3s;
}
.header .header_ui .all_gnb {
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  transition: 0.8s;
  overflow: hidden;
}
.header .header_ui .all_gnb .info_box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: calc(100% - 66.66%);
  background-color: #233b8f;
  padding: 0 0 100px 100px;
}
.header .header_ui .all_gnb .info_box .sns {
  display: flex;
  margin-bottom: 30px;
  opacity: 0.3;
}
.header .header_ui .all_gnb .info_box .sns li {
  margin-right: 10px;
}
.header .header_ui .all_gnb .info_box .sns li a {
  display: inline-block;
  vertical-align: top;
}
.header .header_ui .all_gnb .info_box .txt p {
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.header .header_ui .all_gnb .info_box .txt span {
  display: block;
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.header .header_ui .all_gnb .info_box .txt .add {
  margin-bottom: 14px;
}
.header .header_ui .all_gnb .info_box .txt .number {
  display: flex;
}
.header .header_ui .all_gnb .info_box .txt .number p {
  position: relative;
  margin-right: 20px;
}
.header .header_ui .all_gnb .info_box .txt .number p::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -12px;
  width: 1px;
  height: 10px;
  background-color: #fff;
}
.header .header_ui .all_gnb .info_box .txt .number p:last-of-type {
  margin-right: 0;
}
.header .header_ui .all_gnb .info_box .txt .number p:last-of-type::after {
  display: none;
}
.header .header_ui .all_gnb nav {
  display: flex;
  align-items: center;
  position: relative;
  width: 66.66%;
}
.header .header_ui .all_gnb nav::after {
  content: "";
  position: absolute;
  width: 50%;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #f9f9f9;
  z-index: -1;
}
.header .header_ui .all_gnb nav > ul {
  position: relative;
  width: 100%;
}
.header .header_ui .all_gnb nav > ul > li {
  width: 50%;
}
.header .header_ui .all_gnb nav > ul > li > a {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: var(--f700);
  font-size: 36px;
  color: #222;
  padding: 20px 80px;
  transition: color 0.4s;
}

.header .header_ui .all_gnb nav > ul > li > a::after {
  font-family: axicon !important;
  content: "\f101";
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  font-size: 30px;
  color: #233b8f;
  opacity: 0;
}
.header .header_ui .all_gnb nav > ul > li > ul {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
}
.header .header_ui .all_gnb nav > ul > li > ul > li > .left {
  display: none;
}
.header .header_ui .all_gnb nav > ul > li > ul > li > .right > .all_tab {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-size: 24px;
  color: #666;
  padding: 22px 80px;
  transition: color 0.4s;
  cursor: pointer;
}
.header .header_ui .all_gnb nav > ul > li > ul > li > .right > .all_tab span {
  position: relative;
}
.header
  .header_ui
  .all_gnb
  nav
  > ul
  > li
  > ul
  > li
  > .right
  > .all_tab
  span::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: -5%;
  width: 0;
  height: 8px;
  background-color: #f37321;
  opacity: 0.15;
  transition: 0.4s;
}
.header
  .header_ui
  .all_gnb
  nav
  > ul
  > li
  > ul
  > li
  > .right
  > ul:not(.tab_depth)
  > li
  > a {
  display: inline-block;
  vertical-align: top;
  font-family: var(--f400);
  font-size: 24px;
  color: #666;
  padding: 22px 80px;
  transition: color 0.4s;
}
.header
  .header_ui
  .all_gnb
  nav
  > ul
  > li
  > ul
  > li
  > .right
  > ul:not(.tab_depth)
  > li
  > a
  span {
  position: relative;
  color: #333;
}
.header
  .header_ui
  .all_gnb
  nav
  > ul
  > li
  > ul
  > li
  > .right
  > ul:not(.tab_depth)
  > li
  > a
  span::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: -5%;
  width: 0;
  height: 8px;
  background-color: #f37321;
  opacity: 0.15;
  transition: 0.4s;
}
.header .header_ui .all_gnb nav > ul > li > ul > li > .right > ul.tab_depth {
  display: none;
  position: relative;
}
.header
  .header_ui
  .all_gnb
  nav
  > ul
  > li
  > ul
  > li
  > .right
  > ul.tab_depth
  > li {
  width: 260px;
}
.header
  .header_ui
  .all_gnb
  nav
  > ul
  > li
  > ul
  > li
  > .right
  > ul.tab_depth
  > li
  > a {
  position: relative;
  display: inline-block;
  width: 260px;
  padding: 30px 0 30px 110px;
  font-size: 19px;
  color: #444;
  vertical-align: top;
}
.header
  .header_ui
  .all_gnb
  nav
  > ul
  > li
  > ul
  > li
  > .right
  > ul.tab_depth
  > li
  > a::before {
  font-family: "xeicon";
  content: "\e90b";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.3s;
}
.header
  .header_ui
  .all_gnb
  nav
  > ul
  > li
  > ul
  > li
  > .right
  > ul.tab_depth
  > li
  > ul {
  display: none;
  position: absolute;
  width: 100%;
  top: 22px;
  left: 260px;
  display: inline-block;
  vertical-align: top;
}
.header
  .header_ui
  .all_gnb
  nav
  > ul
  > li
  > ul
  > li
  > .right
  > ul.tab_depth
  > li
  > ul
  > li
  > a {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-size: 16px;
  color: #777;
  transition: 0.3s;
  padding: 10px 0;
}

.header
  .header_ui
  .all_gnb
  nav
  > ul
  > li
  > ul.sub_depth05
  > li
  > .right
  > ul.tab_depth
  > li
  > a::before {
  display: none;
}

.header .familySite {
  font-family: var(--f400);
  font-size: 14px;
  letter-spacing: 0;
  color: #353232;
  width: 140px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 2px solid #4b4b4b;
  margin-right: 25px;
  transition: all 0.3s ease-in-out;
}
.header .familySite:hover {
  border: 2px solid var(--color);
  background-color: var(--color);
  color: #fff;
}

@media all and (max-width: 1500px) {
  .header .header_ui .all_gnb .info_box {
    width: calc(100% - 70%);
    padding: 0 30px 50px;
  }
  .header .header_ui .all_gnb nav {
    width: 70%;
    align-items: flex-start;
    padding-top: 100px;
  }
  .header .header_ui .all_gnb nav > ul > li > a {
    font-size: 24px;
    font-family: var(--f600);
    padding: 20px 40px;
  }
  .header .header_ui .all_gnb nav > ul > li > ul {
    top: 0;
  }
  .header .header_ui .all_gnb .info_box .txt .number {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .header .header_ui .all_gnb .info_box .txt .number p {
    width: 100%;
    font-size: 14px;
    margin: 0;
    margin-bottom: 15px;
  }
  .header .header_ui .all_gnb .info_box .txt .number p:last-child {
    margin-bottom: 0;
  }
  .header .header_ui .all_gnb .info_box .txt .number p::after {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  .header .logo {
    width: 133px;
    height: 23px;
    background: url(/image/logo.png) no-repeat;
    background-size: cover;
  }
  .header .familySite {
    height: 33px;
    border: 1px solid #4b4b4b;
  }
  .header .header_ui .all_gnb .info_box {
    width: calc(100% - 75%);
  }
  .header .header_ui .all_gnb .info_box .txt {
    display: none;
  }
  .header .header_ui .all_gnb nav {
    width: 75%;
  }
  .header .header_ui .all_gnb nav > ul > li > a {
    font-size: 18px;
  }
  .header
    .header_ui
    .all_gnb
    nav
    > ul
    > li
    > ul
    > li
    > .right
    > ul:not(.tab_depth)
    > li
    > a {
    width: 100%;
    font-size: 18px;
    padding: 20px;
  }
}
@media all and (max-width: 430px) {
  .header .familySite {
    display: none;
  }

  .header .header_ui .all_gnb .info_box {
    width: 100%;
    height: 75px;
    padding: 0;
    align-items: center;
  }
  .header .header_ui .all_gnb nav {
    width: 100%;
    height: calc(100% - 75px);
    padding-top: 50px;
  }
  .header .header_ui .all_gnb nav::after {
    display: none;
  }
  .header .header_ui .all_gnb nav > ul > li {
    width: 100%;
  }
  .header .header_ui .all_gnb nav > ul > li {
    margin-bottom: 15px;
  }
  .header .header_ui .all_gnb nav > ul > li:last-child,
  .header
    .header_ui
    .all_gnb
    nav
    > ul
    > li
    > ul
    > li
    > .right
    > ul
    > li:last-child {
    margin-bottom: 0;
  }
  .header .header_ui .all_gnb nav > ul > li > a {
    padding: 0 15px;
    font-size: 20px;
    line-height: 1.3;
  }
  .header .header_ui .all_gnb nav > ul > li > ul {
    position: relative;
    left: 0;
    margin: 15px 0;
  }

  .header .header_ui .all_gnb nav > ul > li > ul > li > .right > ul {
    padding: 0 15px;
  }
  .header .header_ui .all_gnb nav > ul > li > ul > li > .right > ul > li {
    margin-bottom: 15px;
  }
  .header
    .header_ui
    .all_gnb
    nav
    > ul
    > li
    > ul
    > li
    > .right
    > ul
    > li:last-child {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ededed;
  }
  .header
    .header_ui
    .all_gnb
    nav
    > ul
    > li
    > ul
    > li
    > .right
    > ul:not(.tab_depth)
    > li
    > a {
    font-size: 16px;
    color: #999;
    padding: 0;
  }
  .header
    .header_ui
    .all_gnb
    nav
    > ul
    > li
    > ul
    > li
    > .right
    > ul:not(.tab_depth)
    > li
    > a
    span {
    color: #999;
  }

  .header.open .header_ui .m_btn span:not(.clip)::before,
  .header.open .header_ui .m_btn span:not(.clip)::after {
    background-color: #fff;
  }
}

/* 푸터영역 */
.footer {
  padding: 60px 0 40px;
  background-color: #1c1e26;
}
.footer .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.footer .top_area {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer .top_area .family_logo_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.footer .top_area .family_logo_wrap > li {
  margin-right: 30px;
}
.footer .top_area .family_logo_wrap > li:last-child {
  margin-right: 0;
}
.footer .top_area .family_logo_wrap > li > a {
  width: 465px;
  height: 46px;
  background: url(/image/family_logo.png) no-repeat;
  background-size: cover;
  display: block;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.footer .top_area .family_logo_wrap > li.worknet > a {
  background-position: -10px 0;
  width: 95px;
}
.footer .top_area .family_logo_wrap > li.HRDnet > a {
  background-position: -125px 0;
  width: 125px;
}
.footer .top_area .family_logo_wrap > li.jobkorea > a {
  background-position: -270px 0;
  width: 90px;
}
.footer .top_area .family_logo_wrap > li.saramin > a {
  background-position: -379px 0;
  width: 70px;
}

.footer .company_info_wrap {
  margin-top: 30px;
}
.footer .company_info_wrap .location {
  font-family: var(--f300);
  font-size: 18px;
  color: rgba(255, 255, 255, 40%);
  line-height: 1.3;
  display: block;
}
.footer .company_info_wrap .com_info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.footer .company_info_wrap .com_info > li {
  margin-right: 30px;
  position: relative;
}
.footer .company_info_wrap .com_info > li::before {
  content: "/";
  display: block;
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 40%);
}
.footer .company_info_wrap .com_info > li.before-none::before {
  display: none;
}
.footer .company_info_wrap .com_info > li:last-child {
  margin-right: 0;
}
.footer .company_info_wrap .com_info > li p {
  font-family: var(--f300);
  font-size: 18px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 40%);
  letter-spacing: 0;
}

.footer .privacy_wrap {
  padding-top: 36px;
  margin-top: 20px;
  border-top: 1px solid #616268;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer .privacy_wrap .copyright {
  font-family: var(--f300);
  font-size: 16px;
  color: rgba(255, 255, 255, 40%);
  line-height: 1.3;
  letter-spacing: 0;
}
.footer .privacy_wrap .privacy-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.footer .privacy_wrap .privacy-box > li {
  margin-right: 30px;
}
.footer .privacy_wrap .privacy-box > li:last-child {
  margin-right: 0;
}
.footer .privacy_wrap .privacy-box > li > a {
  font-family: var(--f300);
  font-size: 14px;
  color: rgba(255, 255, 255, 40%);
  line-height: 1.3;
  transition: all 0.3s;
}
.footer .privacy_wrap .privacy-box > li > a:hover {
  color: #fff;
}

.footer .company_info_wrap .sns-list {
  width: 100%;
  margin-top: 30px;
}
.footer .company_info_wrap .sns-list .sns-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.footer .company_info_wrap .sns-list .sns-box .sns {
  margin-right: 15px;
}
.footer .company_info_wrap .sns-list .sns-box .sns:last-of-type {
  margin-right: 0;
}
.footer .company_info_wrap .sns-list .sns-box .sns > a {
  width: 30px;
  display: block;
}

.footer .hannet_tag {
  width: 100%;
  margin-top: 20px;
  font-family: var(--f300);
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 40%);
  transition: all 0.3s;
}
.footer .hannet_tag:hover {
  color: #fff;
}

@media all and (max-width: 1400px) {
  .footer .inner {
    max-width: 100%;
    width: 95%;
  }
}
@media all and (max-width: 1024px) {
  .footer .top_area {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer .top_area .family_logo_wrap {
    justify-content: flex-start;
    width: 100%;
    margin-top: 30px;
  }

  .footer .company_info_wrap .location {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .footer .company_info_wrap .com_info > li {
    width: 100%;
    margin: 0;
    margin-bottom: 8px;
  }
  .footer .company_info_wrap .com_info > li:last-child {
    margin-bottom: 0;
  }
  .footer .company_info_wrap .com_info > li p {
    font-size: 16px;
  }
  .footer .company_info_wrap .com_info > li::before {
    display: none;
  }

  .footer .privacy_wrap {
    flex-direction: column;
  }
  .footer .privacy_wrap .copyright {
    width: 100%;
    font-size: 14px;
    order: 2;
  }
  .footer .privacy_wrap .privacy-box {
    width: 100%;
    margin-bottom: 20px;
    order: 1;
  }
  .footer .hannet_tag {
    font-size: 14px;
    order: 3;
  }
}
@media all and (max-width: 768px) {
  .footer .top_area .family_logo_wrap > li {
    padding: 5px;
    width: calc(100% / 2 - 30px);
    margin: 0 auto;
  }
  .footer .privacy_wrap .privacy-box > li {
    padding: 5px;
    width: calc(100% / 2 - 20px);
    margin-right: 20px;
  }
}
@media all and (max-width: 430px) {
  .footer {
    padding: 35px 0 60px;
  }
  .footer .inner {
    max-width: 90%;
    width: 100%;
  }
  .footer .top_area .f-logo {
    width: 140px;
  }

  .footer .top_area .family_logo_wrap {
    margin-top: 20px;
  }
  .footer .top_area .family_logo_wrap > li {
    width: auto;
    margin: 0;
  }
  .footer .top_area .family_logo_wrap > li > a {
    height: 35px;
  }
  .footer .top_area .family_logo_wrap > li.worknet > a {
    width: 70px;
  }
  .footer .top_area .family_logo_wrap > li.HRDnet > a {
    width: 70px;
  }
  .footer .top_area .family_logo_wrap > li.jobkorea > a {
    background-position: -205px 0;
    width: 70px;
  }
  .footer .top_area .family_logo_wrap > li.saramin > a {
    background-position: -288px 0;
    width: 55px;
  }

  .footer .company_info_wrap {
    margin-top: 15px;
  }
  .footer .company_info_wrap .location {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .footer .company_info_wrap .com_info > li {
    margin-bottom: 5px;
  }
  .footer .company_info_wrap .com_info > li p {
    font-size: 14px;
  }

  .footer .company_info_wrap .sns-list .sns-box {
    justify-content: center;
  }
}

/* svis 영역 */
/*.svis{position: relative; padding-top: 140px;}*/
.svis {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 140px;
  z-index: 100;
  opacity: 1;
  transition: all 0.3s;
}
.svis.scroll {
  opacity: 0;
}
.svis .snb-wrap {
  width: 100%;
  background-color: #1e3d86;
}
.svis .snb-wrap .snb {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  font-size: 0;
  position: relative;
}
.svis .snb-wrap .snb > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.svis .snb-wrap .snb > li:first-child {
  margin-left: 0;
  background-color: #3369c0;
}
.svis .snb-wrap .snb > li > span {
  position: relative;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.svis .snb-wrap .snb > li > a {
  width: 60px;
  height: 50px;
  position: relative;
  border-left: 1px solid #444;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.svis .snb-wrap .snb > li > a i {
  font-size: 24px;
  color: #fff;
}
.svis .snb-wrap .snb > li > span {
  font-family: var(--f600);
  font-size: 16px;
  color: #fff;
  padding: 0 40px 0 20px;
  cursor: pointer;
  min-width: 200px;
  border-right: 1px solid #405a98;
  border-left: 1px solid #405a98;
}
.svis .snb-wrap .snb > li:last-child > span {
  border-left: 0;
}
.svis .snb-wrap .snb > li > span:after {
  content: "\f107";
  font-family: axicon;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.svis .snb-wrap .snb > li > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 100%;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  z-index: 100;
}
.svis .snb-wrap .snb > li > ul > li {
  border-bottom: 1px dashed #e8e8e8;
}
.svis .snb-wrap .snb > li > ul > li:last-child {
  border-bottom: 0px;
}
.svis .snb-wrap .snb > li > ul > li > a {
  font-family: var(--f600);
  font-size: 16px;
  display: block;
  white-space: nowrap;
  padding: 10px 20px;
  color: #222;
  transition: all 0.3s ease;
}
.svis .snb-wrap .snb > li > ul > li:hover > a {
  color: #fff;
  background-color: #126aae;
}
.svis .snb-wrap .snb > li.on > span,
.svis .snb-wrap .snb > li:hover > span {
  color: #000;
  background-color: #fcfcfc;
  border: 1px solid #fff;
}
.svis .snb-wrap .snb > li.on > span:after,
.svis .snb-wrap .snb > li:hover > span:after {
  content: "\f106";
}
.svis .snb-wrap .snb > li.on > ul,
.svis .snb-wrap .snb > li:hover > ul {
  display: block;
}

@media all and (max-width: 1680px) {
  .svis {
    padding-top: 75px;
  }
}
@media all and (max-width: 460px) {
  .svis {
    background-color: #1e3d86;
  }
  .svis .snb-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .svis .snb-wrap .snb {
    display: flex;
  }
  .svis .snb-wrap .snb > li:nth-child(2) {
    display: none;
  }
}

/* 공통영역 */
.gotop {
  position: fixed;
  bottom: 5%;
  right: 5%;
  border: 0;
  border-radius: 100%;
  background-color: #2e323e;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 300;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translate3d(0, 30px, 0);
}
.gotop i {
  font-size: 20px;
  color: #fff;
}
.gotop.fix {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrap {
  overflow: hidden;
}
.wrap .inner {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
}
.wrap,
.sub-wrap,
.wrap1280 {
  padding: 260px 0 180px;
}
.wrap1280 .inner {
  max-width: 1280px;
}
.sub-wrap .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.hashtag-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.hashtag-wrap > li {
  position: relative;
  margin-right: 30px;
}
.hashtag-wrap > li::before {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background-color: #666;
  border-radius: 100%;
  content: "";
  display: block;
}
.section03 .hashtag-wrap > li::before {
  background-color: #629cfb;
}
.hashtag-wrap > li:last-child {
  margin-right: 0;
}
.hashtag-wrap > li:last-child::before {
  display: none;
}
.hashtag-wrap > li p {
  font-family: var(--f500);
  font-size: 16px;
  color: #666;
}

.button-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.button-wrap .btn {
  width: 190px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  font-family: var(--f600);
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
  letter-spacing: 0;
  transition: all 0.3s ease-in-out;
}
.button-wrap .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.button-wrap .btn:last-child {
  margin-right: 0;
}
.button-wrap .btn.btn_sky {
  background-color: #c2d0f2;
  color: #2149a6;
}
.button-wrap .btn.btn_blue {
  background-color: #2149a6;
}
.button-wrap .btn.btn_lightblue {
  background-color: #2071f8;
}
.button-wrap .btn.btn_black {
  background-color: #000;
}
.button-wrap .btn.btn_gray {
  background-color: #dfdfdf;
  color: #737373;
}
.button-wrap .btn.btn_white {
  background-color: #fff;
  color: #04255d;
}

.button-w165-wrap .btn {
  width: 165px;
}

@media all and (max-width: 1280px) {
  .sub-wrap .inner {
    max-width: 95%;
  }
}
@media all and (max-width: 768px) {
  .wrap,
  .sub-wrap,
  .wrap1280 {
    padding: 195px 0;
  }
  .wrap1280 .inner {
    max-width: 100%;
  }
  .sub-wrap .inner {
    max-width: 95%;
  }
}
@media all and (max-width: 430px) {
  .wrap,
  .sub-wrap,
  .wrap1280 {
    padding: 195px 0 60px;
  }
  .sub-wrap .inner {
    max-width: 90%;
  }
  .gotop {
    width: 40px;
    height: 40px;
  }
  .gotop i {
    font-size: 16px;
  }
}

/* 메인페이지 */
.main_visual-wrap {
  width: 100%;
  padding-top: 140px;
}
.main_visual-wrap .inner {
  position: relative;
}

.main_visual-wrap .swiper-options {
  width: 100%;
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.main_visual-wrap .swiper-options .swiper-button-next,
.main_visual-wrap .swiper-options .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 85px;
  background-color: #fff;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 10%);
  border-radius: 100%;
}

.main_visual-wrap .swiper-options .swiper-button-next,
.main_visual-wrap .swiper-options .swiper-rtl .swiper-button-prev {
  right: -35px;
  left: auto; /*transform: rotate(180deg);*/
}
.main_visual-wrap .swiper-options .swiper-button-prev,
.main_visual-wrap .swiper-options .swiper-rtl .swiper-button-next {
  right: auto;
  left: -35px;
}

.main_visual-wrap .swiper-options .swiper-button-next:after,
.main_visual-wrap .swiper-options .swiper-button-prev:after {
  display: none;
  font-size: 0;
}

.main_visual-wrap .swiper-options .icon {
  width: 55px;
}
.main_visual-wrap .swiper-options .icon img {
  object-fit: contain;
}

.main_visual-wrap .main-section .main_Swiper .imgbox .background {
  position: relative;
}
.main_visual-wrap .main-section .main_Swiper .imgbox .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main_visual-wrap .main-section .main_Swiper .imgbox .img .human {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.main_visual-wrap .main-section .main_Swiper .imgbox .img .text {
  position: absolute;
  top: 0;
  left: 65%;
  transform: translateX(-50%);
}

@media all and (max-width: 1240px) {
  .main_visual-wrap
    .main-section
    .main_Swiper
    .swiper-slide:nth-child(2n-1)
    .imgbox
    .img
    .text {
    left: 70%;
  }
  .main_visual-wrap
    .main-section
    .main_Swiper
    .swiper-slide:nth-child(2n)
    .imgbox
    .img
    .text {
    left: 75%;
  }
  .main_visual-wrap .main-section .main_Swiper .imgbox .img .text img {
    width: 80%;
  }
}

@media all and (max-width: 1024px) {
  .main_visual-wrap .main-section {
    padding-top: 75px;
  }
}

@media all and (max-width: 768px) {
  .main_visual-wrap .swiper-options .swiper-button-next,
  .main_visual-wrap .swiper-options .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  .main_visual-wrap .swiper-options .swiper-button-next,
  .main_visual-wrap .swiper-options .swiper-rtl .swiper-button-prev {
    right: -15px;
  }
  .main_visual-wrap .swiper-options .swiper-button-prev,
  .main_visual-wrap .swiper-options .swiper-rtl .swiper-button-next {
    left: -15px;
  }
  .main_visual-wrap .swiper-options .icon {
    width: 15px;
  }
}
@media all and (max-width: 430px) {
  .main_visual-wrap .main-section {
    padding: 0;
    height: 400px;
  }
  .main_visual-wrap .main-section .inner {
    width: 100%;
    height: 100%;
  }
  .main_visual-wrap .main-section .main_Swiper .swiper-slide .imgbox {
    height: 100%;
  }
  .main_visual-wrap .main-section .main_Swiper .imgbox .background {
    display: none;
  }
  .main_visual-wrap
    .main-section
    .main_Swiper
    .swiper-slide
    .imgbox
    .img
    .text {
    top: auto;
    bottom: 43%;
  }
  .main_visual-wrap
    .main-section
    .main_Swiper
    .swiper-slide
    .imgbox
    .img
    .text
    img {
    width: 100%;
  }
  .main_visual-wrap
    .main-section
    .main_Swiper
    .swiper-slide:nth-child(2n-1)
    .imgbox
    .img
    .text,
  .main_visual-wrap
    .main-section
    .main_Swiper
    .swiper-slide:nth-child(2n)
    .imgbox
    .img
    .text {
    left: 70%;
  }

  .main_visual-wrap .main-section .main_Swiper .swiper-slide:nth-child(1) {
    background-color: #7abf83;
  }
  .main_visual-wrap .main-section .main_Swiper .swiper-slide:nth-child(2) {
    background-color: #6db1e2;
  }
  .main_visual-wrap .main-section .main_Swiper .swiper-slide:nth-child(3) {
    background-color: #474dcd;
  }

  .main_visual-wrap .swiper-options {
    display: none;
  }
}

/* 메인페이지 section02 영역 */
.main_visual-wrap .section02 {
  height: 100%;
  padding: 235px 0;
  position: relative;
  overflow: hidden;
}

.main_visual-wrap .section02 .text-box {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 3;
  position: relative;
}
.main_visual-wrap .section02 .text-box::after {
  position: absolute;
  top: -235px;
  left: -320px;
  width: 1032px;
  height: 930px;
  background: url(/image/main_sec02bg.png) no-repeat;
  background-size: cover;
  content: "";
  display: block;
  z-index: 1;
}
.main_visual-wrap .section02 .text-box::before {
  position: absolute;
  bottom: -235px;
  left: -75px;
  width: 930px;
  height: 606px;
  background: url(/image/main_sec02.png) no-repeat;
  background-size: cover;
  content: "";
  display: block;
  z-index: 2;
}
.main_visual-wrap .section02 .text-box .contents {
  width: 535px;
  z-index: 3;
}
.main_visual-wrap .section02 .text-box .contents .top_text {
  margin-top: 50px;
  margin-bottom: 15px;
}
.main_visual-wrap .section02 .text-box .contents .top_text span {
  font-family: var(--f400);
  font-size: 24px;
  line-height: 1.3;
  color: #000;
}
.main_visual-wrap .section02 .text-box .contents .top_text .main-text {
  font-family: var(--f900);
  font-size: 60px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0;
}
.main_visual-wrap .section02 .text-box .contents .information-text {
  font-family: var(--f400);
  font-size: 16px;
  color: #676666;
  line-height: 1.7;
  letter-spacing: 0;
  margin-bottom: 90px;
}

/* 메인페이지 section03 영역 */
.m_linkBtn_ {
  display: none;
}
.main_visual-wrap .section03 {
  width: 100%;
  background-color: #2071f8;
}
.main_visual-wrap .section03 .inner {
  padding: 105px 0 155px;
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
.main_visual-wrap .section03 .inner::before {
  position: absolute;
  top: 60%;
  left: -125px;
  transform: translateY(-50%);
  width: 596px;
  height: 260px;
  background: url(/image/main_sec03.png) no-repeat;
  background-size: cover;
  content: "";
  display: block;
  z-index: 1;
}

.main_visual-wrap .section03 .top-area {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 75px;
  z-index: 3;
}
.main_visual-wrap .section03 .top-area .sec03-hashtag-wrap > li p {
  color: #b4d0fd;
}
.main_visual-wrap .section03 .linkBtn_ {
  font-family: var(--f500);
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.01em;
  position: relative;
  padding-right: 30px;
}
.main_visual-wrap .section03 .linkBtn_::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 7px;
  height: 11px;
  background: url(/image/arrow_icon.png) no-repeat;
  background-size: cover;
}

.main_visual-wrap .section03 .text-box {
  width: calc(100% - 880px);
  margin-right: 30px;
  z-index: 2;
}
.main_visual-wrap .section03 .text-box .sec03-text {
  font-family: var(--f300);
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.main_visual-wrap .section03 .text-box .sec03-text b {
  font-family: var(--f800);
  color: #fff;
}

.main_visual-wrap .section03 .main_sec03Swiper {
  width: 850px;
  z-index: 2;
}
.main_visual-wrap .section03 .main_sec03Swiper .swiper-slide {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px;
}
.main_visual-wrap .section03 .main_sec03Swiper .swiper-slide .top_txt {
  width: 100%;
  height: 65px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.main_visual-wrap
  .section03
  .main_sec03Swiper
  .swiper-slide
  .top_txt
  .card_name {
  font-family: var(--f400);
  font-size: 24px;
  line-height: 1.2;
}
.main_visual-wrap .section03 .main_sec03Swiper .swiper-slide .mid_txt {
  width: 100%;
  height: 195px;
  margin-bottom: 70px;
}
.main_visual-wrap
  .section03
  .main_sec03Swiper
  .swiper-slide
  .mid_txt
  .benefit_name {
  font-family: var(--f900);
  font-size: 32px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0;
  display: block;
  margin-bottom: 20px;
  height: 80px;
}
.main_visual-wrap
  .section03
  .main_sec03Swiper
  .swiper-slide
  .mid_txt
  .benefit_information {
  font-family: var(--f400);
  font-size: 16px;
  color: #686868;
  letter-spacing: 0;
  line-height: 1.5;
  word-break: keep-all;
}

.main_visual-wrap .section03 .swiper-options {
  top: auto;
  bottom: 80px;
}
.main_visual-wrap .section03 .swiper-options .swiper-button-next,
.main_visual-wrap .section03 .swiper-options .swiper-button-prev {
  position: absolute;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  justify-content: center;
  width: 47px;
  height: 47px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 100%;
}
.main_visual-wrap .section03 .swiper-options .swiper-button-next,
.main_visual-wrap .section03 .swiper-options .swiper-rtl .swiper-button-prev {
  right: 0;
}
.main_visual-wrap .section03 .swiper-options .swiper-button-prev,
.main_visual-wrap .section03 .swiper-options .swiper-rtl .swiper-button-next {
  right: 57px;
  left: auto;
}

.main_visual-wrap .section03 .swiper-options .swiper-button-next:after,
.main_visual-wrap
  .section03
  .swiper-options
  .swiper-rtl
  .swiper-button-prev:after {
  font-family: "axicon";
  font-size: 20px;
  color: #fff;
  display: block;
  content: "\f105";
}

.main_visual-wrap .section03 .swiper-options .swiper-button-prev:after,
.main_visual-wrap
  .section03
  .swiper-options
  .swiper-rtl
  .swiper-button-next:after {
  font-family: "axicon";
  font-size: 20px;
  color: #fff;
  display: block;
  content: "\f104";
}

/* 메인페이지 section04 영역 */
.main_visual-wrap .section04 {
  height: 100%;
  padding: 235px 0;
  position: relative;
  overflow: hidden;
}

.main_visual-wrap .section04 .text-box {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 3;
  position: relative;
}
.main_visual-wrap .section04 .text-box::before {
  position: absolute;
  top: 58%;
  left: -105px;
  transform: translateY(-50%);
  width: 910px;
  height: 691px;
  background: url(/image/main_sec04.png) no-repeat;
  background-size: cover;
  content: "";
  display: block;
  z-index: 1;
}
.main_visual-wrap .section04 .text-box .contents {
  width: 535px;
  z-index: 2;
}
.main_visual-wrap .section04 .text-box .contents .top_text {
  margin-top: 50px;
  margin-bottom: 15px;
}
.main_visual-wrap .section04 .text-box .contents .top_text span {
  font-family: var(--f400);
  font-size: 24px;
  line-height: 1.3;
  color: #000;
}
.main_visual-wrap .section04 .text-box .contents .top_text .main-text {
  font-family: var(--f900);
  font-size: 60px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0;
}
.main_visual-wrap .section04 .text-box .contents .information-text {
  font-family: var(--f400);
  font-size: 16px;
  color: #676666;
  line-height: 1.7;
  letter-spacing: 0;
  margin-bottom: 90px;
}

/* 메인페이지 section05 영역 */
.main_visual-wrap .section05 {
  padding: 215px 0;
  width: 100%;
  height: 900px;
  background: url(/image/main_sec05bg.png) no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.main_visual-wrap .section05 .hashtag-wrap > li::before {
  background-color: #fff;
}
.main_visual-wrap .section05 .hashtag-wrap > li p {
  color: #fff;
}

.main_visual-wrap .section05 .text-box {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}
.main_visual-wrap .section05 .text-box .contents .top_text {
  margin-top: 50px;
  margin-bottom: 15px;
}
.main_visual-wrap .section05 .text-box .contents .top_text span {
  font-family: var(--f400);
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
}
.main_visual-wrap .section05 .text-box .contents .top_text .main-text {
  font-family: var(--f900);
  font-size: 60px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0;
}
.main_visual-wrap .section05 .text-box .contents .information-text {
  font-family: var(--f400);
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0;
  margin-bottom: 90px;
}

/* 메인페이지 section06 영역 */
.main_visual-wrap .section06 {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}
.main_visual-wrap .section06 .inner {
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}

.main_visual-wrap .section06 .notice-textBox {
  width: calc(100% - 810px);
  margin-right: 50px;
}
.main_visual-wrap .section06 .notice-textBox .category-title {
  font-family: var(--f600);
  font-size: 20px;
  letter-spacing: 0;
  color: #000;
  position: relative;
}
.main_visual-wrap .section06 .notice-textBox .category-title::after {
  position: absolute;
  top: 50%;
  right: -157px;
  transform: translateY(-50%);
  width: 142px;
  height: 0.5px;
  background-color: #000;
  content: "";
  display: block;
}
.main_visual-wrap .section06 .notice-textBox .notice-title {
  margin: 30px 0;
  font-family: var(--f800);
  font-size: 54px;
  line-height: 1.2;
  color: #cfcfcf;
  letter-spacing: -0.025em;
}
.main_visual-wrap .section06 .notice-textBox .notice-title i {
  color: #3337d5;
  letter-spacing: -0.025em;
}
.main_visual-wrap .section06 .notice-textBox .notice-text {
  font-family: var(--f400);
  font-size: 20px;
  color: #727272;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 50px;
}
.main_visual-wrap .section06 .notice-textBox .notice-buttonWrap {
  width: 200px;
  height: 45px;
}
.main_visual-wrap .section06 .notice-textBox .notice-buttonWrap .notice-btn {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: var(--f500);
  letter-spacing: 0;
  color: #6d6d6d;
  border: 1px solid #c8c8c8;
  border-radius: 23px;
}
.main_visual-wrap .section06 .notice-textBox .notice-buttonWrap .notice-btn i {
  font-size: 20px;
  padding-bottom: 3px;
  margin-left: 20px;
  color: #6d6d6d;
}

.main_visual-wrap .section06 .main_sec06Swiper {
  width: 760px;
}
.main_visual-wrap .section06 .main_sec06Swiper .swiper-slide {
  width: 100%;
  height: 420px;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 15px;
  padding: 35px;
  transition: all 0.3s;
}
.main_visual-wrap .section06 .main_sec06Swiper .swiper-slide:hover {
  background-color: #2b61dd;
  border: 1px solid #2b61dd;
}
.main_visual-wrap .section06 .main_sec06Swiper .swiper-slide > a {
  width: 100%;
  height: 100%;
  display: block;
}
.main_visual-wrap .section06 .main_sec06Swiper .swiper-slide .category-name {
  font-family: var(--f600);
  font-size: 18px;
  letter-spacing: 0;
  color: #3337d5;
  display: block;
  margin-bottom: 45px;
  transition: all 0.3s;
}
.main_visual-wrap
  .section06
  .main_sec06Swiper
  .swiper-slide
  .notice-infoBox
  .notice-title {
  font-family: var(--f600);
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 30px;
  color: #2b2929;
  margin-bottom: 58px;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  transition: all 0.3s;
}
.main_visual-wrap
  .section06
  .main_sec06Swiper
  .swiper-slide
  .notice-infoBox
  .notice-info {
  font-family: var(--f400);
  font-size: 18px;
  color: #808080;
  line-height: 1.3;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-bottom: 80px;
  word-break: break-all;
  transition: all 0.3s;
}
.main_visual-wrap
  .section06
  .main_sec06Swiper
  .swiper-slide
  .notice-infoBox
  .notice-date {
  font-family: var(--f500);
  font-size: 16px;
  color: #000;
  letter-spacing: 0;
  transition: all 0.3s;
}

.main_visual-wrap
  .section06
  .main_sec06Swiper
  .swiper-slide:hover
  .category-name,
.main_visual-wrap
  .section06
  .main_sec06Swiper
  .swiper-slide:hover
  .notice-infoBox
  .notice-title,
.main_visual-wrap
  .section06
  .main_sec06Swiper
  .swiper-slide:hover
  .notice-infoBox
  .notice-info,
.main_visual-wrap
  .section06
  .main_sec06Swiper
  .swiper-slide:hover
  .notice-infoBox
  .notice-date {
  color: #fff;
}

.main_visual-wrap .section06 .swiper-options {
  top: auto;
  bottom: -80px;
}
.main_visual-wrap .section06 .swiper-options .swiper-button-next,
.main_visual-wrap .section06 .swiper-options .swiper-button-prev {
  position: absolute;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  justify-content: center;
  width: 47px;
  height: 47px;
  background-color: transparent;
  border: 2px solid #727272;
  border-radius: 100%;
}
.main_visual-wrap .section06 .swiper-options .swiper-button-next,
.main_visual-wrap .section06 .swiper-options .swiper-rtl .swiper-button-prev {
  right: 0;
}
.main_visual-wrap .section06 .swiper-options .swiper-button-prev,
.main_visual-wrap .section06 .swiper-options .swiper-rtl .swiper-button-next {
  right: 57px;
  left: auto;
}

.main_visual-wrap .section06 .swiper-options .swiper-button-next:after,
.main_visual-wrap
  .section06
  .swiper-options
  .swiper-rtl
  .swiper-button-prev:after {
  font-family: "axicon";
  font-size: 20px;
  color: #727272;
  display: block;
  content: "\f105";
}

.main_visual-wrap .section06 .swiper-options .swiper-button-prev:after,
.main_visual-wrap
  .section06
  .swiper-options
  .swiper-rtl
  .swiper-button-next:after {
  font-family: "axicon";
  font-size: 20px;
  color: #727272;
  display: block;
  content: "\f104";
}

/* 메인페이지 section06 영역 */
.main_visual-wrap .section07 {
  padding: 70px 0;
  background-color: #f4f7ff;
  position: relative;
  overflow: hidden;
  z-index: 299;
}
.main_visual-wrap .section07 .inner {
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
/*.main_visual-wrap .section07 .inner::after{content: ''; display: block; position: absolute; top: 50%; right: 0; transform: translateY(-50%); background: url(/image/location_map2_230926.png)no-repeat; background-size: cover; width: 600px; height: 510px;}*/

.main_visual-wrap .section07 .notice-textBox {
  width: 650px;
  z-index: 2;
}
.main_visual-wrap .section07 .notice-textBox .category-title {
  font-family: var(--f600);
  font-size: 20px;
  letter-spacing: 0;
  color: #2149a6;
  position: relative;
}
.main_visual-wrap .section07 .notice-textBox .category-title::after {
  position: absolute;
  top: 50%;
  right: -157px;
  transform: translateY(-50%);
  width: 142px;
  height: 0.5px;
  background-color: #000;
  content: "";
  display: block;
}
.main_visual-wrap .section07 .notice-textBox .notice-title {
  margin: 30px 0;
  font-family: var(--f800);
  font-size: 54px;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.025em;
}
.main_visual-wrap .section07 .notice-textBox .notice-title i {
  color: #2149a6;
}
.main_visual-wrap .section07 .notice-textBox .notice-text {
  font-family: var(--f400);
  font-size: 20px;
  color: #727272;
  line-height: 1.4;
  letter-spacing: 0;
}

.main_visual-wrap .section07 .rig_area {
  width: calc(100% - 650px);
  padding-top: 50px;
  padding-left: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.main_visual-wrap .section07 .rig_area .text {
  width: 280px;
  padding-bottom: 15px;
}
.main_visual-wrap .section07 .rig_area .text .title {
  font-family: var(--f900);
  font-size: 34px;
  line-height: 1.3;
}
.main_visual-wrap .section07 .rig_area .text .information-box {
  width: 100%;
  margin-top: 40px;
}
.main_visual-wrap .section07 .rig_area .text .information-box .info {
  font-family: var(--f500);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.main_visual-wrap .section07 .rig_area .text .information-box .info:last-child {
  margin-bottom: 0;
}
.main_visual-wrap .section07 .rig_area .text .information-box .info b {
  font-family: var(--f900);
}
.main_visual-wrap .section07 .rig_area .img {
  width: calc(100% - 280px);
}

/* 메인페이지 > 전국지점 20231101 수정 */
.main_visual-wrap .section07 .location-wrap {
  width: 100%;
  margin-top: 30px;
  position: relative;
  left: -30px;
}
.main_visual-wrap .section07 .location-wrap .tabWrap {
  width: 650px;
}
.main_visual-wrap .section07 .location-wrap .tabWrap .list {
  width: 100%;
  display: flex;
  text-align: center;
}
.main_visual-wrap .section07 .location-wrap .tabWrap .list .tab_item {
  width: 122px;
  height: 43px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 5px 8px 18px rgba(33, 73, 166, 13%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f400);
  font-size: 16px;
  letter-spacing: 0;
  margin-right: 10px;
  cursor: pointer;
}
.main_visual-wrap .section07 .location-wrap .tabWrap .list .tab_item.active {
  font-family: var(--f500);
  color: #fff;
}

.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner {
  display: none;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.active {
  display: block;
  position: relative;
}

.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner
  .location_list_wrap {
  width: 100%;
  margin-top: 30px;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner
  .location_list_wrap
  .location_item {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #ccc;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner
  .location_list_wrap
  .location_item:first-child {
  padding-top: 0;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner
  .location_list_wrap
  .location_item
  .center_info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner
  .location_list_wrap
  .location_item
  .center_info
  span {
  width: 5px;
  height: 5px;
  display: block;
  background-color: var(--color);
  margin-right: 10px;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner
  .location_list_wrap
  .location_item
  .center_info
  p {
  font-family: var(--f500);
  font-size: 18px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0;
}

.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner
  .location_list_wrap
  .location_item
  .center_btn {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner
  .location_list_wrap
  .location_item
  .center_btn
  > a {
  width: 90px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color);
  border-radius: 30px;
  font-family: var(--f300);
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.05em;
  transition: all 0.3s ease-in-out;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner
  .location_list_wrap
  .location_item
  .center_btn
  .center_view {
  margin-right: 10px;
  border: 1px solid var(--color);
  background-color: transparent;
  font-family: var(--f500);
  color: var(--color);
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner
  .location_list_wrap
  .location_item
  .center_btn
  .center_view:hover {
  background-color: var(--color);
  font-family: var(--f300);
  color: #fff;
}

.main_visual-wrap .section07 .center-information-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 5px 8px 35px rgba(33, 73, 166, 16%);
  z-index: 2000;
}
.main_visual-wrap .section07 .center-information-box.pop {
  opacity: 0;
}
.main_visual-wrap .section07 .center-information-box .center-text-wrap {
  padding: 35px 40px 30px;
}
.main_visual-wrap
  .section07
  .center-information-box
  .center-text-wrap
  .center-tit {
  font-family: var(--f700);
  font-size: 20px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.main_visual-wrap
  .section07
  .center-information-box
  .center-text-wrap
  .center-info {
  width: 100%;
  margin: 25px 0 0;
}
.main_visual-wrap
  .section07
  .center-information-box
  .center-text-wrap
  .center-info
  > li {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}
.main_visual-wrap
  .section07
  .center-information-box
  .center-text-wrap
  .center-info
  > li:last-child {
  margin-bottom: 0;
}
.main_visual-wrap
  .section07
  .center-information-box
  .center-text-wrap
  .center-info
  > li
  span {
  width: 30px;
  font-family: var(--f500);
  font-size: 15px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0;
}
.main_visual-wrap
  .section07
  .center-information-box
  .center-text-wrap
  .center-info
  > li
  p {
  width: calc(100% - 45px);
  margin-left: 15px;
  font-family: var(--f400);
  font-size: 15px;
  color: #606060;
  line-height: 1.3;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.main_visual-wrap
  .section07
  .tab_inner
  .center-information-box
  .center-btn-wrap {
  width: 100%;
  height: 55px;
  background-color: #2149a6;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 0 0 15px 15px;
}
.main_visual-wrap
  .section07
  .tab_inner
  .center-information-box
  .center-btn-wrap
  > a {
  width: 100%;
  height: 100%;
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.main_visual-wrap .section07 .tab_inner .center-information-box .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  border: 0;
  width: 30px;
  height: 30px;
  background-color: #2149a6;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.main_visual-wrap .section07 .tab_inner .center-information-box .close-btn i {
  font-size: 18px;
  color: #fff;
}

.main_visual-wrap
  .section07
  .gyeonggi-wrap
  .center-information-box
  .center-btn-wrap {
  background-color: #f08200;
}
.main_visual-wrap
  .section07
  .gwangju-wrap
  .center-information-box
  .center-btn-wrap {
  background-color: #05b142;
}
.main_visual-wrap
  .section07
  .jeonra-wrap
  .center-information-box
  .center-btn-wrap {
  background-color: #126aae;
}
.main_visual-wrap
  .section07
  .gyeongsang-wrap
  .center-information-box
  .center-btn-wrap {
  background-color: #4cb9b9;
}

.main_visual-wrap .section07 .gyeonggi-wrap .center-information-box .close-btn {
  background-color: #f08200;
}
.main_visual-wrap .section07 .gwangju-wrap .center-information-box .close-btn {
  background-color: #05b142;
}
.main_visual-wrap .section07 .jeonra-wrap .center-information-box .close-btn {
  background-color: #126aae;
}
.main_visual-wrap
  .section07
  .gyeongsang-wrap
  .center-information-box
  .close-btn {
  background-color: #4cb9b9;
}

.main_visual-wrap .section07 .location-wrap .tabWrap .list .active.cate01 {
  background-color: #2149a6;
}
.main_visual-wrap .section07 .location-wrap .tabWrap .list .active.cate02 {
  background-color: #f08200;
}
.main_visual-wrap .section07 .location-wrap .tabWrap .list .active.cate03 {
  background-color: #05b142;
}
.main_visual-wrap .section07 .location-wrap .tabWrap .list .active.cate04 {
  background-color: #126aae;
}
.main_visual-wrap .section07 .location-wrap .tabWrap .list .active.cate05 {
  background-color: #4cb9b9;
}

.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.gyeonggi-wrap
  .location_list_wrap
  .location_item
  .center_info
  span {
  background-color: #f08200;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.gyeonggi-wrap
  .location_list_wrap
  .location_item
  .center_btn
  > a {
  background-color: #f08200;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.gyeonggi-wrap
  .location_list_wrap
  .location_item
  .center_btn
  .center_view {
  background-color: transparent;
  border: 1px solid #f08200;
  color: #f08200;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.gyeonggi-wrap
  .location_list_wrap
  .location_item
  .center_btn
  .center_view:hover {
  background-color: #f08200;
  color: #fff;
}

.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.gwangju-wrap
  .location_list_wrap
  .location_item
  .center_info
  span {
  background-color: #05b142;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.gwangju-wrap
  .location_list_wrap
  .location_item
  .center_btn
  > a {
  background-color: #05b142;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.gwangju-wrap
  .location_list_wrap
  .location_item
  .center_btn
  .center_view {
  background-color: transparent;
  border: 1px solid #05b142;
  color: #05b142;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.gwangju-wrap
  .location_list_wrap
  .location_item
  .center_btn
  .center_view:hover {
  background-color: #05b142;
  color: #fff;
}

.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.jeonra-wrap
  .location_list_wrap
  .location_item
  .center_info
  span {
  background-color: #126aae;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.jeonra-wrap
  .location_list_wrap
  .location_item
  .center_btn
  > a {
  background-color: #126aae;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.jeonra-wrap
  .location_list_wrap
  .location_item
  .center_btn
  .center_view {
  background-color: transparent;
  border: 1px solid #126aae;
  color: #126aae;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.jeonra-wrap
  .location_list_wrap
  .location_item
  .center_btn
  .center_view:hover {
  background-color: #126aae;
  color: #fff;
}

.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.gyeongsang-wrap
  .location_list_wrap
  .location_item
  .center_info
  span {
  background-color: #4cb9b9;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.gyeongsang-wrap
  .location_list_wrap
  .location_item
  .center_btn
  > a {
  background-color: #4cb9b9;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.gyeongsang-wrap
  .location_list_wrap
  .location_item
  .center_btn
  .center_view {
  background-color: transparent;
  border: 1px solid #4cb9b9;
  color: #4cb9b9;
}
.main_visual-wrap
  .section07
  .location-wrap
  .tabWrap
  .tab_inner_wrap
  .tab_inner.gyeongsang-wrap
  .location_list_wrap
  .location_item
  .center_btn
  .center_view:hover {
  background-color: #4cb9b9;
  color: #fff;
}

@media all and (max-width: 1800px) {
  .main_visual-wrap .inner {
    max-width: 100%;
    width: 95%;
  }
}
@media all and (max-width: 1680px) {
  .header {
    height: 75px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .header .inner {
    width: 95%;
  }
  .header .gnb {
    display: none;
  }
}
@media all and (max-width: 1400px) {
  .button-w165-wrap .btn {
    width: calc(100% / 2 - 5px);
    height: 50px;
    font-size: 16px;
  }
  .section .inner {
    max-width: 100%;
    width: 95%;
    height: 100%;
  }

  .main_visual-wrap {
    padding: 0;
  }

  .main_visual-wrap .main-section {
    padding-top: 75px;
  }

  .main_visual-wrap .section02 {
    height: auto;
    padding: 80px 0;
  }
  .main_visual-wrap .section02 .text-box {
    height: auto;
    max-width: 100%;
  }
  .main_visual-wrap .section02 .text-box::before {
    bottom: -80px; /*left: 25px; width: 500px; height: 326px;*/
  }
  .main_visual-wrap .section02 .text-box::after {
    top: -80px;
    left: -150px;
    width: 757px;
    height: 685px;
  }

  .main_visual-wrap .section03 .inner::before {
    top: 70%;
    left: -15px;
  }
  .main_visual-wrap .section03 .text-box {
    width: calc(100% - 680px);
  }
  .main_visual-wrap .section03 .main_sec03Swiper {
    width: 650px;
  }
  .main_visual-wrap .section03 .main_sec03Swiper .swiper-slide {
    padding: 25px;
  }
  .main_visual-wrap .section03 .main_sec03Swiper .swiper-slide .top_txt {
    height: 50px;
  }
  .main_visual-wrap
    .section03
    .main_sec03Swiper
    .swiper-slide
    .top_txt
    .card_name {
    font-size: 20px;
  }
  .main_visual-wrap .section03 .main_sec03Swiper .swiper-slide .top_txt .img {
    height: 100%;
  }
  .main_visual-wrap .section03 .main_sec03Swiper .swiper-slide .mid_txt {
    height: 170px;
  }
  .main_visual-wrap
    .section03
    .main_sec03Swiper
    .swiper-slide
    .mid_txt
    .benefit_name {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 40px;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
  .main_visual-wrap
    .section03
    .main_sec03Swiper
    .swiper-slide
    .mid_txt
    .benefit_information {
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }

  .main_visual-wrap .section04 {
    height: auto;
    padding: 80px 0;
  }
  .main_visual-wrap .section04 .text-box {
    height: auto;
  }
  .main_visual-wrap .section04 .text-box::before {
    top: 50%;
    left: 0;
    width: 610px;
    height: 463px;
  }

  .main_visual-wrap .section05 {
    padding: 80px 0;
    height: 600px;
  }

  .main_visual-wrap .section06 .notice-textBox {
    width: calc(100% - 700px);
  }
  .main_visual-wrap .section06 .main_sec06Swiper {
    width: 650px;
  }

  /* 수정 */
  .main_visual-wrap .section07 .location-wrap {
    left: 0;
  }
  .main_visual-wrap .section07 .location-wrap .tabWrap {
    width: 100%;
  }
}
@media all and (max-width: 1240px) {
  .hashtag-wrap > li p {
    font-size: 14px;
  }
  .button-wrap .btn {
    width: 150px;
    height: 50px;
    font-size: 16px;
  }

  .main_visual-wrap .section02 .text-box::after {
    left: -70px;
    width: 600px;
    height: 543px;
  }
  .main_visual-wrap .section02 .text-box::before {
    left: 75px;
    width: 430px;
    height: 280px;
  }
  .main_visual-wrap .section .text-box .contents {
    width: 500px;
  }
  .main_visual-wrap .section .text-box .contents .top_text span {
    font-size: 18px;
  }
  .main_visual-wrap .section .text-box .contents .top_text .main-text {
    font-size: 40px;
  }
  .main_visual-wrap .section .text-box .contents .information-text,
  .main_visual-wrap .section06 .notice-textBox .notice-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 50px;
    word-break: break-all;
  }
  .main_visual-wrap .section .text-box .contents .information-text br,
  .main_visual-wrap .section06 .notice-textBox .notice-text br {
    display: none;
  }

  .main_visual-wrap .section03 .top-area {
    margin-bottom: 50px;
  }
  .main_visual-wrap .section03 .text-box {
    width: 100%;
    margin: 0;
    margin-bottom: 50px;
  }
  .main_visual-wrap .section03 .text-box .sec03-text {
    font-size: 40px;
  }
  .main_visual-wrap .section03 .text-box .sec03-text b {
    line-height: 1.3;
    display: block;
  }
  .main_visual-wrap .section03 .text-box .sec03-text br {
    display: none;
  }

  .main_visual-wrap .section03 .inner::before {
    width: 320px;
    height: 140px;
    top: 150px;
    left: auto;
    right: 15px;
    transform: none;
  }
  .main_visual-wrap .section03 .main_sec03Swiper {
    width: 100%;
  }
  .main_visual-wrap .section03 .main_sec03Swiper .swiper-slide {
    border-radius: 30px;
  }

  .main_visual-wrap .section04 .text-box::before {
    width: 430px;
    height: 332px;
  }

  .main_visual-wrap .section05 {
    padding: 0;
    height: 450px;
  }

  .main_visual-wrap .section06 {
    padding: 80px 0 150px;
  }
  .main_visual-wrap .section06 .notice-textBox {
    width: 100%;
    margin: 0;
    margin-bottom: 50px;
  }
  .main_visual-wrap .section06 .notice-textBox .notice-title {
    font-size: 40px;
  }
  .main_visual-wrap .section06 .notice-textBox .notice-title br {
    display: none;
  }
  .main_visual-wrap .section06 .main_sec06Swiper {
    width: 100%;
    overflow: visible;
  }

  .main_visual-wrap .section07 .inner::after {
    right: 0;
  }
  .main_visual-wrap .section07 .rig_area {
    padding-left: 20px;
    justify-content: center;
  }
  .main_visual-wrap .section07 .rig_area .text {
    width: 100%;
  }
  .main_visual-wrap .section07 .rig_area .text .title br,
  .main_visual-wrap .section07 .rig_area .text .information-box .info br {
    display: none;
  }
  .main_visual-wrap .section07 .rig_area .text .title {
    font-size: 22px;
  }
  .main_visual-wrap .section07 .rig_area .text .information-box {
    margin-top: 20px;
  }
  .main_visual-wrap .section07 .rig_area .text .information-box .info {
    font-size: 16px;
  }
  .main_visual-wrap .section07 .rig_area .img {
    width: 220px;
  }
}
@media all and (max-width: 1024px) {
  .hashtag-wrap > li p {
    font-size: 16px;
    font-family: var(--f400);
  }

  .main_visual-wrap {
    padding: 0;
  }

  .main_visual-wrap .section .text-box .contents .information-text,
  .main_visual-wrap .section06 .notice-textBox .notice-text {
    line-height: 1.7;
    color: #000;
  }
  .main_visual-wrap .section .text-box .contents .top_text .main-text {
    font-size: 50px;
  }

  .main_visual-wrap .section02 .text-box::after {
    width: 663px;
    height: 600px;
    left: auto;
    right: -100px;
  }
  .main_visual-wrap .section02 .text-box::before {
    display: none;
  }
  .main_visual-wrap .section .text-box .contents {
    width: 100%;
  }

  .main_visual-wrap .section03 .inner {
    padding: 50px 0 150px;
  }
  .main_visual-wrap .section03 .inner::before {
    left: -100px;
    right: auto;
    top: 70%;
    width: 596px;
    height: 260px;
  }
  .main_visual-wrap .section03 .hashtag-wrap {
    width: 100%;
  }
  .main_visual-wrap .section03 .hashtag-wrap > li {
    width: calc(100% / 3 - 30px);
    margin-bottom: 15px;
  }
  .main_visual-wrap .section03 .hashtag-wrap > li:nth-child(3n) {
    margin-right: 0;
  }
  .section03 .hashtag-wrap > li::before {
    display: none;
  }
  .main_visual-wrap .section03 .top-area .linkBtn_ {
    margin-top: 50px;
  }

  .main_visual-wrap .section03 .main_sec03Swiper .swiper-slide .mid_txt {
    height: auto;
  }
  .main_visual-wrap
    .section03
    .main_sec03Swiper
    .swiper-slide
    .mid_txt
    .benefit_name {
    height: 70px;
    margin-bottom: 20px;
  }
  .main_visual-wrap
    .section03
    .main_sec03Swiper
    .swiper-slide
    .mid_txt
    .benefit_information {
    height: 75px;
  }
  .main_visual-wrap .section03 .button-wrap .btn {
    width: calc(100% / 2 - 5px);
  }

  .main_visual-wrap .section04 .text-box::before {
    opacity: 0.8;
    left: auto;
    right: -20px;
  }

  .main_visual-wrap .section05 .text-box .contents .information-text {
    color: #fff;
  }

  .main_visual-wrap .section07 .inner::after {
    display: none;
  }
  .main_visual-wrap .section07 .notice-textBox {
    width: 95%;
    margin: 0 auto;
  }
  .main_visual-wrap .section07 .notice-textBox .notice-title {
    font-size: 40px;
  }
  .main_visual-wrap .section07 .notice-textBox .notice-title br {
    display: none;
  }
  .main_visual-wrap .section07 .notice-textBox .notice-text {
    font-size: 16px;
    color: #000;
  }
  .main_visual-wrap .section07 .rig_area {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .hashtag-wrap {
    display: none;
  }

  .main_visual-wrap .section {
    padding: 50px 0;
  }

  .main_visual-wrap .section .notice-textBox .category-title {
    font-size: 16px;
  }
  .main_visual-wrap .section .notice-textBox .notice-title {
    font-size: 28px;
    margin: 15px 0;
  }
  .main_visual-wrap .section .text-box .contents .top_text span {
    font-size: 16px;
  }
  .main_visual-wrap .section .text-box .contents .top_text .main-text,
  .main_visual-wrap .section03 .text-box .sec03-text {
    font-size: 38px;
  }

  .main_visual-wrap .section02 .text-box .contents .top_text {
    margin-top: 0;
  }
  .main_visual-wrap .section02 .text-box::after {
    width: 884px;
    height: 800px;
    right: -200px;
    top: -100px;
  }

  .main_visual-wrap .section03 .inner {
    padding: 0 0 100px;
  }
  .main_visual-wrap .section03 .top-area .linkBtn_ {
    margin-top: 0;
  }
  .main_visual-wrap .section03 .swiper-options {
    bottom: 25px;
  }

  .main_visual-wrap .section04 .text-box::before {
    display: none;
  }
  .main_visual-wrap .section04 .text-box .contents .top_text {
    margin-top: 0;
  }

  .main_visual-wrap .section05 .text-box .contents .top_text {
    margin-top: 0;
  }

  .main_visual-wrap .section06 {
    padding: 50px 0 130px;
  }
  .main_visual-wrap .section06 .notice-textBox .notice-text {
    margin-bottom: 30px;
  }
  .main_visual-wrap .section06 .swiper-options {
    bottom: -60px;
  }

  /* 수정 */
  .main_visual-wrap .section07 .location-wrap .tabWrap .list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .main_visual-wrap .section07 .location-wrap .tabWrap .list .tab_item {
    width: calc(100% / 3 - 14px);
    height: 40px;
    font-size: 15px;
    margin-right: 20px;
    margin-top: 15px;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .list
    .tab_item:nth-child(3n) {
    margin-right: 0;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .list
    .tab_item:last-child {
    margin-right: 0;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .list
    .tab_item:nth-child(n + 1):nth-child(-n + 3) {
    margin-top: 0;
  }

  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .tab_inner_wrap
    .tab_inner
    .location_list_wrap
    .location_item {
    padding: 10px 0;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .tab_inner_wrap
    .tab_inner
    .location_list_wrap
    .location_item
    .center_info
    p {
    font-size: 16px;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .tab_inner_wrap
    .tab_inner
    .location_list_wrap
    .location_item
    .center_btn
    > a {
    width: 70px;
    height: 25px;
    font-size: 14px;
  }

  .main_visual-wrap .section07 .center-information-box {
    width: 95%;
  }
}
@media all and (max-width: 430px) {
  .button-wrap .btn {
    width: calc(100% / 2 - 10px);
    border-radius: 15px;
  }
  .section .inner,
  .main_visual-wrap .section06 .inner,
  .main_visual-wrap .section07 .inner {
    max-width: 90%;
    width: 100%;
  }

  .main_visual-wrap .section .text-box .contents .top_text span {
    font-family: var(--f400);
    font-size: 18px;
    letter-spacing: -0.025em;
    color: #000;
    word-break: keep-all;
  }
  .main_visual-wrap .section .text-box .contents .top_text .main-text {
    font-family: var(--f900);
    font-size: 36px;
    letter-spacing: 0;
    color: #000;
    word-break: keep-all;
  }
  .main_visual-wrap .section .text-box .contents .information-text {
    font-family: var(--f400);
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #686868;
    margin-bottom: 45px;
  }

  .main_visual-wrap .section02 {
    height: 740px;
    padding: 80px 0;
    display: flex;
    align-items: flex-end;
  }
  .main_visual-wrap .section02 .text-box::after {
    width: 450px;
    height: 409px;
    right: auto;
    left: -210px;
    top: -355px;
  }
  .main_visual-wrap .section02 .text-box::before {
    display: block;
    width: 340px;
    height: 222px;
    top: -250px;
    bottom: auto;
    left: -30px;
    right: auto;
  }
  .main_visual-wrap .section02 .inner {
    height: auto;
  }
  .main_visual-wrap .section02 .text-box {
    height: auto;
  }

  .main_visual-wrap .section03 .m_linkBtn_ {
    display: block;
    font-family: var(--f500);
    font-size: 14px;
    margin-top: 20px;
    float: right;
    display: inline-block;
  }
  .main_visual-wrap .section03 .linkBtn_::before {
    width: 5px;
    height: 9px;
  }
  .main_visual-wrap .section03 {
    padding: 35px 0;
  }
  .main_visual-wrap .section03 .inner {
    padding: 0;
    max-width: 90%;
  }
  .main_visual-wrap .section03 .inner::before {
    display: none;
  }
  .main_visual-wrap .section03 .top-area {
    display: none;
  }
  .main_visual-wrap .section03 .text-box {
    margin-bottom: 20px;
  }
  .main_visual-wrap .section03 .text-box .sec03-text {
    font-size: 19px;
  }
  .main_visual-wrap .section03 .main_sec03Swiper {
    overflow: visible;
  }
  .main_visual-wrap .section03 .main_sec03Swiper .swiper-wrapper {
    margin-left: -19px;
  }
  .main_visual-wrap .section03 .main_sec03Swiper .swiper-slide {
    width: 250px;
    border-radius: 15px;
    padding: 20px;
  }
  .main_visual-wrap .section03 .main_sec03Swiper .swiper-slide .top_txt {
    margin-bottom: 30px;
  }
  .main_visual-wrap
    .section03
    .main_sec03Swiper
    .swiper-slide
    .top_txt
    .card_name {
    font-size: 16px;
  }
  .main_visual-wrap .section03 .main_sec03Swiper .swiper-slide .mid_txt {
    margin-bottom: 30px;
  }
  .main_visual-wrap
    .section03
    .main_sec03Swiper
    .swiper-slide
    .mid_txt
    .benefit_name {
    height: 28px;
    font-size: 20px;
    -webkit-line-clamp: 1;
  }
  .main_visual-wrap
    .section03
    .main_sec03Swiper
    .swiper-slide
    .mid_txt
    .benefit_information {
    height: 60px;
    font-size: 15px;
    line-height: 1.3;
  }
  .main_visual-wrap .section03 .button-wrap .btn {
    border-radius: 20px;
    font-size: 14px;
  }
  .main_visual-wrap .section03 .swiper-options {
    display: none;
  }

  .main_visual-wrap .section04 {
    height: 600px;
  }
  .main_visual-wrap .section04 .inner {
    height: auto;
  }
  .main_visual-wrap .section04 .text-box::before {
    display: block;
    top: auto;
    bottom: -228px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 350px;
    height: 261px;
  }

  .main_visual-wrap .section05 .text-box .contents .top_text span,
  .main_visual-wrap .section05 .text-box .contents .top_text .main-text,
  .main_visual-wrap .section05 .text-box .contents .information-text {
    color: #fff;
  }

  .main_visual-wrap .section06 {
    padding: 50px 0 100px;
  }
  .main_visual-wrap .section06 .main_sec06Swiper .swiper-slide {
    padding: 25px 15px;
  }
  .main_visual-wrap .section06 .main_sec06Swiper .swiper-slide .category-name {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .main_visual-wrap
    .section06
    .main_sec06Swiper
    .swiper-slide
    .notice-infoBox
    .notice-title {
    font-size: 19px;
    margin-bottom: 30px;
  }
  .main_visual-wrap
    .section06
    .main_sec06Swiper
    .swiper-slide
    .notice-infoBox
    .notice-info {
    font-size: 16px;
    -webkit-line-clamp: 4;
  }

  /* 수정 */
  .main_visual-wrap .section07 .notice-textBox {
    width: 100%;
  }

  .main_visual-wrap .section07 .location-wrap .tabWrap .list .tab_item {
    width: calc(100% / 2 - 10px);
    height: 40px;
    font-size: 15px;
    margin-right: 20px;
    margin-top: 15px;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .list
    .tab_item:nth-child(2n) {
    margin-right: 0;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .list
    .tab_item:nth-child(3n) {
    margin-right: 20px;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .list
    .tab_item:last-child {
    margin-right: 0;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .list
    .tab_item:nth-child(n + 1):nth-child(-n + 3) {
    margin-top: 15px;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .list
    .tab_item:nth-child(n + 1):nth-child(-n + 2) {
    margin-top: 0;
  }

  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .tab_inner_wrap
    .tab_inner
    .location_list_wrap
    .location_item
    .center_info
    span {
    width: 3px;
    height: 3px;
    margin-right: 5px;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .tab_inner_wrap
    .tab_inner
    .location_list_wrap
    .location_item
    .center_info
    p {
    font-size: 14px;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .tab_inner_wrap
    .tab_inner
    .location_list_wrap
    .location_item
    .center_btn
    > a {
    width: 55px;
    height: 20px;
    font-size: 10px;
  }
  .main_visual-wrap
    .section07
    .location-wrap
    .tabWrap
    .tab_inner_wrap
    .tab_inner
    .location_list_wrap
    .location_item
    .center_btn
    .center_view {
    margin-right: 5px;
  }

  .main_visual-wrap .section07 .center-information-box .center-text-wrap {
    padding: 30px 20px;
  }
  .main_visual-wrap
    .section07
    .center-information-box
    .center-text-wrap
    .center-tit {
    font-size: 18px;
  }
  .main_visual-wrap
    .section07
    .center-information-box
    .center-text-wrap
    .center-info
    > li {
    flex-wrap: wrap;
  }
  .main_visual-wrap
    .section07
    .center-information-box
    .center-text-wrap
    .center-info
    > li
    span {
    width: 100%;
    margin-bottom: 5px;
    font-family: var(--f700);
  }
  .main_visual-wrap
    .section07
    .center-information-box
    .center-text-wrap
    .center-info
    > li
    p {
    width: 100%;
    margin: 0;
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}

/* 서브페이지 */
.w1280 {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.page-title-wrap {
  margin-bottom: 50px;
}
.page-title-wrap .title {
  font-family: var(--f900);
  font-size: 48px;
  letter-spacing: -0.01em;
  color: #000;
  line-height: 1;
  display: block;
  margin-bottom: 55px;
}
.page-title-wrap .information-wrap {
  position: relative;
  background-color: #213f85;
  width: 100%;
  height: 220px;
  border-radius: 0 0 60px 0;
  display: flex;
  align-items: center;
  padding: 0 50px;
  overflow: hidden;
}
.page-title-wrap .information-wrap::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -60px;
  right: 0;
  width: 784px;
  height: 362px;
  background: url(/image/svis/svis01.png) no-repeat;
  background-size: cover;
  z-index: 1;
}
.page-title-wrap.information .information-wrap {
  background-color: #2b61dd;
}
.page-title-wrap.support .information-wrap {
  background-color: #342ab7;
}
.page-title-wrap.return .information-wrap {
  background-color: #7d2fa5;
}
.page-title-wrap.counseling .information-wrap {
  background-color: #1b69a0;
}
.page-title-wrap.notice .information-wrap {
  background-color: #2b61dd;
}

.page-title-wrap.history .information-wrap::after {
  bottom: 0;
  width: 800px;
  height: 348px;
  background: url(/image/svis/svis02.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.org .information-wrap::after {
  bottom: 0;
  width: 800px;
  height: 348px;
  background: url(/image/svis/svis03.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.business .information-wrap::after {
  bottom: 0;
  width: 800px;
  height: 348px;
  background: url(/image/svis/svis04.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.location .information-wrap::after {
  bottom: 0;
  width: 800px;
  height: 348px;
  background: url(/image/svis/svis05.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.point .information-wrap::after {
  bottom: 0;
  width: 800px;
  height: 348px;
  background: url(/image/svis/svis06.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.information .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis07.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.support .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis08.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.support02 .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis09.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.support03 .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis10.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.support04 .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis11.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.support05 .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis12.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.support06 .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis13.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.support07 .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis14.png) no-repeat;
  background-size: cover;
}

.page-title-wrap.return .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis15.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.counseling .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis16.png) no-repeat;
  background-size: cover;
}

.page-title-wrap.new .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis17.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.reference .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis18.png) no-repeat;
  background-size: cover;
}
.page-title-wrap.contact .information-wrap::after {
  bottom: 0;
  width: 1280px;
  height: 220px;
  background: url(/image/svis/svis19.png) no-repeat;
  background-size: cover;
}

.page-title-wrap .information-wrap span {
  font-family: var(--f100);
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.01em;
  word-break: keep-all;
  z-index: 2;
}
/*

.page-title-wrap.history .information-wrap{background-color: #008fae; overflow: hidden;}
.page-title-wrap.history .information-wrap::after{right: 0; width: 455px; height: 323px; background: url(/image/center/history_bg.png)no-repeat;}
.page-title-wrap.history .information-wrap span b{font-family: var(--f700); color: #fff;}

.page-title-wrap.information .information-wrap{background-color: #0080ff; overflow: hidden;}
.page-title-wrap.information .information-wrap::after{right: -65px; bottom: -115px; width: 996px; height: 403px; background: url(/image/employment/employment_bg.png)no-repeat;}
.page-title-wrap.information .information-wrap span b{font-family: var(--f700); color: #fff;}

.page-title-wrap .org-title-wrap{background-color: #235fcd; overflow: hidden;}
.page-title-wrap .org-title-wrap::after{right: 0; width: 420px; height: 300px; background: url(/image/center/org_bg.png)no-repeat;}
.page-title-wrap .org-title-wrap span b{font-family: var(--f700); color: #fff;}

.page-title-wrap .business-title-wrap{background-color: #235fcd; overflow: hidden;}
.page-title-wrap .business-title-wrap::after{right: 0; width: 420px; height: 300px; background: url(/image/center/business_bg.png)no-repeat;}
.page-title-wrap .business-title-wrap span b{font-family: var(--f700); color: #fff;}
*/

.span-w span b {
  font-family: var(--f800);
  color: #fff;
}

@media all and (max-width: 1280px) {
  .page-title-wrap .title {
    max-width: 95%;
    margin: 0 auto 25px;
  }
}
@media all and (max-width: 1200px) {
  .page-title-wrap .information-wrap {
    height: auto;
    padding: 50px;
    border-radius: 0;
  }
  .page-title-wrap .information-wrap::after {
    width: 500px;
    height: 240px;
  }
  .page-title-wrap.information .information-wrap span br {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  .page-title-wrap.information .information-wrap::after {
    right: 0;
    bottom: 0;
    width: 590px;
    height: 330px;
  }
}
@media all and (max-width: 768px) {
  .page-title-wrap {
    margin-bottom: 60px;
  }

  .page-title-wrap .information-wrap {
    padding: 50px 25px;
    border-radius: 0;
  }

  .page-title-wrap .information-wrap::after {
    display: block;
    z-index: 1;
    width: 229px;
    height: 175px;
    bottom: 0;
    right: 0px;
  }
  .page-title-wrap.org .information-wrap::after {
    display: none;
  }
  .page-title-wrap.history .information-wrap::after {
    width: 300px;
    height: 220px;
  }
  .page-title-wrap.business .information-wrap::after {
    width: 300px;
    height: 220px;
  }
  .page-title-wrap.location .information-wrap::after {
    width: 300px;
    height: 220px;
  }
  .page-title-wrap.point .information-wrap::after {
    width: 300px;
    height: 220px;
  }

  .page-title-wrap .information-wrap span {
    width: 100%;
    font-size: 20px;
    z-index: 3;
    word-break: break-all;
  }

  .page-title-wrap.information .information-wrap span,
  .page-title-wrap.support .information-wrap span,
  .page-title-wrap.return .information-wrap span,
  .page-title-wrap.counseling .information-wrap span,
  .page-title-wrap.notice .information-wrap span {
    width: 100%;
  }
  .page-title-wrap.information .information-wrap::after,
  .page-title-wrap.support .information-wrap::after,
  .page-title-wrap.return .information-wrap::after,
  .page-title-wrap.counseling .information-wrap::after,
  .page-title-wrap.new .information-wrap::after,
  .page-title-wrap.reference .information-wrap::after,
  .page-title-wrap.contact .information-wrap::after {
    display: none;
  }
}
@media all and (max-width: 430px) {
  .page-title-wrap .title {
    max-width: 90%;
    font-size: 30px;
    line-height: 1.3;
  }

  .page-title-wrap.history .information-wrap::after {
    width: 280px;
    height: 280px;
  }
  .page-title-wrap.business .information-wrap::after {
    width: 280px;
    height: 280px;
  }
  .page-title-wrap.location .information-wrap::after {
    width: 280px;
    height: 280px;
  }
  .page-title-wrap.point .information-wrap::after {
    width: 280px;
    height: 280px;
  }
}

/* 센터소개 > 인사말 */
.intro-page .contents {
  position: relative;
}
.intro-page .contents::after {
  content: "";
  display: block;
  clear: both;
}
.intro-page .contents .top-title {
  position: relative;
}
.intro-page .contents .top-title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 529px;
  height: 609px;
  background: url(/image/intro_img1.png) no-repeat;
  background-size: cover;
  content: "";
  display: block;
  z-index: 3;
}
.intro-page .contents .top-title .box {
  margin-bottom: 70px;
  overflow: hidden;
}
.intro-page .contents .top-title span {
  font-family: var(--f200);
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 20px;
  display: block;
}
.intro-page .contents .top-title p {
  font-family: var(--f200);
  font-size: 40px;
  color: #000;
  letter-spacing: -0.01em;
}
.intro-page .contents .top-title p b {
  font-family: var(--f800);
  font-size: 40px;
  color: #000;
  letter-spacing: -0.01em;
}

.intro-page .contents .main-text {
  position: relative;
  background-color: #1667b1;
  width: 100%;
  overflow: hidden;
}
.intro-page .contents .main-text .box {
  padding: 20px 0;
}
/*.intro-page .contents .main-text::after{background-color: #1667b1; width: 100%; height: 280px; content: ''; display: block; position: absolute; top: 0; left: 0;}*/
.intro-page .contents .main-text p {
  margin-bottom: 30px;
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.01em;
}
.intro-page .contents .main-text p:last-child {
  margin-bottom: 0;
}

.intro-page .contents .last-text {
  margin-top: 60px;
  overflow: hidden;
}
.intro-page .contents .last-text span {
  font-family: var(--f400);
  font-size: 24px;
  line-height: 1.3;
  color: #000;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  display: block;
}
.intro-page .contents .last-text p {
  margin-bottom: 30px;
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.4;
  color: #636262;
  letter-spacing: -0.01em;
}
.intro-page .contents .last-text p:last-child {
  margin-bottom: 0;
}

.intro-page .contents .box {
  width: 655px;
  float: right;
}

@media all and (max-width: 1280px) {
  .w1280 {
    max-width: 95%;
  }
  .intro-page .contents .top-title::before {
    display: none;
  }
  .intro-page .contents .box {
    width: 100%;
    float: none;
  }
  .intro-page .contents .main-text {
    display: flex;
    align-items: center;
  }
  .intro-page .contents .main-text .inner {
    max-width: 95%;
  }
}
@media all and (max-width: 768px) {
  .intro-page .contents .top-title span {
    font-size: 40px;
  }
  .intro-page .contents .top-title p {
    font-size: 24px;
  }
  .intro-page .contents .top-title p b {
    font-size: 24px;
  }
  .intro-page .contents .top-title .box {
    margin-bottom: 45px;
  }

  .intro-page .contents .main-text p,
  .intro-page .contents .last-text p {
    font-family: var(--f300);
    word-break: break-all;
  }
  .intro-page .contents .main-text .inner {
    max-width: 90%;
  }

  .intro-page .contents .last-text {
    margin-top: 45px;
  }
  .intro-page .contents .last-text span {
    word-break: keep-all;
  }
}
@media all and (max-width: 430px) {
  .w1280 {
    max-width: 90%;
  }

  .intro-page .contents .top-title span {
    margin-bottom: 15px;
  }
  .intro-page .contents .top-title p,
  .intro-page .contents .top-title p b {
    font-size: 20px;
  }
  .intro-page .contents .main-text p,
  .intro-page .contents .last-text p {
    font-size: 16px;
    line-height: 24px;
  }

  .intro-page .contents .last-text span {
    word-break: break-all;
  }
}

/* 센터소개 > 연혁 */
.history_contents .inner {
  position: relative;
}
.history_contents .inner .his_box {
  position: relative;
  padding-left: 100px;
}
.history_contents .inner .his_box::before {
  content: "";
  display: block;
  position: absolute;
  top: -110px;
  left: 65px;
  width: 1px;
  height: calc(100% + 115px);
  background-color: #ccc;
  z-index: -1;
}
.history_contents .inner .row {
  width: 100%;
  display: block;
  margin-bottom: 100px;
}
.history_contents .inner .row:last-child {
  margin-bottom: 0;
}
.history_contents .inner .row .year {
  font-family: var(--f900);
  font-size: 72px;
  letter-spacing: 0;
  color: #000;
  width: 100%;
  margin-bottom: 50px;
  display: block;
  position: relative;
}
.history_contents .inner .row .year::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #e30011;
  border-radius: 100%;
}
.history_contents .inner .row .contents {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}
/*.history_contents .inner .row .contents > li{width: calc(100%/3 - 20px); margin-right: 30px; margin-top: 60px;}*/
.history_contents .inner .row .contents > li {
  width: 100%;
  margin-top: 60px;
}
.history_contents
  .inner
  .row
  .contents
  > li:nth-child(n + 1):nth-child(-n + 3) {
  margin-top: 0;
}
.history_contents .inner .row .contents > li:nth-child(3n) {
  margin-right: 0;
}
.history_contents .inner .row .contents > li .contents_title {
  font-family: var(--f600);
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #000;
  margin-bottom: 20px;
  display: block;
  word-break: keep-all;
}
.history_contents .inner .row .contents > li .contents_info > li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}
.history_contents .inner .row .contents > li .contents_info > li:last-child {
  margin-bottom: 0;
}
.history_contents .inner .row .contents > li .contents_info > li p {
  padding-left: 15px;
  position: relative;
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0;
  word-break: keep-all;
}
.history_contents .inner .row .contents > li .contents_info > li p::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 100%;
}

@media all and (max-width: 1024px) {
  .history_contents .inner .his_box {
    padding-left: 50px;
  }
  .history_contents .inner .his_box::before {
    left: 15px;
  }
  .history_contents .inner .row .year {
    font-size: 45px;
    margin-bottom: 30px;
  }
  /*	.history_contents .inner .row .contents > li{width: calc(100%/2 - 20px); margin-top: 40px;}*/
  .history_contents
    .inner
    .row
    .contents
    > li:nth-child(n + 1):nth-child(-n + 3) {
    margin-top: 40px;
  }
  .history_contents
    .inner
    .row
    .contents
    > li:nth-child(n + 1):nth-child(-n + 2) {
    margin-top: 0;
  }
  .history_contents .inner .row .contents > li:nth-child(2n) {
    margin-right: 0;
  }
  .history_contents .inner .row .contents > li:nth-child(2n + 1) {
    margin-right: 30px;
  }
  .history_contents .inner .row .contents > li .contents_title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .history_contents .inner .row .contents > li .contents_info > li {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 768px) {
  .history_contents .inner {
    max-width: 90%;
  }
  .history_contents .inner .row .contents > li {
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
  }
  .history_contents
    .inner
    .row
    .contents
    > li:nth-child(n + 1):nth-child(-n + 3) {
    margin-top: 0px;
  }
  .history_contents .inner .row .contents > li:nth-child(2n + 1) {
    margin-right: 0;
  }
  .history_contents .inner .row .contents > li:last-child {
    margin-bottom: 0;
  }
}
@media all and (max-width: 430px) {
  .history_contents .inner .his_box {
    padding-left: 25px;
  }
  .history_contents .inner .his_box::before {
    left: 0;
  }
  .history_contents .inner .row .year::before {
    left: -29px;
    width: 10px;
    height: 10px;
  }

  .history_contents .inner .row .year {
    font-size: 38px;
    margin-bottom: 15px;
  }
  .history_contents .inner .row .contents > li .contents_title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .history_contents .inner .row .contents > li .contents_info > li p {
    font-size: 14px;
    padding-left: 10px;
  }
  .history_contents .inner .row .contents > li .contents_info > li p::before {
    width: 3px;
    height: 3px;
    top: 7px;
    transform: none;
  }
}

/* 센터소개 > 오시는길 */
.contents .top {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.contents .top .location-info {
  display: flex;
  flex-direction: row;
}
.contents .top .location-info > li {
  width: calc(100% / 3);
}
.contents .top .location-info > li .title {
  font-family: var(--f700);
  font-size: 22px;
  margin-bottom: 25px;
}
.contents .top .location-info > li .infomation .info-text {
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.4;
}
.contents .top .location-info > li .infomation .info-list {
  display: flex;
  flex-direction: column;
}
.contents .top .location-info > li .infomation .info-list > li {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}
.contents .top .location-info > li .infomation .info-list > li:last-child {
  margin-bottom: 0;
}
.contents .top .location-info > li .infomation .info-list > li .name {
  width: 80px;
  font-family: var(--f400);
  font-size: 16px;
}
.contents .top .location-info > li .infomation .info-list > li .info-text2 {
  width: calc(100% - 80px);
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.4;
}
.contents .top .location-info > li .infomation .info-list.flex-column > li {
  flex-direction: column;
  align-items: flex-start;
}
.contents
  .top
  .location-info
  > li
  .infomation
  .info-list.flex-column
  > li
  .name {
  font-family: var(--f700);
  color: var(--color);
}
.contents .top .location-info > li .infomation .info-list > li .inner-info {
  padding: 10px;
}
.contents
  .top
  .location-info
  > li
  .infomation
  .info-list
  > li
  .inner-info
  > li {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  position: relative;
}
.contents
  .top
  .location-info
  > li
  .infomation
  .info-list
  > li
  .inner-info
  > li:last-child {
  margin-bottom: 0;
}
.contents
  .top
  .location-info
  > li
  .infomation
  .info-list
  > li
  .inner-info
  > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: -10px;
  width: 3px;
  height: 3px;
  background-color: #000;
}
.contents
  .top
  .location-info
  > li
  .infomation
  .info-list
  > li
  .inner-info
  > li
  .sbw-num {
  width: 80px;
  font-family: var(--f400);
  font-size: 15px;
  line-height: 1.4;
}
.contents
  .top
  .location-info
  > li
  .infomation
  .info-list
  > li
  .inner-info
  > li
  .sbw-info {
  width: calc(100% - 80px);
  font-family: var(--f400);
  font-size: 15px;
  line-height: 1.4;
}

.contents .location {
  margin-top: 80px;
}
.contents .location .map-wrap {
  width: 100%;
}
.contents .location .map-wrap .location_map {
  width: 100%;
  height: 400px;
}
.gmnoprint {
  display: none !important;
}

@media all and (max-width: 1280px) {
  .contents .top {
    max-width: 90%;
  }
}
@media all and (max-width: 1024px) {
  .contents .top .location-info {
    flex-wrap: wrap;
  }
  .contents .top .location-info > li {
    width: calc(100% / 2);
  }
  .contents .top .location-info > li:nth-child(3) {
    margin-top: 30px;
  }
}
@media all and (max-width: 768px) {
  .contents .top .location-info > li {
    width: 100%;
    margin-bottom: 45px;
  }
  .contents .top .location-info > li:last-child {
    margin-bottom: 0;
    margin-top: 0;
  }
  .contents .top .location-info > li .title {
    margin-bottom: 15px;
  }
}

/* 센터소개 > 전국지점 */
.contents.point .point-area {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
/*.contents.point .point-area::after{content: ''; display: block; position: absolute; top: 50%; right: 0; transform: translateY(-50%); background: url(/image/location_map2_230926.png)no-repeat; background-size: cover; width: 600px; height: 510px;}*/
.contents.point .notice-textBox {
  width: 650px;
  position: relative;
  z-index: 2;
}
.contents.point .notice-textBox .category-title {
  font-family: var(--f600);
  font-size: 20px;
  letter-spacing: 0;
  color: #2149a6;
  position: relative;
}
.contents.point .notice-textBox .category-title::after {
  position: absolute;
  top: 50%;
  right: -157px;
  transform: translateY(-50%);
  width: 142px;
  height: 0.5px;
  background-color: #000;
  content: "";
  display: block;
}
.contents.point .notice-textBox .notice-title {
  margin: 30px 0;
  font-family: var(--f800);
  font-size: 54px;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.025em;
}
.contents.point .notice-textBox .notice-title i {
  color: #2149a6;
}
.contents.point .notice-textBox .notice-text {
  font-family: var(--f400);
  font-size: 20px;
  color: #727272;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 50px;
}

.contents.point .tabWrap {
  width: 580px;
  margin-top: 0px;
}
.contents.point .tabWrap .list {
  width: 100%;
  display: flex;
  text-align: center;
}
.contents.point .tabWrap .list .tab_item {
  width: 122px;
  height: 43px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f400);
  font-size: 16px;
  letter-spacing: 0;
  color: #4b4b4b;
  background-color: #fff;
  box-shadow: 5px 8px 18px rgba(33, 73, 166, 13%);
  cursor: pointer;
  margin-left: 10px;
}
.contents.point .tabWrap .list .tab_item.active {
  background-color: #2149a6;
  font-family: var(--f500);
  color: #fff;
}
.contents.point .tabWrap .tab_inner_wrap {
  margin-top: 35px;
  border-radius: 15px;
  box-shadow: 5px 8px 35px rgba(33, 73, 166, 16%);
}
.contents.point .tabWrap .tab_inner_wrap .tab_inner {
  display: none;
  border-radius: 15px;
}
.contents.point .tabWrap .tab_inner_wrap .tab_inner.active {
  display: block;
  position: relative;
  border-radius: 15px;
}

.contents.point .swiper-slide {
  background-color: #fff;
  border-radius: 15px;
}
.contents.point .text_box {
  padding: 35px 40px 30px;
}
.contents.point .center_name {
  font-family: var(--f700);
  font-size: 20px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.contents.point .center_info {
  width: 100%;
  margin: 25px 0 0;
}
.contents.point .center_info > li {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}
.contents.point .center_info > li:last-child {
  margin-bottom: 0;
}
.contents.point .center_info > li span {
  width: 30px;
  font-family: var(--f500);
  font-size: 15px;
  color: #000;
  line-height: 1.3;
  letter-spacing: 0;
}
.contents.point .center_info > li p {
  width: calc(100% - 45px);
  margin-left: 15px;
  font-family: var(--f400);
  font-size: 15px;
  color: #606060;
  line-height: 1.3;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.contents.point .infomation_btn {
  width: 100%;
  height: 55px;
  background-color: #2149a6;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 0 0 15px 15px;
}
.contents.point .infomation_btn > a {
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.contents.point .infomation_btn .viewBtn_ {
  width: 50%;
}
.contents.point .infomation_btn .viewBtn_::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #7a92ca;
}
.contents.point .infomation_btn .locationBtn_ {
  width: 50%;
}

.contents.point .swiper-options {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.contents.point .swiper-options .swiper-button-next,
.contents.point .swiper-options .swiper-button-prev {
  position: absolute;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  justify-content: center;
  width: 47px;
  height: 47px;
  background-color: #fff;
  box-shadow: 5px 8px 35px rgba(33, 73, 166, 28%);
  border-radius: 100%;
}
.contents.point .swiper-options .swiper-button-next,
.contents.point .swiper-options .swiper-rtl .swiper-button-prev {
  right: -25px;
  left: auto;
}
.contents.point .swiper-options .swiper-button-prev,
.contents.point .swiper-options .swiper-rtl .swiper-button-next {
  right: auto;
  left: -25px;
}

.contents.point .swiper-options .swiper-button-next:after,
.contents.point .swiper-options .swiper-rtl .swiper-button-prev:after {
  font-family: "axicon";
  font-size: 24px;
  color: #000;
  display: block;
  content: "\f105";
}

.contents.point .swiper-options .swiper-button-prev:after,
.contents.point .swiper-options .swiper-rtl .swiper-button-next:after {
  font-family: "axicon";
  font-size: 24px;
  color: #000;
  display: block;
  content: "\f104";
}

.contents.point .rig_area {
  width: calc(100% - 650px);
  padding-left: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  z-index: 10;
}
.contents.point .rig_area .text {
  width: 280px;
  padding-bottom: 15px;
}
.contents.point .rig_area .text .title {
  font-family: var(--f900);
  font-size: 34px;
  line-height: 1.3;
}
.contents.point .rig_area .text .information-box {
  width: 100%;
  margin-top: 40px;
}
.contents.point .rig_area .text .information-box .info {
  font-family: var(--f500);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.contents.point .rig_area .text .information-box .info:last-child {
  margin-bottom: 0;
}
.contents.point .rig_area .text .information-box .info b {
  font-family: var(--f900);
}
.contents.point .rig_area .img {
  width: calc(100% - 280px);
}

@media all and (max-width: 1280px) {
  .contents.point .point-area {
    max-width: 95%;
  }
  .contents.point .point-area::after {
    right: 0;
  }

  .contents.point .point-area .rig_area {
    padding-left: 20px;
    justify-content: center;
  }
  .contents.point .point-area .rig_area .text {
    width: 100%;
  }
  .contents.point .point-area .rig_area .text .title br,
  .contents.point .point-area .rig_area .text .information-box .info br {
    display: none;
  }
  .contents.point .point-area .rig_area .text .title {
    font-size: 22px;
  }
  .contents.point .point-area .rig_area .text .information-box {
    margin-top: 20px;
  }
  .contents.point .point-area .rig_area .text .information-box .info {
    font-size: 16px;
  }
  .contents.point .point-area .rig_area .img {
    width: 220px;
  }
}
@media all and (max-width: 1024px) {
  .contents.point .point-area::after {
    display: none;
  }
  .contents.point .point-area .notice-textBox {
    width: 95%;
    margin: 0 auto;
  }
  .contents.point .point-area .notice-textBox .notice-title {
    font-size: 40px;
  }
  .contents.point .point-area .notice-textBox .notice-title br {
    display: none;
  }
  .contents.point .point-area .notice-textBox .notice-text {
    font-size: 16px;
    color: #000;
  }
  .contents.point .point-area .tabWrap {
    width: 100%;
  }

  .contents.point .point-area .rig_area {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .contents.point .point-area .swiper-options .swiper-button-next,
  .contents.point .point-area .swiper-options .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  .contents.point .point-area .swiper-options .swiper-button-next,
  .contents.point .point-area .swiper-options .swiper-rtl .swiper-button-prev {
    right: -15px;
  }
  .contents.point .point-area .swiper-options .swiper-button-prev,
  .contents.point .point-area .swiper-options .swiper-rtl .swiper-button-next {
    left: -15px;
  }
}
@media all and (max-width: 430px) {
  .contents.point .point-area .text_box {
    padding: 20px 35px;
  }
  .contents.point .point-area .notice-textBox {
    width: 90%;
  }
  .contents.point .notice-textBox .category-title {
    font-size: 16px;
  }
  .contents.point .point-area .notice-textBox .notice-title {
    font-size: 28px;
    margin: 15px 0;
  }
  .contents.point .point-area .notice-textBox .notice-text {
    margin-bottom: 20px;
  }
  .contents.point .point-area .tabWrap .list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contents.point .point-area .tabWrap .list .tab_item {
    margin: 5px;
    width: calc(100% / 2 - 10px);
  }
}

/* 센터소개 > 조직도 */
.org2 {
  margin: 0 auto;
}
.org2 .box .tit {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org_01 {
  position: relative;
}
.org_01 .box .tit {
  width: 200px;
  height: 200px;
  background-color: #153b7f;
  border-radius: 50%;
  margin: 0 auto;
}
.org_01 .box .tit span {
  font-family: var(--f800);
  font-size: 30px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.org_02 .box .tit {
  background-color: #c9dbf3;
  margin: 0 auto;
  position: relative;
}
.org_02 .box .tit span {
  font-family: var(--f500);
  font-size: 20px;
}

.org_03 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.org_03 .box {
  position: relative;
}
.org_03 .box .top1 {
  background-color: #006aaf;
}
.org_03 .box .top2 {
  background-color: #008fcf;
}
.org_03 .box .tit {
  margin-bottom: 15px;
}
.org_03 .box .tit span {
  font-family: var(--f500);
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
}
.org_03 .box:last-of-type .tit {
  margin-bottom: 0;
}

.org_04 {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  position: relative;
}
.org_04 .box {
  position: relative;
}
.org_04 .box:last-of-type {
  margin-right: 0;
}
.org_04 .box .tit {
  background-color: #717070;
}
.org_04 .box .tit {
  margin: 0 auto;
  margin-bottom: 30px;
  position: relative;
}
.org_04 .box .tit > span {
  font-family: var(--f500);
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
}
.org_04 .box .sub_orgPart .cont .tit > span {
  font-family: var(--f500);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
}
.org_04 .cont {
  margin-right: 40px;
  position: relative;
}
.org_04 .cont:last-of-type {
  margin-right: 0;
}
.org_04 .cont:nth-child(2n) {
  margin-right: 0;
}
.org_04 .cont .tit {
  background-color: #fff;
  border: 2px solid #ececec;
  width: 160px;
}

.org_04 .box:nth-child(1),
.org_04 .box:nth-child(3) {
  width: 200px;
}
.org_04 .box:nth-child(2) {
  width: calc(100% - 460px);
  margin: 0 30px;
}
.org_04 .sub_orgPart {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 30px;
}
.org_04 .org_04_02 {
  display: flex;
  padding-top: 30px;
}

.org_04_01 > .cont:first-of-type {
  margin-top: 0;
}

.line01 > .cont {
  width: 100%;
  margin-right: 0;
}
.line01 > .cont .tit {
  width: 100%;
}
.line05 {
  width: 100%;
}
.line05 > .cont {
  width: calc(100% / 5 - 10px);
  margin-right: 0;
}
.line05 > .cont .tit {
  width: 100%;
  margin-bottom: 0;
}
.line05 > .cont .sub_point {
  border: 2px solid #ececec;
  border-top: 0;
  padding: 10px;
  text-align: center;
}
.line05 > .cont .sub_point > ul > li {
  width: 100%;
  margin-bottom: 10px;
}
.line05 > .cont .sub_point > ul > li:last-child {
  margin-bottom: 0;
}
.line05 > .cont .sub_point > ul > li > span {
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
}

.org_03::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #9b9b9b;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.org_03 .org_03_01 .box::after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background-color: #9b9b9b;
  position: absolute;
  right: -200px;
  top: 50%;
  margin-left: 45px;
}

.org_04::after {
  content: "";
  display: block;
  width: calc(100% - 200px);
  height: 1px;
  background-color: #9b9b9b;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.org_04 > .box::before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: #9b9b9b;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
}
.org_04 > .box > .tit::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: #9b9b9b;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
}
.org_04 > .box:last-of-type > .tit::after {
  display: none;
}
.org_04 .cont::before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: #9b9b9b;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
}
.org_04 .org_04_01::before,
.org_04 .org_04_02::before {
  content: "";
  display: block;
  width: calc(100% - 155px);
  height: 1px;
  background-color: #9b9b9b;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.org_02 .box .tit::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1e3d86;
  z-index: 3;
}

.org2 .box .point-top2 {
  background-color: #eeefef;
}
.point-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1e3d86;
  z-index: 3;
}
.point-right::before {
  content: "";
  display: block;
  position: absolute;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1e3d86;
  z-index: 3;
}
.point-left::before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1e3d86;
  z-index: 3;
}

@media all and (max-width: 1240px) {
  .org2 {
    max-width: 95%;
    width: 100%;
  }
  .org_03 {
    justify-content: center;
  }
  .org_03::after {
    z-index: -1;
  }
  .point-right::before,
  .org_03 .org_03_01 .box::after {
    display: none;
  }

  .org_04 .org_04_01::before,
  .org_04 .org_04_02::before {
    width: calc(100% - 48%);
  }
  .line05 > .cont {
    width: calc(100% / 2 - 10px);
    margin-top: 30px;
  }
  .line05 > .cont:nth-child(n + 1):nth-child(-n + 2) {
    margin-top: 0;
  }
  .line05 > .cont .sub_point {
    height: 250px;
  }
}
@media all and (max-width: 768px) {
  .org_04 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: normal;
  }
  .org_04::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 430px;
    background-color: #9b9b9b;
  }
  .org_04::after {
    width: calc(100% / 2 + 15px);
  }
  .org_04 .box {
    margin-top: 30px;
  }
  .org_04 .box:first-child {
    margin-top: 0;
  }
  .org_04 .box:nth-child(1),
  .org_04 .box:nth-child(2),
  .org_04 .box:nth-child(3) {
    width: calc(100% / 2 - 15px);
    margin-right: 30px;
  }
  .org_04 .box:nth-child(1) {
    order: 1;
  }
  .org_04 .box:nth-child(2) {
    order: 3;
    width: 100%;
    margin: 0;
  }
  .org_04 .box:nth-child(3) {
    order: 2;
    margin-top: 0;
    margin-right: 0;
  }
  .org_04 .box .tit {
    width: 100%;
  }
  .org_04 .org_04_02 {
    padding-top: 0;
  }
  .org_04 .org_04_01::before,
  .org_04 .org_04_02::before {
    display: none;
  }
  .org_04 .box:nth-child(2)::before,
  .org_04 > .box > .tit::after {
    display: none;
  }
}
@media all and (max-width: 430px) {
  .org_01 .box .tit {
    width: 140px;
    height: 140px;
  }
  .org_01 .box .tit span {
    font-size: 24px;
  }
  .org_03 .box .tit,
  .org_04 .box .tit {
    height: 35px;
  }

  .org_03 .box .tit span,
  .org_04 .box .tit > span,
  .org_04 .box .sub_orgPart .cont .tit > span,
  .line05 > .cont .sub_point > ul > li > span {
    font-size: 14px;
  }

  .org_04::before {
    height: 355px;
  }
}

/* 센터소개 > 주요사업 */
.business-wrap .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}
.business-wrap .row {
  width: calc(100% / 2 - 10px);
  margin-right: 20px;
  margin-top: 25px;
}
.business-wrap .row:nth-child(2n) {
  margin-right: 0;
}
.business-wrap .row:nth-child(n + 1):nth-child(-n + 2) {
  margin-top: 0;
}
.business-wrap .row .business-box > li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 10px;
  margin-bottom: 12px;
}
.business-wrap .row .business-box > li:last-child {
  margin-bottom: 0;
}
.business-wrap .row .business-box > li .year {
  width: 125px;
  font-family: var(--f900);
  font-size: 50px;
  color: #000;
}
.business-wrap .row .business-box > li .bn-contents {
  width: calc(100% - 145px);
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px dashed #777;
}
.business-wrap .row .business-box > li .bn-contents .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}
.business-wrap .row .business-box > li .bn-contents .item:last-child {
  margin-bottom: 0;
}
.business-wrap .row .business-box > li .bn-contents .item span {
  width: 120px;
  font-family: var(--f600);
  font-size: 16px;
  color: #000;
  line-height: 1.3;
}
.business-wrap .row .business-box > li .bn-contents .item p {
  width: calc(100% - 120px);
  font-family: var(--f300);
  font-size: 16px;
  color: #3b3b3b;
  line-height: 1.3;
}

@media all and (max-width: 1280px) {
  .business-wrap .inner {
    max-width: 95%;
  }
  .business-wrap .row .business-box > li .bn-contents .item {
    align-items: flex-start;
  }
}
@media all and (max-width: 1024px) {
  .business-wrap .row {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
  .business-wrap .row:last-child {
    margin-bottom: 0;
  }
}
@media all and (max-width: 768px) {
  .business-wrap .inner {
    max-width: 90%;
  }
  .business-wrap .row .business-box > li {
    padding: 15px;
  }
  .business-wrap .row .business-box > li .year {
    width: 100%;
    font-size: 36px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #777;
  }
  .business-wrap .row .business-box > li .bn-contents {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
  }
  .business-wrap .row .business-box > li .bn-contents .item {
    flex-wrap: wrap;
  }
  .business-wrap .row .business-box > li .bn-contents .item span {
    width: 100%;
    font-size: 14px;
    margin-bottom: 5px;
  }
  .business-wrap .row .business-box > li .bn-contents .item p {
    width: 100%;
    font-size: 14px;
    padding-left: 5px;
  }
}

/* 소개 영역 */
.contents.information {
  width: 100%;
}
.contents.information .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.contents.information .box {
  margin-bottom: 50px;
  width: 100%;
}
.contents.information .box:last-of-type {
  margin-bottom: 0;
}
.contents.information .line-box {
  margin-top: 100px;
}
.contents.information .line-title {
  font-family: var(--f800);
  font-size: 30px;
  line-height: 1.3;
  color: var(--color);
  margin-bottom: 30px;
  display: block;
  width: 100%;
}
.contents.information .contents-title {
  font-family: var(--f700);
  font-size: 22px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 20px;
}
.contents.information .information-text {
  margin-top: 20px;
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.5;
  color: #636363;
  word-break: break-all;
  letter-spacing: 0;
}
.contents.information .row {
  margin-bottom: 40px;
}
.contents.information .row:last-of-type {
  margin-bottom: 0;
}
.contents.information .row .row-title {
  font-family: var(--f700);
  font-size: 18px;
  line-height: 1.3;
  color: #363636;
  position: relative;
  padding-left: 20px;
}
.contents.information .row .row-title::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color);
}
.contents.information .row .row-ul {
  margin-top: 10px;
  padding-left: 15px;
}
.contents.information .row .row-ul > li {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.contents.information .row .row-ul > li:last-child {
  margin-bottom: 0;
}
.contents.information .row .row-ul > li span {
  width: 5px;
  height: 5px;
  background-color: var(--color);
  border-radius: 100%;
  margin-top: 7px;
  display: inline-block;
  vertical-align: top;
}
.contents.information .row .row-ul > li p {
  width: calc(100% - 20px);
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.5;
  color: #636363;
  margin-left: 10px;
  word-break: break-all;
  letter-spacing: 0;
  display: inline-block;
}
.contents.information .row .row-ul > li p i {
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.5;
  color: #636363;
  letter-spacing: 0;
}
.contents.information .row .row-ul > li p b {
  font-family: var(--f600);
  color: var(--color);
  letter-spacing: 0;
}

.contents.information .row .row-ul2 {
  padding-left: 0;
}
.contents.information .row .row-ul2 > li {
  flex-direction: column-reverse;
}
.contents.information .row .row-ul2 > li .parti_btn {
  width: 200px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1e3d86;
  border-radius: 10px;
  font-family: var(--f500);
  font-size: 18px;
  color: #fff;
  letter-spacing: 0;
}
.contents.information .row .row-ul2 > li .contactUs {
  margin-bottom: 10px;
  width: 100%;
  font-family: var(--f500);
  color: #222;
}
.contents.information .row .row-ul2 > li .contactUs > a {
  color: red;
  padding-left: 5px;
}
.contents.information .row .row-ul2 > li .contactUs > a:first-child {
  margin: 0;
  padding-right: 5px;
}

.contents.information .row .row-table {
  table-layout: fixed;
  width: 100%;
  border-top: 2px solid #000;
  margin-top: 15px;
}
.contents.information .row .row-table caption {
  text-align: left;
  font-family: var(--f700);
  font-size: 16px;
  color: #363636;
  margin-bottom: 5px;
}
.contents.information .row .row-table thead tr {
  border-bottom: 1px solid #ededed;
}
.contents.information .row .row-table thead tr th {
  padding: 15px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: var(--f700);
  font-size: 18px;
  color: #000;
  border-right: 1px solid #ededed;
  vertical-align: middle;
}
.contents.information .row .row-table thead tr th:last-child {
  border: 0;
}
.contents.information .row .row-table thead tr td {
  padding: 15px;
  background-color: #fff;
  text-align: center;
  font-family: var(--f600);
  font-size: 16px;
  color: #000;
  border-right: 1px solid #ededed;
  vertical-align: middle;
}
.contents.information .row .row-table thead tr td:last-child {
  border: 0;
}
.contents.information .row .row-table tbody tr {
  border-bottom: 1px solid #ededed;
}
.contents.information .row .row-table tbody tr th {
  background-color: #f9f9f9;
  padding: 15px;
  vertical-align: top;
  border-right: 1px solid #ededed;
  font-family: var(--f600);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  vertical-align: middle;
  word-break: keep-all;
}
.contents.information .row .row-table tbody tr td {
  padding: 15px;
  vertical-align: top;
  border-right: 1px solid #ededed;
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.3;
  color: #363636;
  vertical-align: middle;
  word-break: keep-all;
}
.contents.information .row .row-table tbody tr td:last-child {
  border: 0;
}

.contents.information .row .center-table tbody tr th,
.contents.information .row .center-table tbody tr td {
  text-align: center;
}

.contents.information .row .row-table tbody tr td ul > li {
  margin-bottom: 5px;
}
.contents.information .row .row-table tbody tr td ul > li:last-child {
  margin-bottom: 0;
}
.contents.information .row .row-table tbody tr td .num {
  width: 100%;
  height: auto;
  background-color: transparent;
  margin-bottom: 5px;
  font-family: var(--f500);
  font-size: 16px;
  color: var(--color);
  display: block;
}
.contents.information .row .row-table tbody tr td .table-text {
  display: block;
  margin: 0;
}

.contents.information .row .sub-table.sub11-table thead tr th:nth-child(1) {
  width: 20%;
}
.contents.information .row .sub-table.sub11-table thead tr th:nth-child(2) {
  width: auto;
}
.contents.information .row .sub-table.sub11-table thead tr th:nth-child(3) {
  width: 15%;
}
.contents.information .row .sub-table.sub11-table tbody tr td {
  text-align: center;
  vertical-align: middle;
}
.contents.information .row .sub-table.sub11-table tbody tr td:nth-child(2) {
  text-align: left;
}

.contents.information .row .sub-table.sub11-table2 thead tr th:nth-child(1) {
  width: 20%;
}
.contents.information .row .sub-table.sub11-table2 thead tr th:nth-child(2) {
  width: 40%;
}
.contents.information .row .sub-table.sub11-table2 thead tr th:nth-child(3) {
  width: 40%;
}
.contents.information .row .sub-table.sub11-table2 tbody tr td {
  text-align: center !important;
}
.contents.information .row .sub-table.sub11-table2 tbody tr:nth-child(2) td {
  text-align: left !important;
}

.contents.information .row .sub-table.sub11-table3 thead tr th:nth-child(1) {
  width: 20%;
}
.contents.information .row .sub-table.sub11-table3 thead tr th:nth-child(2) {
  width: 80%;
}
.contents.information .row .sub-table.sub11-table3 tbody tr td {
  text-align: center !important;
}

.contents.information .row .sub-table.sub11-table4 thead tr th:nth-child(1) {
  width: 55%;
}
.contents.information .row .sub-table.sub11-table4 thead tr th:nth-child(2) {
  width: 45%;
}
.contents.information .row .sub-table.sub11-table4 tbody tr td {
  text-align: center !important;
}
.contents.information .row .sub-table.sub11-table4 tbody tr td:last-child {
  border-left: 1px solid #ededed;
}

.sub-table tbody tr th {
  text-align: center;
}
.sub-table tbody tr td {
  padding: 15px;
  vertical-align: top;
  border-right: 1px solid #ededed;
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.3;
  color: #363636;
  vertical-align: middle;
  word-break: keep-all;
}
.sub-table tbody tr td > span {
  font-family: var(--f600);
  margin-top: 15px;
  margin-bottom: 5px;
  display: block;
}
.sub-table tbody tr td > span:first-of-type {
  margin-top: 0;
}
.sub-table tbody tr td ul > li {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 8px;
}
.sub-table tbody tr td ul > li:last-of-type {
  margin-bottom: 0;
}
.sub-table tbody tr td ul > li > span {
  width: 5px;
  height: 5px;
  background-color: var(--color);
  border-radius: 100%;
  margin-right: 0;
  margin-top: 0px;
  display: inline-block;
  vertical-align: top;
}
.sub-table tbody tr td ul > li > p {
  width: calc(100% - 20px);
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.5;
  color: #636363;
  margin-left: 10px;
  word-break: break-all;
  letter-spacing: 0;
  display: inline-block;
}

.contents.information .row .row-ul > li .info-box {
  width: 100%;
  margin-top: 20px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 15px;
  display: block;
}
.contents.information .row .row-ul > li .info-box .box-title {
  width: 100%;
  height: auto;
  background-color: transparent;
  margin: 0;
  margin-bottom: 10px;
  font-family: var(--f700);
  font-size: 18px;
}
.contents.information .row .row-ul > li .info-box > ul > li {
  margin-bottom: 8px;
}
.contents.information .row .row-ul > li .info-box > ul > li:last-child {
  margin-bottom: 0;
}

.contents.information .row .graph-chart > li {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.contents.information .row .graph-chart > li .yy {
  width: 100px;
  height: auto;
  font-family: var(--f600);
  font-size: 18px;
  color: var(--color);
  background-color: transparent;
  margin: 0;
  position: relative;
  padding-left: 15px;
}
.contents.information .row .graph-chart > li .yy::before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  display: block;
  background-color: var(--color);
  width: 5px;
  height: 5px;
  border-radius: 100%;
}
.contents.information .row .graph-chart > li .graph {
  height: 10px;
  border-radius: 0;
  margin: 0;
}
.contents.information .row .graph-chart > li p {
  width: auto;
  color: #000;
}

.contents.information .row .graph-chart > li.y2018 span.graph {
  width: 300px;
  background-color: #dfe4f8;
}
.contents.information .row .graph-chart > li.y2020 span.graph {
  width: 400px;
  background-color: #cbe4fa;
}
.contents.information .row .graph-chart > li.y2021 span.graph {
  width: 380px;
  background-color: #adbbec;
}
.contents.information .row .graph-chart > li.y2022 span.graph {
  width: 380px;
  background-color: #83baf0;
}
.contents.information .row .graph-chart > li.y2023 span.graph {
  width: 600px;
  background-color: #616de7;
}

.donut-graph-wrap {
  width: 100%;
  height: 280px;
  margin-top: 50px;
}
.donut-graph-wrap .row {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}
.donut-graph-wrap .row .donut-item {
  width: calc(100% / 4 - 40px);
  height: 100%;
  margin-right: 50px;
  position: relative;
  border: 15px solid #000;
  border-radius: 100%;
}
.donut-graph-wrap .row .donut-item:last-child {
  margin-right: 0;
}
.donut-graph-wrap .row .donut-item:nth-child(1) {
  border-color: #646de2;
}
.donut-graph-wrap .row .donut-item:nth-child(2) {
  border-color: #a3c7fb;
}
.donut-graph-wrap .row .donut-item:nth-child(3) {
  border-color: #eda89f;
}
.donut-graph-wrap .row .donut-item:nth-child(4) {
  border-color: #709fe1;
}
.donut-graph-wrap .row .donut-item .donutCon {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.donut-graph-wrap .row .donut-item .donutCon h5 {
  font-family: var(--f600);
  font-size: 20px;
  color: #000;
  margin-bottom: 15px;
}
.donut-graph-wrap .row .donut-item .donutCon h1 {
  font-family: var(--f800);
  font-size: 36px;
  color: #000;
}
.donut-graph-wrap .row .donut-item .donutCon h6 {
  font-family: var(--f400);
  font-size: 16px;
  color: #000;
  margin-top: 20px;
}

.support-box {
  margin: 20px 0;
}
.support-box:last-of-type {
  margin: 0;
}
.support-list {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.support-list > li {
  width: auto;
  background-color: #f9f9f9;
  border-right: 1px solid #ededed;
  position: relative;
}
.support-list > li:last-child {
  border-right: 0;
}
.support-list > li span {
  width: 100%;
  height: 35px;
  background-color: var(--color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f600);
  font-size: 16px;
  color: #fff;
}
.support-list > li dl {
  width: 100%;
  height: 150px;
  padding: 30px 10px 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.support-list > li dl dt {
  width: 100%;
  font-family: var(--f500);
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.support-list > li dl dd {
  width: 100%;
  font-family: var(--f300);
  font-size: 14px;
  line-height: 1.3;
  word-break: keep-all;
}
.support-list > li dl dd .info {
  font-family: var(--f300);
  font-size: 13px;
  line-height: 1.3;
  margin-top: 5px;
}

.support-list-max8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.support-list-max7 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.support-list-max5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.support-list-max4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-title {
  font-family: var(--f600);
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.support-list-box .list-title {
  font-family: var(--f500);
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 10px;
  display: block;
}
.support-list-box .list-boox > li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.support-list-box .list-boox > li:last-of-type {
  margin-bottom: 0;
}
.support-list-box .list-boox > li > span {
  font-family: var(--f500);
  font-size: 16px;
  line-height: 1.3;
  color: var(--color);
  margin-right: 10px;
}
.support-list-box .list-boox > li > p {
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
}
.support-list-box .list-boox > li > p b {
  font-family: var(--f700);
}

.contents.information .row .row-ul > li .exception-box {
  width: 100%;
  padding: 30px;
  background-color: #ededed;
  border-radius: 8px;
}
.contents.information .row .row-ul > li .exception-box .excep-com {
  width: 100%;
  height: auto;
  background-color: transparent;
  margin: 0;
  margin-bottom: 10px;
  display: block;
  font-family: var(--f700);
  font-size: 18px;
  color: var(--color);
}
.contents.information .row .row-ul > li .exception-box .list > li {
  width: 100%;
  margin-bottom: 5px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.contents.information .row .row-ul > li .exception-box .list > li:last-child {
  margin-bottom: 0;
}
.contents.information .row .row-ul > li .exception-box .list > li span {
  width: 15px;
  height: auto;
  background-color: transparent;
  margin: 0;
  font-size: 10px;
  color: #636363;
  margin-top: 6px;
}
.contents.information .row .row-ul > li .exception-box .list > li p {
  width: calc(100% - 15px);
}
.contents.information .f-information-text {
  font-family: var(--f600);
  font-size: 17px;
  color: var(--color);
  margin: 30px 0 0 30px;
  border-bottom: 1px solid var(--color);
  padding-bottom: 3px;
  display: inline-block;
}

.contents.information .img-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contents.information .img-row img {
  width: calc(100% / 2 - 10px);
  margin-right: 20px;
}
.contents.information .img-row img:last-of-type {
  margin-right: 0;
}
.contents.information .row img.step_banner {
  max-width: 700px;
}

@media all and (max-width: 1280px) {
  .contents.information .inner {
    max-width: 95%;
  }

  .donut-graph-wrap {
    height: auto;
  }
  .donut-graph-wrap .row {
    justify-content: flex-start;
  }
  .donut-graph-wrap .row .donut-item {
    width: auto;
    margin-right: 20px;
    padding: 120px;
    border-width: 10px;
    margin-top: 30px;
  }

  .support-box {
    overflow: auto;
  }
  .support-box .support-list {
    width: 1280px;
  }
}
@media all and (max-width: 1024px) {
  .contents.information .row .row-ul > li {
    overflow: auto;
  }
  .contents.information .row .row-table {
    width: 1000px;
  }
  .support-list-box .list-boox > li:last-of-type {
    overflow: auto;
    display: block;
  }

  .experience .information-text {
    margin-left: 10px;
  }
}
@media all and (max-width: 768px) {
  .contents.information .row .row-ul {
    padding: 0;
  }
  .contents.information .information-text {
    font-size: 14px;
  }
  .contents.information .row .row-ul > li .info-box {
    padding: 20px;
  }
  .contents.information .row .row-table thead tr th,
  .contents.information .row .row-table thead tr td,
  .contents.information .row .row-table tbody tr td {
    padding: 15px;
  }

  .contents.information .row .row-table thead tr th,
  .contents.information .row .row-table thead tr td {
    font-size: 16px;
  }

  .contents.information .row .graph-chart > li .yy {
    padding: 0;
    width: 100%;
    margin-bottom: 5px;
  }
  .contents.information .row .graph-chart > li .yy::before {
    display: none;
  }
  .contents.information .row .graph-chart > li .graph {
    height: 20px;
  }
  .contents.information .row .graph-chart > li.y2018 span.graph {
    width: calc(100% - 120px);
  }
  .contents.information .row .graph-chart > li.y2020 span.graph {
    width: calc(100% - 80px);
  }
  .contents.information .row .graph-chart > li.y2021 span.graph {
    width: calc(100% - 100px);
  }
  .contents.information .row .graph-chart > li.y2022 span.graph {
    width: calc(100% - 100px);
  }
  .contents.information .row .graph-chart > li.y2023 span.graph {
    width: calc(100% - 60px);
  }
  .contents.information .row .graph-chart > li p {
    width: 50px;
  }

  .donut-graph-wrap {
    margin-top: 20px;
  }
  .donut-graph-wrap .row .donut-item {
    padding: 75px;
  }
  .donut-graph-wrap .row .donut-item .donutCon h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .donut-graph-wrap .row .donut-item .donutCon h1 {
    font-size: 20px;
  }
  .donut-graph-wrap .row .donut-item .donutCon h6 {
    font-size: 13px;
    margin-top: 10px;
  }

  .experience .information-text {
    font-size: 15px;
    line-height: 1.3;
  }
  .contents.information .row .row-ul > li .exception-box {
    padding: 20px;
  }
  .contents.information .row .row-ul > li .exception-box .list > li span {
    width: 10px;
  }
  .contents.information .row .row-ul > li .exception-box .list > li p {
    font-size: 14px;
    width: calc(100% - 10px);
  }
  .contents.information .f-information-text {
    margin: 30px 0 0 0;
    font-size: 14px;
  }

  .contents.information .img-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .contents.information .img-row img {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
  .contents.information .img-row img:last-of-type {
    margin-bottom: 0;
  }
}
@media all and (max-width: 430px) {
  .contents.information .inner {
    max-width: 90%;
  }
  .contents.information .contents-title {
    font-size: 18px;
    word-break: keep-all;
  }

  .contents.information .row {
    margin-bottom: 45px;
  }
  .contents.information .row .row-title {
    font-size: 16px;
    padding-left: 12px;
  }
  .contents.information .row .row-title::before {
    width: 5px;
    height: 5px;
  }
  .contents.information .row .row-ul > li p {
    margin-left: 5px;
  }
  .contents.information .row .row-ul > li p,
  .contents.information .row .row-ul > li p i {
    font-size: 14px;
  }

  .contents.information .row .graph-chart > li .yy {
    font-size: 16px;
  }
  .contents.information .row .graph-chart > li .graph {
    height: 10px;
  }
  .donut-graph-wrap .row .donut-item {
    margin-right: 15px;
    margin-top: 15px;
    padding: 60px;
    border-width: 5px;
  }
  .donut-graph-wrap .row .donut-item:nth-child(2),
  .donut-graph-wrap .row .donut-item:nth-child(4) {
    margin-right: 0;
  }
  .donut-graph-wrap .row .donut-item .donutCon {
    width: auto;
  }
  .donut-graph-wrap .row .donut-item .donutCon h5 {
    font-size: 14px;
    word-break: keep-all;
  }
  .donut-graph-wrap .row .donut-item .donutCon h1 {
    font-size: 16px;
  }
  .donut-graph-wrap .row .donut-item .donutCon h6 {
    display: none;
  }

  .experience .information-text {
    font-size: 14px !important;
  }
  .contents.information .row .row-ul > li .exception-box {
    padding: 15px;
  }
  .contents.information .row .row-ul > li .exception-box .excep-com {
    font-size: 16px;
  }
  .contents.information .row .row-ul > li span {
    width: 3px;
    height: 3px;
    margin-top: 9px;
  }

  .contents.information .row .row-table thead tr th,
  .contents.information .row .row-table thead tr td,
  .contents.information .row .row-table tbody tr th,
  .contents.information .row .row-table tbody tr td {
    font-size: 14px;
    padding: 15px;
  }

  .support-list-box .list-title,
  .support-list-box .list-boox > li > span,
  .support-list-box .list-boox > li > p {
    font-size: 14px;
  }

  .contents.information .row .row-ul2 > li {
    display: flex;
    flex-direction: column-reverse;
  }
  .contents.information .row .row-ul2 > li .parti_btn {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 16px;
  }
  .contents.information .row .row-ul2 > li .contactUs {
    margin-left: 0;
  }
}

/* 검색 영역 */
.src-section .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.src-section .search-wrap {
  width: 100%;
  height: 75px;
  background-color: #f4f4f4;
  border: 1px solid #f0f1f3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.src-section .search-wrap .search-box {
  display: inline-block;
}
.src-section .search-wrap .search-box .src-category {
  position: relative;
  width: 250px;
  height: 40px;
  border: 1px solid #cdcdcd;
  font-family: var(--f400);
  font-size: 16px;
  padding-left: 10px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: #fff url(/image/down_icon.png) no-repeat right 10px center;
  cursor: pointer;
}
.src-section .search-wrap .search-box .src-text {
  padding-left: 10px;
  font-family: var(--f400);
  font-size: 16px;
  color: #000;
  letter-spacing: -0.01em;
  width: 350px;
  height: 40px;
  border: 1px solid #cdcdcd;
  background-color: #fff;
  margin-left: 5px;
  outline: none;
}
.src-section .search-wrap .search-box .src-text::placeholder {
  font-family: var(--f300);
  font-size: 16px;
  color: #999;
  letter-spacing: -0.01em;
}
.src-section .search-wrap .search-box .src-btn {
  width: 100px;
  height: 40px;
  padding: 0;
  margin: 0;
  margin-left: 5px;
  border: 0;
  background-color: #000;
  font-family: var(--f500);
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}

.src-item {
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.src-item:focus {
  border-color: #888;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

@media all and (max-width: 1280px) {
  .src-section .search-wrap {
    width: 95%;
    margin: 0 auto 30px;
  }
}
@media all and (max-width: 768px) {
  .src-section .search-wrap .search-box .src-category {
    width: 100px;
    height: 35px;
    font-size: 14px;
  }
  .src-section .search-wrap .search-box .src-text {
    width: 195px;
    height: 35px;
    font-size: 14px;
  }
  .src-section .search-wrap .search-box .src-btn {
    width: 70px;
    height: 35px;
    font-size: 14px;
  }

  .src-section .search-wrap .search-box .src-text::placeholder {
    font-size: 14px;
  }

  .news-contents .inner {
    max-width: 95%;
  }
  .news_table thead tr th.board_Hnum {
    width: 15%;
  }
  .news_table thead tr th.board_Hsubject {
    width: 85%;
  }
  .news_table thead tr th.board_Hdate {
    width: 0%;
  }
  .news_table thead tr th.board_Hcont {
    width: 0%;
  }

  .news_table tbody tr td.board_num {
    border-right: 1px solid #ededed;
  }
}
@media all and (max-width: 430px) {
  .src-section .inner {
    max-width: 100%;
  }
  .src-section .search-wrap,
  .news-contents .inner {
    max-width: 90%;
    margin: 0 auto;
  }
  .srcfrm {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .src-section .search-wrap {
    height: auto;
    margin-bottom: 30px;
    padding: 15px;
  }
  .src-section .search-wrap .search-box > form {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .src-section .search-wrap .search-box .src-category {
    width: 100%;
    margin-bottom: 5px;
  }
  .src-section .search-wrap .search-box .src-text {
    width: 100%;
    margin: 0;
  }
  .src-section .search-wrap .search-box .src-btn {
    margin-top: 10px;
    margin-left: 0;
  }

  .news_table thead tr th.board_Hnum {
    width: 20%;
  }
  .news_table thead tr th.board_Hsubject {
    width: 80%;
  }
}

/* 테이블 공통 영역 */
.count-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.count-box .total_num {
  font-family: var(--f400);
  font-size: 18px;
  line-height: 1.3;
  margin-right: 10px;
}
.count-box .count_num {
  font-family: var(--f400);
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0;
}

.board_table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  border-top: 2px solid #000;
  border-bottom: 1px solid #000;
}
.board_table thead tr {
  border-bottom: 1px solid #000;
  background-color: #f9f9f9;
}
.board_table thead tr th {
  padding: 15px;
  font-family: var(--f600);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
}
.board_table tbody tr {
  border-bottom: 1px solid #ededed;
}
.board_table tbody tr.imp {
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
}
.board_table tbody tr:last-child {
  border: 0;
}
.board_table tbody tr td.board_num .notice-imp {
  font-family: var(--f800);
  font-size: 16px;
  color: #ff0000;
}
.board_table tbody tr td {
  padding: 15px;
  text-align: center;
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #000;
  position: relative;
}
.board_table tbody tr td::before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 15px;
  background-color: #ededed;
  content: "";
  display: block;
}
.board_table tbody tr td:last-child::before {
  display: none;
}
.board_table tbody tr.imp .board_num {
  color: #f00;
}
.board_table thead .board_Hnum {
  width: 10%;
}
.board_table thead .board_Hsubject {
  width: auto;
  text-align: left;
}
.board_table thead .board_Hdate {
  width: 15%;
}
.board_table thead .board_Hcont {
  width: 10%;
}
.board_table tbody .board_subject > a {
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  text-align: left;
  transition: all 0.1s ease-in-out;
}
.board_table tbody .board_subject > a:hover {
  font-family: var(--f600);
  color: #1e3d86;
}

.board_view-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  border-top: 2px solid #000;
}
.board_view-table tbody tr {
  border-bottom: 1px solid #ccc;
}
.board_view-table tbody tr.subject-infoBox td {
  width: 100%;
  padding: 10px;
}
.board_view-table tbody tr.subject-infoBox .sbj_name {
  font-family: var(--f600);
  font-size: 18px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 5px;
  letter-spacing: 0;
  display: block;
}
.board_view-table tbody tr.subject-infoBox .sbj_info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.board_view-table tbody tr.subject-infoBox .sbj_info > li {
  margin-right: 30px;
  font-family: var(--f300);
  font-size: 15px;
  line-height: 1.3;
  color: #666;
  letter-spacing: 0;
  position: relative;
  display: flex;
  align-items: center;
}
.board_view-table tbody tr.subject-infoBox .sbj_info > li:last-child {
  margin-right: 0;
}
.board_view-table tbody tr.subject-infoBox .sbj_info > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: #ccc;
}
.board_view-table tbody tr.subject-infoBox .sbj_info > li:last-child::before {
  display: none;
}
.board_view-table tbody tr.subject-infoBox .sbj_info > li i {
  color: #666;
  margin-right: 5px;
  margin-bottom: 2px;
  font-size: 17px;
}

.board_view-table tbody tr {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.board_view-table tbody tr th {
  width: 100px;
  height: 100px;
}
.board_view-table tbody tr th span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  font-family: var(--f400);
  font-size: 16px;
  color: #000;
}
.board_view-table tbody tr td {
  width: calc(100% - 100px);
  padding: 0 30px;
}
.board_view-table tbody tr td .fileBox .file-item {
  margin-bottom: 5px;
}
.board_view-table tbody tr td .fileBox .file-item:last-child {
  margin-bottom: 0;
}
.board_view-table tbody tr td .fileBox .file-item .file {
  font-family: var(--f300);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.board_view-table tbody tr td .fileBox .file-item .file i {
  margin-bottom: 2px;
  margin-right: 5px;
}

.board_view-table tbody tr.subject-contents {
  width: 100%;
  display: block;
}
.board_view-table tbody tr.subject-contents td {
  padding: 30px 10px;
  width: 100%;
  display: block;
}
.board_view-table tbody tr.subject-contents td > div {
  line-height: 1.3;
}
.board_view-table tbody tr.subject-contents td .contents-text {
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #000;
}
.board_view-table tbody tr.subject-contents td .contents-text:last-child {
  margin-bottom: 0;
}

.another-contents {
  margin-top: 25px;
  overflow: hidden;
}
.another-contents .contents-list {
  border-top: 1px solid #000;
  border-bottom: 1px solid #ccc;
}
.another-contents .contents-list .contents-item {
  width: 100%;
  margin-bottom: 15px;
  padding: 15px 0;
  border-bottom: 1px dashed #ddd;
}
.another-contents .contents-list .contents-item:last-child {
  border: 0;
  padding: 0;
}
.another-contents .contents-list .contents-item > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.another-contents .contents-list .contents-item > a span {
  width: 150px;
  font-family: var(--f700);
  font-size: 17px;
  line-height: 1.3;
  padding-left: 10px;
  border-right: 1px solid #ddd;
}
.another-contents .contents-list .contents-item > a p {
  width: calc(100% - 150px);
  font-family: var(--f400);
  font-size: 17px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  padding-left: 30px;
  transition: all 0.1s ease;
}
.another-contents .contents-list .contents-item > a p:hover {
  color: var(--color);
}
.another-contents .btn-wrap {
  float: right;
  margin-top: 20px;
}
.another-contents .btn-wrap .btn {
  width: 130px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f500);
  font-size: 16px;
  color: #fff;
  letter-spacing: 0;
}
.another-contents .btn-wrap .backBtn {
  background-color: var(--color);
}

.return-table thead tr th:nth-child(1) {
  width: 20%;
}
.return-table thead tr th:nth-child(2) {
  width: 25%;
}
.return-table thead tr th:nth-child(3) {
  width: auto;
}

.contents.information .row .ve-t tbody tr td {
  vertical-align: top;
}

.sbc-table thead tr th:nth-child(1) {
  width: auto;
}
.sbc-table thead tr th:nth-child(2) {
  width: 13%;
}
.sbc-table thead tr th:nth-child(3) {
  width: 13%;
}
.sbc-table thead tr th:nth-child(4) {
  width: 13%;
}
.sbc-table thead tr th:nth-child(5) {
  width: 13%;
}
.sbc-table thead tr th:nth-child(6) {
  width: 13%;
}
.sbc-table tbody tr td,
.text-c tbody tr th,
.text-c tbody tr td {
  text-align: center;
}
.text-c tbody tr th {
  background-color: #f9f9f9;
}

.fut-table thead tr th:nth-child(1) {
  width: 35%;
}
.fut-table thead tr th:nth-child(2) {
  width: 65%;
}
.fut-table tbody tr td:nth-child(1) {
  text-align: center;
  vertical-align: middle !important;
}

@media all and (max-width: 1280px) {
  .news-contents .count-box .total_num,
  .news-contents .count-box .count_num {
    font-size: 16px;
  }

  .board_table thead .board_Hdate {
    width: 20%;
  }
  .board_table thead .board_Hcont {
    width: 15%;
  }
  .board_table thead tr th {
    font-size: 14px;
  }
  .board_table tbody tr td {
    font-size: 14px;
  }
  .board_table tbody tr td.board_num .notice-imp {
    font-size: 14px;
  }
}
@media all and (max-width: 768px) {
  .board_table thead .board_Hdate,
  .board_table thead .board_Hcont,
  .board_table tbody .board_date,
  .board_table tbody .board_cont {
    display: none;
  }

  .board_table thead tr th {
    font-size: 15px;
  }
  .board_table tbody tr td {
    padding: 12px;
  }

  .board_table thead .board_Hnum {
    width: 15%;
  }

  .another-contents .contents-list .contents-item > a span {
    width: 75px;
    font-size: 15px;
  }
  .another-contents .contents-list .contents-item > a p {
    width: calc(100% - 75px);
    font-size: 15px;
  }
}
@media all and (max-width: 430px) {
  .count-box {
    margin-bottom: 10px;
  }

  .board_table thead .board_Hnum {
    width: 20%;
  }
  .board_table thead tr th {
    padding: 10px;
    font-size: 14px;
  }
  .board_table tbody tr td {
    padding: 10px;
  }
  .board_table tbody tr td::before {
    height: 10px;
  }

  .board_view-table tbody tr.subject-infoBox .sbj_name {
    font-size: 17px;
  }
  .board_view-table tbody tr.subject-infoBox .sbj_info > li {
    font-size: 14px;
  }
  .board_view-table tbody tr.subject-contents td {
    padding: 10px 5px;
  }
  .board_view-table tbody tr.subject-contents td > div {
    font-size: 14px;
  }
  .board_view-table tbody tr th {
    width: 70px;
    height: 70px;
  }
  .board_view-table tbody tr th span,
  .board_view-table tbody tr td .fileBox .file-item .file {
    font-size: 14px;
  }
  .board_view-table tbody tr.subject-contents td .contents-text {
    font-size: 14px;
  }
  .another-contents .contents-list .contents-item > a span {
    width: 60px;
    font-size: 14px;
  }
  .another-contents .contents-list .contents-item > a p {
    width: calc(100% - 60px);
    font-size: 14px;
    padding-left: 15px;
  }
  .another-contents .btn-wrap .btn {
    width: 100px;
    height: 35px;
    font-size: 14px;
  }
}

/* 소통공유 > 공지및뉴스 영역 */
.contact-wrap .content-titleWrap .content-title {
  font-family: var(--f700);
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color);
}
.contact-wrap .content-titleWrap .content-text {
  font-family: var(--f500);
  font-size: 20px;
  line-height: 1.4;
  margin-top: 10px;
  color: #111;
}
.contact-wrap .content-titleWrap .content-desc {
  display: block;
  margin-top: 10px;
}
.contact-wrap .content-titleWrap .content-desc > li {
  width: 100%;
  margin-bottom: 5px;
  text-align: left;
}
.contact-wrap .content-titleWrap .content-desc > li:last-child {
  margin-bottom: 0;
}
.contact-wrap .content-titleWrap .content-desc > li p {
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  padding-left: 15px;
}
.contact-wrap .content-titleWrap .content-desc > li p::before {
  content: "*";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.contactFrm {
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
}
.contactFrm .agreement-wrap .agreement-title {
  font-family: var(--f700);
  font-size: 26px;
  letter-spacing: 0;
  margin-bottom: 20px;
  display: block;
}
.contactFrm .agreement-wrap .agreement-box {
  width: 100%;
  padding: 25px;
  background-color: #f3f3f3;
  border-radius: 15px;
}
.contactFrm .agreement-wrap .agreement-box .agreement-text {
  font-family: var(--f300);
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.contactFrm .agreement-wrap .agreement-box .agreement-table {
  width: 100%;
  table-layout: fixed;
  margin: 20px 0;
  border-top: 2px solid var(--color);
  border-bottom: 1px solid #ddd;
}
.contactFrm .agreement-wrap .agreement-box .agreement-table thead tr {
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
}
.contactFrm .agreement-wrap .agreement-box .agreement-table thead tr th {
  padding: 15px;
  font-family: var(--f600);
  font-size: 18px;
  border-right: 1px solid #ddd;
}
.contactFrm
  .agreement-wrap
  .agreement-box
  .agreement-table
  thead
  tr
  th:last-child {
  border: 0;
}
.contactFrm .agreement-wrap .agreement-box .agreement-table tbody tr {
  background-color: #fff;
}
.contactFrm .agreement-wrap .agreement-box .agreement-table tbody tr td {
  text-align: center;
  padding: 15px;
  font-family: var(--f300);
  font-size: 18px;
  border-right: 1px solid #ddd;
}
.contactFrm
  .agreement-wrap
  .agreement-box
  .agreement-table
  tbody
  tr
  td:last-child {
  border: 0;
}
.contactFrm .agreement-wrap .agreement-box .agreement-info {
  font-family: var(--f300);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.contactFrm .agreement-btnWrap {
  margin-top: 20px;
}
.contactFrm .agreement-btnWrap .checkbox {
  width: 100%;
  display: flex;
  align-items: center;
}
.contactFrm .agreement-btnWrap .checkbox .agrBtn {
  display: inline-block;
  width: 16px;
  height: 16px;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 2px;
}
.contactFrm .agreement-btnWrap .checkbox .agrBtn-label {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  font-family: var(--f400);
  font-size: 18px;
  color: #000;
  cursor: pointer;
}

.contactFrm-table {
  table-layout: fixed;
  width: 100%;
  margin-top: 50px;
}
.contactFrm-table tbody {
  border: 1px solid #ededed;
}
.contactFrm-table tbody tr {
  width: 50%;
  border-bottom: 1px solid #ededed;
}
.contactFrm-table tbody tr.contactFrm-email,
.contactFrm-table tbody tr.contactFrm-info {
  width: 100%;
}
.contactFrm-table tbody tr.contactFrm-info {
  border-bottom: 0;
}
.contactFrm-table tbody tr th {
  padding: 15px;
  width: 200px;
  background-color: #f9f9f9;
  font-family: var(--f500);
  font-size: 17px;
  line-height: 1.3;
  vertical-align: middle;
  border-right: 1px solid #ededed;
}
.contactFrm-table tbody tr td {
  padding: 15px;
  width: calc(100% - 200px);
  border-right: 1px solid #ededed;
}
.contactFrm-table tbody tr td .contact_imp {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 3px;
  outline: none;
  padding-left: 10px;
  font-family: var(--f400);
  font-size: 16px;
  color: #000;
  transition: all 0.3s ease-in-out;
}
.contactFrm-table tbody tr td .contact_imp:focus {
  border: 1px solid var(--color);
}
.contactFrm-table tbody tr td .email-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.contactFrm-table tbody tr td .email-box .contact-email {
  width: calc(100% / 2 - 200px);
  margin: 0 5px;
}
.contactFrm-table tbody tr td .email-box .contact-email01 {
  margin-left: 0;
}
.contactFrm-table tbody tr td .email-box .selectEmail {
  position: relative;
  padding-left: 10px;
  width: 200px;
  height: 40px;
  margin-left: 5px;
  border: 1px solid #ddd;
  font-family: var(--f400);
  font-size: 16px;
  color: #000;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: #fff url(/image/down_icon.png) no-repeat right 10px center;
  cursor: pointer;
}

.contactFrm-table tbody tr td .contact_textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #ddd;
  border-radius: 3px;
  outline: none;
  padding: 10px;
  font-family: var(--f400);
  font-size: 16px;
  color: #000;
}

.contactFrm-table tbody tr td .contact_in::placeholder {
  font-family: var(--f300);
  font-size: 16px;
  color: #ddd;
}

.btn-wrap {
  float: right;
  margin-top: 20px;
}
.btn-wrap .btn {
  width: 130px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f500);
  font-size: 16px;
  color: #fff;
  letter-spacing: 0;
}
.btn-wrap .btn.submitBtn {
  border: 0;
  cursor: pointer;
  background-color: #233b8f;
}

@media all and (max-width: 1024px) {
  .contactFrm-table tbody tr th {
    width: 130px;
  }
  .contactFrm-table tbody tr td {
    width: calc(100% - 130px);
  }
  .contactFrm-table tbody tr td .email-box .contact-email {
    width: calc(100% / 2 - 85px);
  }
  .contactFrm-table tbody tr td .email-box .selectEmail {
    width: 130px;
  }
}
@media all and (max-width: 768px) {
  .contact-wrap .content-titleWrap,
  .contactFrm {
    max-width: 95%;
    margin: 0 auto;
  }
  .contactFrm {
    margin-top: 30px;
  }

  .contact-wrap .content-titleWrap .content-title {
    font-size: 28px;
  }
  .contact-wrap .content-titleWrap .content-text {
    font-size: 16px;
  }
  .contact-wrap .content-titleWrap .content-desc > li p {
    font-size: 14px;
  }

  .contactFrm .agreement-wrap .agreement-box {
    padding: 15px;
  }
  .contactFrm .agreement-wrap .agreement-box .agreement-text {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .contactFrm .agreement-wrap .agreement-box .agreement-text:last-child {
    margin-bottom: 0;
  }
  .contactFrm .agreement-wrap .agreement-box .agreement-table thead tr th {
    font-size: 15px;
    padding: 10px;
  }
  .contactFrm .agreement-wrap .agreement-box .agreement-table tbody tr td {
    font-size: 14px;
    padding: 10px;
  }
  .contactFrm .agreement-wrap .agreement-box .agreement-info {
    font-size: 14px;
  }

  .contactFrm .agreement-btnWrap .checkbox .agrBtn {
    width: 14px;
    height: 14px;
  }
  .contactFrm .agreement-btnWrap .checkbox .agrBtn-label {
    font-size: 16px;
  }

  .contactFrm-table tbody tr {
    width: 100%;
    border-bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contactFrm-table tbody tr th {
    padding: 10px;
    width: 100%;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid #ededed;
  }
  .contactFrm-table tbody tr td {
    padding: 10px;
    width: 100%;
    border-bottom: 1px solid #ededed;
    border-right: 0;
  }
  .contactFrm-table tbody tr:last-child td {
    border-bottom: 0;
  }

  .contactFrm-table tbody tr td .email-box {
    font-size: 0;
  }
  .contactFrm-table tbody tr td .email-box .contact-email01 {
    width: 100%;
    margin: 0;
  }
  .contactFrm-table tbody tr td .email-box .contact-email02 {
    width: 100%;
    margin: 5px 0;
  }
  .contactFrm-table tbody tr td .email-box .selectEmail {
    width: 100%;
    margin: 0;
  }
}
@media all and (max-width: 430px) {
  .contact-wrap .content-titleWrap .content-title {
    font-size: 24px;
  }
  .contact-wrap .content-titleWrap .content-text {
    font-size: 15px;
  }
  .contact-wrap .content-titleWrap .content-desc > li p {
    word-break: break-all;
  }
  .contact-wrap .content-titleWrap .content-desc > li p::before {
    top: 0;
    transform: none;
  }

  .contact-wrap .content-titleWrap,
  .contactFrm {
    max-width: 90%;
  }
  .contactFrm .agreement-wrap .agreement-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .contactFrm .agreement-wrap .agreement-box {
    border-radius: 10px;
  }
  .contactFrm .agreement-wrap .agreement-box .agreement-text {
    font-size: 14px;
  }
  .contactFrm .agreement-wrap .agreement-box .agreement-table thead tr th {
    font-size: 14px;
  }
  .contactFrm .agreement-wrap .agreement-box .agreement-table tbody tr td {
    word-break: keep-all;
    line-height: 1.3;
  }

  .contactFrm-table {
    margin-top: 30px;
  }
  .contactFrm-table tbody tr th {
    font-size: 16px;
  }
  .contactFrm-table tbody tr td .contact_imp {
    font-size: 16px;
    height: 35px;
  }
  .contactFrm-table tbody tr td .contact_imp::placeholder,
  .contactFrm-table tbody tr td .contact_textarea::placeholder,
  .contactFrm-table tbody tr td .email-box .selectEmail {
    font-size: 15px;
  }

  .btn-wrap .btn {
    width: 100px;
    height: 35px;
    font-size: 14px;
  }
}

/* 하단 > 이용안내 */
.privacyWrap {
  padding: 260px 0 180px;
}
.use_information-wrap .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/* 하단 > 개인정보처리방침 */
.privacy-table {
  width: 100%;
}
.privacy-table .inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.privacy-table .top-text {
  width: 100%;
  height: 80px;
  background-color: #e2e2e2;
  border: 1px solid #ececec;
  border-top: 2px solid #26a2dd;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f700);
  font-size: 25px;
  color: #000;
}

.privacy-table .topContent {
  margin-bottom: 90px;
}
.privacy-table .topContent .privacy-title {
  font-family: var(--f900);
  font-size: 48px;
  letter-spacing: -0.01em;
  color: #000;
  line-height: 1;
  display: block;
  margin-bottom: 55px;
}
.privacy-table .topContent .privacy-text {
  font-family: var(--f400);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #000;
  margin-bottom: 5px;
}
.privacy-table .topContent .privacy-text:last-child {
  margin-bottom: 0;
}

.privacy-table .labeling-wrap .label-iconBox {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.privacy-table .labeling-wrap .label-iconBox > li {
  width: calc(100% / 3);
  border: 1px solid #ececec;
  background-color: #fff;
  padding: 30px 50px;
  text-align: center;
}
.privacy-table .labeling-wrap .label-iconBox > li:nth-child(2),
.privacy-table .labeling-wrap .label-iconBox > li:nth-child(5) {
  border-left: 0;
  border-right: 0;
}
.privacy-table
  .labeling-wrap
  .label-iconBox
  > li:nth-child(n + 1):nth-child(-n + 3) {
  border-bottom: 0;
}

.privacy-table .labeling-wrap .label-iconBox > li .img {
  height: 107px;
  margin-bottom: 30px;
}
.privacy-table .labeling-wrap .label-iconBox > li .img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.privacy-table .labeling-wrap .label-iconBox > li .text .title {
  font-family: var(--f500);
  font-size: 22px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 15px;
  display: block;
}
.privacy-table .labeling-wrap .label-iconBox > li .text .info {
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f300);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
}

.contents-wrap {
  width: 100%;
  margin-top: 50px;
}
.contents-wrap .contents-table {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.contents-wrap .contents-table > li {
  width: calc(100% / 2);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border: 1px solid #ececec;
  border-top: 0;
  background-color: #fff;
  transition: all 0.3s ease;
}
.contents-wrap .contents-table > li:hover {
  background-color: #f6f6f6;
}
.contents-wrap .contents-table > li:nth-child(2n + 1) {
  border-right: 0;
}
.contents-wrap .contents-table > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.contents-wrap .contents-table > li .img {
  width: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
.contents-wrap .contents-table > li .img > li {
  height: 60px;
  margin-right: 10px;
}
.contents-wrap .contents-table > li .img > li:last-child {
  margin-right: 0;
}
.contents-wrap .contents-table > li .img > li img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.contents-wrap .contents-table > li .title {
  width: calc(100% - 200px);
  font-family: var(--f500);
  font-size: 18px;
  line-height: 1.3;
  color: #000;
  word-break: keep-all;
}

.contents-wrap2 {
  width: 100%;
  margin-top: 120px;
}
.contents-wrap2 .row {
  width: 100%;
  margin-bottom: 80px;
}
.contents-wrap2 .row:last-child {
  margin-bottom: 0;
}

.contents-wrap2 .row .titlebox {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}
.contents-wrap2 .row .titlebox .title {
  font-family: var(--f600);
  font-size: 24px;
  line-height: 1.3;
  color: #000;
  margin-right: 10px;
}
.contents-wrap2 .row .titlebox .imgbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.contents-wrap2 .row .titlebox .imgbox > li {
  height: 50px;
  margin-right: 5px;
}
.contents-wrap2 .row .titlebox .imgbox > li:last-child {
  margin-right: 0;
}
.contents-wrap2 .row .titlebox .imgbox > li img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.contents-wrap2 .row .information {
  font-family: var(--f300);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0;
  word-break: keep-all;
}
.contents-wrap2 .row .fot-text {
  font-family: var(--f300);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0;
  word-break: keep-all;
  margin-top: 15px;
}

.contents-wrap2 .row .information-box {
  margin-top: 15px;
  padding: 15px;
  background-color: #f6f6f6;
}
.contents-wrap2 .row:nth-child(3) .information-box {
  margin-top: 10px;
}
.contents-wrap2 .row .information-box > li {
  width: 100%;
  margin-bottom: 30px;
}
.contents-wrap2 .row .information-box > li:last-child {
  margin-bottom: 0;
}
.contents-wrap2 .row .information-box > li .title {
  font-family: var(--f500);
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  word-break: keep-all;
}
.contents-wrap2 .row .information-box > li .title:last-child {
  margin-bottom: 0;
}
.contents-wrap2 .row .information-box > li .title > a {
  color: #1561a1;
}
.contents-wrap2 .row .information-box > li > ul > li {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 15px;
}
.contents-wrap2 .row .information-box > li > ul > li:last-child {
  margin-bottom: 0;
}
.contents-wrap2 .row .information-box > li > ul > li strong {
  width: 100%;
  font-family: var(--f700);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 5px;
  display: block;
  word-break: keep-all;
}
.contents-wrap2 .row .information-box > li > ul > li span {
  width: 15px;
}
.contents-wrap2 .row .information-box > li > ul > li p {
  width: calc(100% - 15px);
  font-family: var(--f300);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  word-break: keep-all;
}
.contents-wrap2 .row .information-box > li > ul > li p b {
  font-family: var(--f400);
  margin-right: 10px;
}
.contents-wrap2 .row .information-box > li > ul > li > a {
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.3;
  text-decoration: underline;
  color: #1561a1;
}

.contents-wrap2 .row .information-box > li > ul > li > ul > li {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 15px;
}
.contents-wrap2 .row .information-box > li > ul > li > ul > li:last-child {
  margin-bottom: 0;
}

.contents-wrap2 .row .information-box > li > ul > li .dep2_title {
  width: 100%;
  margin-bottom: 15px;
  font-family: var(--f600);
  font-size: 16px;
  line-height: 1.3;
  color: var(--color);
}
.contents-wrap2 .row .information-box > li > ul > li .dep2_box > li {
  margin-bottom: 5px;
}

.contents-wrap2 .row .box {
  width: 100%;
  background-color: #f6f6f6;
  padding: 20px 15px;
  margin-top: 15px;
}
.contents-wrap2 .row .box > li {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}
.contents-wrap2 .row .box > li:last-child {
  margin-bottom: 0;
}
.contents-wrap2 .row .box > li span {
  width: 15px;
}
.contents-wrap2 .row .box > li p {
  width: calc(100% - 15px);
  font-family: var(--f300);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
}
.contents-wrap2 .row .box > li p b {
  font-family: var(--f400);
  margin-right: 10px;
}

.contents-wrap2 .row .privacy-charge {
  margin-top: 15px;
  padding: 15px;
  background-color: #f6f6f6;
}
.contents-wrap2 .row .privacy-charge > li {
  width: 100%;
  margin-bottom: 20px;
}
.contents-wrap2 .row .privacy-charge > li:last-child {
  margin-bottom: 0;
}
.contents-wrap2 .row .privacy-charge > li strong {
  font-family: var(--f500);
  font-size: 18px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 15px;
  display: block;
}
.contents-wrap2 .row .privacy-charge > li span {
  width: 100%;
  font-family: var(--f300);
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 5px;
  display: block;
}
.contents-wrap2 .row .privacy-charge > li span:last-child {
  margin-bottom: 0;
}

.privacy_table {
  table-layout: fixed;
  width: 100%;
  margin-top: 30px;
  border-bottom: 1px solid #ccc;
}
.privacy_table thead tr {
  background-color: #e2e2e2;
  border-top: 2px solid #26a2dd;
}
.privacy_table thead tr th {
  border-right: 1px solid #ccc;
  padding: 15px;
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}
.privacy_table thead tr th:nth-child(1) {
  width: 10%;
}
.privacy_table thead tr th:nth-child(2) {
  width: 20%;
}
.privacy_table thead tr th:nth-child(3) {
  width: auto;
}
.privacy_table thead tr th:last-child {
  width: 15%;
  border-right: 0;
}
.privacy_table tbody tr td {
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  padding: 15px;
  font-family: var(--f400);
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  text-align: center;
  vertical-align: middle;
}
.privacy_table tbody tr td:last-child {
  border-right: 0;
}

.sub-information-text {
  font-family: var(--f500);
  font-size: 14px;
  color: var(--color);
  line-height: 1.3;
  letter-spacing: 0;
  width: 100%;
  margin-top: 20px;
  display: block;
}

@media all and (max-width: 1280px) {
  .use_information-wrap .inner,
  .privacy-table .inner {
    max-width: 90%;
  }
}
@media all and (max-width: 1024px) {
  .privacy-table .topContent .privacy-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .privacy-table .topContent .privacy-text,
  .privacy-table .topContent .privacy-text2 {
    font-size: 18px;
    word-break: keep-all;
  }
  .privacy-table .topContent .privacy-text br {
    display: none;
  }

  .privacy-table .top-text {
    height: 55px;
    font-size: 18px;
  }
  .privacy-table .labeling-wrap .label-iconBox {
    border: 1px solid #ececec;
  }
  .privacy-table .labeling-wrap .label-iconBox > li {
    width: calc(100% / 2);
    border: 0;
    border-top: 1px solid #ececec;
  }
  .privacy-table
    .labeling-wrap
    .label-iconBox
    > li:nth-child(n + 1):nth-child(-n + 2) {
    border-top: 0;
  }
  .privacy-table .labeling-wrap .label-iconBox > li:nth-child(2n-1) {
    border-right: 1px solid #ececec;
  }
  .privacy-table .labeling-wrap .label-iconBox > li .img {
    height: 80px;
    margin-bottom: 20px;
  }
  .privacy-table .labeling-wrap .label-iconBox > li .text .title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .privacy-table .labeling-wrap .label-iconBox > li .text .info {
    font-size: 14px;
  }

  .contents-wrap .contents-table > li {
    padding: 15px;
  }
  .contents-wrap .contents-table > li .img {
    width: 110px;
  }
  .contents-wrap .contents-table > li .img > li {
    height: 45px;
  }
  .contents-wrap .contents-table > li .title {
    width: calc(100% - 110px);
    font-size: 15px;
  }
  .contents-wrap .contents-table > li .title br {
    display: none;
  }

  .contents-wrap2 .row .titlebox .title {
    font-size: 20px;
  }
  .contents-wrap2 .row .titlebox .imgbox > li {
    height: 40px;
  }
  .contents-wrap2 .row .information,
  .contents-wrap2 .row .fot-text {
    font-size: 14px;
  }
  .contents-wrap2 .row .information-box > li > ul > li,
  .contents-wrap2 .row .box > li {
    align-items: baseline;
  }
  .contents-wrap2 .row .information-box > li .title {
    font-size: 16px;
  }
  .contents-wrap2 .row .information-box > li > ul > li strong {
    margin-bottom: 10px;
  }
  .contents-wrap2 .row .information-box > li > ul > li strong,
  .contents-wrap2 .row .information-box > li > ul > li p,
  .contents-wrap2 .row .box > li p {
    font-size: 14px;
  }
  .contents-wrap2 .row .box > li p {
    line-height: 1.5;
  }
}
@media all and (max-width: 768px) {
  .privacyWrap {
    padding: 195px 0;
  }

  .privacy-table .topContent .privacy-text,
  .privacy-table .topContent .privacy-text2 {
    font-family: var(--f400);
    font-size: 16px;
  }

  .privacy-table .labeling-wrap .label-iconBox > li {
    padding: 15px;
  }
  .privacy-table .labeling-wrap .label-iconBox > li .img {
    height: 60px;
  }
  .privacy-table .labeling-wrap .label-iconBox > li .text .title {
    font-size: 14px;
  }
  .privacy-table .labeling-wrap .label-iconBox > li .text .info {
    font-size: 12px;
  }

  .contents-wrap .contents-table > li {
    width: 100%;
  }
  .contents-wrap .contents-table > li:nth-child(2n + 1) {
    border-right: 1px solid #ececec;
  }

  .contents-wrap .contents-table > li .img {
    width: 150px;
  }
  .contents-wrap .contents-table > li .title {
    width: calc(100% - 150px);
    font-size: 14px;
  }

  .contents-wrap2 {
    margin-top: 80px;
  }
  .contents-wrap2 .row .titlebox .title {
    width: 100%;
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
  }
  .contents-wrap2 .row .information-box > li .title {
    font-size: 14px;
  }
  .contents-wrap2 .row .information-box > li > ul {
    padding: 0;
  }
  .contents-wrap2 .row .box {
    padding: 20px 10px;
  }
  .contents-wrap2 .row .box > li p {
    font-size: 13px;
  }

  .contents-wrap2 .row .information-box > li > ul > li > a {
    font-size: 14px;
    font-family: var(--f500);
  }

  .privacy_table_wrap {
    width: 100%;
    overflow: scroll;
  }
  .privacy_table {
    width: 1024px;
  }
  .privacy_table thead tr th,
  .privacy_table tbody tr td {
    font-size: 14px;
  }
}
@media all and (max-width: 430px) {
  .privacy-table .topContent {
    margin-bottom: 50px;
  }
  .privacy-table .topContent .privacy-title {
    font-size: 20px;
  }
  .privacy-table .topContent .privacy-text,
  .privacy-table .topContent .privacy-text2 {
    font-size: 14px;
  }

  .privacy-table .top-text {
    height: 45px;
    font-size: 15px;
  }

  .privacy-table .labeling-wrap .label-iconBox > li {
    padding: 15px 5px;
  }
  .privacy-table .labeling-wrap .label-iconBox > li .img {
    height: 45px;
  }

  .contents-wrap .contents-table > li {
    padding: 15px 5px;
  }
  .contents-wrap .contents-table > li .img {
    width: 100px;
  }
  .contents-wrap .contents-table > li .img > li {
    height: 35px;
  }
  .contents-wrap .contents-table > li .title {
    width: calc(100% - 100px);
    font-family: "S-CoreDream-3Light";
    font-size: 13px;
  }

  .contents-wrap2 .row {
    margin-bottom: 40px;
  }
  .contents-wrap2 .row .titlebox .title {
    font-size: 16px;
    margin: 0;
  }
  .contents-wrap2 .row .information-box {
    padding: 10px;
  }
  .contents-wrap2 .row .information,
  .contents-wrap2 .row .fot-text {
    font-size: 13px;
    word-break: break-all;
  }
  .contents-wrap2 .row .information-box > li > ul > li {
    margin-bottom: 10px;
  }
  .contents-wrap2 .row .information-box > li > ul > li strong,
  .contents-wrap2 .row .information-box > li > ul > li p,
  .contents-wrap2 .row .box > li p {
    font-size: 13px;
    word-break: break-all;
  }

  .contents-wrap2 .row .information-box > li .title {
    flex-wrap: wrap;
  }

  .contents-wrap2 .row .information-box > li > ul > li .dep2_title {
    font-size: 13px;
    margin-bottom: 5px;
  }
}

/* 페이지네이션 */
.pagination-wrap {
  width: 100%;
  margin-top: 20px;
}
.pagination-wrap .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-wrap .pagination > li {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}
.pagination-wrap .pagination > li:last-child {
  margin-right: 0;
}
.pagination-wrap .pagination > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f400);
  font-size: 14px;
  color: #333;
}
.pagination-wrap .pagination > li > a i {
  font-size: 16px;
}

.pagination-wrap .pagination > li.active {
  border: 1px solid #1e3d86;
  background-color: #1e3d86;
}
.pagination-wrap .pagination > li.active > a,
.pagination-wrap .pagination > li.active > a i {
  color: #fff;
}

/* 메인 > 마커 */
.marker {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.marker .mk- {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 0;
}
.marker .mk-seoul {
  top: 15%;
  right: 30%;
}
.marker .mk-gyeonggi {
  top: 22%;
  right: 27%;
}
.marker .mk-gwangju {
  top: auto;
  bottom: 31%;
  right: 34%;
}
.marker .mk-jeonnam {
  top: auto;
  bottom: 42%;
  right: 31%;
}
.marker .mk-daejeon {
  top: auto;
  bottom: 53%;
  right: 28%;
}
.marker .mk-daegu {
  top: auto;
  bottom: 43%;
  right: 18%;
}
.marker .mk-busan {
  top: auto;
  bottom: 29%;
  right: 17%;
}

@media all and (max-width: 1280px) {
  .marker .mk-seoul {
    top: 14%;
    right: 24%;
  }
  .marker .mk-gyeonggi {
    top: 22%;
    right: 21%;
  }
  .marker .mk-gwangju {
    top: auto;
    bottom: 31%;
    right: 28%;
  }
  .marker .mk-jeonnam {
    top: auto;
    bottom: 42%;
    right: 25%;
  }
  .marker .mk-daejeon {
    top: auto;
    bottom: 53%;
    right: 21%;
  }
  .marker .mk-daegu {
    top: auto;
    bottom: 43%;
    right: 11%;
  }
  .marker .mk-busan {
    top: auto;
    bottom: 29%;
    right: 10%;
  }
}
@media all and (max-width: 1024px) {
  .marker {
    display: none;
  }
}

.root_daum_roughmap_landing {
  width: 100% !important;
}
.root_daum_roughmap .wrap_controllers {
  display: none;
}

.a_target {
  font-family: var(--f700);
  color: #e7240b;
}

/* 메인 팝업 영역 */
@media all and (max-width: 1024px) {
  .popup_img {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
  }
}

.dep2_text {
  width: 100%;
  margin-top: 5px;
}
.dep2_text > li {
  margin-bottom: 5px;
  font-family: var(--f400);
  font-size: 14px;
  line-height: 1.3;
  color: #999;
}
.dep2_text > li:last-child {
  margin-bottom: 0;
}
