@charset "UTF-8";
@import url(font.css);
@import url(root.css);/*루트*/
@import url(reset.css);/* 초기화 */
@import url(base.css);/*기초 css 정의 */
@import url(board.css);/*게시판 css */
@import url(smsMobWeb.css);/*sms 모바일웹 css */
@import url(sub.css);/*서브 css */


/*피씨 모바일 display none */
.for_pc {
  display: block !important;
}

.for_mob {
  display: none !important;
}


/* 모달 스크롤 기본정의 */
.modal_pop *::-webkit-scrollbar{ width: 10px;}
.modal_pop *::-webkit-scrollbar-thumb{ background: rgba(8, 93, 231, 0.5); border-radius: 10px;}
.modal_pop *::-webkit-scrollbar-track{ background: rgba(29, 72, 157, 0.1);}


/** 로딩 */
.loading-bg{background-color: rgba(0, 0, 0, 0.5); max-width:100%; width: 100%; height:100%; position: fixed; top:0; left:0; z-index: 99999999999; display: flex; justify-content: center; align-items: center; cursor: wait; visibility: hidden; opacity: 0; transition: 0.2s all ease;}

.loading-bg.on{visibility: visible; opacity: 1;}

/*메인 탑배너*/
.content_mt85 {
  margin-top: 200px !important;
}

.top_banner {
  width: 100%;
  background-color: #cfecfa;
  background-image: url('../images/top_bgc.png');
  background-repeat: no-repeat;
  font-family: var(--sub-font-family);
  padding: 25px 0 45px 0;
}

