@charset "UTF-8";
/*--------------------------------------------------------------------------------------------------
서브 레이아웃
--------------------------------------------------------------------------------------------------*/
.main_wrap {
  width: var(--inner);
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.4rem;
  margin: 0 auto;
}

/* snb */
#snb {
  width: 24rem;
  padding: 2.4rem 0 6.4rem;
}

#snb > .title {
  font-size: 2.4rem;
  padding: 0 0.8rem 0.8rem;
  border-bottom: 1px solid var(--gray-40);
}

#snb > .list > ul > li > a {
  display: block;
  border-bottom: 1px solid var(--gray-20);
  padding: 1.6rem 0.8rem;
  font-weight: bold;
  position: relative;
  -webkit-transition: var(--trs-base);
  transition: var(--trs-base);
}

#snb > .list > ul > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 0.3rem;
  background: var(--secondary-70);
  -webkit-transition: var(--trs-base);
  transition: var(--trs-base);
}

#snb > .list > ul > li > a:hover,
#snb > .list > ul > li.active > a {
  background: var(--secondary-5);
}
#snb > .list > ul > li > a:hover::before,
#snb > .list > ul > li.active > a::before {
  width: 100%;
}

#snb .type1 > a::after {
  content: "";
  background-image: url(../img/common/head_gnb_ico_arr.svg);
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: normal;
  line-height: 1;
}

#snb > .list > ul > li.active > a:has(+ ul) {
  background: transparent;
  border-bottom: 0;
  padding-bottom: 0.8rem;
}
#snb > .list > ul > li.active > a:has(+ ul)::before {
  width: 0;
}

/*#snb > .list > ul > li.active > a { background-color:#db3881; background: linear-gradient(131deg, #e82856 0%, #b867ff 200%); color: #fff; }*/
#snb .type1.active > a::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

/*#snb > .list > ul > li.type1 > a { background: none;}
#snb > .list > ul > li.type1.active > a { padding: 1.2rem .8rem;}*/
#snb > .list > ul > li.active > ul {
  visibility: visible;
  overflow: visible;
  width: auto;
  height: auto;
  opacity: 1;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e6e6e6;
}

#snb > .list > ul > li > ul {
  padding: 0;
  opacity: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block !important;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

#snb > .list > ul > li > ul li a {
  position: relative;
  padding: 0.8rem 1.6rem;
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}

#snb > .list > ul > li > ul li a.linkWindow::after {
  margin-left: 0;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

#snb > .list > ul > li > ul .active a,
#snb > .list > ul > li > ul li a:hover {
  background: var(--secondary-5);
}

#snb > .list > ul > li > ul li a::before {
  content: "•";
}

#snb > .list > ul > li > ul .active a {
  font-weight: bold;
  color: var(--secondary-80);
}

.quick_service {
  background: var(--gray-5);
  border: 1px solid var(--gray-20);
  border-radius: var(--radius-large);
  padding: 2.4rem;
  margin-top: 4rem;
}

.quick_service .qs_title {
  font-size: 2rem;
  color: #333333;
  margin-bottom: 2rem;
}

.quick_service ul li ~ li {
  margin-top: 1rem;
}

.quick_service ul li a {
  display: block;
  position: relative;
  z-index: 0;
}

.quick_service ul li a * {
  vertical-align: middle;
}

.quick_service ul li a em {
  display: inline-block;
  width: 4rem;
  height: 4.1rem;
  margin-right: 0.6rem;
  background: 50% 50%/cover no-repeat;
}

.quick_service ul li a span {
  display: inline-block;
  font-size: 1.6rem;
  letter-spacing: -0.06em;
  color: #333;
}

.quick_service .icon01 {
  background-image: url(../img/layout/quick_service/icon01.png);
}

.quick_service .icon02 {
  background-image: url(../img/layout/quick_service/icon02.png);
}

.quick_service .icon03 {
  background-image: url(../img/layout/quick_service/icon03.png);
}

.quick_service .icon04 {
  background-image: url(../img/layout/quick_service/icon04.png);
}

.quick_service .icon05 {
  background-image: url(../img/layout/quick_service/icon05.png);
}

.quick_service .icon06 {
  background-image: url(../img/layout/quick_service/icon06.png);
}

.quick_service ul li a::before {
  content: "";
  display: block;
  width: 4rem;
  height: 100%;
  border-radius: 2rem;
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.quick_service ul li a:hover::before {
  width: 100%;
}

/* contents */
#contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 1%;
  padding: 2.4rem 0 6.4rem;
}

.contents_title {
  font-size: 4rem;
  margin-bottom: 4.8rem;
  letter-spacing: 1px;
}

#contents_body {
  position: relative;
}

/*.header:not(.fixed) + .main .cont_title2 { scroll-margin-top:21.7rem;}*/
/* contents_util - location, share, print */
.contents_util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.location .path {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}

.location .path li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--font-size-small);
}
.location .path li a {
  text-decoration: underline;
  padding: 0 0.4rem;
  border-radius: 0.4rem;
  -webkit-transition: var(--trs-base);
  transition: var(--trs-base);
}
.location .path li a:hover {
  background: var(--secondary-5);
}

.location .path li + li::before {
  display: inline-block;
  vertical-align: middle;
  font-family: "xeicon", sans-serif;
  font-size: 1.2rem;
  position: relative;
  margin-right: 0.25rem;
  content: "\e940";
}

.location .path li.icon a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-left: 0;
}
.location .path li.icon a::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/common/ico_bread_home.svg) 50% 50%/contain no-repeat;
}

.contents_util .util {
  position: absolute;
  right: 0;
  top: 0;
}

.contents_util .btn {
  display: inline-block;
  overflow: hidden;
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  border: 1px solid var(--gray-20);
  text-align: center;
  line-height: 3.8rem;
  vertical-align: top;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/*.contents_util a:hover{text-decoration: none;}*/
.contents_util .btn::before {
  display: block;
  width: 100%;
  height: 100%;
  font-family: "xeicon", sans-serif;
  text-align: center;
  line-height: inherit;
  font-size: 2rem;
  font-weight: 400;
}

.contents_util .btn.print::before {
  content: "\e9bb";
}

.contents_util .btn.up::before {
  content: "\e913";
}

.contents_util .btn.down::before {
  content: "\e91a";
}

.contents_util .btn.open::before {
  content: "\e9ea";
}

.contents_util .btn:hover,
.contents_util .btn:focus {
  background-color: var(--secondary-5);
}

.contents_util .share {
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.contents_util .share .item {
  visibility: hidden;
  height: 0;
  opacity: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
  top: 100%;
  z-index: 7;
  padding: 0 1rem;
  border: 1px solid #e8e8e8;
  -webkit-box-shadow: 0.3rem 0.3rem 0.5rem rgba(0, 0, 0, 0.05);
          box-shadow: 0.3rem 0.3rem 0.5rem rgba(0, 0, 0, 0.05);
}

.contents_util .share .item::before {
  position: absolute;
  left: 50%;
  top: -0.3rem;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  content: "";
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
}

.contents_util .share .item .list {
  display: block !important;
}

.contents_util .share .item a {
  display: block;
  overflow: hidden;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  margin-top: 1rem;
  text-align: center;
}

.contents_util .share .item a::before {
  display: block;
  width: 100%;
  height: 100%;
  font-family: "xeicon", sans-serif;
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.contents_util .share .item a.close {
  background: #f8f8fa;
}

.contents_util .share .item a.close::before {
  content: "\e922";
  color: #111;
}

.contents_util .share .item a.close:hover::before,
.contents_util .share .item a.close:focus::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.contents_util .share .item a:hover::before,
.contents_util .share .item a:focus::before {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.contents_util .share .item .facebook a {
  background: #29487d;
}

.contents_util .share .item .twitter a {
  background: #01aced;
}

.contents_util .share .item .kakaostory a {
  background: #ffc20f;
}

.contents_util .share .item .kakaotalk a {
  background: #fae300;
}

.contents_util .share .item .facebook a::before {
  content: "\ebd3";
}

.contents_util .share .item .twitter a::before {
  content: "\ec1f";
}

.contents_util .share .item .kakaostory a::before {
  content: "\ebef";
}

.contents_util .share .item .kakaotalk a::before {
  content: "\ebee";
  color: #391b1b;
}

.contents_util .share.active .btn {
  background-color: var(--secondary-10);
}

.contents_util .share.active .item {
  visibility: visible;
  overflow: visible;
  width: auto;
  height: auto;
  opacity: 1;
  margin-top: 1.5rem;
  background: #fff;
  padding: 1rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.in-page-navigation-area {
  position: sticky;
  top: 6rem;
  right: 0;
  -webkit-transform: translateX(calc(100% + 4rem));
          transform: translateX(calc(100% + 4rem));
  height: 0;
  -webkit-transition: var(--trs-base);
  transition: var(--trs-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.in-page-navigation-area .in-page-navigation-header {
  width: 17rem;
}
.in-page-navigation-area .in-page-navigation-header .quick-caption {
  font-size: 1.3rem;
}
.in-page-navigation-area .in-page-navigation-header .quick-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--gray-95);
}
.in-page-navigation-area .in-page-navigation-list {
  width: 16rem;
}
.in-page-navigation-area .in-page-navigation-list li a {
  font-size: 1.5rem;
  color: var(--gray-70);
  display: block;
  padding: 0.4rem 0.8rem;
  -webkit-transition: var(--trs-base);
  transition: var(--trs-base);
  border-radius: 0.4rem;
}
.in-page-navigation-area .in-page-navigation-list li a.active, .in-page-navigation-area .in-page-navigation-list li a:hover {
  background: var(--secondary-5);
  color: var(--secondary-80);
  font-weight: bold;
}
.in-page-navigation-area + .notice_box,
.in-page-navigation-area + .cont_title1,
.in-page-navigation-area + .cont_title2 {
  margin-top: 0;
}

.header:not(.fixed) ~ .main .in-page-navigation-area {
  top: 26rem;
}

@media (max-width: 1600px) {
  .in-page-navigation-area {
    -webkit-transform: translateX(calc(100% + 2rem));
            transform: translateX(calc(100% + 2rem));
  }
  #contents_body:has(.in-page-navigation-area) {
    padding-right: 16rem;
  }
  #main:has(.in-page-navigation-area) .main_wrap {
    gap: 3.2rem;
  }
  #main:has(.in-page-navigation-area) #snb {
    width: 20rem;
  }
  #main:has(.in-page-navigation-area) #snb .quick_service {
    padding: 0.8rem;
  }
}
/* depth4 : depth4 탭메뉴 === .tab_dpth1 :  콘텐츠내 탭메뉴 */
.depth4_tab > ul,
.tab_dpth1 ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 100%;
  margin-bottom: 3.2rem;
}
.depth4_tab > ul > li,
.tab_dpth1 ul > li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  font-size: var(--font-size-large);
  color: var(--gray-70);
  line-height: 1.2;
  position: relative;
  margin-left: -1px;
}
.depth4_tab > ul > li a, .depth4_tab > ul > li button,
.tab_dpth1 ul > li a,
.tab_dpth1 ul > li button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0.8rem;
  text-align: center;
  width: 100%;
  height: 5.6rem;
  font-weight: bold;
  border: 1px solid var(--gray-30);
  background-color: #fff;
  -webkit-transition: var(--trs-base);
  transition: var(--trs-base);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.depth4_tab > ul > li:first-of-type a, .depth4_tab > ul > li:first-of-type button,