.top_banner .con {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.top_banner .con .left::before {
  background-image: url('../images/covid_warning.png');
  width: 93px;
  height: 94px;
  content: "";
  display: inline-block;
}

.top_banner .con .left {
  width: 600px;
  display: flex;
}

.top_banner .con .right {
  width: 800px;
}

.top_banner .con .left .title {
  font-size: 20px;
  display: flex;
  align-items: center;
}

.top_banner .con .left .title .top-title {
  margin-right: 34px;
}

.top_banner .con .left .title>div {
  background-color: #2e1d98;
  color: #fff;
  padding: 5px 10px;
  font-size: 19px;
  border-radius: 10px;
  line-height: 30px;
  margin-right: 10px
}

.top_banner .con .left .title>span {
  font-size: 34px;
  color: #2e1d98;
  font-weight: bold;
}

.top_banner .con .left .top-sub-title {
  font-size: 24px;
  color: #2e1d98
}

.top_banner .con .left .top-sub-title span {
  font-size: 40px;
  color: #d64153;
  font-weight: bold;
}

.top_banner .con .left .top-sub-title small {
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.dashBoard {
  display: flex;
  background-color: #fff;
  border-radius: 20px;
}

.dashBoard>div {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 25%;
}

.dashBoard>div dl {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 10px 20px;
  gap: 2px;
}

.dashBoard>div dl dt {
  display: inline-block;
  padding: 5px 20px;
  color: #201082;
  font-weight: bold;
  background-color: #e4eff5;
  border-radius: 20px;
  text-align: center;
}

.dashBoard>div dl dd {
  color: #333;
  font-weight: bold;
  font-size: 18px;
}

.dashBoard>div dl>span {
  position: relative;
  font-size: 15px;
  font-weight: bold;
}

.dashBoard>div dl>span.up {
  color: var(--red);
}

.dashBoard>div dl>span.up::after {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 8px solid var(--red);
  content: "";
  margin-left: 10px;
  position: absolute;
  top: 7px
}

.dashBoard>div dl>span.down {
  color: var(--blue);
;
}

.dashBoard>div dl>span.down::after {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid var(--blue);
  content: "";
  margin-left: 10px;
  position: absolute;
  top: 7px
}


.dashBoard>div::after {
  background: url('../images/border_right_dot.png');
  width: 1px;
  height: 64px;
  display: inline-block;
  content: "";
}

.dashBoard>div:last-child::after {
  background: none;
}

.banner-close-area {
  position: absolute;
  right: 0;
  bottom: -36px;
  display: flex;
}

.banner-close-area input[type=checkbox]+label {
  color: var(--blue);
  font-weight: bold;
  padding-right: 15px
}

.banner-close-area>.topbanner_close {
  background-color: #333;
  border-radius: 100%;
  color: #fff;
  width: 24px;
  height: 24px;
  cursor: pointer;
}


/*전체메뉴*/
.site_map {
  background-image: url(../images/sitemap_bg.png);
  background-size: cover;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s ease-in;
  pointer-events: none;
  overflow-y: auto;
  line-height: 1.5;
}

.menu_header {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.menu_header .logo {}

.menu_header .search_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px
}

.mnue_search_area {
  width: 360px;
}

.mnue_search_area .search-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 4px 5px 0px rgba(0, 0, 0, 0.2);
}

.mnue_search_area .search-container a {
  display: inline-block;
  outline: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  font-size: 1px;
  text-indent: -99999px;
  background: #085de7 url(../images/searchform-search.png) center no-repeat;
  background-size: 20px;
}
.mnue_search_area .search-container a:focus{outline:2px solid #000;}
.mnue_search_area .search-container .search-area {
  width: calc(100% - 48px);
}

.search-container .search-area + button{
  display: inline-block;
  border: none;
  cursor: pointer;
  width: 80px;
  height: 80px;
  font-size: 1px;
  text-indent: -99999px;
  background: #085de7 url(./../images/searchform-search.png) center no-repeat;
  outline-offset: -2px; height:100%;
}
.mnue_search_area .search-container .search-area input {
  padding: 0 20px;
  font-size: 16px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.mnue_search_area .search-container .search-area label {
  left: 20px;
  font-size: 16px;
}
.mnue_search_area form[name='searchForm1'].search-container .search-area + button, .mnue_search_area form[name='searchForm2'].search-container .search-area + button{
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1px;
  text-indent: -99999px;
  background: #085de7  url(./../images/searchform-search.png) center no-repeat;
  outline-offset: -2px;
  width: 48px;
  height: 48px;
  padding: 20px;
  background-size: 24px 24px;
}
.popular-search .up::after {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 15px solid #e9165d;
  content: "";
  margin-left: 10px;
}

.menu_effect {
  transform: translateY(20px);
  transition: all 0.2s ease-out;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto
}

.allmenu_close {
  font-size: 20px;
}

.site_map .menu_contents {
  display: flex;
  gap: 20px;
  height: auto;
  line-height: 1.5;
}

.site_map .menu_contents .menu_box {
  background-color: #fff;
  width: 25%;
  border-radius: 10px;
  height: auto;
  box-shadow: 2px 5px 10px 0px rgba(219, 221, 225, 0.9);
}

.site_map .menu_contents .menu_box .title {
  padding: 15px;
  border-bottom: 1px solid #dadada;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
}

.menu_box .dep1_list {
  display: flex;
  flex-direction: column;
  padding: 10px;

}

.menu_box .dep1_list>li {
  padding: 10px
}

.menu_box .dep1_list>li a {
  width: 100%;
  display: inline-block;
  font-weight: bold;
}

.menu_box .dep1_list>li:hover>a {
  color: var(--menuFontHover-color)
}


.menu_box .dep1_list>li>.dep2_list>li a {
  font-size: 0.9em;
  font-weight: normal;
}


.menu_box .dep1_list>li>.dep2_list>li:hover a {
  color: var(--menuFontHover-color)
}

.menu_box .dep1_list>li>.dep2_list>li a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #999;
  border-radius: 100%;
  position: relative;
  top: -2px;
  margin-right: 4px
}

.menu_box .dep1_list>li>.dep2_list>li:hover a::before {
  color: var(--menuFontHover-color)
}

.menu_box .dep2_list  * {
  line-height: 1.5!important;
}


body.menuOpen .menu_effect {
  transform: translate(0px);
}

/*전체메뉴 온오프*/
body.menuOpen .site_map {
  opacity: 1;
  pointer-events: auto;
  z-index: 999999999999;
}

body.menuOpen #header,
body.menuOpen #footer {
  opacity: 1;
  pointer-events: auto;
}

body.menuOpen .site_map {
  pointer-events: auto;
  transition: all 0.3s ease-out;
}

.guide-bold{font-weight: bold; color:#333399; font-size: 18px;}

/*모바일 all 메뉴*/
.mob_allMenu {
  --mMenu-margin: 1rem 1.5rem;
  /*모바일 메뉴*/
  --mMenu-padding: 10px 20px;
  /*모바일 메뉴 공통*/
}

.mob_allMenu .menu_header {
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(45deg, #3a4c84, #55699c);
  padding: 20px;
  z-index: 20;
}

.mob_allMenu .menu_header .logo_header {
  display: flex;
  justify-content: space-between;
  height: 54px;
}

.mob_allMenu .menu_header .logo_header .allmenu_close {
  color: #fff
}

.mob_allMenu .menu_header .logo_header .search_box {
  padding-bottom: 40px;
  z-index: 11;
}

.mob_allMenu .contents {
  display: flex;
  background-color: #316edf;
  height: 100vh;
  width: 100%;
}

.mob_allMenu .contents .mDepth1 {
  width: 100%;
}

.mob_allMenu .contents .mDepth1>li {
  display: block;
}

.mob_allMenu .contents .mDepth1>li>.mDepth2 {
  display: none;
}

.mob_allMenu .contents .mDepth1>li>.mDepth2 .menu_list {}

.mob_allMenu .contents .mDepth1>li>.mDepth2 .menu_list li {}

.mob_allMenu .contents .mDepth1>li>.mDepth2 .menu_list>li>a {

  display: block;
  position: relative;
  height: auto;
  border-bottom: 1px solid #85baec;
  margin: var(--mMenu-margin);
  margin-bottom: 0;
  padding: 0.4rem;
  color: #333333;
}

.dropDown>a::after {
  position: absolute;
  display: inline-block;
  width: 13px;
  height: 7px;
  right: 18px;
  content: "";
  background: url(../images/mMenu_arrow.png)no-repeat;
  top: calc(50% - 7px);
  transition: all 0.3s;
}

.dropDown.open>a::after {
  transform: translateY(30%) rotate(180deg);
  right: 18px;
}

.dropDown.open>a {
  color: #2156db !important;
}

.mob_allMenu .mDepth3 a.action {
  color: #2156db !important;
  font-weight: bold;
}

.mob_allMenu .mDepth3 li>a {
  width: 100%;
  height: 100%;
}

.mob_allMenu .contents .mDepth1>li>a {
  display: block;
  color: #fff;
  position: relative;
  z-index: 10;
  font-size: 1rem;
  line-height: 2.5rem;
  transition: all 0.5s;
  padding: var(--mMenu-padding);
  width: 40%;
}

.mob_allMenu .contents .mDepth1>li.on {}

.mob_allMenu .contents .mDepth1>li.on>a {
  z-index: 9999;
}

.mob_allMenu .contents .mDepth1>li>a::after {
  content: url('../images/mMenu_bigArrow.png');
  width: 102%;
  height: 2.7rem;
  background-color: #1e2b78;
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 5px;
  z-index: -1;
  border-radius: 5px;
  text-align: right;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  padding-right: 1rem;
  opacity: 0;
  transition: opacity 0.2s ease-in-out
}

.mob_allMenu .contents .mDepth1>li.on>a::after {
  content: url('../images/mMenu_bigArrow.png');
  width: 102%;
  height: 2.7rem;
  background-color: #1e2b78;
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 5px;
  z-index: -1;
  border-radius: 5px;
  text-align: right;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  padding-right: 1rem;
  opacity: 1;
}

.mob_allMenu .contents .mDepth1>li.on>.mDepth2 {
  display: block;
}

.mob_allMenu .contents .mDepth1>li>.mDepth2 .menu_list {
  transition: opacity 0.2s ease-in;
  opacity: 0;
}

.mob_allMenu .contents .mDepth1>li.on>.mDepth2 .menu_list {
  opacity: 1;
}

.mob_allMenu .contents .mDepth2 {
  display: block;
  background-color: #fff;
  background-clip: content-box;
  overflow: auto;
  position: absolute;
  left: 40%;
  top: 143px;
  z-index: 12;
  width: 60%;
  height: 100vh;
  box-sizing: border-box;
  font-size: 0.9rem;
}

.mob_allMenu .mDepth3 {
  display: block;
  background-color: #e8f3ff;
  margin: var(--mMenu-margin);
  margin-top: 0;
  padding: 10px 0;
}

.mob_allMenu .mDepth3>li {}

.mob_allMenu .mDepth3>li>a {
  line-height: 1;
  padding: var(--mMenu-padding);
  font-size: 0.8rem;
}




/*gnb*/
#header {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 99998;
  border-bottom: 1px solid #eaeaeb
}

#header .wrap_head {
  max-width: 1600px;
  margin: 0 auto;
}

#header .wrap_head .box_gnb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.stiky {
  position: fixed !important;
  top: 0px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.box_gnb .logo {}

.box_gnb .gnb {}

.box_gnb .gnb .menu {
  display: flex;
  justify-content: space-around;
  width: 1000px;
  text-align: center;
}

.box_gnb .gnb .menu>li {
  flex: 1 auto;
  text-align: center
}

.box_gnb .gnb .menu>li>a {
  display: inline-block;
  padding: 25px 0;
  font-size: 20px;
  width: 100%;
  color: var(--Fmain-color);
  font-weight: 500;
  border-bottom: 5px solid transparent;
  transition: all 0.2s ease-in-out;
}

.box_gnb .gnb .menu>li:hover>a,
.box_gnb .gnb .menu>li.over>a {
  background-color: #fff;
  color: var(--main-color);
  border-bottom: 5px solid var(--main-color);
}
.box_gnb .gnb .menu>li.click > a{
  background-color: #fff;
  color: var(--main-color);
  border-bottom: 5px solid var(--main-color);
}

.box_gnb .right-area {
  display: flex;
}

.menu_sub {
  display: flex;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 84px;
  left: 0px;
  background-color: #fff;
  z-index: 99999999;
  width: 100%;
  border-top: 1px solid #eaeaeb;
  box-shadow: 5px 15px 10px rgba(0, 0, 0, 0.1);
  min-height: 200px;
}

.menu li:nth-child(1) .depth2,
.menu li:nth-child(2) .depth2,
.menu li:last-child .depth2 {
  padding-bottom: 150px;
}

.box_gnb .gnb .menu>li.on .menu_sub {
  visibility: visible;
  opacity: 1;
}

/* .box_gnb .gnb .menu > li.on .menu_sub{display: flex;} */
.menu_sub .gnb_sub_title {
  width: calc(50% - 500px);
  background: url(../images/gnb_left_bg.jpg)no-repeat;
  position: relative;
  height: auto;
  border-right: 1px solid #e7e7e7;
}

.menu_sub .gnb_sub_title .gnb-menu-title {
  font-size: 37px;
  font-weight: bold;
  color: #2f1c99;
  position: absolute;
  right: 71px;
  top: 82px;
}

.menu_sub .depth2 {
  width: 1240px;
  display: flex;
  padding: 20px;
  flex-wrap: wrap;
  margin-bottom: 100px
}

.menu_sub .depth2>li {
  display: flex;
  flex-direction: column;
  width: 25%;
  padding: 0 30px;
  margin-top: 20px
}

.menu_sub .depth2>li>.title_sub {
  padding: 10px 0;
  display: inline-block;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
  text-align: left;
  cursor: pointer;
}

.menu_sub .depth2>li:hover>.title_sub {
  border-bottom: 1px solid var(--menuFontHover-color);
  font-weight: bold;
  transition: all 0.2s ease;
}

.menu_sub .depth2>li>.title_sub a {
  width: 100%;
  height: 100%;
}

.menu_sub .depth2>li:hover>.title_sub a {
  color: var(--menuFontHover-color);
  transition: all 0.2s ease;
}

.menu_sub .depth2>li>.link_sub {
  text-align: left;
  padding: 3px 0;
  font-size: 0.9rem;
  position: relative;
  transition: all 0.2s ease;
}
.gnb-new-link{
  display: flex;
  align-items:center;

}
.gnb-new-link:after{
  content: "";
  display: inline-flex;
  margin-left: 5px;
  width: 15px;
  height: 15px;
  background: url(../images/ic/gnb-new-link.png) center no-repeat;
  background-size: contain;
}

.side-type-list02 > a.sidebar-new-link:after{
  content: "";
  display: inline-flex;
  margin-left: 5px;
  width: 15px;
  height: 15px;
  background: url(../images/ic/sidebar-new-link.png) center no-repeat;
  background-size: contain;
}

.side-type-list02 > a.sidebar-new-link.on:after{
  position:static;transform:inherit;
}
.side-type-list02 > a.sidebar-new-link:hover:after, .side-type-list02 > a.on.sidebar-new-link:after{
  content: "";
  display: inline-flex;
  margin-left: 5px;
  width: 15px;
  height: 15px;
  background: url(../images/ic/sidebar-new-link-on.png) center no-repeat;
  background-size: contain;
}
.gnb-new-link:hover:after{
  content: "";
  display: inline-flex;
  margin-left: 5px;
  width: 15px;
  height: 15px;
  background: url(../images/ic/ic_new_link.png) center no-repeat;
  background-size: contain;
}
.mDepth3 > li > a.gnb-new-link:hover:after{
  content: "";
  display: inline-flex;
  margin-left: 5px;
  width: 15px;
  height: 15px;
  background: url(../images/ic/gnb-new-link.png) center no-repeat;
  background-size: contain;
}
.link-tab-menu > a.content-new-link:after{
  content: "";
  display: inline-flex;
  margin-left: 5px;
  width: 18px;
  height: 18px;
  background: url(../images/ic/content-new-link.png) center no-repeat;
  background-size: contain;
}
.link-tab-menu > a.content-new-link:hover:after{
  content: "";
  display: inline-flex;
  margin-left: 5px;
  width: 18px;
  height: 18px;
  background: url(../images/ic/gnb-new-link.png) center no-repeat;
  background-size: contain;
}
#jb24-btn{display:inherit;}
#jb24-btn:after{

  content: "";
  display: inline-flex;
  margin-left: 5px;
  width: 15px;
  height: 15px;
  background: url(../images/ic/ico-new-page-14.png) center no-repeat;
  background-size: contain;
}
.menu_sub .depth2>li>.link_sub::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: #cccccc;
  position: relative;
  top: -3px;
  margin-right: 10px
}
.menu_sub .depth2>li>.link_sub.gnb-new-link::before{top:0;}
.menu_sub .depth2>li>.link_sub:hover {
  text-decoration: underline;
  color: var(--menuFontHover-color)
}

.menu_sub .depth2>li>.link_sub:hover::before {
  background-color: var(--menuFontHover-color);
}

.right-area>li {
  position: relative;
}

.box_gnb a.btn_search {
  width: 36px;
  height: 36px;
  text-indent: -99999px;
  font-size: 0;
  display: block;
}

.box_gnb a.btn_search::before {
  content: "";
  display: block;
  position: absolute;
  width: 36px;
  height: 36px;
  background: url(../images/ico-search.png)no-repeat;
}

.box_gnb a.btn_toggle_menu {
  width: 36px;
  height: 36px;
  text-indent: -99999px;
  font-size: 0;
  display: block;
}

.box_gnb a.btn_toggle_menu::before {
  content: "";
  display: block;
  position: absolute;
  width: 36px;
  height: 36px;
  background: url(../images/ico-menu.png)no-repeat;
}


@media(max-width:1260px) {
  .box_gnb .gnb .menu {
    width: 714px;
  }
}

@media(max-width:1024px) {
  .for_pc {
    display: none !important;
  }

  .for_mob {
    display: block !important;
  }

}


.contents {
  margin-top: 0
}


/*메인 탭 01*/
.main_tab {
  --tabTitle-width: 120px;
  /*탭 타이틀 너비*/
  position: relative;
  display: flex;
}

.main_tab .tab_title {
  font-size: 26px;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: 0;
  line-height: 42px;
  font-weight: bold;
}

.main_tab>ul {
  display: inline-flex;
  background-color: #fff;
  border-radius: 30px;
  padding: 0px 0px;
  position: absolute;
  top: 0;
  left: 200px;
  box-shadow: 10px 8px 18px 0px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.main_tab>ul>li {}

.main_tab>ul>li>a:first-child {
  display: inline-block;
  text-align: center;
  width: var(--tabTitle-width);
  line-height: 42px;
  transition: all 0.2s
}

.main_tab>ul>li.active>a:first-child {
  background-color: var(--green);
  border-radius: 30px;
  text-align: center;
  color: #fff
}

.main_tab>ul>li>ul {
  position: absolute;
  top: 90px;
  left: calc(50% - 270px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 520px;
  transition: all 0.3s ease;
}

.main_tab>ul>li>ul>li {
  width: 100%;
}

.main_tab>ul>li>ul>li.visual-sheet-area{width:-webkit-fill-available;}
.main_tab>ul>li>ul>li.visual-sheet-area > div{width:100%; display: flex; flex-wrap: wrap;}
.main_tab_bg::before {
  content: "";
  display: block;
  width: calc(100% - 220px);
  height: 13px;
  position: absolute;
  top: 19px;
  transform: translateY(-50%);
  right: 0px;
  background: url(../images/pat.png);
  background-size: contain;
}

.main_tab2>ul {
  left: 98px
}

/*sec02 탭 예외 */
.main_tab2>ul>li>ul {
  position: absolute;
  top: 90px;
  left: -100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/*sec02 탭 예외 */

.visual-sheet-area {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
  gap: 20px
}

.visual-sheet-area a {
  flex: 1;
  margin-top: 120px;
  position: relative;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 18px;
  color: #fff;
  word-break : keep-all;
}

.visual-sheet-area a::before {
  content: "";
  display: block;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 95px;
  border-radius: 100%;
  background: #ccc;
}

.visual-sheet-area a:nth-of-type(1)::before {
  background: #8dbc7e url(./../images/ico_autoapply.png) center no-repeat;
}
.visual-sheet-area a:nth-of-type(2)::before {
  background: #21a1de url(./../images/ico_medicalPro1.png) center no-repeat;
}

.visual-sheet-area a:nth-of-type(3)::before {
  background: #efa125 url(./../images/ico_medicalPro2.png) center no-repeat;
}

.visual-sheet-area a:nth-of-type(4)::before {
  background: #c62326 url(./../images/ico_medicalPro3.png) center no-repeat;
}

.visual-sheet-area.main-tab1 a:nth-of-type(1)::before {
  background: #3ca1ff url(./../images/ico_news.png) center no-repeat;
}

.visual-sheet-area.main-tab1 a:nth-of-type(2)::before {
  background: #ae8bff url(./../images/ico_legalDis.png) center no-repeat;
}

.visual-sheet-area.main-tab1 a:nth-of-type(3)::before {
  background: #2dd8f2 url(./../images/ico_vaccination.png) center no-repeat;
}

.visual-sheet-area.main-tab1 a:nth-of-type(4)::before {
  background: #ffe39c url(./../images/ico_covid19eating.png) center no-repeat;
}



.visual-sheet-area a:before {
  background-size: 50px 50px !important;
}


.m_borad_list {
  display: none;
}

.m_borad_list.on {
  display: block;
}

/*공통*/
.container1400 {
  max-width: 1600px;
  margin: 0 auto;
}
#content.container1400 { margin:50px auto;}
.p0 {
  padding: 0 !important;
}

.text-white {
  color: #fff !important;
}

.txt-ell {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.txt-ell-2>a {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: auto;
}




.tab {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  width: fit-content;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 4px 8px 13px 0px rgba(0, 0, 0, 0.3);
  z-index: 99;
  position: relative;
}

.tab li {
  font-family: var(--body-font-family);
  display: block;
  width: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.5s;
  border-radius: 20px;
  overflow: hidden;
}

.tab li.on {
  background-color: #00af5f;
  color: #fff;
}

.tab li:hover {
  cursor: pointer;
}

.sheet>li {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
}

.sheet>li.action {
  opacity: 1;
  visibility: visible;
}

.btn-area {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  width: 86px;
  gap: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
}


/*퀵메뉴*/

.quick-menu {
  width: 76px;
  height: 76px;
  border-radius: 100%;
  background: #ccc;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  font-family: var(--point-font-family);
  font-size: 16px;
  line-height: 18px;
  position: relative;
}

.quick-menu:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/sub/faq-arrow.png) center no-repeat;
  position: absolute;
  top: 47px;
}

.quick-menu.quick-pink {
  background: #ee568e;
  padding-top: 20px;
  font-size: 17px;
}

.quick-menu.quick-blue {
  background: #316edf;
  padding-top: 10px;
  margin-top: 10px;
  font-size: 17px;

}

.quick-menu.quick-blue:after {
  background: url(../images/sub/quick-blue-arrow.png) center no-repeat;
}



#faq-btn,
#top-btn,
#jb24-btn,
#auto-btn,
#cns-btn{
  display: flex;
  width: 76px;
  height: 76px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  /* border: 6px solid rgba(255,255,255,0.1); */
  color: #fff;
  font-family: var(--point-font-family);

}

#faq-btn::after,
#top-btn::after,
#jb24-btn::after,
#auto-btn::after,
#cns-btn::after{
  content: "";
  display: flex;
  position: absolute;
  z-index: -100;
  width: 86px;
  height: 86px;
  background: url(./../images/quick-btn.png);
}

#faq-btn {
  background: #333399;
  font-size: 17px;
}

#top-btn {
  background: #333;
  font-size: 17px;
  position: relative;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

#jb24-btn{
  background-color: #2495ff;
  line-height: 1.2;
  text-align: center;
}

#auto-btn{
  background-color: #e22a6d;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  padding-top: 0px;
}

#cns-btn{
  background-color: #18b8ff;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  padding-top: 0px;
}

#top-btn.stiky {
  opacity: 1;
  visibility: visible;
  position: relative !important;
}

#top-btn::before {
  content: "";
  display: block;
  width: 13px;
  height: 19px;
  background: url(./../images/top-btn-arrow.png) top no-repeat;

}

/*속보*/
.news {
  height: 48px;
  background: #eaeaeb;
}

.news>div {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.news>div>div {
  font-family: var(--body-font-family);
}

.news .alert-news {
  position: relative;
  justify-content: center;
  background: #d81b60;
  color: #fff;
  font-size: 14px;
  margin-right: 14px;
  height: 28px;
  line-height: 30px;
  padding: 0 15px;
  padding-left: 40px;
  border-radius: 10px;
}

.news .alert-news:before {
  content: "";
  display: block;
  width: 19px;
  height: 16px;
  background: url(./../images/ico-news.png)center no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  margin-right: 5px;
}

.news .news-title {
  font-size: 17px;
  margin-right: 6px;
}

.news .news-date {
  font-size: 12px;
  font-family: var(--body-font-family);
}

h1.s-title {
  font-size: 28px;
  font-family: var(--body-font-family);
  color: #333;
}

/*비주얼메인*/
.sec01 {
  background: url(./../images/visual-bg.png) center no-repeat;
  width: 100%;
  height: auto;
  background-size: cover;
  padding: 115px 0 56px 0;
}

.sec01_con {
  width: 100%;
  display: flex;
  position: relative;
  max-width: 1400px;
  margin: 0 auto
}

.visual_main {
  width: 784px;
  position: relative;
  margin-bottom: 38px
}

.slick_area {
  position: relative;
}

.slick_area .main_slider .img-fill {
  padding-bottom: 15px;
  box-sizing: border-box;padding-right: 20px;
}

.slick_area .main_slider .img-fill> a {
  border-radius: 20px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5); width:100%; height:100%;
  border: 1px solid #6c6c6c; overflow: hidden !important; display: inline-block !important;
}
.slick_area .main_slider .img-fill> a > img{
  width: 100%;
  object-fit: fill;
}
/* .img-fill a {
  display: block;

} */

.main_slider .slick-dots {
  position: absolute;
  height: 5px;
  background-color: rgba(255, 255, 255, .8);
  bottom: -35px;
  width: 60%;
  left: 48px;
  margin: 0;
  list-style-type: none;
}

.main_slider .slick-dots li button {
  display: none;
}

.main_slider .slick-dots li {
  float: left;
  width: 0px;
  height: 5px;
  background-color: #2c78e2;
  position: absolute;
  left: 0px;
  bottom: 0px
}

.main_slider .slick-dots li.slick-active {
  /*  width: 100%; */
  animation: ProgressDots 11s both linear;
}

.slide_paging {
  display: block;
  position: absolute;
  right: 144px;
  color: #8c8e94;
  font-size: 16px;
  bottom: -49px
}

.slide_paging .page {
  color: #fff;
  font-size: 24px;
}

@keyframes ProgressDots {
  from {
    width: 0px
  }

  to {
    width: 100%
  }
}

.main_slider + .prevArrow {
  position: absolute;
  bottom: -48px;
  right: 200px;
  background: url(./../images/slide-left-arrow.png) center no-repeat;
}

.main_slider + .prevArrow + .nextArrow {
  position: absolute;
  bottom: -48px;
  right: 91px;
  background: url(./../images/slide-right-arrow.png) center no-repeat;
}

.main_slider + .prevArrow,
.main_slider + .prevArrow + .nextArrow {
  width: 34px;
  height: 34px;
  color: transparent;
  margin: 0;
  border: 2px solid #fff;
  border-radius: 100%;
  cursor: pointer;
}
/* .main_slider .slick-slide:focus > div > img {outline:2px solid red;}  */