.tab_dpth1 ul > li:first-of-type a,
.tab_dpth1 ul > li:first-of-type button {
  border-radius: 0.6rem 0 0 0.6rem;
}
.depth4_tab > ul > li:last-of-type a, .depth4_tab > ul > li:last-of-type button,
.tab_dpth1 ul > li:last-of-type a,
.tab_dpth1 ul > li:last-of-type button {
  border-radius: 0 0.6rem 0.6rem 0;
}
.depth4_tab > ul > li.active a, .depth4_tab > ul > li.active button,
.tab_dpth1 ul > li.active a,
.tab_dpth1 ul > li.active button {
  border-color: var(--secondary-70);
  color: var(--gray-0);
  background-color: var(--secondary-70);
}
.depth4_tab > ul > li:not(.active) a:hover, .depth4_tab > ul > li:not(.active) a:focus, .depth4_tab > ul > li:not(.active) button:hover, .depth4_tab > ul > li:not(.active) button:focus,
.tab_dpth1 ul > li:not(.active) a:hover,
.tab_dpth1 ul > li:not(.active) a:focus,
.tab_dpth1 ul > li:not(.active) button:hover,
.tab_dpth1 ul > li:not(.active) button:focus {
  background: var(--secondary-5);
}
.depth4_tab > ul > li a[target=_blank]::after,
.tab_dpth1 ul > li a[target=_blank]::after {
  display: inline-block;
  font-family: "xeicon", sans-serif;
  content: "\e980";
  font-size: 1em;
  margin-left: 0.3rem;
  font-weight: 300;
}

/* depth5 */
#depth5_menu_ul,
.tab_dpth2 ul {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  position: relative;
  z-index: 1;
}

#depth5_menu_ul > li,
.tab_dpth2 ul > li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc((100% - 3.6rem) / 6);
          flex: 1 0 calc((100% - 3.6rem) / 6); /*-ms-flex-preferred-size:calc(25% - 1rem);*/
}

.tab_dpth2.swiper ul > li {
  min-width: 13rem;
}

#depth5_menu_ul > li > a,
.tab_dpth2 ul > li > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--gray-70);
  background: var(--gray-0);
  border-bottom: 2px solid var(--gray-30);
  text-align: center;
  min-height: 5.8rem;
  font-size: var(--font-size-large);
  font-weight: bold;
  position: relative;
  word-break: break-all;
}

#depth5_menu_ul > li > a::before,
.tab_dpth2 ul > li > button::before {
  content: "";
  display: block;
  width: 0;
  height: 0.4rem;
  background: var(--secondary-80);
  -webkit-transition: var(--trs-base);
  transition: var(--trs-base);
  position: absolute;
  left: 50%;
  bottom: -0.2rem;
}

#depth5_menu_ul > li > a:hover,
#depth5_menu_ul > li > a:focus,
.tab_dpth2 ul > li > button:hover,
.tab_dpth2 ul > li > button:focus {
  background: var(--secondary-5);
}

#depth5_menu_ul > li.active > a,
.tab_dpth2 ul > li.active > button {
  color: var(--secondary-80);
}

#depth5_menu_ul > li.active > a::before,
.tab_dpth2 ul > li.active > button::before {
  width: 100%;
  left: 0;
}

.tab_dpth2 ul .no_btn {
  display: none;
}

/* 6개 초과일경우 - swiper slide */
#depth5_menu_div,
.tab_dpth2 {
  /*position:absolute; left:0; top:0; width:100%; height:100%;*/
}
#depth5_menu_div.swiper,
.tab_dpth2.swiper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
#depth5_menu_div .swiper-slide,
.tab_dpth2 .swiper-slide {
  width: auto;
}
#depth5_menu_div .swiper-button,
.tab_dpth2 .swiper-button {
  display: block;
  width: 4rem;
  height: 100%;
  background: var(--gray-0);
  -webkit-transition: var(--trs-base);
  transition: var(--trs-base);
  position: absolute;
  top: 0;
  z-index: 10;
}
#depth5_menu_div .swiper-button::after,
.tab_dpth2 .swiper-button::after {
  content: "";
  display: block;
  width: 2rem;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 9;
}
#depth5_menu_div .swiper-button:hover, #depth5_menu_div .swiper-button:focus,
.tab_dpth2 .swiper-button:hover,
.tab_dpth2 .swiper-button:focus {
  background: var(--secondary-5);
}
#depth5_menu_div .swiper-button-prev,
.tab_dpth2 .swiper-button-prev {
  left: 0;
  border-right: 1px solid var(--gray-20);
}
#depth5_menu_div .swiper-button-prev::after,
.tab_dpth2 .swiper-button-prev::after {
  left: calc(100% + 1px);
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
#depth5_menu_div .swiper-button-next,
.tab_dpth2 .swiper-button-next {
  right: 0;
  border-left: 1px solid var(--gray-20);
}
#depth5_menu_div .swiper-button-next::after,
.tab_dpth2 .swiper-button-next::after {
  right: calc(100% + 1px);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.swiper-button-disabled {
  display: none !important;
}

/* foot author */
.foot_author {
  border: 1px solid var(--gray-20);
  margin-top: 8rem;
  padding: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  border-radius: var(--radius-large);
  position: relative;
}

.foot_author::before {
  content: "\e9f5";
  font-family: "xeicon", sans-serif;
  color: #fff;
  font-size: 2rem;
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: #3c4164;
  text-align: center;
}

.foot_author ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}

.foot_author ul li p strong {
  color: #3C4165;
  padding-right: 1rem;
  margin-right: 1rem;
  position: relative;
}

.foot_author ul li p strong::after {
  content: "";
  display: block;
  width: 1px;
  height: 1rem;
  background: #CECECE;
  position: absolute;
  right: 0;
  top: 0.5rem;
}

.foot_author .btn_basic {
  margin-left: auto;
}

/* satisfy_group */
.satisfy_group {
  background: var(--gray-5);
  padding: 2.4rem;
  border: 1px solid var(--gray-20);
  margin-top: 5rem;
}

.kogl + .foot_author,
.kogl + .satisfy_group,
.foot_author + .satisfy_group {
  border-top: 0;
  margin-top: 0;
  border-bottom-left-radius: var(--radius-large);
  border-bottom-right-radius: var(--radius-large);
}

.foot_author:has(+ .satisfy_group) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.satisfy_group .title {
  font-size: var(--font-size-large);
  margin-bottom: 1.5rem;
}

.satisfy_group .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

/*.satisfy_group .form_radio { display: inline-block; position: relative; z-index: 0; margin-right: 2rem; padding-left: 2.4rem; vertical-align: top;}
.satisfy_group .form_radio input { position: absolute; left: 0; top: 0; opacity: 0;}
.satisfy_group .form_radio input:checked + label::after { background-color: var(--primary-50); }
.satisfy_group .form_radio label { cursor: pointer; }
.satisfy_group .form_radio label::before { position: absolute; left: 0; top: 0.5rem; z-index: -2; width: 2rem; height: 2rem; border-radius: 100%; border: 1px solid var(--gray-60); background-color: #fff; content: "";}
.satisfy_group .form_radio label::after { position: absolute; left: 0.5rem; top: 1rem; z-index: -1; width: 1rem; height: 1rem; border-radius: 100%; content: "";}
.satisfy_group .form_radio:last-child { margin-right: 0; }*/
.satisfy_group .cont form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*--------------------------------------------------------------------------------------------------
 공통 콘텐츠
--------------------------------------------------------------------------------------------------*/
/* popup */
.modal-popup-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #333;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 30;
  display: none;
}

.modal-popup-wrap .modal-popup {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 42rem;
  max-height: 80%;
  background: #fff;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
}

.modal-popup-wrap .modal-popup .btn-close {
  position: absolute;
  right: 0;
  top: -6rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #000;
}