.slick-dots li {
  display: none;
}

.slick-dots li.slick-active {
  display: block;
}
.sec03_wrap{max-width: 1900px; margin:0  auto;}

.sec03_wrap .slick-dots {
  display: flex!important;
  justify-content: center;
  align-items : center;
}

.sec03_wrap .slick-dots li {
  display:flex; flex-wrap:wrap; align-items:center;margin-right:5px;
}
.sec03_wrap .slick-dots li:last-child{margin-right:0;}

.sec03_wrap .slick-dots li button {
  background-color: #a4a4a4;
  color: #a4a4a4;
  border-radius: 100%;
  overflow: hidden;
  width: 17px;
  height: 17px;
  border-radius: 100%;
}

.sec03_wrap .slick-dots li.slick-active button {
  background-color: #000;
  color: #000;
  width: 20px;
  height: 20px;
  border:1px solid #0d6efd;
}

.search_area {
  max-width: 589px;
  position: absolute;
  right: -75%;
  top: 0px;
  width: 572px;
}

.qick_area {
  margin-left: 30px;
  margin-top: 220px;
  width: calc(100% - 780px);
  max-width: 589px;
  height: 260px;
}

/**검색어순위 드롭다운*/
.search-rankDrop {
  display: inline-block;
  margin-top: 20px;
  position: relative;
  z-index: 999;
}

.search-rankDrop>a {
  display: flex;
  color: #fff;
  font-size: 20px;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 5px 10px;
}

.search-rankDrop>a::after {
  display: inline-block;
  width: 28px;
  height: 28px;
  content: "";
  background: url(../images/ico-search-arrow.png);
  margin-left: 15px;
  transition: all 0.3s;
}

.search-rankDrop.on>a::after {
  transform: translateY(0%) rotate(180deg);
}

.search-rankDrop ul {
  display: flex;
  gap: 8px;
  flex-direction: column;
  display: none;
}

.search-rankDrop ul li a {
  display: flex;
  color: #333;
  font-size: 20px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  background-color: #f2d537;
  border-radius: 0px;
}

.search-rankDrop ul li a:hover {
  font-weight: bold;
}

.rank-num {
  display: flex;
  width: 27px;
  height: 27px;
  background-color: #1b1b1b;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  margin-right: 10px;
  font-size: 12px;
}