.modal-popup-wrap .modal-popup .btn-close i {
  font-size: 3rem;
  line-height: 5rem;
  color: #fff;
}

.modal-popup-wrap .modal-title {
  padding: 2.5rem 3rem 0;
  font-size: 2.4rem;
  font-weight: 700;
}

.modal-popup-wrap .modal-cont {
  height: 100%;
  padding: 3rem;
  background-color: #fff;
  overflow: auto;
}

.modal-popup-wrap .modal-cont::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

.modal-popup-wrap .modal-cont::-webkit-scrollbar {
  width: 0.8rem;
}

.modal-popup-wrap .modal-cont::-webkit-scrollbar-thumb {
  background-color: #5b6f90;
}

.modal-popup-wrap .modal-cont .title {
  display: block;
  font-weight: 700;
  font-size: 2.2rem;
}

.modal-popup-wrap .modal-foot {
  background: #EEEEEE;
  text-align: center;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
}

.modal-popup-wrap .modal-foot .btn {
  padding: 2rem 0;
  color: #fff;
  -webkit-box-flex: 1;
          flex: 1;
  -ms-flex: 1;
  border: 0;
  border-radius: 0;
}

.modal-popup-wrap .icon-warning {
  border-radius: 50%;
  background: #FFD500;
  width: 10rem;
  height: 10rem;
  margin: 0 auto 3rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 6rem;
  font-weight: 700;
}

/* 타이틀 관련 */
.cont_title1,
.cont_title2 {
  font-size: 3.2rem;
  margin-top: 4rem;
  margin-bottom: 2.4rem;
  scroll-margin-top: 4rem;
}
.cont_title1.up,
.cont_title2.up {
  scroll-margin-top: 20.6rem;
}

/* #anchor-page-0 {margin-top:0;} */
/*.header:not(.fixed) ~ .main .cont_title1,
.header:not(.fixed) ~ .main .cont_title2 { scroll-margin-top:21rem;}*/
.cont_title3 {
  font-size: 2.4rem;
  margin-top: 2.4rem;
  margin-bottom: 2rem;
}

.cont_title4 {
  font-size: 1.9rem;
  margin-top: 2.4rem;
  margin-bottom: 2rem;
}

.round_title {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 3rem;
}

/*.cont_title1::before,
.cont_title1::after,
.cont_title2::before,
.cont_title2::after { content: ""; display: block; width: 1rem; height: 1rem; position: absolute; top:1.5rem;}
.cont_title1::before,
.cont_title2::before { background: #0B6374; left: 0; transform:translateY(-1rem);}
.cont_title1::after,
.cont_title2::after { background: #505A76; left: 1rem; }

.cont_title3::before,
.cont_title3::after { content: ""; display: block; width: 1.4rem; height: 1.4rem; border-radius: 50%; position: absolute;}
.cont_title3::before { background: #0b6374; left: 0; top: 0.4rem;}
.cont_title3::after { background: #c2d6db; left: 1rem; top: 0.4rem;}
*/
/* 리스트 관련 */
/*.cont_list1, .cont_list2, .cont_list3, .cont_olist1{margin: 1.2rem 0;}*/
.outdent1 {
  margin-left: -1.4rem;
}

.cont_text1 {
  margin: 0.8rem 0;
}

.cont_text1,
.cont_list1 > li {
  position: relative;
  padding-left: 3.2rem;
  color: var(--gray-70);
}

.cont_list1 > li ~ li {
  margin-top: 1.2rem;
}

li > .cont_list1 > li ~ li {
  margin-top: 0.8rem;
}

.cont_olist1 {
  list-style: none;
}

.cont_olist1 li {
  padding-left: 1.7rem;
  text-indent: -1.7rem;
}

.cont_text1::before,
.cont_list1 > li::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--gray-70);
  border-radius: 50%;
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
}

.cont_text2,
.cont_list1_dash > li,
.cont_list2 > li,
.cont_list1 > li > ul > li {
  position: relative;
  padding-left: 2rem;
  margin: 0.8rem 0;
}

.cont_text2::before,
.cont_list1_dash > li::before,
.cont_list2 > li::before,
.cont_list1 > li > ul > li::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 1px;
  background: var(--gray-70);
  position: absolute;
  left: 0;
  top: 1.2rem;
}

.cont_list2 > li {
  color: var(--gray-70);
}

.cont_list_deci > li,
.cont_list1 > li > ol > li {
  list-style: decimal;
  margin-left: 2rem;
  margin-bottom: 0.8rem;
}

.indent_box .cont_olist1 {
  padding-left: 3.2rem;
}

/* 접근성 때문에
.cont_list_deci,
.cont_list1 > li > ol {counter-reset: item;margin-top: 1rem;}
.cont_list_deci > li,
.cont_list1 > li > ol > li { font-weight: 400; position: relative; padding-left: 2.8rem;}
.cont_list_deci > li::before,
.cont_list1 > li > ol > li::before {counter-increment: item; content: counter(item);display: block;width: 2rem; height: 2rem; line-height:2rem; border-radius: 0.4rem; position: absolute;left: 0;top: .2rem;background: #505B74;color: #fff;font-size: 1.5rem;font-weight: 500; text-align: center;}*/
.cont_list3,
.cont_list1 > li > ul > li > ul {
  margin-top: 0.8rem;
}

.cont_list3 > li,
.cont_list1 > li > ul > li > ul > li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.cont_list3 > li::before,
.cont_list1 > li > ul > li > ul > li::before {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1.1rem;
}

.cont_list1 > li > ul > li > ul > li > ul {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

.cont_list1 > li > ul > li > ul > li > ul > li {
  padding-left: 1rem;
  position: relative;
}

.cont_list1 > li > ul > li > ul > li > ul > li::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 1px;
  background: #555;
  position: absolute;
  left: 0;
  top: 1.1rem;
}

.cont_olist1 {
  list-style: none;
  margin-top: 1rem;
}

.tb_ol_list > li {
  margin: 1rem 0 2rem 0;
}

.tb_ol_list > li > ol,
.tb_ol_list > li > ul {
  margin: 1.5rem 0;
  padding: 2rem 3rem;
  font-size: 1.6rem;
  color: #666;
  background: #f8f8f8;
}

.tb_ol_list > li > ol > li ~ li, .tb_ol_list > li > ul > li ~ li {
  margin-top: 1.5rem;
}

/* 박스형식 리스트 */
.box_list {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
}

.box_list li {
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  -ms-flex: 0 0 50%;
}

.box_list li p {
  border: 1px solid var(--gray-20);
  background: var(--gray-0);
  padding: 1.2rem;
  border-radius: var(--radius-medium);
}

.inline_list li {
  display: inline-block;
  margin: 0.5rem 1rem 0 0;
}

.none_list li::before,
.no_bul::before {
  display: none !important;
}

.none_list li {
  padding-left: 0 !important;
}

/* 박스 스타일 */
.gray_box, .img_box, .notice_box, .line_box, .line_box2, .desc_box, .chart_box {
  margin: 2rem 0;
  padding: 2.4rem;
  border: 1px solid var(--gray-20);
  border-radius: var(--radius-large);
}

.desc_box,
.notice_box {
  background: var(--secondary-5);
}

.desc_box .title,
.notice_box .notice_cont .notice_title {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--gray-90);
  margin-bottom: 2rem;
}

.notice_box .notice_cont .notice_text,
.notice_box .notice_cont > ul > li {
  position: relative;
  margin: 0.8rem 0;
  padding-left: 3.2rem;
  color: var(--gray-70);
}

.notice_box .notice_cont .notice_text::before,
.notice_box .notice_cont > ul > li::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--gray-70);
  position: absolute;
  left: 0.8rem;
  top: 1rem;
  border-radius: 50%;
}

.notice_box .notice_btn {
  margin-top: 10px;
  background: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 0.2rem;
  text-align: center;
}

.gray_box {
  border: 0;
  background: var(--gray-5);
}

.gray_box .note_box {
  background: var(--gray-0);
  padding: 1.5rem 2rem;
  font-size: 1.5rem;
  border-radius: var(--radius-medium);
}

.line_box {
  margin: 1.5rem 0;
  padding: 2.5rem 3rem;
  border: 1px solid #A9B1C9;
  background: #FAFBFD;
}

.line_box .title {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.desc_box .title span {
  color: #505b73;
}

/*.desc_box .cont_list1 > li { position: relative; padding-left: 1.4rem;}
.desc_box .cont_list1 > li ~ li,
.gray_box .cont_list1 li ~ li {margin-top: .5rem;}
.desc_box .cont_list1 > li::before { content: ""; display: block; width: .5rem; height: .5rem; border-radius: 0; background: #505a76; position: absolute; left: 0; top: 1rem;}
.dot_box{font-size: 1.5rem;border:1px dashed #d8d8d8;padding:1.5rem 2rem; margin:1.5rem 0;}*/
/* tab depth3 */
.tab_dpth3 {
  margin-top: 15px;
}

.tab_dpth3 ul {
  text-align: left;
}

.tab_dpth3 ul li {
  display: inline-block;
  margin: 2px;
}

.tab_dpth3 ul li a {
  display: block;
  border-radius: 17px;
  background: #f0f1f5;
  color: #5f5e5e;
  letter-spacing: -1px;
  padding: 0.5rem 18px;
}

.tab_dpth3 ul li.on a {
  background: #476da2;
  color: #fff;
  font-weight: bold;
  letter-spacing: -0.075em;
}

.tab_dpth3 ul li a span {
  display: block;
}

/* tab depth4 */
.tab_dpth4 {
  margin-top: 15px;
}

.tab_dpth4 ul {
  padding: 10px 0 10px 20px;
  border: 1px solid #d8d8d8;
  text-align: left;
}

.tab_dpth4 ul li {
  display: inline-block;
  padding: 0 18px 0 6px;
}

.tab_dpth4 ul li a {
  display: block;
  color: #5f5e5e;
  letter-spacing: -1px;
  padding: 1px 0 3px 0;
}

.tab_dpth4 ul li.on a {
  color: #476da2;
  font-weight: bold;
  letter-spacing: -0.075em;
}

.tab_dpth4 ul li a span {
  display: block;
}

/* tab_cont */
.tab_cont_wrap {
  margin-top: 2rem;
}

.tab_cont_wrap .tab_cont {
  display: none;
}

.tab_cont_wrap .tab_cont.active {
  display: block;
}

/* button */
.btn_group {
  width: 100%;
  gap: 0.8rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: auto !important;
}

.board_btns .btn,
.btn.type1,
.btn_tertiary,
.btn_line,
.btn_inline,
.btn_inline_gray,
.btn.type2,
.btn_primary,
.btn_color,
.btn_black,
.btn.type3,
.btn_secondary,
.btn_inline_blue {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--radius-large);
  border: 1px solid transparent;
  padding: 0 2.4rem;
  -webkit-transition: var(--trs-base);
  transition: var(--trs-base);
  cursor: pointer;
  height: 5.6rem;
}
.board_btns .btn:hover,
.btn.type1:hover,
.btn_tertiary:hover,
.btn_line:hover,
.btn_inline:hover,
.btn_inline_gray:hover,
.btn.type2:hover,
.btn_primary:hover,
.btn_color:hover,
.btn_black:hover,
.btn.type3:hover,
.btn_secondary:hover,
.btn_inline_blue:hover {
  text-decoration: none !important;
}
.board_btns .btn.xsmall,
.btn.type1.xsmall,
.btn_tertiary.xsmall,
.btn_line.xsmall,
.btn_inline.xsmall,
.btn_inline_gray.xsmall,
.btn.type2.xsmall,
.btn_primary.xsmall,
.btn_color.xsmall,
.btn_black.xsmall,
.btn.type3.xsmall,
.btn_secondary.xsmall,
.btn_inline_blue.xsmall {
  height: 3.2rem;
  font-size: 1.5rem;
  padding: 0 1rem;
  border-radius: var(--radius-small);
}
.board_btns .btn.small,
.btn.type1.small,
.btn_tertiary.small,
.btn_line.small,
.btn_inline.small,
.btn_inline_gray.small,
.btn.type2.small,
.btn_primary.small,
.btn_color.small,
.btn_black.small,
.btn.type3.small,
.btn_secondary.small,
.btn_inline_blue.small {
  height: 4rem;
  font-size: 1.5rem;
  padding: 0 1.2rem;
  border-radius: var(--radius-medium);
}
.board_btns .btn.small[class*=ico-]::before, .board_btns .btn.small[class*=ico-]::after,
.btn.type1.small[class*=ico-]::before,
.btn.type1.small[class*=ico-]::after,
.btn_tertiary.small[class*=ico-]::before,
.btn_tertiary.small[class*=ico-]::after,
.btn_line.small[class*=ico-]::before,
.btn_line.small[class*=ico-]::after,
.btn_inline.small[class*=ico-]::before,
.btn_inline.small[class*=ico-]::after,
.btn_inline_gray.small[class*=ico-]::before,
.btn_inline_gray.small[class*=ico-]::after,
.btn.type2.small[class*=ico-]::before,
.btn.type2.small[class*=ico-]::after,
.btn_primary.small[class*=ico-]::before,
.btn_primary.small[class*=ico-]::after,
.btn_color.small[class*=ico-]::before,
.btn_color.small[class*=ico-]::after,
.btn_black.small[class*=ico-]::before,
.btn_black.small[class*=ico-]::after,
.btn.type3.small[class*=ico-]::before,
.btn.type3.small[class*=ico-]::after,
.btn_secondary.small[class*=ico-]::before,
.btn_secondary.small[class*=ico-]::after,
.btn_inline_blue.small[class*=ico-]::before,
.btn_inline_blue.small[class*=ico-]::after {
  width: 2rem;
  height: 2rem;
}
.board_btns .btn.medium,
.btn.type1.medium,
.btn_tertiary.medium,
.btn_line.medium,
.btn_inline.medium,
.btn_inline_gray.medium,
.btn.type2.medium,
.btn_primary.medium,
.btn_color.medium,
.btn_black.medium,
.btn.type3.medium,
.btn_secondary.medium,
.btn_inline_blue.medium {
  height: 4.8rem;
  padding: 0 2rem;
  border-radius: var(--radius-medium);
}
.board_btns .btn.medium[class*=ico-]::before, .board_btns .btn.medium[class*=ico-]::after,
.btn.type1.medium[class*=ico-]::before,
.btn.type1.medium[class*=ico-]::after,
.btn_tertiary.medium[class*=ico-]::before,
.btn_tertiary.medium[class*=ico-]::after,
.btn_line.medium[class*=ico-]::before,
.btn_line.medium[class*=ico-]::after,
.btn_inline.medium[class*=ico-]::before,
.btn_inline.medium[class*=ico-]::after,
.btn_inline_gray.medium[class*=ico-]::before,
.btn_inline_gray.medium[class*=ico-]::after,
.btn.type2.medium[class*=ico-]::before,
.btn.type2.medium[class*=ico-]::after,
.btn_primary.medium[class*=ico-]::before,
.btn_primary.medium[class*=ico-]::after,
.btn_color.medium[class*=ico-]::before,
.btn_color.medium[class*=ico-]::after,
.btn_black.medium[class*=ico-]::before,
.btn_black.medium[class*=ico-]::after,
.btn.type3.medium[class*=ico-]::before,
.btn.type3.medium[class*=ico-]::after,
.btn_secondary.medium[class*=ico-]::before,
.btn_secondary.medium[class*=ico-]::after,
.btn_inline_blue.medium[class*=ico-]::before,
.btn_inline_blue.medium[class*=ico-]::after {
  width: 2.4rem;
  height: 2.4rem;
}
.board_btns .btn.xlarge,
.btn.type1.xlarge,
.btn_tertiary.xlarge,
.btn_line.xlarge,
.btn_inline.xlarge,
.btn_inline_gray.xlarge,
.btn.type2.xlarge,
.btn_primary.xlarge,
.btn_color.xlarge,
.btn_black.xlarge,
.btn.type3.xlarge,
.btn_secondary.xlarge,
.btn_inline_blue.xlarge {
  height: 6.4rem;
  font-size: 1.9rem;
  padding: 0 2.8rem;
  border-radius: var(--radius-large);
}
.board_btns .btn.xlarge[class*=ico-]::before, .board_btns .btn.xlarge[class*=ico-]::after,
.btn.type1.xlarge[class*=ico-]::before,
.btn.type1.xlarge[class*=ico-]::after,
.btn_tertiary.xlarge[class*=ico-]::before,
.btn_tertiary.xlarge[class*=ico-]::after,
.btn_line.xlarge[class*=ico-]::before,
.btn_line.xlarge[class*=ico-]::after,
.btn_inline.xlarge[class*=ico-]::before,
.btn_inline.xlarge[class*=ico-]::after,
.btn_inline_gray.xlarge[class*=ico-]::before,
.btn_inline_gray.xlarge[class*=ico-]::after,
.btn.type2.xlarge[class*=ico-]::before,
.btn.type2.xlarge[class*=ico-]::after,
.btn_primary.xlarge[class*=ico-]::before,
.btn_primary.xlarge[class*=ico-]::after,
.btn_color.xlarge[class*=ico-]::before,
.btn_color.xlarge[class*=ico-]::after,
.btn_black.xlarge[class*=ico-]::before,
.btn_black.xlarge[class*=ico-]::after,
.btn.type3.xlarge[class*=ico-]::before,
.btn.type3.xlarge[class*=ico-]::after,
.btn_secondary.xlarge[class*=ico-]::before,
.btn_secondary.xlarge[class*=ico-]::after,
.btn_inline_blue.xlarge[class*=ico-]::before,
.btn_inline_blue.xlarge[class*=ico-]::after {
  width: 3.2rem;
  height: 3.2rem;
}
.board_btns .btn .btn_link, .board_btns .btn .btn_down, .board_btns .btn .btn_bln,
.btn.type1 .btn_link,
.btn.type1 .btn_down,
.btn.type1 .btn_bln,
.btn_tertiary .btn_link,
.btn_tertiary .btn_down,
.btn_tertiary .btn_bln,
.btn_line .btn_link,
.btn_line .btn_down,
.btn_line .btn_bln,
.btn_inline .btn_link,
.btn_inline .btn_down,
.btn_inline .btn_bln,
.btn_inline_gray .btn_link,
.btn_inline_gray .btn_down,
.btn_inline_gray .btn_bln,
.btn.type2 .btn_link,
.btn.type2 .btn_down,
.btn.type2 .btn_bln,
.btn_primary .btn_link,
.btn_primary .btn_down,
.btn_primary .btn_bln,
.btn_color .btn_link,
.btn_color .btn_down,
.btn_color .btn_bln,
.btn_black .btn_link,
.btn_black .btn_down,
.btn_black .btn_bln,
.btn.type3 .btn_link,
.btn.type3 .btn_down,
.btn.type3 .btn_bln,
.btn_secondary .btn_link,
.btn_secondary .btn_down,
.btn_secondary .btn_bln,
.btn_inline_blue .btn_link,
.btn_inline_blue .btn_down,
.btn_inline_blue .btn_bln {
  border: 0;
  padding: 0;
  border: 0;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
}
.board_btns .btn .btn_link::after, .board_btns .btn .btn_down::after, .board_btns .btn .btn_bln::after,
.btn.type1 .btn_link::after,
.btn.type1 .btn_down::after,
.btn.type1 .btn_bln::after,
.btn_tertiary .btn_link::after,
.btn_tertiary .btn_down::after,
.btn_tertiary .btn_bln::after,
.btn_line .btn_link::after,
.btn_line .btn_down::after,
.btn_line .btn_bln::after,
.btn_inline .btn_link::after,
.btn_inline .btn_down::after,
.btn_inline .btn_bln::after,
.btn_inline_gray .btn_link::after,
.btn_inline_gray .btn_down::after,
.btn_inline_gray .btn_bln::after,
.btn.type2 .btn_link::after,
.btn.type2 .btn_down::after,
.btn.type2 .btn_bln::after,
.btn_primary .btn_link::after,
.btn_primary .btn_down::after,
.btn_primary .btn_bln::after,
.btn_color .btn_link::after,
.btn_color .btn_down::after,
.btn_color .btn_bln::after,
.btn_black .btn_link::after,
.btn_black .btn_down::after,
.btn_black .btn_bln::after,
.btn.type3 .btn_link::after,
.btn.type3 .btn_down::after,
.btn.type3 .btn_bln::after,
.btn_secondary .btn_link::after,
.btn_secondary .btn_down::after,
.btn_secondary .btn_bln::after,
.btn_inline_blue .btn_link::after,
.btn_inline_blue .btn_down::after,
.btn_inline_blue .btn_bln::after {
  font-family: "xeicon", sans-serif;
}
.board_btns .btn .btn_link::after,
.btn.type1 .btn_link::after,
.btn_tertiary .btn_link::after,
.btn_line .btn_link::after,
.btn_inline .btn_link::after,
.btn_inline_gray .btn_link::after,
.btn.type2 .btn_link::after,
.btn_primary .btn_link::after,
.btn_color .btn_link::after,
.btn_black .btn_link::after,
.btn.type3 .btn_link::after,
.btn_secondary .btn_link::after,
.btn_inline_blue .btn_link::after {
  content: "\e93f";
}
.board_btns .btn .btn_down::after,
.btn.type1 .btn_down::after,
.btn_tertiary .btn_down::after,
.btn_line .btn_down::after,
.btn_inline .btn_down::after,
.btn_inline_gray .btn_down::after,
.btn.type2 .btn_down::after,
.btn_primary .btn_down::after,
.btn_color .btn_down::after,
.btn_black .btn_down::after,
.btn.type3 .btn_down::after,
.btn_secondary .btn_down::after,
.btn_inline_blue .btn_down::after {
  content: "\eb7c";
}
.board_btns .btn .btn_bln::after,
.btn.type1 .btn_bln::after,
.btn_tertiary .btn_bln::after,
.btn_line .btn_bln::after,
.btn_inline .btn_bln::after,
.btn_inline_gray .btn_bln::after,
.btn.type2 .btn_bln::after,
.btn_primary .btn_bln::after,
.btn_color .btn_bln::after,
.btn_black .btn_bln::after,
.btn.type3 .btn_bln::after,
.btn_secondary .btn_bln::after,
.btn_inline_blue .btn_bln::after {
  content: "\e980";
}