.search-rankDrop>ul>li:last-child>a {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.search-rankDrop>ul>li:last-child>a {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.search-rankDrop.on {}

.search-rankDrop.on>a {
  background-color: #f2d537;
  padding: 5px 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #333;
}

.search-rankDrop.on>ul>li>a {}


/*sec02 슬라이드 탭 게시판 */
.main_content_bg {
  background: url(../images/content_bg.jpg) no-repeat;
  width: 100%;
  height: 1500px;
  background-size: cover;
}

.sec02 {
  padding-top: 62px;
  background: url(../images/sec02_con_bg.jpg);
  background-repeat: repeat-x;
  background-size: contain;
  min-height: 500px;
}

.sec02_con {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.swiper_wrap {
  width: 1400px;
  overflow: hidden;
  padding: 50px 30px 50px 10px;
}

.sec02 .swiper,
.sec02 swiper-container {
  overflow: visible;
}

.sec02 .more {
  position: absolute;
  right: -900px;
  top:0;
  padding: 0 16px;
  border-radius: 30px;
  background-color: #fff;
  line-height: 42px;
  display:none;
}
.main_tab>ul>li.active a.more{display: block;}
.sec02 .more span {
  color: #2f27c6;
  font-weight: bold;
}

.sec02 .m_more {
  font-size: 0;

}

.sec02 .m_more::after {
  content: "+"
}


.sec02 .swiper_btnList {
  position: absolute;
  top: -91px;
  right: -750px;
  display: flex;
  flex-wrap: nowrap;
  gap: 11px
}

.sec02 .swiper_btnList .prev_pos {
  background: url(../images/ic_prev.png);
}

.sec02 .swiper_btnList .next_pos {
  background: url(../images/ic_next.png);
}

.prev_pos,
.next_pos {
  font-size: 0px;

  width: 45px;
  height: 44px;
  cursor: pointer;
}


a.notice_box {
  width: 100%;
  display: block;
  background-color: #fff;
  padding: 53px 20px 30px 20px;
  border-radius: 20px;
  box-shadow: 10px 8px 20px 0px rgba(79, 79, 79, 0.07);
  min-height: 250px;
  overflow: hidden;
}
a.notice_box .con {display: -webkit-box; -webkit-box-orient:vertical; overflow: hidden; -webkit-line-clamp:4; text-overflow: ellipsis;}
a.notice_box h5 {
  margin-top: 10px;
}

.notice_part.pink {
  background: #e22a6d;
}

.notice_part.blue {
  background: #329ccc;
}

.notice_part.yellow {
  background: #d27c04;
}

a.notice_box .notice_part {
  word-break: keep-all;
  padding: 30px;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  border: 8px solid #316edf;
  right: 20px;
  border-radius: 100%;
  font-size: 16px;
  font-family: var(--body-font-family);
  color: #fff;
  line-height: 22px;
}

a.notice_box .blue-title {
  font-size: 21px;
  color: #1a0696;
  margin-bottom: 16px;
  font-weight: normal;
}

a.notice_box p.date {
  font-size: 14px;
  margin-bottom: 10px
}

a.notice_box p.date::after {
  content: "";
  display: block;
  width: calc(100% + 6px);
  border-top: 1px dashed #ccc;
  margin: 10px 0 20px 0;

}

a.notice_box .con p {
  font-size: 14px;
  line-height: 23px;
}

a.notice_box .con p::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #333;
  border-radius: 100%;
  margin-right: 5px
}



.notice_tabList {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 42px;
}

.notice_tabList .title {
  font-size: 26px;
  color: #000;
  display: inline-block;
  margin: 0;
}

.notice_tabList ul {
  display: flex;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 10px 8px 18px 0px rgba(0, 0, 0, 0.1);
  z-index: 99;
  padding: 0;
  flex:0 400px;
}

.notice_tabList ul li {
  display: inline-block;
  text-align: center;
  width: var(--tabTitle-width);
  line-height: 42px;
  transition: all 0.2s;
  width: 100px;
  flex:1 auto;
}

.notice_tabList ul li.on {
  background-color: var(--green);
  border-radius: 30px;
  text-align: center;
  color: #fff;
}

.sec02 .m_borad_list ul {
  display: flex;
  flex-direction: column;
  gap: 20px
}


.sec03 {
  padding-top: 62px;
  margin-top: 0px;
  background: url(../images/sec03_con_bg.jpg)no-repeat;
  padding-bottom: 80px;
  background-size: cover;
}

.sec03_con {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

.sec03_con div.title {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  font-size: 26px;
  color: #000;
  line-height: 42px;
  display: block;
  font-weight: bold;
  margin-bottom: 32px;
  text-align:center
}

.sec03_wrap {
  overflow: hidden;
}

/*  .sec03_wrap .slick-list {
  width: 3000px;
}
/*
.sec03_wrap .sec03_slick {
  transform: translate3d(-900px, 0, 0);
} */

.sec03_con .item {
  padding: 10px
}

.sec03_con .item a {
  display: block;
  box-sizing: border-box;
}
.sec03_con .item a img{transition: all 0.5s}

/* .sec03_con > div:not(.slick-current) img {opacity: 0.7;}  */
.sec03_con .item {
  opacity: 0.8;
  transition: all 0.3s ease;
  transform: scale(0.7);
}

.sec03_con div>img {
  border: 1px solid #6c6c6c;
  min-width: 600px;
}

.sec03_con .slick-center {
  transform: scale(1.0);
  transition: all 0.3s ease;
  opacity: 1;
  border-radius: 10px;
}
/* .sec03_con .slick-center > div{transform: scale(1.2); background: red;} */

.slick-slide img {
  display: block;
  /*   border:1px solid #6c6c6c; */
}

.sec03_con .slick-center img {
  border-radius: 35px;
  border:1px solid #6c6c6c;
  transform:scale(1.3);
}

.sec03_con .prevArrow {
  position: absolute;
  background: url(./../images/sec03_arrowLeft.png) center no-repeat;
  left: 32%;
  top: calc(50% - 22px);
}

.sec03_con .nextArrow {
  position: absolute;
  background: url(./../images/sec03_arrowRight.png) center no-repeat;
  right: 32%;
  top: calc(50% - 22px);
}

.sec03_con .prevArrow,
.sec03_con .nextArrow {
  width: 46px;
  height: 46px;
  color: transparent;
  margin: 0;
  border: 2px solid #fff;
  border-radius: 100%;
  cursor: pointer;
  z-index: 99;
}

/*
 .sec03 .swiper_btnList{position:absolute; top:-91px; right:-750px; display: flex; flex-wrap: nowrap; gap:11px}
.sec03 .swiper_btnList .prev_pos{background:url(../images/ic_prev.png); }
.sec03 .swiper_btnList .next_pos{background:url(../images/ic_next.png);}
.prev_pos, .next_pos{font-size: 0px; text-indent: -9999; width: 45px; height:44px; cursor: pointer;} */

.visual-main {
  background: url(../images/visual-bg.png) center no-repeat;
  width: 100%;
  height: auto;
  background-size: cover;
  padding: 62px 0;
}

.search-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 4px 8px 13px 0px rgba(0, 0, 0, 0.3);
}

.search-container .search-area {
  width: calc(100% - 80px);
  height: 100%;
  position: relative;
  background: #fff;
}

.search-container .search-area input {
  width: 100%;
  height: 100%;
  /* outline: none; */
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 40px;
  font-family: var(--body-font-family);
  font-size: 21px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.total-search-area .search-container .search-area input {
  border-radius: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.search-container .search-area label {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  font-family: var(--body-font-family);
  font-size: 21px;
}
.search-container .search-area label.hide{
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: -1px;
  border:0;
  overflow: hidden;
  clip:rect(0,0,0,0);
  font-size: 0;
}
.search-container .search-area label span {
  font-family: var(--body-font-family);
  color: #2c4aba;
}

.search-container a {
  display: inline-block;
  /*  outline: none; */
  border: none;
  cursor: pointer;
  width: 80px;
  height: 80px;
  font-size: 1px;
  text-indent: -99999px;
  background: #085de7 url(./../images/searchform-search.png) center no-repeat;
  outline-offset: -2px;
}
.search-container button[type="submit"]{
  display: inline-block;
  /*  outline: none; */
  border: none;
  cursor: pointer;
  width: 80px;
  height: 80px;
  font-size: 1px;
  text-indent: -99999px;
  background: #085de7 url(./../images/searchform-search.png) center no-repeat;
  outline-offset: -2px;height:100%;
}

.popular-search {
  width: 588px;
  margin-top: 20px;
  margin-bottom: 46px;
}

.popular-search>p {
  display: flex;
  align-items: center;
  font-family: var(--body-font-family);
  font-size: 20px;
  color: #fff;
}

.popular-search>p span {
  font-size: 15px;
}

.popular-search>p>span {
  background: #1b1b1b;
  width: 28px;
  height: 28px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 10px;
}

.tab-title-area {
  display: flex;
  flex-wrap: wrap;
}

.tab-title-area>p {
  font-size: 26px;
  font-family: var(--body-font-family);
  line-height: 44px;
  margin-right: 15px;
  color: #fff;

}

.sheet {
  position: relative;
  width: 100%;
  height: 390px;
  padding: 40px 0 20px;
}

.sheet:before {
  content: "";
  display: block;
  width: calc(100% - 300px);
  height: 13px;
  position: absolute;
  top: -20px;
  transform: translateY(-50%);
  right: 0px;
  background: url(../images/pat.png);
  background-size: contain;
}

/*비주얼 슬라이드*/
.visual-main .visual-slide {
  /* width:810px;  */
  /* height: 554px; */
  /* background: #ccc; */

  overflow: hidden;
  /* width: 700px; */
  /* width: min-content; */


}

.visual-slide img {
  /* box-sizing: border-box; */
  display: block;
  overflow: hidden;
  border-radius: 20px;
  /* border: 5px solid #000; */
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}

.visual-swiper .swiper-wrapper {
  /* box-shadow: 25px 25px 16px rgba(0, 0, 0, 0.5);  */
  /* background: #000; */
  /* border-radius: 20px; */
  /* width: 756px; */
  /* height: 483px;  */

}

.visual-swiper .swiper-wrapper>a {
  display: block;
  /* max-width: 756px ; */
  height: 483px;
  border-radius: 20px;
  /* overflow: hidden; */
  /* box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.5);  */
  /* border: 10px solid #000; */
}

.visual-swiper .visual-slide-control {
  width: 100%;
  max-width: 740px;
  height: 40px;
  display: block;
  margin-top: 30px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.visual-swiper .visual-slide-control>div:first-child {
  width: 514px
}

.swiper_btn {
  display: flex;
  gap: 16px
}

.visual-swiper .swiper-pagination {
  width: 510px;
  position: static;
  background: #fff;
}

.visual-swiper .swiper-pagination>span {
  background: #3398ff;
}

.visual-swiper .swiper-button-prev,
.visual-swiper .swiper-button-next {
  position: static;
  width: 36px;
  height: 36px;
  background: #000;
  color: transparent;
  margin: 0;
  border: 2px solid #fff;
  border-radius: 100%;
}

.visual-swiper .swiper-button-prev {
  background: url(./../images/slide-left-arrow.png) center no-repeat;
}

.visual-swiper .swiper-button-next {
  background: url(./../images/slide-right-arrow.png) center no-repeat;
}

.visual-swiper .swiper-fraction {
  width: fit-content;
  position: static;
  font-family: "sc-dream-5", sans-serif;
  font-size: 16px;
  color: #9f9f9f;
}

.visual-swiper .swiper-fraction .swiper-pagination-current {
  color: #fff;
  font-size: 24px;
}

.stop-play-btn {
  background: transparent url(./../images/stop.png) center no-repeat;
  width: 36px;
  height: 36px;
  border: none;
  /*  outline: none; */
  cursor: pointer;
  font-size: 0px;
  position: absolute;
  bottom: -49px;
  right: 34px;
}

.stop-play-btn.play {
  background: transparent url(./../images/play.png) center no-repeat;
}

/*새알림*/
.new-notice {
  position: relative;
}

.new-notice::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 365px;
  background: #316edf;
}

.new-notice>.container1400 {
  position: relative;
  z-index: 1;
}

.new-notice .title-area {
  padding-top: 62px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.new-notice .title-area .tab {
  box-shadow: 10px 8px 18px 0px rgba(0, 0, 0, 0.1);
  height: 45px;
  margin-left: 20px;
}

/* .new-notice .tab{float: left;}
.new-notice::after{
    content:""; clear: both; display: block;
} */
.new-notice .sheet li>.list-area {
  margin: 0 -25px;
  display: flex;
  margin-top: 62px;
  flex-wrap: wrap;
}

.new-notice .sheet li>.list-area a {
  display: block;
  background: #fff;
  border: 1px solid #eeeded;
  border-radius: 20px;
  box-shadow: 10px 8px 20px 0px rgba(79, 79, 79, 0.07);
  width: calc(100% / 3 - 50px);
  margin: 0 25px;
  position: relative;
}

.notice-part {
  word-break: keep-all;
  padding: 30px;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  border: 8px solid #316edf;
  right: 20px;
  border-radius: 100%;
  font-size: 16px;
  font-family: var(--body-font-family);
  color: #fff;
  line-height: 22px;
}

.new-notice .sheet li>.list-area a .notice-part.part-01 {
  background: #00a4e8;
}

.new-notice .sheet li>.list-area a .notice-part.part-02 {
  background: #e22a6d;
}


.new-notice .notice-box {
  padding: 52px 30px 22px;
  overflow: hidden;
}

.new-notice .notice-box .notice-title {
  font-family: "sc-dream-6", sans-serif;
  font-size: 19px;
  color: #1a0696;

}

.new-notice .notice-box .notice-date {
  font-family: "sc-dream-3", sans-serif;
  font-size: 14px;
  color: #333;
  margin: 16px 0;
  position: relative;
}

.new-notice .notice-box ul.notice-txt01 {
  font-family: var(--body-font-family);
  font-size: 14px;
  color: #000;
  line-height: 24px;
  position: relative;
  padding-top: 20px;
}

.new-notice .notice-box .notice-date::after {
  content: "";
  display: block;
  width: calc(100% + 6px);
  border-top: 1px dashed #ccc;
  position: absolute;
  top: 34px;
  left: -6px;

}

.new-notice .notice-box ul.notice-txt02 li {
  font-family: "sc-dream-2", sans-serif;
  font-size: 14px;
  position: relative;
  padding-left: 12px;
  margin-left: 6px;
}

.new-notice .notice-box ul.notice-txt02 li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #333;
  border-radius: 100%;
  position: absolute;
  top: 10px;
  left: 0;

}

.new-notice .notice-box ul.notice-txt03 li::before {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 12px;
}

.new-notice .notice-box ul li {
  word-break: keep-all;
}

/*감염병지식*/
.know-slide {
  margin: 100px auto;
  position: relative;
}

.know-slide::before {
  content: "";
  display: block;
  width: 34px;
  height: 66px;
  background: url(./../images/bg-deco-01.png);
  position: absolute;
  top: -90px;
  left: -125px;
}

/*footer*/
footer {
  padding: 37px 0 120px;
  background: #eaeaeb;
  font-family: var(--body-font-family)
}

.footer-box01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  justify-content: space-between;
}

.footer-box01 ul li {
  display: inline-block;
}

.footer-box01 .guide-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-box01 .guide a:hover {text-decoration: underline;}

.footer-box01 .guide>li {}

.footer-box01 .guide>li a.point {
  font-weight: bold;
}

.footer-box01 .guide>li::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 17px;
  background: #ccc;
  margin-left: 12px;
  margin-right: 6px;
  margin-bottom: -2px;

}

.footer-box01 .guide>li:last-child:after {
  display: none;
}

.footer-box01 .sns-link {
  display: inline-flex;
  margin-right: 30px;
}

.footer-box01 .sns-link li a {
  font-size: 0;
  width: 34px;
  height: 34px;
  display: block;
  margin-right: 5px;
}

.footer-box01 .sns-link li:nth-of-type(1) a {
  background: url(./../images/ico-facebook.png) center no-repeat;
}

.footer-box01 .sns-link li:nth-of-type(2) a {
  background: url(./../images/ico-twitter.png) center no-repeat;
}

.footer-box01 .sns-link li:nth-of-type(3) a {
  background: url(./../images/ico-naver.png) center no-repeat;
}

.footer-box01 .sns-link li:nth-of-type(4) a {
  background: url(./../images/ico-youtube.png) center no-repeat;
}

.footer-box01 .sns-link li:nth-of-type(5) a {
  background: url(./../images/ico-insta.png) center no-repeat;
}

.footer-box02::after {
  content: "";
  clear: both;
  display: block;
}

.footer-box02>img {
  float: left;
  margin-right: 60px;
}

.footer-box02 .txt {
  font-size: 12px;
  line-height: 22px;
  float: left;
}

.footer-box02 .mark {
  float: right;
  display: flex;
  gap: 33px;
  justify-content: center;
  align-items: center;
}


/*footer 위 토글 셀릭트박스 */

.select_topDrop {
  position: relative;
}

.select_topDrop .selected>a {
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  width: 200px;
  padding: 10px 15px;
  border-radius: 10px;
  position: relative;
  border: 1px solid #eee
}

.select_topDrop .selected>a::after {
  position: absolute;
  display: inline-block;
  width: 16px;
  height: 9px;
  right: 18px;
  content: "";
  background: url(../images/ic/ic_depart.png);
  top: calc(50% - 5px);
  transition: all 0.3s;
}

.select_topDrop .selected.on>a {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select_topDrop .selected.on>a::after {
  transform: translateY(30%) rotate(180deg);
}

.select_topDrop>.list {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 43px;
  width: 200px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #eee;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 99;
}

.select_topDrop>.list>li {
  line-height: 20px;
  padding: 5px 5px;
  width: 100%;
  display: block;
}

.select_topDrop>.list>li>a {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 13px;
}

.select_topDrop>.list>li>a:hover {
  color: #0a58ca
}



.deco-area {
  width: 1400px;
  margin: 0 auto;
  height: 500px;
  background: pink;
  /* overflow: hidden; */
  position: relative;

}

.deco-circle01 {
  display: block;
  width: 844px;
  height: 844px;
  background: #fafafa;
  border-radius: 100%;
  position: absolute;
  z-index: -999;
  left: -430px;
  bottom: -230px;
}

.deco-circle02 {
  width: 450px;
  height: 450px;
  background: #f1f1f8;
  border-radius: 100%;
  position: absolute;
  z-index: -999;
  bottom: -240px;
  right: -300px
}




/** 엠폭스 메인 */
.main_slider.full-size-slick .img-fill>img {
  border-radius: 0;
  box-shadow: none
}

.main_slider.full-size-slick .img-fill {
  padding-bottom: 0px;
  box-sizing: border-box;
}

.main_slider.full-size-slick .slick-dots {
  position: absolute;
  height: 5px;
  background-color: rgba(255, 255, 255, .8);
  bottom: 82px;
  width: 25%;
  left: 15%;
  margin: 0;
  list-style-type: none;
}

.full_slide_paging {
  display: block;
  position: absolute;
  left: 43.8%;
  color: #8c8e94;
  font-size: 16px;
  bottom: 65px;
}

.full_slide_paging .page {
  color: #fff;
  font-size: 24px;
}

.main_slider.full-size-slick .prevArrow {
  position: absolute;
  bottom: 66px;
  left: 41%;
  background: url(./../images/slide-left-arrow.png) center no-repeat;
  z-index: 9;
}

.main_slider.full-size-slick .nextArrow {
  position: absolute;
  bottom: 66px;
  left: 47%;
  background: url(./../images/slide-right-arrow.png) center no-repeat;
}

.full-stop-play-btn {
  background: transparent url(./../images/stop.png) center no-repeat;
  width: 36px;
  height: 36px;
  border: none;
  /*  outline: none; */
  cursor: pointer;
  font-size: 0px;
  position: absolute;
  bottom: 65px;
  left: 49.5%;
}

.full-stop-play-btn.play {
  background: transparent url(./../images/play.png) center no-repeat;
}

.sec01_nav {
  background-color: #182a4d;
}

.sec01_nav ul {
  display: flex;
}

.sec01_nav ul li {
  flex: 1
}

.sec01_nav ul li>a {
  color: #fff;
  text-align: center;
  width: 100%;
  line-height: 68px;
  display: inline-block;
  border-right: 1px solid #5e6a83;
  font-size: 22px;
  font-weight: 300;
  transition: all 0.2s ease;
}

.sec01_nav ul li>a:hover {background-color: #364f80;}

.sec01_nav ul li:last-child>a {
  border-right: 0;
}

.sec02_v2 {
  padding-top: 62px;
  background: url(../images/sec02_con_bg.jpg);
  background-repeat: repeat-x;
  background-size: auto;
  min-height: 620px;
}

.sec02_v2 .sec02_con {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.sec02_v2 .sec02_con .con-box {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  padding: 29px 38px;
  display: flex;
  justify-content: space-between;
  gap: 60px
}

.sec02_v2 .main_news,
.sec02_v2 .news_list {
  flex: 1 100%;
}


.sec02_v2 .main_news>h2 {
  font-size: 36px;
  display: block;
}

.sec02_v2 .main_news a {
  position: relative;
  width: 35px;
  height: 35px;
  margin-left: 10px
}

.sec02_v2 .main_news a::after {
  background: url('../images/ic/ic_plus.png')no-repeat;
  width: 35px;
  height: 35px;
  content: "";
  display: inline-block;
}

.main_news .news-view {
  background-color: #edf9ff;
  border-radius: 7px;
  border: 1px solid #e5e5e5;
  padding: 30px;
  height: 309px;
  overflow: hidden;
}

.news_list ul {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.news_list ul li {
  height: 60px;
  flex: 1;
}

.news_list ul li>a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  line-height: 60px;
  border: 1px solid #e8e8e8;
  align-items: center;
  padding: 0 20px;
  border-radius: 7px;
}

.news_list ul li:last-child>a {
  border: 0;
  padding: 0;
}

.news_list ul li>a h3 {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.news_list ul li>a.new h3::after {
  background: url('../images/ic/ic_main_newLabel.png')no-repeat;
  width: 31px;
  height: 31px;
  content: "";
  display: inline-block;
  margin-left: 10px
}

.sec03_v2 .sec03_con {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.sec03_v2 .sec03_con .title {
  font-size: 42px;
  font-weight: 300;
}

.sec03_v2 .sec03_con .title span {
  color: #ff3939;
}

.sec03_v2 .sec03_con .chart-wrap {
  background-color: #c3daf1;
  border-radius: 20px;
  padding: 20px
}

.sec03_v2 .sec03_con .chart-wrap .chart-title {
  display: flex;
  justify-content: end;
  gap: 7px
}

.sec03_v2 .sec03_con .chart-wrap .chart-title li a {
  display: inline-block;
  width: 100px;
  background-color: #8ea5bc;
  text-align: center;
  line-height: 43px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.sec03_v2 .sec03_con .chart-wrap .chart-con {
  background-color: #fff;
  min-height: 500px;
  border-radius: 7px;
  border-top-right-radius: 0;
  position: relative;
  padding: 20px;
  display: flex;
  width: 100%;
}

/*탭 소스*/
.tabMenu li.on a {
  background-color: #fff !important;
  color: #333 !important
}

.tabCon #dailyStats {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  justify-content: center;
  left: 0;
}

.tabCon #dailyStats.action {
  opacity: 1;
  visibility: visible;
}


/* .sec03_wrap .sec03_slick {
  transform: translate3d(-30%, 0, 0);
  width: 1920px;
  margin: 0 auto
} */


@media (min-width:1930px) {
  .sec01_v2 {
    background-color: #233c68;
  }

  .sec01_v2 .slick_area {
    width: 1920px;
    margin: 0 auto;
    position: relative;
  }


}

@media (max-width:1650px){
  .container1400, #header .wrap_head {width: 100%; max-width:100%;padding: 0 3%;}
}

@media (max-width:1600px) {

  .menu_sub .gnb_sub_title .gnb-menu-title {
    right: 23px;
  }


  /* 피씨 기본 너비 */

  .share-wrap .share-area{right:3%;}
  .search-tab01.link li {width:calc(100% / 4) ;}
  .tab-dropdown li{width:100%;}
  .search-tab01.link li:nth-child(6n){border-radius: 0px; border-right:1px solid #c6e0f8;}
  .search-tab01.link li:nth-child(7n){border-radius:0px;}
  .search-tab01.link li:nth-child(4n){border-radius: 0px 7px 7px 0px; border-right:0;}
  .search-tab01.link li:nth-child(5),.search-tab01.link li:nth-child(9){border-radius: 7px 0px 0px 7px;}
  .search-tab01.link li.on{border-radius:7px;}

  .sec01_con {
    width: 100%;
  }

  .visual_main {
    width: 55%;
    position: relative;
  }

  .visual_banner {}

  .visual-swiper .visual-slide-control>div:first-child {
    width: 466px;
  }

  .search-container {
    width: 500px;
  }

  .search_area {
    max-width: 500px;
    position: absolute;
    right: -520px;
    top: 0px;
  }

  .qick_area {
    margin-left: 20px;
    margin-top: 220px;
    width: 500px;
  }

  .slick_area .main_slider .img-fill {
    padding: 20px
  }

  .slick_area .main_slider .img-fill img {
    width: 100%; height:fit-content;
  }

  .main_slider.full-size-slick .img-fill {
    padding: 0px
  }

  .swiper_wrap {
    width:calc(100vw - 90px);
    overflow: hidden;
    padding: 50px;
    margin: 0 auto
  }


  .main_slider .slick-dots {
    width: 52%;
    left: 30px
  }

  .sec02 .more {
    right: -220%;
  }

  .sec02 .swiper_btnList {
    top: -91px;
    right: -300px;
  }

  .sec02_con {
    padding: 0 20px;
    box-sizing: border-box;
  }


  /*  .sec03_con .prevArrow{left:30px; top:40%;}
 .sec03_con .nextArrow { right: 30px; top: 40%}
    */
  .menu_sub .gnb_sub_title {
    width: calc(50% - 300px);
  }

  .popular-search {
    width: 509px;
  }

  .main_tab>ul>li>ul {
    left: calc(50% - 354px);
    width: 500px;
  }

  .main_tab2>ul>li>ul {
    left: calc(50% - 322px);
    width: 520px;
  }

  .site_map .search-container {
    width: 360px
  }

  .mob_allMenu .search-container,
  .mob_allMenu .mnue_search_area {
    width: 280px;
  }

  .full_slide_paging {
    left: 44.8%;
  }

  .main_slider.full-size-slick .nextArrow {
    left: 49%;
  }

  .full-stop-play-btn {
    left: 52.5%;
  }
  .qick_area .main_tab>ul>li>ul{
    left:calc(50% - 320px);
  }
}

@media (max-width:1310px) {
  /*  .swiper_wrap {
     width: 1200px;
   } */
  .sec02 .more {
    right: -620px;
  }

}

@media (max-width:1248px) {

  .sec01_nav ul li>a{font-size:17px}
  .search_area {
    right: -515px;
  }

  .search-container {
    width: 100%;
  }

  .visual_main {
    width: 48%;
    position: relative;
    height: 30%;
  }

  .main_slider .slick-dots {
    width: 42%;
    left: 30px;
  }
}
@media (max-width:1200px) {
  .sec02 .more {right: -100%;}
  .swiper_wrap {margin-top:-40px;}

}
@media (max-width:1200px) {
  .sec02 .more {right: -80%;}

}

@media(max-width:1076px) {
  .footer-box01 .sns-link {
    margin-right: 10px;
  }
}

@media(max-width:1024px) {
  .tab-dropdown li{border-right:1px solid var(--sub2-color) !important}
  .qick_area .main_tab>ul>li>ul{left: calc(50% - 320px);width: calc(100vw - 50px);}
  /*모바일 변경점 1024px*/
  .content_mt85 { margin-top: 0px !important; }
  /*     .box_gnb .logo  { padding: 0 15px; } */
  .swiper_wrap{width: 800px; overflow: hidden; padding:50px}
  .visual-main > div{flex-direction: column;}
  .visual-main .visual-slide { width: 100%;}
  .search-container{width: 100%;}
  .visual-swiper .visual-slide-control{width: 95%;}
  .visual-swiper .swiper-wrapper > a { height: auto;}
  .visual-slide .box-shadow{width: 97%; height: auto;}
  .visual-slide .box-shadow img{width: 100%;}
  .visual-swiper .swiper-pagination{width: 70%;}
  .btn-area{bottom: 1%; right: 3%; }
  .footer-box01{flex-direction: column; gap: 19px;}
  .footer-box01 .guide-right { flex-direction: column; gap: 16px; }
  .footer-box02{display: flex; flex-wrap: wrap;flex-direction: column; align-items: center;}
  .footer-box02 .txt{text-align: center;}
  .footer-box02 > img{margin-right: auto; margin: 0 auto;}
  /* .footer-box02 > {width: 100%; margin: 0;} */
  .footer-box02 .txt {
    margin: 20px 0;
  }

  #faq-btn,
  #top-btn,
  .quick-menu,#jb24-btn, #auto-btn, #cns-btn{
    font-size: 14px!important;
  }

  .search_area {
    position: static;
    max-width: 100%;
    margin: 31px 20px;
    width: auto; margin-top:70px;
  }

  .qick_area {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    margin-top: 40px;
  }

  .sec01_con {
    flex-direction: column;
    padding: 20px 0px;
  }

  .visual_main {
    width: 100%;
    position: relative;
    height: auto;
  }

  .slick_area {
    max-width: 100%;
  }

  .sec01 {
    padding-top: 0;
  }

  .main_content_bg {
    background: none;
    width: 100%;
    height: auto;
    background-size: cover;
  }

  .main_tab .tab_title {
    font-size: 26px;
    color: #fff;
    display: inline-block;
    position: relative;
    top: 0;
    line-height: 42px;
  }

  .main_tab2>ul>li>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .sec02_con {
    height: auto
  }

  .sec02.for_mob .more {
    position: absolute;
    right: -317px;
    top: -90px;
    padding: 0;
    border-radius: 0;

    line-height: 42px;
    font-size: 30px;
  }

  .sec02.for_mob .more span {
    color: #000;
    font-weight: bold;
  }

  .swiper-slide,
  swiper-slide {
    flex-shrink: 0;
    width: 450px;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
    position: absolute;
    left: 50%;
    margin: 0 -10px;
  }

  .sec02 {
    padding-top: 62px;
    background: none;
    background-size: contain;
    min-height: auto;
    height: auto;
  }

  .sec03_con {
    padding: 0 20px
  }

  .main_tab>ul>li>ul {
    left: 30%;
    width: 400px;
  }

  .notice_tabList .title {
    font-size: 26px;
    color: #000;
    display: inline-block;
    margin: 0;
    font-weight: bold;
  }


  a.notice_box {
    width: 100%;
    display: block;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 10px 8px 20px 0px rgba(79, 79, 79, 0.07);
    min-height: auto;
    border: 1px solid #dddddd
  }

  a.notice_box .notice_part {
    word-break: keep-all;
    padding: 5px 20px;
    width: auto;
    height: auto;
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    top: auto;
    transform: translateY(-50%);
    border: 0;

    border-radius: 5px;
    font-size: 12px;
    font-family: var(--body-font-family);
    color: #fff;
    margin-left: 20px;
    margin-top: 20px;
  }

  a.notice_box p.date::after {
    margin: 8px 0;
  }

  a.notice_box {
    box-shadow: 5px 2px 10px 0px rgba(79, 79, 79, 0.07);
    min-height: auto;
  }

  .main_slider .slick-dots {
    width: 50%;
  }

  .site_map {
    background: #fff;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.2s ease-in;
    /*  pointer-events: none; */
    overflow-y: auto;
  }

  .top_banner .con {
    flex-direction: column;
    justify-content: center;
  }

  .top_banner .con .left {
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    padding: 0 10px
  }

  .top_banner .con .right {
    width: 100%;
    padding: 0 10px
  }
  /*
      .sec03_wrap .sec03_slick {
        transform: translate3d(-1160px, 0, 0);
      } */



  .sec01_nav ul li>a {
    font-size: 14px;
  }

  .sec02_v2 .sec02_con .con-box {
    width: 100%;
    padding: 29px 38px;
    flex-direction: column;
    gap: 20px;
  }

  .sec02_v2 .main_news a {
    position: relative;
    width: 25px;
    height: 25px;
    margin-left: 10px;
  }

  .sec02_v2 .main_news a::after {
    background: url('../images/ic/ic_plus.png')no-repeat;
    width: 25px;
    height: 25px;
    content: "";
    display: inline-block;
    background-size: cover;
  }

  .main_news .news-view {
    background-color: #edf9ff;
    border-radius: 7px;
    border: 1px solid #e5e5e5;
    padding: 30px;
    height: 300px;
    overflow: auto;
  }

  .sec02_v2 .main_news>h3 {
    font-size: 24px;
    display: block;
  }

  .sec03_v2 {
    margin-top: 50px
  }

  .sec03_v2 .sec03_con .chart-wrap .chart-con {
    min-height: 300px;
  }

  .sec02_v2 {
    padding-top: 30px;
  }

  .sec01_v2 .slick-list {
    background-color: #213862;
    padding-bottom: 100px
  }

  .sec01_v2 .main_slider.full-size-slick .slick-dots {
    bottom: 42px;
    width: 47%;
    left: 8%;
  }

  .sec01_v2 .main_slider.full-size-slick .prevArrow {
    bottom: 27px;
    left: 60%;

  }

  .sec01_v2 .full_slide_paging {
    left: 67.8%;
    bottom: 27px;
  }

  .sec01_v2 .main_slider.full-size-slick .nextArrow {
    bottom: 27px;
    left: 76%;
  }

  .sec01_v2 .full-stop-play-btn {
    bottom: 26px;
    left: 85.5%;
  }

  .search-rankDrop {
    display: none;
  }

  .btn-area {
    gap: 15px
  }


}

@media (max-width:768px) {
  .news{height:fit-content; padding:2% 0;}
  /*  .sec03_wrap .slick-dots {
     transform: translate3d(30%, 0, 0);
   } */

  .sec03_wrap .sec03_slick {
    transform: translate3d(0, 0, 0);
  }

  .sec03_con .nextArrow {
    right: 35px;
  }

  .sec03_con .prevArrow {
    left: 0px
  }

  .sec03_wrap .slick-list {
    width: auto;
  }

  .sec03_con div>img {
    border: 1px solid #6c6c6c;
    min-width: auto;
  }

  .sec03_con .nextArrow {
    left:calc(100% - 46px);
  }

  header .gnb-area,
  header .right-area {
    display: none;
  }

  #faq-btn,
  #top-btn,
  .quick-menu, #jb24-btn, #auto-btn, #cns-btn {
    font-size:12px !important;
    width: 60px;
    height: 60px;
  }

  #faq-btn::after,
  #top-btn::after,
  #jb24-btn::after,
  #auto-btn::after,
  #cns-btn::after{
    width: 72px;
    height: 72px;
    background-size: contain;
  }
  .quick-pink::after, .quick-blue::after{display: none;}


  .new-notice .sheet li>.list-area {
    flex-direction: column;
    margin: 0 auto;
    margin-top: 62px;
  }

  .new-notice .sheet li>.list-area a {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .new-notice .sheet li>.list-area a .notice-part {
    width: fit-content;
    height: 40px;
    border-radius: 10px;
    padding: 5px 20px;
    border: 0px;
    top: 35px;
    left: 20px;
  }

  .new-notice .notice-box {
    padding: 70px 30px 22px;
  }

  .visual-main .popular-search {
    width: 100%;
  }

  .main_slider .slick-dots {
    width: 43%;
    left: 30px;
  }

  .main_tab>ul>li>ul {
    left: -50%;
    width: 537px;
  }

  .dashBoard {
    flex-wrap: wrap;
  }

  .dashBoard>div {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
  }

  .dashBoard>div:nth-child(2):after {
    width: 0;
  }

  .sec01_nav ul {
    display: flex;
    flex-wrap: wrap;
  }

  .sec01_nav ul li {
    flex: 1 50%;
  }

  .sec01_nav ul li>a {
    border-bottom: 1px solid #5e6a83;
  }

  .news_list ul li>a h3 {
    font-size: 13px;
  }

  .news_list ul li>a span {
    font-size: 13px;
  }

  .sec02_v2 .sec02_con .con-box {
    padding: 29px 15px;
  }

  .sec03_v2 .sec03_con .title {
    font-size: 24px;
  }

  .family-site{display: flex; gap:10px; flex-wrap: wrap;}
  .family-site li{flex:1 auto}




}
@media(max-width:642px) {
  .main_tab>ul>li>ul {
    width: 433px;
  }
}
@media(max-width:580px) {
  .sec03_con .slick-center img {
    border-radius: 15px;
  }


  .main_tab>ul>li>ul {
    left: calc(50% - 280px);
    width: 374px;
  }



  .box02 .box-tab {
    top: 60px;
  }

  .indent {
    padding-left: 0px;
  }

  .top_banner .con .left .title {
    font-size: 16px;
  }

  .top_banner .con .left .title>div {
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 10px;
    line-height: 20px;
    margin-right: 5px;
  }

  .top_banner .con .left .title>span {
    font-size: 20px;
  }

  .top_banner .con .left h3 span {
    font-size: 25px;
  }

  .top_banner .con .left h3 small {
    font-size: 12px;
  }

  .top_banner .con .left::before {
    background-image: url('../images/covid_warning.png');
    width: 55px;
    height: 56px;
    background-size: 55px 56px;
    margin-right: 10px;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
  }

  .sec01_v2 .main_slider.full-size-slick .slick-dots {
    bottom: 42px;
    width: 40%;
    left: 8%;
  }

  .sec01_v2 .main_slider.full-size-slick .prevArrow {
    bottom: 27px;
    left: 55%;

  }

  .sec01_v2 .full_slide_paging {
    left: 67%;
    bottom: 27px;
  }

  .sec01_v2 .main_slider.full-size-slick .nextArrow {
    bottom: 27px;
    left: 80%;
  }

  .sec01_v2 .full-stop-play-btn {
    bottom: 26px;
    left: 90%;
  }

}

@media(max-width:462px) {
  .select_topDrop .selected>a {
    font-size: 13px;
    width: 100%;
  }

  .select_topDrop>.list>li {
    line-height: 15px;
    padding: 7px 2px;
  }

  /*  .select_topDrop>.list {
     width: 150px;
   } */

  .main_tab>ul {
    left: 146px;
  }

  .main_tab>ul>li>ul {
    left: calc(50% - 160px);
    width: 320px;
  }

  .main_tab .tab_title {
    font-size: 17px;
  }

  .visual-sheet-area a {
    font-size: 12px;
  }

  .main_tab .tab_title {
    font-size: 20px;
  }

  .main_tab {
    --tabTitle-width: 70px;
  }

  .search-container {
    flex-wrap: nowrap;
    margin-top: 10px;
    height: 60px;
    border-radius: 8px;
    box-shadow: 4px 8px 13px 0px rgba(0, 0, 0, 0.3);
  }

  .search-container .search-area label {
    font-size: 15px;
    left: 20px;
  }

  .search-container a {
    width: 80px;
    height: 60px;
    font-size: 0;
    background: #085de7 url(./../images/searchform-search.png) center no-repeat;
    background-size: 20px 20px;
  }

  .search-container .search-area input {
    padding-left: 20px;
    font-size: 15px;
  }

  .notice_tabList .title {
    font-size: 20px;
  }

  .notice_tabList ul {
    flex:1 auto
  }
  .notice_tabList ul li {
    line-height: 35px;
    width: 70px;
    font-size: 12px;
    flex: 1 auto;
  }

  .main_tab>ul>li>a {
    line-height: 35px;
    font-size: 12px;
  }

  .main_tab>ul>li>ul {
    left: calc(50% - 205px);
    width: 320px;
  }

  a.notice_box .blue-title {
    font-size: 1.2rem;
  }

  a.notice_box .con p {
    font-size: 0.8rem;
    line-height: 23px;
  }

  .main_slider .slick-dots {
    width: 28%;
  }



  .sec03_con h1.title {
    font-size: 20px;
  }

  .news {
    height: auto;
    padding: 10px 0;
    line-height: 30px;
    background: #eaeaeb;
  }

  .logo img,
  .mob_allMenu .logo_header img {
    width: 120px
  }

  #header .wrap_head .box_gnb {
    height: 64px;
  }

  .mob_allMenu .contents .mDepth1>li>.mDepth2 .menu_list>li>a {
    padding: 0.4rem;
    font-size: 0.8rem;
  }

  .mob_allMenu {
    --mMenu-margin: 0.5rem 1rem;
    /*모바일 메뉴*/
    --mMenu-padding: 5px 10px;
    /*모바일 메뉴 공통*/
  }

  .mob_allMenu .mDepth3>li>a {
    line-height: 1.5rem;
    font-size: 0.7rem;
  }

  .mob_allMenu .contents .mDepth1>li>a {
    font-size: 0.8rem;
    line-height: 3rem;
  }

  .mob_allMenu .contents .mDepth1>li.on>a::after {
    height: 2.7rem;
    top: 7px;
    left: 5px;
  }

  .btn-lg {
    height: 35px;
    font-size: 0.7rem;
  }

  .list1>li {
    line-height: 1.5rem;
    font-size: 0.8rem;
    padding-left: 15px;
  }
  .list2>li, .list-blue-dot>li{
    line-height: 1.5rem;
    font-size: 0.8rem;
  }

  .list1>li::before {
    width: 5px;
    height: 5px;
    top: 9px;
  }

  .list1 .list1-1>li {
    position: relative;
    padding-left: 6px;
    font-size: 0.7rem;
  }

  .list1 .list1-1>li::before {
    width: 4px;
    height: 4px;
    top: 8px;
    left: -4px;
  }


}
@media(max-width:660px){
  .family-site {flex-direction: column;}
  .family-site li{width:200px;}
}

@media (max-width:425px) {
  .qick_area .main_tab>ul>li>ul{left:-100%;}

  .visual-swiper .visual-slide-control {
    width: 100%;
  }

  .visual-swiper .swiper-pagination {
    width: 50%;
  }

  .visual-main .tab-title-area {
    flex-direction: column;
  }

  .visual-main .sheet:before {
    width: 90%;
  }

  .new-notice .title-area {
    justify-content: center;
    flex-direction: column;
  }

  .new-notice .title-area .tab {
    margin-left: 0;
    margin-top: 20px;
  }

  .footer-box01 .guide-right {
    justify-content: center;
  }

  .footer-box01 .sns-link {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .main_tab>ul>li>ul {
    left: calc(50% - 185px);
    width: 320px;
  }

  .main_slider .prevArrow {
    right: 185px;
  }

  .main_slider .nextArrow {
    right: 78px;
  }



  .main_slider .prevArrow {
    right: 170px;
  }

  .visual-sheet-area a::before {
    background-size: 30px 30px !important;
  }

  .visual-sheet-area a::before {
    width: 70px;
    height: 70px;
    top: -96px;
  }


  .visual-sheet-area.main-tab1 a:nth-of-type(1)::before,
  .visual-sheet-area.main-tab1 a:nth-of-type(2)::before,
  .visual-sheet-area.main-tab1 a:nth-of-type(3)::before,
  .visual-sheet-area.main-tab1 a:nth-of-type(4)::before
  {
    background-size: 30px 30px;
  }

  .visual-sheet-area.main-tab1 a::before {
    width: 70px;
    height: 70px;
    top: -96px;
  }

  .top_banner .con .left h3 small {
    font-size: 8px;
  }

  .top_banner .con .left h3 span {
    font-size: 20px;
  }

  .top_banner .con .left h3 {
    font-size: 15px;
  }

  .top_banner .con .left .title
  vtop-title {
    margin-right: 9px;
  }

  .dashBoard>div dl dt {
    padding: 5px 0px;
    font-size: 12px;
  }

  .top_banner .con .left .title {
    font-size: 12px;
  }





}

@media (max-width:390px) {
  .main_tab>ul>li>ul {
    left: calc(50% - 200px);
    width: 300px;
  }

  .visual-sheet-area a {
    margin-top: 75px;
  }

  .visual-sheet-area a::before {
    top: -93px;
  }

  .footer-box02 .mark {
    flex-direction: column;
  }



  .select_topDrop .selected>a::after {
    position: absolute;
    display: inline-block;
    width: 15px;
    height: 9px;
    right: 18px;
    content: "";
    background: url(../images/ic/ic_depart.png);
    top: calc(50% - 5px);
    transition: all 0.3s;
  }

  .select_topDrop>.list {

  }

  .select_topDrop>.list {
    bottom: 45px;
  }

  .qick_area {
    height: 198px;
  }

  .main_slider .slick-dots {
    width: 18%;
  }

  .footer-box01 {
    font-size: 12px;
  }

}


@media(max-width:375px) {
  .footer-box02 .mark {
    flex-direction: column;
  }

  .footer-box01 .guide {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
    text-align: center;
  }

  .footer-box01 ul li {
    display: block;
    position: relative;
    line-height: 40px;

    flex: 1 auto;
  }
  .footer-box01 .family-site li + li{}
  .footer-box01 .family-site{display: flex; gap:10px; flex-wrap: wrap;}
  .select_topDrop .selected > a  { padding:15px; width: 100%; }
  .top_banner .con .left::before {
    background-image: url('../images/covid_warning.png');
    width: 35px;
    height: 51px;
    background-size: 35px 36px;
    background-position: 0 8px;
  }

  .banner-close-area input[type=checkbox]+label {
    font-size: 13px;
  }

  .sec01_v2 .main_slider.full-size-slick .slick-dots {
    bottom: 42px;
    width: 20%;
    left: 8%;
  }

  .sec01_v2 .main_slider.full-size-slick .prevArrow {
    bottom: 27px;
    left: 40%;

  }

  .sec01_v2 .full_slide_paging {
    left: 54%;
    bottom: 27px;
  }

  .sec01_v2 .main_slider.full-size-slick .nextArrow {
    bottom: 27px;
    left: 70%;
  }

  .sec01_v2 .full-stop-play-btn {
    bottom: 26px;
    left: 83%;
  }
  .visual-sheet-area a::before {width:60px; height:60px;}
}


@media (max-width:320px) {
  .main_tab>ul>li>ul {
    left: calc(100% - 298px);
    width: 300px;
  }
}