/* krds - primary */
.btn.type2,
.btn_primary,
.btn_color,
.btn_black {
  background: var(--primary-50);
  border-color: var(--primary-50);
  color: var(--gray-0);
}
.btn.type2:hover,
.btn_primary:hover,
.btn_color:hover,
.btn_black:hover {
  background: var(--primary-60);
}

/* krds - secondary */
.btn.type3,
.btn_secondary,
.btn_inline_blue {
  border-color: var(--primary-50);
  background: var(--secondary-5);
  color: var(--primary-60);
}
.btn.type3:hover,
.btn_secondary:hover,
.btn_inline_blue:hover {
  background: var(--secondary-10);
  color: var(--primary-70);
}

/* krds - tertiary */
.btn.type1,
.btn_tertiary,
.btn_line,
.btn_inline,
.btn_inline_gray {
  background: var(--gray-0);
  border-color: var(--gray-60);
}
.btn.type1:hover,
.btn_tertiary:hover,
.btn_line:hover,
.btn_inline:hover,
.btn_inline_gray:hover {
  background: var(--gray-5);
}

.board_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.4rem;
}

.board_btn:has(.btn_primary:only-child) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn_xls {
  font-size: 1.6rem;
}

.btn_small {
  padding: 0.6rem 1rem;
  font-size: 1.4rem;
}

/* 버튼위치 제어 */
.btn_position {
  position: relative;
  min-height: 40px;
}

.btn_position .btn_right {
  position: absolute;
  top: 0;
  right: 0;
}

/* 주 컬러 */
.primary {
  color: var(--primary-60) !important;
}

.secondary {
  color: var(--secondary-60) !important;
}

.danger {
  color: var(--danger-60) !important;
}

.information {
  color: var(--information-60) !important;
}

.warning {
  color: var(--warning-60) !important;
}

.success {
  color: var(--success-60) !important;
}

/* 포인트 컬러 */
.point_cr1 {
  color: var(--point-50) !important;
}

.point_cr2 {
  color: var(--primary-60) !important;
}

.point_cr4 {
  color: #007c8e !important;
}

.point_cr5 {
  color: var(--primary-60) !important;
}

.point_cr6 {
  color: #006374 !important;
}

/* 텍스트 관련 */
.txt_emph {
  display: block;
  margin-top: 5px;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.txt_emph::before {
  content: "※";
  margin-right: 0.5rem;
}

.cont_list1 .txt_emph {
  padding-left: 0;
}

.star,
.txt_star {
  color: #767676;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  padding-left: 0.8rem;
  text-indent: -0.8rem;
}

a.text_blank,
#contents_body .linkWindow {
  color: var(--primary-50);
  letter-spacing: 0;
  text-decoration: underline;
  -webkit-transition: var(--trs-base) time;
  transition: var(--trs-base) time;
}

a.text_blank::after {
  content: "\e980";
  font-family: "xeicon", sans-serif;
  margin-left: 0.4rem;
  display: inline-block;
  vertical-align: middle;
}

a.text_blank:hover {
  color: var(--primary-60);
}

.txt_emph.box {
  padding: 2rem 3rem;
  color: #666;
  background: #f8f8fa;
}

.txt_emph + .cont_list1_dash {
  font-size: 1.5rem;
}

.fs_20 {
  font-size: 2rem;
}

.fs_16 {
  font-size: 1.6rem;
}

/* 기본 테이블 */
.tb_scroll {
  overflow: auto;
  margin: 2rem 0 1.2rem;
}

.tb_scroll.small th,
.tb_scroll.small td {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.tb_scroll::-webkit-scrollbar-track {
  background-color: var(--secondary-5);
}

.tb_scroll::-webkit-scrollbar {
  height: 0.8rem;
}

.tb_scroll::-webkit-scrollbar-thumb {
  background-color: var(--secondary-70);
}

.tb_base {
  width: 100%;
}

.tb_base th,
.tb_base td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid var(--gray-20);
  word-wrap: break-word;
  word-break: keep-all;
}

.tb_base th {
  background: var(--secondary-5);
  color: var(--gray-95);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  text-align: left;
  font-size: 1.5rem;
}

.tb_base td {
  color: var(--gray-70);
}

/*
.tb_base tbody.tb_center td,
.tb_base tfoot.tb_center td{text-align: center;}
*/
.tb_base tfoot th,
.tb_base tfoot td {
  background: #f4f9ff;
  color: #00539f;
}

.tb_base:not(:has(thead)) {
  border-top: 1px solid var(--gray-20);
}

.tb_base.in_border th,
.tb_base.in_border td {
  border-left: 1px solid var(--gray-10);
  border-right: 1px solid var(--gray-10);
}
.tb_base.in_border th:first-child,
.tb_base.in_border td:first-child {
  border-left: 0;
}
.tb_base.in_border th:last-child,
.tb_base.in_border td:last-child {
  border-right: 0;
}

/* 테이블 상단 단위 및 정보 전달  */
.tb_unit_wrap {
  position: relative;
  padding-top: 2.5rem;
  margin-top: -2rem;
}

.tb_unit_wrap .tb_unit,
.tb_unit_wrap .tb_unit2 {
  position: absolute;
  top: 0;
  right: 0;
  text-align: left;
  z-index: 1;
}

.tb_unit_wrap.unit_reset {
  margin-top: 0;
}

/* 이미지 확대 */
.img_box {
  text-align: center;
}

.img_box .img_zoom {
  display: none;
}

.img_box .wp100 {
  width: 100%;
}

.img_cont {
  margin: 2rem 0;
  padding: 1rem;
  border: 1px solid #ddd;
  text-align: center;
}

.img_wrap {
  padding: 2rem;
  text-align: center;
}

/* 좌-이미지 / 우-텍스트 */
.left_img {
  display: inline-block;
  width: 35%;
  vertical-align: top;
}

.left_img img {
  width: 100%;
}

.right_text {
  display: inline-block;
  width: 62%;
  margin-left: 3%;
  vertical-align: top;
  text-align: left;
}

/* iframe box */
.ifrm_normal,
.ifrm_auto {
  margin-top: 30px;
}

.ifrm_normal iframe {
  display: block;
  width: 100%;
  border: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.ifrm_auto iframe {
  display: block;
  width: 100%;
}

.ifrm_guide {
  margin: 40px 0;
  padding-top: 100px;
  background: url(../img/common/ifrm_guide_bg.png) center top no-repeat;
}

.ifrm_guide p {
  display: block;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.06em;
  text-align: center;
}

.ifrm_normal_1,
.ifrm_normal_1 iframe {
  display: block;
  border: 0;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.ifrm_mobile {
  display: none;
}

/* 카드형 리스트 */
.card-list-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 4rem 0 2.4rem;
}
.card-list-top .sch-info {
  font-size: var(--font-size-large);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-list-top .sch-info strong {
  margin-left: 0.8rem;
}
.card-list-top .sch-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-list-top .sch-sort .sort-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-list-top .sch-sort .sort-btn button {
  border-radius: var(--radius-small);
  padding: 0.4rem;
  -webkit-transition: var(--trs-base);
  transition: var(--trs-base);
}
.card-list-top .sch-sort .sort-btn button:hover {
  background: var(--secondary-5);
}
.card-list-top .sch-sort .sort-btn button.active {
  text-decoration: underline;
}

.card-list {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(3, 1fr);
}
.card-list .card-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  border-radius: var(--radius-large);
  border: 1px solid var(--gray-30);
  padding: 2.8rem;
  min-width: 0;
}
.card-list .card-top .badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--font-size-small);
  color: var(--primary-50);
  background: var(--secondary-5);
  border-radius: var(--radius-small);
  padding: 0 0.8rem;
  /* ~ .badge { margin-left: 2rem; position: relative;
  	&::before { display: block; font-family: "xeicon", sans-serif; font-size: 1.2rem; position: absolute; left: -2rem; content: "\e940";}
  } */
}
.card-list .card-top .badge li + li {
  /* &:not(:first-child, :last-child){ display: none;} */
}
.card-list .card-top .badge li + li::before {
  display: inline-block;
  font-family: "xeicon", sans-serif;
  font-size: 1.2rem;
  position: relative;
  content: "\e940";
}
.card-list .card-top .badge li + li:has(+ li) span {
  display: none;
}
.card-list .card-top .badge li + li:has(+ li)::after {
  content: "···";
}
.card-list .card-body {
  /* .c-tit::after { content: ''; display: block; width: 2.4rem; height: 2.4rem; background: url(../img/common/ico_angle.svg) no-repeat 50%/contain; transform: rotate(-90deg);} */
}
.card-list .card-body .c-tit {
  font-size: var(--font-size-large);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}
.card-list .card-body .c-tit span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-list .card-body .ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.2rem 0.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  background: var(--secondary-60);
  color: var(--gray-0);
  font-weight: normal;
}
.card-list .card-body .c-desc {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--gray-70);
}
.card-list .card-body a:hover .c-tit {
  text-decoration: underline;
}
.card-list .card-btm {
  border-top: 1px solid var(--gray-20);
  padding-top: 1.6rem;
}
.card-list .card-btm .tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--gray-0);
  height: 3.2rem;
  padding: 0 1rem;
  font-size: var(--font-size-small);
  border-radius: 10rem;
  border: 1px solid var(--gray-20);
}
.card-list .card-btm .btn_basic {
  width: 100%;
}
.card-list .card-btm .btn_link::after {
  font-size: 2rem;
}
.card-list .card-btn {
  position: absolute;
  top: 3.2rem;
  right: 3.2rem;
}
.card-list .card-btn button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  padding: 0.2rem;
  -webkit-transition: var(--trs-base);
  transition: var(--trs-base);
  border-radius: var(--radius-small);
}
.card-list .card-btn button:hover {
  background: var(--secondary-5);
}
.card-list .card-btn .ico-like {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.policy_title {
  display: none;
}

.policy_cont {
  border-bottom: 1px solid var(--gray-10);
  padding-bottom: 4rem;
}

/* 아코디언 */
.accordion {
  border-top: 1px solid var(--gray-50);
}

.accordion details {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-20);
}

.accordion details .category {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-50);
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  min-width: 3.2rem;
  background-color: var(--gray-0);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--gray-20);
}

.accordion details[open] {
  padding-bottom: 2.4rem;
}

.accordion details[open] .title {
  color: var(--secondary-80);
}

.accordion details[open] .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion .aco-title {
  display: block;
  padding: 2rem 3.6rem;
  cursor: pointer;
  position: relative;
}

.accordion .aco-title:hover {
  text-decoration: none;
  background: var(--secondary-5);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.accordion .aco-title .notice {
  font-size: 1.5rem;
  background: var(--gray-5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6rem;
  min-width: 6rem;
  height: 5.7rem;
  margin: -1rem 2rem -1rem -2rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-70);
}

.accordion .aco-title .notice::before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: var(--icon);
  content: "\f2a2";
  font-size: 1.7rem;
}

.accordion .aco-title .title {
  font-size: 2.4rem;
  font-weight: bold;
}

.accordion .aco-title .arrow {
  position: absolute;
  right: 1.2rem;
  top: 2rem;
  font-size: 2.2rem;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.accordion .aco-cont {
  padding: 4rem;
  border-top: 1px solid var(--gray-20); /* background: var(--gray-5); */
}

.accordion .aco-cont .category {
  background: var(--primary-50);
  border-color: transparent;
  color: var(--gray-0);
}

.accordion .aco-cont .cont {
  width: 100%;
}

.accordion .aco-cont .cont p {
  margin-bottom: 1rem;
}

@media (max-width: 1024.98px) {
  .accordion .aco-title {
    padding-left: 2rem;
  }
  .accordion .aco-cont {
    padding: 2rem;
  }
}
/*-------------------------------------------------
서브 반응형
-------------------------------------------------*/
@media (max-width: 1024px) {
  #snb {
    display: none;
  }
  #contents {
    float: none;
    width: 100%;
    margin-bottom: 2rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .location .path {
    width: 100%;
  }
  .location .depth4,
  .location .depth5 {
    display: none;
  }
  .card_lst > ul > li {
    width: 33.3333%;
  }
}
@media (max-width: 768px) {
  #contents_body:has(.in-page-navigation-area) {
    padding-right: 0;
  }
  .in-page-navigation-area {
    position: static;
    -webkit-transform: none;
            transform: none;
    height: auto;
    margin-bottom: 4rem;
  }
  .in-page-navigation-area .in-page-navigation-header,
  .in-page-navigation-area .in-page-navigation-list {
    width: 100%;
  }
  .location .path li:not(.icon):not(:last-child) {
    display: none;
  }
  .location .path li.icon:after {
    content: "···";
  }
  .depth4_tab ul,
  .tab_dpth1 ul {
    display: block;
    margin-bottom: 2.5rem;
  }
  .depth4_tab ul > li,
  .tab_dpth1 ul > li {
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
    opacity: 0;
    display: block;
    margin-bottom: -1px;
  }
  .depth4_tab ul > li a, .depth4_tab ul > li button,
  .tab_dpth1 ul > li a,
  .tab_dpth1 ul > li button {
    position: relative;
    text-align: left;
  }
  .tab_dpth1 ul > li button br {
    display: none;
  }
  .tab_dpth1 ul > li button strong {
    margin-left: 1rem;
  }
  .depth4_tab ul > li.active,
  .tab_dpth1 ul > li.active {
    visibility: visible;
    overflow: visible;
    width: auto;
    height: auto;
    opacity: 1;
  }
  .depth4_tab ul > li.active a, .depth4_tab ul > li.active button,
  .tab_dpth1 ul > li.active a,
  .tab_dpth1 ul > li.active button {
    padding-right: 4rem;
  }
  .depth4_tab ul > li.active a::after, .depth4_tab ul > li.active button::after,
  .tab_dpth1 ul > li.active a::after,
  .tab_dpth1 ul > li.active button::after {
    position: absolute;
    top: auto;
    left: auto;
    font-family: "xeicon", sans-serif;
    right: 1.5rem;
    content: "\e943";
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .depth4_tab.active ul > li,
  .tab_dpth1.active ul > li {
    visibility: visible;
    overflow: visible;
    width: auto;
    height: auto;
    opacity: 1;
  }
  .depth4_tab.active ul > li.active a::after,
  .tab_dpth1.active ul > li.active button::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .tab_dpth1.active ul li:first-of-type a, .tab_dpth1.active ul li:first-of-type button,
  .depth4_tab.active > ul > li:first-of-type a,
  .depth4_tab.active > ul > li:first-of-type button {
    border-radius: 0.6rem 0.6rem 0 0;
  }
  .tab_dpth1.active ul li:last-of-type a, .tab_dpth1.active ul li:last-of-type button,
  .depth4_tab.active > ul > li:last-of-type a,
  .depth4_tab.active > ul > li:last-of-type button {
    border-radius: 0 0 0.6rem 0.6rem;
  }
  .tab_dpth1 ul li.active a, .tab_dpth1 ul li.active button,
  .depth4_tab > ul > li.active a,
  .depth4_tab > ul > li.active button {
    border-radius: 0.6rem;
  }
  #depth5_menu_div, .tab_dpth2 {
    overflow-x: auto;
  }
  #depth5_menu_ul > li, .tab_dpth2 ul > li {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  #depth5_menu_ul > li > a, .tab_dpth2 ul > li > button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #depth5_menu_ul {
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
  }
  .contents_util .util .print {
    display: none;
  }
  #contents_title {
    padding-top: 0;
  }
  .cont_title1 + .tb_scroll {
    margin-top: -2rem;
  }
  /* 박스 */
  .indent_box .cont_olist1 {
    padding-left: 2.4rem;
  }
  .gray_box, .img_box, .notice_box, .line_box, .line_box2, .desc_box, .chart_box {
    padding: 2.4rem;
  }
  /* 이미지 확대 */
  .img_box {
    position: relative;
  }
  /*.img_box img{width:100%;}*/
  .img_box .img_zoom {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    text-indent: -99999px;
    background: url(../img/common/btn_zoom.png) no-repeat;
  }
  .img_cont img {
    width: 100%;
  }
  /* 테이블 스크롤 */
  .tb_scroll {
    position: relative;
    width: 1px;
    min-width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-top: 4rem;
    background: url(../img/common/btn_hand4.gif) no-repeat right top;
    margin-top: 1rem;
  }
  .tb_scroll > table {
    width: 768px;
    margin: 0;
  }
  .tb_unit_wrap {
    padding-top: 0;
    margin-top: 0;
  }
  .tb_unit_wrap .tb_scroll {
    background-position: left 10px;
  }
  .tb_unit_wrap .tb_unit {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 2;
  }
  .tb_unit_wrap .tb_unit2 {
    position: relative;
    top: 0;
    right: 0;
    z-index: 2;
    margin-top: 10px;
    text-align: right;
  }
  /* iframe */
  .ifrm_scroll {
    position: relative;
    width: 1px;
    min-width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-top: 50px;
    background: url(../img/common/btn_hand4.gif) no-repeat right 10px;
  }
  .ifrm_normal_1 {
    display: none;
  }
  .ifrm_mobile {
    width: 100%;
    display: block;
    margin: 40px 0;
    background: url(../img/common/iframe_icon_bg.gif) no-repeat center top;
    background-size: 200px 200px;
    text-align: center;
  }
  .ifrm_mobile .ifrm_mobile_guide {
    padding-top: 230px;
    font-size: 15px;
    color: #5f6e8d;
    font-weight: bold;
  }
  .ifrm_mobile .direct_btn {
    display: inline-block;
    padding: 15px 60px;
    margin-top: 20px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    background-color: #5f6e8d;
    text-align: center;
    border-radius: 3px;
  }
  .card_lst > ul {
    margin-left: -10px;
  }
  .card_lst > ul > li {
    width: 50%;
  }
  .card_lst > ul > li > div {
    padding: 0 0 15px 10px;
  }
  /* 정책 */
  .card-list-top .sch-sort .sort-btn {
    gap: 0;
  }
  .card-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .card-list .card-item {
    padding: 2.4rem;
  }
  /* 버튼 */
  .board_btns .btn, .btn.type1, .btn_tertiary, .btn_line, .btn_inline, .btn_inline_gray, .btn.type2, .btn_primary, .btn_color, .btn_black, .btn.type3, .btn_secondary, .btn_inline_blue {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .btn_inline_gray {
    margin: 0.5rem 0;
  }
  /* 알림 > 요양기관 현지조사 === 정책 > 건강보험 > 보험급여 > 임신출산진료비지원사업 */
  .working_process .item_tit {
    display: block;
    width: auto;
  }
  .working_process .item_lst_g {
    display: block;
    width: auto;
    padding-left: 0;
    margin-top: 1rem;
  }
  /* 알림 > 팝업존 === 정책 > 업무계획 */
  .popup_list {
    margin: 0 -0.5rem !important;
  }
  .popup_list .item {
    margin: 0 0.5rem !important;
  }
  .popup_list.workplan > li {
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    -ms-flex: 0 0 50%;
  }
  .satisfy_group .list {
    display: block;
  }
  .satisfy_group .list li {
    margin-left: 0;
  }
}
@media (max-width: 425px) {
  .satisfy_group {
    padding: 1rem 1.5rem;
  }
  .foot_author {
    display: block;
  }
  .foot_author::before {
    display: none;
  }
  .foot_author > ul {
    margin-bottom: 1rem;
  }
  .foot_author > ul > li {
    display: block;
    padding-right: 0;
  }
  .btn_group .btn_basic {
    margin: 0.5rem 0;
  }
  /* 정보공개제도안내, 민원이용안내 */
  .minwon_info {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .minwon_info .minwon_box {
    padding: 12rem 0 2.5rem;
  }
  .minwon_info .minwon_box::before {
    top: 2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* 정보공개 > 정보공개제도안내 === 민원 > 민원이용안내 */
.minwon_info {
  background: var(--secondary-5);
  border-radius: var(--radius-large);
  padding: 4rem;
}

.minwon_info .minwon_box {
  padding: 2.5rem 0 2.5rem 11rem;
  position: relative;
}

.minwon_info > li ~ li {
  border-top: 1px dashed var(--gray-20);
}

.minwon_info .minwon_box::before {
  content: "";
  display: block;
  width: 9.1rem;
  height: 9.1rem;
  background: 50% 50%/contain no-repeat;
  position: absolute;
  left: 0;
}

.minwon_info .minwon_box .minwon_title {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: bold;
}

.minwon_info .minwon_box .minwon_text02 {
  margin-top: 1.5rem;
}

.minwon_info .minwon_box .minwon_text02 span {
  font-weight: bold;
  position: relative;
  padding-right: 1.5rem;
  margin-right: 1rem;
}

.minwon_info .minwon_box .minwon_text02 span::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.2rem;
  background: var(--gray-30);
  position: absolute;
  right: 0;
  top: 0.5rem;
}

/* 알림 > 요양기관 현지조사 === 정책 > 건강보험 > 보험급여 > 임신출산진료비지원사업 */
.working_process {
  margin: 2rem 0;
}

.working_process .item {
  display: table;
  width: 100%;
}

.working_process .item ~ .item {
  margin-top: 1rem;
}

.working_process .item_tit {
  display: table-cell;
  border-radius: 0.4rem;
  color: #fff;
  text-align: center;
  width: 13.2rem;
  padding: 2rem;
  position: relative;
  vertical-align: middle;
}

.working_process .item_tit em {
  display: block;
  font-size: 2rem;
  opacity: 0.7;
  font-weight: bold;
}

.working_process .item_tit strong {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}

.working_process .item_lst_g {
  display: table-cell;
  width: calc(100% - 20rem);
  padding-left: 1rem;
}

.working_process .item_lst {
  text-align: left;
}

.working_process .item_lst > li {
  display: table;
  width: 100%;
}

.working_process .item_lst > li ~ li {
  margin-top: 1rem;
}

.working_process .item_lst > li .cont_list1 {
  display: table-cell;
  padding: 0 0 2rem 2rem;
  border-bottom: 1px dashed #ccc;
}

.working_process .item_lst ~ .item_lst {
  border-top: 1px dashed #ccc;
}

.working_process .item:nth-child(1) .item_tit {
  background: #0b6374;
}

.working_process .item:nth-child(2) .item_tit {
  background: #505a76;
}

.working_process .item:nth-child(3) .item_tit {
  background: #0c4580;
}

.working_process .item:nth-child(1) .item_lst .item_stit {
  background: #f7fcfd;
  border: 1px solid #006374;
}

.working_process .item:nth-child(2) .item_lst .item_stit {
  background: #f2f5fc;
  border: 1px solid #505a76;
}

.working_process .item:nth-child(3) .item_lst .item_stit {
  background: #f2f8ff;
  border: 1px solid #0c4580;
}

.working_process .item:nth-child(2) .item_lst li ~ li .item_stit::before {
  content: "";
  display: block;
  background: url("../img/notice/arrow_down.png") 0 0/contain no-repeat;
  width: 2.6rem;
  height: 3.5rem;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.working_process .item_lst .item_stit {
  display: table-cell;
  width: 15.7rem;
  margin-right: 3rem;
  border-radius: 0.4rem;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 1.6rem;
  vertical-align: middle;
  position: relative;
}

.working_process .item_lst .cont_list1 {
  margin-left: 3rem;
}

/* 알림 > 팝업존 === 정책 > 업무계획 */
.popup_list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 -1rem;
}

.popup_list > li {
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  min-width: 1px;
  padding: 1rem 0;
}

/*.popup_list.workplan{margin:0 -3.5rem;}*/
.popup_list.workplan > li {
  -webkit-box-flex: 0;
          flex: 0 0 33.33%;
  -ms-flex: 0 0 33.33%;
  padding: 2rem 0;
}

/*.popup_list.workplan > li .item{margin:0 3.5rem;}*/
.popup_list .item {
  border: 1px solid #ddd;
  height: 100%;
  margin: 0 1rem;
  overflow: hidden;
  border-radius: 0.8rem;
}

.popup_list .item .thumbnail {
  display: block;
}

.popup_list .item .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup_list .txt_title {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #ddd;
}

.popup_list .txt_title strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
}

.popup_list .date {
  display: block;
  font-size: 1.3rem;
}

/*부서안내 직원찾기 20240119*/
.step_call_warp {
  border: #d6d6eb solid 1px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.step_call {
  padding: 2rem;
}

.step_call_warp .con_title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* .step_call_warp .con_title {font-size: 2.2rem;margin-bottom: 1rem; font-weight: 700; color: #111111; position: relative; padding-left: 3rem; line-height: 1.3; position:relative }
.step_call_warp .con_title::before,
.step_call_warp .con_title::after { content: ""; display: block; width: 1rem; height: 1rem; position: absolute; top:2.5rem;}
.step_call_warp .con_title:before { background: #0B6374; left: 0; transform:translateY(-1rem);}
.step_call_warp .con_title:after{ background: #505A76; left: 1rem; } */
.step_call_warp .con_title .span_title {
  font-size: 3.3rem;
  font-weight: 700;
  color: #e52c61;
}

.step_call_warp ul:after {
  display: block;
  content: "";
  clear: both;
}

.step_call_warp ul li {
  width: 50%;
  float: left;
  margin: 2px 0;
  font-size: 15px;
}

.step_call_warp ul li .span_num {
  padding: 6px;
  display: inline-block;
  background-color: #e52c61;
  border-radius: 5px;
  color: #fff;
  margin-right: 0.8rem;
}

.step_call_warp ul li .span_text {
  letter-spacing: -1.5px;
}

.step_call_warp p {
  padding: 1.6rem;
  background-color: #505a76;
  border-radius: 0px 0px 5px 5px;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .step_call_warp ul li {
    width: 100%;
    font-size: 14px;
  }
  .step_call_warp ul li .span_text {
    letter-spacing: -2.5px;
  }
}
@media (max-width: 425px) {
  .step_call_warp ul li {
    width: 100%;
    font-size: 14px;
  }
  .step_call_warp ul li .span_text {
    letter-spacing: -2.5px;
  }
}
/*필수의료 갤러리*/
.med_imge_list_wrap {
  border-top: 2px solid #555;
  border-bottom: 1px solid #ddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.med_imge_list {
  overflow: hidden;
  width: calc(100% + 4rem);
  margin-bottom: -1px;
}

.med_imge_list li {
  float: left;
  width: 33.333%;
  padding: 3rem 2rem 3rem 0;
  border-bottom: 1px solid #ddd;
  height: 350px;
}

.med_imge_list li:nth-child(3n+1) {
  clear: both;
}

.med_imge_list.type1 li {
  width: 25%;
}

.med_imge_list.type1 li:nth-child(3n+1) {
  clear: none;
}

.med_imge_list.type1 li:nth-child(4n+1) {
  clear: both;
}

.med_imge_list a {
  display: block;
}

.med_imge_list a:hover .thumb::before,
.med_imge_list a:hover .thumb::after,
.med_imge_list a:focus .thumb::before,
.med_imge_list a:focus .thumb::after {
  opacity: 1;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all 0.4s 0.1s;
  transition: all 0.4s 0.1s;
}

.med_imge_list a:hover .thumb img,
.med_imge_list a:focus .thumb img {
  opacity: 0.6;
}

.med_imge_list .thumb {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 0;
  height: 0;
  margin-bottom: 2rem;
  padding-top: 62%;
  background-color: #000;
  color: #fff;
}

.med_imge_list .thumb img {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  width: 100%;
  min-height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.med_imge_list .thumb::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: -1rem;
  font-family: "xeicon";
  font-size: 3.2rem;
  content: "\e9c5";
  text-align: center;
  line-height: 0;
  opacity: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.med_imge_list .thumb::after {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: 1rem;
  font-weight: 600;
  content: "자세히 보기";
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.med_imge_list .title {
  text-align: left;
  max-width: 100%;
  font-size: 1.6rem;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.med_imge_list .title .xi-new {
  margin-top: 0.3rem;
}

.med_imge_list .label {
  font-weight: 400;
  color: #000;
}

.med_imge_list .desc {
  height: 57px;
}

.med_imge_list .desc > span + span::before {
  display: inline-block;
  position: relative;
  top: -1px;
  width: 1px;
  height: 1.4rem;
  margin: 0 1rem 0 0.75rem;
  background-color: #ddd;
  content: "";
  vertical-align: middle;
}

.med_imge_list .desc > span {
  display: inline-block;
  vertical-align: middle;
}

.med_imge_list .desc .name {
  display: none;
}

.med_imge_list .desc .name + span::before {
  display: none;
}

.med_imge_btn {
  padding: 5px;
  display: block;
  border: #CCC solid 1px;
  border-radius: 3px;
  text-align: center;
  font-size: 1.5rem;
}

.med_imge_btn:hover {
  background-color: #006374;
  border-color: transparent;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .med_imge_list li {
    width: 33.333% !important;
  }
  .med_imge_list li:nth-child(4n+1) {
    clear: none !important;
  }
  .med_imge_list li:nth-child(3n+1) {
    clear: both !important;
  }
}
@media (max-width: 580px) {
  .med_imge_list {
    width: calc(100% + 2rem);
  }
  .med_imge_list li {
    width: 50% !important;
    padding: 2rem 2rem 2rem 0;
    height: auto;
  }
  .med_imge_list li:nth-child(3n+1) {
    clear: none !important;
  }
  .med_imge_list li:nth-child(2n+1) {
    clear: both !important;
  }
  .med_imge_list .desc {
    height: 70px;
  }
}
@media (max-width: 400px) {
  .med_imge_list .desc span {
    display: block;
  }
  .med_imge_list .desc span::before {
    display: none !important;
  }
}
/*펙트체크 QNA*/
.che_imge_list_wrap {
  border-top: 2px solid #555;
  border-bottom: 1px solid #ddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.che_imge_list {
  overflow: hidden;
  width: calc(100% + 4rem);
  margin-bottom: -1px;
}

.che_imge_list li {
  float: left;
  width: 33.333%;
  padding: 3rem 2rem 3rem 0;
  border-bottom: 1px solid #ddd;
  height: 300px;
}

.che_imge_list li:nth-child(3n+1) {
  clear: both;
}

.che_imge_list.type1 li {
  width: 25%;
}

.che_imge_list.type1 li:nth-child(3n+1) {
  clear: none;
}

.che_imge_list.type1 li:nth-child(4n+1) {
  clear: both;
}

.che_imge_list a {
  display: block;
}

.che_imge_list a:hover .thumb::before,
.che_imge_list a:hover .thumb::after,
.che_imge_list a:focus .thumb::before,
.che_imge_list a:focus .thumb::after {
  opacity: 1;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all 0.4s 0.1s;
  transition: all 0.4s 0.1s;
}

.che_imge_list a:hover .thumb img,
.che_imge_list a:focus .thumb img {
  opacity: 0.6;
}

.che_imge_list .thumb {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 0;
  height: 0;
  margin-bottom: 2rem;
  padding-top: 62%;
  background-color: #000;
  color: #fff;
}

.che_imge_list .thumb img {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  width: 100%;
  min-height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.che_imge_list .thumb::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: -1rem;
  font-family: "xeicon";
  font-size: 3.2rem;
  content: "\e9c5";
  text-align: center;
  line-height: 0;
  opacity: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.che_imge_list .thumb::after {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: 1rem;
  font-weight: 600;
  content: "자세히 보기";
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.che_imge_list .title {
  display: inline-block;
  overflow: hidden;
  max-width: 100%;
  font-size: 1.6rem;
  color: #222;
  text-overflow: ellipsis;
}

.che_imge_list .title .xi-new {
  margin-top: 0.3rem;
}

.che_imge_list .label {
  font-weight: 400;
  color: #000;
}

.che_imge_list .desc > span + span::before {
  display: inline-block;
  position: relative;
  top: -1px;
  width: 1px;
  height: 1.4rem;
  margin: 0 1rem 0 0.75rem;
  background-color: #ddd;
  content: "";
  vertical-align: middle;
}

.che_imge_list .desc > span {
  display: inline-block;
  vertical-align: middle;
}

.che_imge_list .desc .name {
  display: none;
}

.che_imge_list .desc .name + span::before {
  display: none;
}

.che_imge_btn {
  padding: 8px;
  display: block;
  border: #CCC solid 1px;
  border-radius: 3px;
  text-align: center;
}

.che_imge_btn:hover {
  background-color: #006374;
  border-color: transparent;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .che_imge_list li {
    width: 33.333% !important;
  }
  .che_imge_list li:nth-child(4n+1) {
    clear: none !important;
  }
  .che_imge_list li:nth-child(3n+1) {
    clear: both !important;
  }
}
@media (max-width: 580px) {
  .che_imge_list {
    width: calc(100% + 2rem);
  }
  .che_imge_list li {
    width: 50% !important;
    padding: 2rem 2rem 2rem 0;
  }
  .che_imge_list li:nth-child(3n+1) {
    clear: none !important;
  }
  .che_imge_list li:nth-child(2n+1) {
    clear: both !important;
  }
}
@media (max-width: 400px) {
  .che_imge_list .desc span {
    display: block;
  }
  .che_imge_list .desc span::before {
    display: none !important;
  }
}
/* med_tab_dpth2 콘텐츠내 탭메뉴 */
.med_tab_dpth2 {
  margin-top: 15px;
}

.med_tab_dpth2 ul {
  margin: 0 -0.5rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.med_tab_dpth2 ul > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  -ms-flex-preferred-size: calc(25% - 1rem);
  padding: 0.3rem 0.5rem;
}

.med_tab_dpth2 ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 2px solid #c8c8c8;
  border-radius: 2px;
  text-align: center;
  padding: 0.7rem 0.5rem;
  min-height: 4.3rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.med_tab_dpth2 ul > li > a:hover {
  border-color: #7ea1d2;
  text-decoration: none;
}

.med_tab_dpth2 ul > li.active > a {
  font-weight: bold;
  color: #222;
  border-color: #486fa7;
  border-bottom-width: 3px;
  text-decoration: underline;
}

@media (max-width: 580px) {
  .med_tab_dpth2 ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    -ms-flex-preferred-size: calc(25% - 1rem);
    padding: 0.3rem 0.5rem;
  }
}
.sin_button02 {
  display: inline-block;
  width: 50%;
  height: 8rem;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 2px;
  vertical-align: middle;
  text-align: center;
  background-color: #484e62;
  color: #fff;
  line-height: 8rem;
  background-image: url(../img/common/icon_link_white.png);
  background-repeat: no-repeat;
  background-position: 95% center;
}