@charset "utf-8";

.main .content {
  max-width: 100%;
}

/*** main-slider ***/
.main-slider {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}


.main-slider .slider-for .background {
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.main-slider .slider-for .bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 360px;
  /*transform: scale(1.2) translateY(-5%) rotate(-.01deg);*/
  transform: scale(1.2) rotate(-.01deg);
  transition: 4s linear;
}

.main-slider .slider-for .slick-active .bg-slide {
  /*transform: scale(1.1) translateY(-5%) rotate(0deg);*/
  transform: scale(1.1) rotate(0deg);
  animation: mainscale 5s 4.5s infinite;
}

@keyframes mainscale {
  60% {
    /*transform: scale(1.1) translateY(5%) rotate(-.01deg);*/
    transform: scale(1.1) rotate(-.01deg);
  }

  100% {
    /*transform: scale(1.1) translateY(-5%) rotate(0deg);*/
    transform: scale(1.1) rotate(0deg);
  }
}

.main-slider .slider-for .bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-slider .slider-for .filter {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
  /*backdrop-filter: blur(5px);*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2
}

.main-slider .slider-nav .slide > a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.main-slider .slider-nav .slide > a:focus {
  outline-offset:-2px
}

.main-slider .slider-nav-wrap {
  max-width: 1480px;
  margin: auto;
  position: relative;
  margin-top:-70px;
  padding-left: var(--krds-contents-padding-x);
}

.main-slider .slider-nav .slide {
  width: 100%;
  height: 236px;
}

.main-slider .slider-nav .slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.main-slider .slider-nav .slick-list {

}

.main-slider .slider-nav .slick-track {
  height: 236px;
  overflow: hidden;
  display:none;
}

/*reset*/
.main-slider .slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}

.main-slider .slick-active {
  opacity: .5;
}

.main-slider .slick-current {
  opacity: 1;
}

.main-slider .action {
  display: block;
  margin: 100px auto;
  width: 100%;
  text-align: center;
}

.main-slider .action a {
  display: inline-block;
  padding: 5px 10px;
  background: #f30;
  color: #fff;
  text-decoration: none;
}

.main-slider .action a:hover {
  background: #000;
}

.main-slider .slick-next {
  right: auto;
  left: 90%;
}

.main-slider .slick-prev {
  left: 85%
}

.main-slider .slick-prev,
.main-slider .slick-next {
  z-index: 1000;
  top: auto;
  bottom: -70px;
}

.main-slider .slick-dotted.slick-slider {
  margin: 0;
  left:140px;
}

.main-slider .slick-dots {
  left: 0;
  bottom: -20px;
  text-align: left;
  /*width:60%;
  display:table;
  table-layout: fixed;
  overflow:hidden;
  */
}

.main-slider .slick-dots li button:before {
  font-size: 25px;
  color: #fff;
  opacity: 0.5;
  width: 15px;
  height: 15px
}

.main-slider .slick-active {
  opacity: 1
}

.main-slider .slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
  font-size: 46px;
  top: -2px
}

/*
.main-slider .slick-dots li{
  width:auto;
  height:5px;
  margin:0;
  display:table-cell;
  vertical-align: middle;
}

.main-slider .slick-dots li button{
  background:rgba(255,255,255,.5);
  height:5px;
  padding:0;
  width:100%
}

.main-slider .slick-dots li button:before{
  content: none
}

.main-slider .slick-dots li.slick-active button:before{
  content: none
}

.main-slider .slick-active{
  opacity:1;
  background:rgba(255,255,255,1);
}
*/
.main-slider .slider-control {
  position: absolute;
  bottom: -25px;
  left: 10px;
  z-index: 1;
  width: 140px;
}

.main-slider .slider-control a,
.main-slider .slider-control button {
  display: inline-block;
  vertical-align: middle;
  margin: 0px 5px;
  cursor: pointer;
}

.main-slider .slider-control span {
  position: absolute;
  z-index: -1;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(1px, 1px, 1px, 1px);
  /*clip-path:inset(50%);*/
  overflow: hidden;
}

.main-slider .num {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 500
}

.main-slider #slider-prev {
  background: url('../images/arrow_left_w.png')no-repeat;
  width: 15px;
  height: 15px
}

.main-slider #slider-next {
  background: url('../images/arrow_right_w.png')no-repeat;
  width: 15px;
  height: 15px
}

.main-slider .btn-pause {
  background: url('../images/slide_playing_btn.png')no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  width:15px;
  height: 15px;
  margin-top: -2px
}

.main-slider .btn-pause.on {
  background: url('../images/slide_play_btn.png')no-repeat;
  background-position: center;
}

/*text*/
.main-slider .text {
  max-width: 1480px;
  padding: var(--krds-padding-8) var(--krds-padding-6);
  margin: auto;
  position: relative;
  z-index: 1100;
}

.main-slider .text-wrap {
  position: absolute;
  z-index: 2;
  top: 40px;
  color: #fff;
  width: 72%
}

.main-slider .text .mtxt {
  font-size: 50px;
  line-height:normal;
  font-weight: bold;
  word-break: keep-all;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  /*
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  */
}

.main-slider .text .stxt {
  font-size: 18px;
  line-height: 23px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.main-slider .text-wrap .more-btn {
  display: block;
  width: 180px;
  background: url(../images/more_icon.png) no-repeat 91% center;
  border: 1px solid #fff;
  color: #fff;
  margin-top: 40px;
  line-height: 54px;
  padding-left: 20px;
  font-size: 20px;
  position: relative;
}

.main-slider .text-wrap .more-btn:focus,
.main-slider .slider-control a:focus, 
.main-slider .slider-control button:focus,
.slick-dots li button:focus{
  outline: 2px dashed #fff !important;
}

.main-slider .text-wrap .more-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: rgba(255, 255, 255, .2);
  transition: all 0.3s ease;
}

.main-slider .text-wrap .more-btn:hover:after {
  left: 0;
  width: 100%;
}

.main-slider .text-wrap .more-btn:active {
  top: 2px;
}



/*** main-section ***/
.main-section {
  padding: var(--krds-padding-10) var(--krds-padding-6);
  width: 100%;
  max-width:1480px;
  margin: auto;
  position: relative;
}

.main-section:last-child {
  padding-bottom: 50px
}

.main-section.first {
  padding-top: 50px
}

.main-section.last{
  padding-bottom:50px
}

.main-section article {
  width: 26%;
  position: relative;
}

.main-section article:first-child {
  width: 40%;
}

.main-section article:last-child {
  margin-right: 0
}

.main-section h2 {
  font-size: 33px;
  line-height:normal;
  font-weight: 600;
  margin-bottom:15px
}

.main-section h2 span {
  display: block;
  font-size: 15px;
  font-weight: normal;
  margin-top: 15px
}

/*section-area*/
.section-area .more-view {
  display: block;
  width: 23px;
  height: 23px;
  background: url(../images/main_more_btn.png) no-repeat center center;
  position: absolute;
  right: 0;
  top: 6px;
  transition: all 0.5s linear;
}

.section-area .more-view:hover {
  transform: rotate(180deg);
}

/***news-board***/
.news-board ul.list {
  width: 100%;
  overflow: hidden;
  background: url(../images/news_background.png) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  padding: 33px;
  height: 342px
}

.news-board ul.list li {
  float: left;
  width: 46%;
  margin: 2%;
}

.news-board ul.list li a {
  display: block;
  padding: 26px 28px;
  background: #fff;
  border-radius: 8px
}

.news-board ul.list li a:hover {
  text-decoration: underline;
}

.news-board .cate {
  font-size: 13px;
  color: #256ef4;
  margin-bottom: 10px
}

.news-board .tit {
  font-size: 17px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 15px;
}

.news-board .date {
  font-size: 14px;
  color: #444;
}

/*** main-notice ***/
.main-notice ul.list li {
  padding: 20px 0;
  /*height: 90px;*/
  line-height: normal;
  border-bottom: 1px solid #e2e7eb
}

.main-notice ul.list li a {
  display: inline-block;
  width: 100%;
}

.main-notice ul.list li:hover a div {
  text-decoration: underline;
}

.main-notice .tit {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 100px);
  font-size:20px
}

.main-notice .date {
  color: #444;
  display: inline-block;
  vertical-align: middle;
  width: 90px;
  font-size: 15px;
  text-align: right;
  font-weight: normal;
}

.main-notice ul.list li.latest {
  padding: 0;
  border: 0;
  height: auto;
}

.main-notice ul.list li.latest a {
  padding: 15px;
  background: #edf6fc;
  border-radius: 10px;
  position: relative;
  transition: all 0.4s;
}

.main-notice ul.list li.latest a::after {
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  position: absolute;
  left: 0;
  transition: all 0.4s;
}

.main-notice ul.list li.latest a:hover {
  background: #e5f4ff
}

.main-notice ul.list li.latest .date-cir {
  display: inline-block;
  vertical-align: middle;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
  color: #444
}

.main-notice ul.list li.latest:hover .date-cir {
  text-decoration: none
}

.main-notice ul.list li.latest .date-cir .month {
  display: block;
  font-size: 25px;
  line-height: 25px;
  color: #256ef4;
  font-weight: 600;
}

.main-notice ul.list li.latest .text {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 90px);
  margin-left: 15px
}

.main-notice ul.list li.latest .tit {
  font-size: 19px;
  line-height: 26px;
  font-weight: 500;
  float: none;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-notice ul.list li.latest .cate {
  background: none;
  height: auto;
  line-height: 0;
  width: auto;
  font-weight: 500;
  font-size: 13px
}

.main-notice ul.list li.latest .con {
  color: #444;
  line-height: 24px;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  height: 52px;
  font-size: 17px;
  text-align: left;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: none
}

.main-notice .notice-tab {
  width: 65%;
  position: absolute;
  right: 40px;
  top: -5px;
}

.main-notice .notice-tab li {
  float: left;
  width: 19.5%;
  margin-right: 0.5%
}

.main-notice .notice-tab li:last-child {
  margin-right: 0
}

.main-notice .notice-tab li a {
  display: block;
  border: 1px solid #e2e7eb;
  border-radius: 8px;
  background: #fff;
  line-height: 45px;
  font-size:20px;
  color: #444;
  text-align: center;
}
/*
.main-notice .notice-tab li a:focus{
  outline: 2px dashed #666 !important;
}
*/
.main-notice .notice-tab li.on a,
.main-notice .notice-tab li a:hover {
  color: #256ef4;
  border: 1px dashed #256ef4;
  font-weight: 800;
  text-decoration: underline;
}

.main-notice .cate-select {
  position: absolute;
  right: 40px;
  top: 0;
  border-radius: 8px;
  box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 5%);
}

.main-notice .cate-select li {
  width: 179px;
  position: relative;
  border-radius: 8px;
  border: 1px solid #e5e8ee
}

.main-notice .cate-select li:last-child {
  margin: 0
}

.main-notice .cate-select li a {
  display: block;
  padding: 0 12px 0 12px;
  font-size: 15px;
  line-height: 40px;
  position: relative;
}

.main-notice .cate-select > ul > li > a::after{
  content: "";
  width:10px;
  height:10px;
  background-image: url(../images/arrow_bottom_sky.png);
  background-repeat: no-repeat;
  background-position: 93% center;
  position:absolute;
  right:10px;
  top:15px
}

.main-notice .cate-select > ul > li > a.on::after {
  transform: rotate(180deg);
}

.main-notice .cate-select li .smenu {
  box-shadow: -2px 4px 4px rgba(0, 0, 0, 0.04);
  width: 100%;
  position: absolute;
  z-index: 200;
  /*bottom:50px;*/
  border: 1px solid #dfe4ea;
  background-color: #f5fafe;
  border-radius: 8px;
  /*overflow: hidden;*/
  display: none
}

.main-notice .cate-select li .smenu li {
  width: 100%;
  border: 0;
  float: none;
}

.main-notice .cate-select li .smenu li a {
  line-height: 40px;
  font-size: 13px;
  border-bottom: 1px solid #dfe4ea;
  padding-left: 15px;
  font-weight: normal;
}
/*
.main-notice .cate-select li .smenu li a:focus {
  border: 1px dashed #555 !important;
  outline: inherit !important;
}
*/
.main-notice .cate-select li .smenu li:last-child a {
  border-bottom: 0
}

.main-notice .cate {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  font-size: 12px;
  width: 75px;
  height: 21px;
  line-height: 21px;
  border-radius: 3px;
  text-align: center;
  color: #0066d1;
  font-weight: 500;
  background: #dff2ff;
}

/*** director-cont ***/
.director-cont .box {
  border: 1px solid #e0e3e9;
  border-radius: 20px;
  padding: 35px;
  height: 234px;
  background-image: url(../images/director_img.png);
  background-repeat: no-repeat;
  background-color:#fff;
  background-position: 155% bottom;
  background-size: 330px
}

.director-cont .menu a {
  display: block;
  width: 172px;
  padding: 0 20px 0 0;
  line-height: 68px;
  background: #fff;
  border: 1px solid #e0e3e9;
  text-align: right;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  transform: translate(0, 0);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.director-cont .menu a:last-child {
  margin-bottom: 0
}

.director-cont .menu a:hover {
  transform: translate(10px, 0);
}

.director-cont .menu a.intro {
  background: #fff url(../images/d_icon01.png) no-repeat 20px center
}

.director-cont .menu a.plan {
  background: #fff url(../images/d_icon02.png) no-repeat 15px center
}

/*** photo-news ***/
.photo-news .box {
  height: 370px;
}

.photo-news li a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e0e3e9;
  background: #fff;
}

.photo-news li a:hover div {
  text-decoration: underline;
}

.photo-news .thumbnail {
  height: 283px;
  overflow: hidden;
}

.photo-news .thumbnail img {
  width: 100%;
  height: 100%;
  transition: all 200ms linear;
  object-fit: cover;
}

.photo-news .thumbnail:hover img {
  transform: scale(1.1);
}

.photo-news .text{
  padding: 24px 20px;
  display: inline-block;
  width: 100%;  
}

.photo-news .tit {
  font-size: 22px;
  font-weight: 500;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 150px);
}

.photo-news .date {
  float: right;
  width: 85px;
  font-size: 15px;
  color: #444;
  text-align: right;
  margin-top:5px
}

/*** report-news ***/
.report-news .box {
  border: 1px solid #e0e3e9;
  border-radius: 20px;
  background: #fff;
  padding: 30px;
  height: 415px;
}

.report-news li.latest {
  border: 0;
  padding: 0 0 15px 0;
  height: auto;
  border-bottom: 1px solid #e2e7eb
}

.report-news li {
  padding: 17px 0;
  display: inline-block;
  height: 63px;
  width: 100%;
  border-bottom: 1px solid #e2e7eb
}

.report-news li a {
  display: block;
  height: 100%
}

.report-news li a:hover div {
  text-decoration: underline;
}

.report-news .tit {
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 90px)
}

.report-news .date {
  float: right;
  width: 80px;
  font-size: 14px;
  color: #444;
  text-align: right;
}

.report-news li.latest .tit {
  font-size: 19px;
  line-height: 26px;
  font-weight: 500;
  float: none;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-news li.latest .con {
  color: #444;
  line-height: 23px;
  font-size: 16px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*** sns-news ***/
.sns-news .box {
  width: 100.3%;
  height: 370px;
  border: 1px solid #e0e3e9;
  background: #fff;
  border-radius: 20px;
}

.sns-news li a {
  display: grid;
  width:100%;
}

.sns-news li a:hover div {
  text-decoration: underline;
}

.sns-news li a:focus{
  border: 0.2rem solid #256ef4 !important;
  box-shadow:0 0 0 0.4rem #256ef4 !important;
  transition: outline 0s, box-shadow 0s !important;
  border-radius:20px;
  outline-offset: -4px;
}

.sns-news .box img {
  width: 100%;
}

.sns-news .thumbnail {
  overflow: hidden;
  height: 283px;
}

.sns-news .thumbnail img {
  width: 100%;
  height: 100%;
  transition: all 200ms linear;
  object-fit: cover;
}

.sns-news .thumbnail:hover img {
  transform: scale(1.1);
}

.sns-news h2 {
  float: left;
}

.sns-news .tab-menu {
  float: left;
  width: 55%;
  margin: 0 0 0 20px
}

.sns-news .tit {
  font-size: 22px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 24px 20px;
  width: 100%;  
}

.sns-news .tab-menu li {
  width: auto;
}

.sns-news .tab-menu li a {
  padding: 0;
  width: 40px;
  height:40px;
}

.sns-news .swiper-slide{
  display: block;
}

.sns-news .swiper-button {
  position: absolute;
  right: 0;
  top: 20px;
  width: 80px
}

.sns-news .swiper-button-next,
.sns-news .swiper-button-prev {
  background: none;
  left: auto;
  right: auto;
  background-color:unset;
  border:0
}

.sns-news .swiper-button-prev {
  left: 0
}

.sns-news .swiper-button-next {
  right: 0
}

.sns-news .swiper-button-next:after,
.sns-news .swiper-button-prev:after {
  color: #000;
  font-size: 13px;
  font-weight: 600
}

.sns-news .swiper-button-pause {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color:unset;
  border:0
}

.sns-news .swiper-button-pause button {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  width: 9px;
  height: 12px;
  position: relative;
}

.sns-news .swiper-button-pause button:after {
  display: block;
  content: '';
}

.sns-news .swiper-button-pause button[aria-pressed="true"]:after {
  border-top: 6px solid transparent;
  border-left: 10px solid #000;
  border-bottom: 6px solid transparent;
}

.sns-news .swiper-button-pause button[aria-pressed="false"]:after {
  width: 9px;
  height: 12px;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  box-sizing: border-box;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
  background-color:inherit !important;
}


/*** result-list ***/
.result-list li {
  width: 100%;
  height: 136px
}

.result-list li a {
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid #e0e3e9;
  padding: 20px 0
}

.result-list li a:hover .text {
  text-decoration: underline;
}

.result-list .thumbnail {
  float: left;
  width: 120px;
  height: 95px;
  border: 1px solid #eee
}

.result-list .thumbnail img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.result-list .text {
  float: left;
  width: 60%;
  margin: 18px 0 0 3%;
}

.result-list .tit {
  font-size: 19px;
  font-weight: 500;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-list .con {
  margin-top: 10px;
  font-size: 15px;
  color: #444;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*** webzine-news ***/
.webzine-news .box {
  background: url(../images/webzine_background.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 305px;
  padding: 30px 40px;
  border: 1px solid #e0e3e9;
  border-top:0;
  overflow: hidden;
  border-radius: 0 0 25px 25px;
}

.webzine-news .title {
  float: left;
  width: 159px;
  letter-spacing: 0;
  text-align: center
}

.webzine-news .thumbnail {
  width: 100%;
  height: 205px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
}

.webzine-news .thumbnail a {
  display: block;
  width: 100%;
  height: 100%
}

.webzine-news .thumbnail a:focus{
  outline: inherit;
}

.webzine-news .thumbnail img {
  width: 100%;
  height: 100%
}

.webzine-news h3 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 5px
}

.webzine-news h3 strong {
  color: #256ef4
}

.webzine-news .btn {
  float: right;
  width: calc(100% - 180px);
  margin: 80px 0 0 0;
  text-align: right;
}

.webzine-news .btn a {
  display: inline-block;
  width: 122px;
  height: 53px;
  line-height: 53px;
  font-weight:500;
  background: #fff;
  border: 1px solid #6fb5ff;
  color: #256ef4;
  text-align: center;
  margin-bottom: 8px;
  border-radius: 5px;
  box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 5%);
  font-size:19px
}

.webzine-news .btn a:last-child {
  background: #256ef4;
  border: 1px solid #256ef4;
  color: #fff
}

.webzine-news .btn a span {
  display: inline-block;
  position: relative;
}

.webzine-news .btn a span::after {
  content: "";
  display: block;
  width: 0;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: 20px;
  background: rgba(0, 162, 255, .2);
}

.webzine-news .btn a:last-child span::after {
  background: rgba(255, 255, 255, .3);
}

.webzine-news .btn a:hover span:after {
  width: 100%;
  transition: width .4s;
}

.webzine-news .btn a:last-child:focus{
  outline: 0.2rem solid #143962 !important;
  box-shadow:0 0 0 0.4rem #143962 !important;  
} 

.webzine-news .swiper-button{
  position:absolute;
}

.webzine-news .swiper-pagination-custom {
  display: flex;
  justify-content: flex-start;
  text-align: center;
}

.webzine-news .custom-bullet {
  width:50%;
  line-height:50px;
  transition: all .3s;
  background:#d3e2eb
}
/*
.webzine-news .custom-bullet:focus {캐스팅
  border: 1px dashed #999 !important;
  outline: inherit !important;
}
*/
.webzine-news .custom-bullet:last-child {
  margin-right: 0;
}

.webzine-news .custom-bullet span {
  display: block;
  height:100%;
  line-height:60px;
  font-size:20px;
  color:#5d5d5d
}

.webzine-news .custom-bullet:hover span {
  background-color:#143962;
  color:#fff;
  font-weight: bold;
}

.webzine-news .swiper-pagination-custom-bullet-active {
  background-color:#d3e2eb;
}

.webzine-news .swiper-pagination-custom-bullet-active span {
  background:#143962;
  text-decoration: underline;
  font-weight: 600;
  color:#fff;
  font-size:20px
}

.webzine-news .swiper-pagination-custom-bullet-active:hover span {
  text-decoration: underline;
  font-weight: 600;
}

.webzine-news .swiper-button {
  position: absolute;
  right: 0;
  top: 20px;
  width: 80px
}

.webzine-news .swiper-button-next,
.webzine-news .swiper-button-prev {
  background: none;
  left: auto;
  right: auto;
  width: auto;
  height: auto;
  border: 0;
  top:10px
}

.webzine-news .swiper-button-prev {
  left: 0
}

.webzine-news .swiper-button-next {
  right: 0
}

.webzine-news .swiper-button-next:after,
.webzine-news .swiper-button-prev:after {
  color: #000;
  font-size: 13px;
  font-weight: 600
}

.webzine-news .swiper-button-pause {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.webzine-news .swiper-button-pause button {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  width: 9px;
  height: 12px;
  position: relative;
}

.webzine-news .swiper-button-pause button::after {
  display: block;
  content: '';
}

.webzine-news .swiper-button-pause button[aria-pressed="true"]:after {
  border-top: 6px solid transparent;
  border-left: 10px solid #000;
  border-bottom: 6px solid transparent;
}

.webzine-news .swiper-button-pause button[aria-pressed="false"]:after {
  width: 9px;
  height: 12px;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  box-sizing: border-box;
}

.webzine-news .wz-tab{
  position:relative;
  width:100%;
  height:365px
}

.webzine-news .wz-tab li{
  float:left;
  width:50%;
}

.webzine-news .wz-tab li .tab{
  width:100%;
  display: block;
  line-height:60px;
  height:60px;
  font-size:20px;
  transition: all .3s;
  background:#d3e2eb;
  text-align:center;
}

.webzine-news .wz-tab li .tab.on{
  background:#143962;
  text-decoration: underline;
  font-weight: 600;
  color:#fff
}

.webzine-news .wz-tab li .tab:hover{
  text-decoration: underline;
  font-weight: 600;
}

.webzine-news .wz-tab li .tab:focus {
  border: 0.2rem solid #256ef4 !important;
  box-shadow:0 0 0 0.4rem #256ef4 !important;
  transition: outline 0s, box-shadow 0s !important;
}

.webzine-news .wz-tab .swiper-slide{
  position:absolute;
  left:0;
  z-index:1000;
  height:auto;
}




/*** banner-slider ***/
.banner-slider {
  width: 100%;
  height:422px;
}

.banner-slider .thumbnail {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom:1px solid #e0e3e9
}

.banner-slider .thumbnail img {
  width: 100%;
  height: 100%;
  transition: all 200ms linear;
}

.banner-slider .thumbnail:hover img {
  transform: scale(1.1);
}

.banner-slider .text {
  padding:20px;
  width: 75%;
}

.banner-slider .tit {
  font-size: 24px;
  font-weight: 500;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.banner-slider .con {
  font-size: 16px;
  color: #444;
  font-weight: 300;
  margin-top: 5px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.banner-slider .swiper {
  border:1px solid #e0e3e9;
  border-radius:20px;
  height: 365px;
}

.banner-slider .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-slider .swiper-slide a:focus{
  outline: none !important;
  border: 0.2rem solid #256ef4;
  box-shadow:0 0 0 0.4rem #256ef4;
  transition: outline 0s, box-shadow 0s;
  border-radius:20px;
}

.banner-slider .swiper-button {
  position: relative;
  z-index:1;
  bottom: 60px;
  padding:0 20px;
}

.banner-slider .swiper-button-prev,
.banner-slider .swiper-button-next,
.banner-slider .swiper-button-pause {
  background-image: none;
  background: #fff;
  border: 1px solid #e0e3e9;
  border-radius: 44px;
  display: block;
  width: 44px;
  height: 44px;
  line-height: 41px;
  text-align: center;
  z-index: 100;
}

.banner-slider .swiper-button-prev {
  left: auto;
  right: 120px;
}

.banner-slider .swiper-button-next {
  right: 20px;
}

.banner-slider .swiper-button-prev:after,
.banner-slider .swiper-button-next:after {
  font-size: 12px;
  /*color: #256ef4;*/
  background-color: #256ef4;
  font-weight: bold;
  position: relative;
  bottom:17px;
}

.banner-slider .swiper-button-pause {
  position: absolute;
  right: 70px;
  bottom:auto;
  line-height: normal;
  cursor: pointer;
}

.banner-slider .swiper-button-pause button {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  float: none;
}

.banner-slider .swiper-button-pause button::after {
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.banner-slider .swiper-button-pause button[aria-pressed="true"]:after {
  border-top: 6px solid transparent;
  border-left: 10px solid #444;
  border-bottom: 6px solid transparent;
}

.banner-slider .swiper-button-pause button[aria-pressed="false"]:after {
  width: 9px;
  height: 12px;
  border-left: 2px solid #256ef4;
  border-right: 2px solid #256ef4;
  box-sizing: border-box;
}

.banner-slider .swiper-pagination {
  position: relative;
  bottom:-10px;
  text-align: left;
  z-index: 1
}

.banner-slider .swiper-pagination-current {
  font-weight: bold;
  font-size: 23px
}

.banner-slider li a {
  width: 100%
}

/*** info-link ***/
.main-section article.info-link {
  width: 48.5%;
  margin-right: 3%;
  background: #edf6fc;
  border-radius: 20px;
  padding: 60px;
  height: 645px;
  display: inline-block;
  position: relative;
}

.main-section article.info-link:last-child {
  margin-right: 0
}

.main-section article.info-link h2 {
  margin-bottom: 30px
}

.info-link .box {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  float: left;
  width: 49%;
  margin: 0 2% 2% 0;
  height: 207px
}

.info-link .box h3 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 20px
}

.info-link .box .list a {
  font-size: 15px;
  letter-spacing: -0.5px;
  color: #5d6166;
  display: block;
  line-height: 18px;
  margin-bottom: 12px
}

.info-link .box .list a:last-child {
  margin-bottom: 0
}

.info-link .box .list a span {
  display: inline-block;
  position: relative;
  font-size: 14px
}

.info-link .box .list a span::after {
  content: "";
  display: block;
  width: 0;
  height: 9px;
  position: absolute;
  left: 5px;
  bottom: 0px;
  background: rgba(0, 153, 255, .3);
}

.info-link .box .list a:hover span:after {
  width: 98%;
  transition: width .4s;
}

.info-link .box.tri {
  width: 32%;
  margin: 0 2% 2% 0
}

.info-link .box.full {
  width: 100%;
  margin-top: 15px
}

.main-section article.info-link.system {
  background: #edf6fc url(../images/system_deck_bg.png) no-repeat 95% 20px
}

.info-link.system::after {
  content: "";
  position: absolute;
  z-index: 900;
  right: 30px;
  top: 10px;
  width: 240px;
  height: 154px;
  background: url(../images/system_deck_motion.png) no-repeat;
  /*animation: shape 0.9s ease-in 0s infinite alternate;*/
  animation: shape 1.3s linear 0s infinite alternate;
}

@keyframes shape {
  0% {
    margin-top: 0px;
  }

  100% {
    margin-top: 15px;
  }
}

.info-link .box.last {
  margin-right: 0
}

.main-section article.info-link.data {
  background: #edf6fc url(../images/data_deck_bg.png) no-repeat 90% 25px;
  background-size: 150px
}

.info-link.data::after {
  content: "";
  position: absolute;
  z-index: 900;
  right: 45px;
  top: 30px;
  /*animation: shape 0.9s ease-in 0s infinite alternate;*/
  animation: shape 1.3s linear 0s infinite alternate;
  width: 165px;
  height: 127px;
  background: url(../images/data_deck_motion.png) no-repeat;
}

@keyframes shape {
  0% {
    margin-top: 0px;
  }

  100% {
    margin-top: 15px;
  }
}

/*** tab-menu ***/
.tab-menu {
  display: inline-block;
  width: 100%;
  margin-bottom: 3px;
}

.tab-menu li {
  float: left;
  width: 24.6%;
  margin-right: 0.5%
}

.tab-menu li:last-child {
  margin-right: 0
}

.tab-menu li a {
  display: block;
  border: 1px solid #e2e7eb;
  background: #fff;
  line-height: 44px;
  height: 44px;
  font-size: 16px;
  font-weight: bold;
  color: #444;
  padding: 0px 12px 0 0;
  border-radius: 8px;
  text-align: right;
  background-position: center;
  background-repeat: no-repeat;
}

.tab-menu li a:hover, .tab-menu li.active a {
  border-bottom: 4px solid #aaa;
}

.tab-menu li a:focus {
  /*border: 2px dashed #999 !important;*/
  outline: inherit !important;
}

/*blog*/
.tab-menu li a.blog {
  background-image: url(../images/blog_icon.png)
}

.tab-menu li.active a.blog, .tab-menu li a.blog:hover {
  background-image: url(../images/blog_icon_on.png);
  color: #000;
}

/*facebook*/
.tab-menu li a.facebook {
  background-image: url(../images/facebook_icon.png)
}

.tab-menu li.active a.facebook, .tab-menu li a.facebook:hover {
  background-image: url(../images/facebook_icon_on.png);
  color: #000
}

/*instagram*/
.tab-menu li a.instagram {
  background-image: url(../images/instagram_icon.png)
}

.tab-menu li.active a.instagram, .tab-menu li a.instagram:hover {
  background-image: url(../images/instagram_icon_on.png);
  color: #000
}

/*youtube*/
.tab-menu li a.youtube {
  background-image: url(../images/youtube_icon.png)
}

.tab-menu li.active a.youtube, .tab-menu li a.youtube:hover {
  background-image: url(../images/youtube_icon_on.png);
  color: #000
}

/*** public_sercive ***/
.main-section.public-sercive {
  padding: 50px 0
}

.public-sercive {
  background: url(../images/public_background.png) no-repeat center center;
  background-size: cover;
  margin: 30px 0;
}

.public-sercive .section-area {
  position: relative;
}

.public-sercive::after {
  content: "";
  position: absolute;
  width: 132px;
  height: 165px;
  left: 19%;
  bottom: -8px;
  background: url(../images/public_character.png) no-repeat;
}

.public-sercive::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 32px;
  top: 45%;
  left: 18%;
  background: url(../images/public_character_deco.png) no-repeat;
  animation: public 0.4s linear 0s infinite alternate;
}

.public-sercive::after,
.public-sercive::before {
  content: none
}

@keyframes public {
  0% {
    margin-top: 0px;
  }

  100% {
    margin-top: 5px;
  }
}

.public-sercive h2 {
  float: left;
  width: 12%;
  margin: 0;
  margin-top: 25px
}

.public-sercive h2 span {
  word-break: keep-all;
  line-height: 23px;
  width: 250px;
}

.public-sercive ul {
  float: right;
  width: 83%;
  display: table;
  table-layout: fixed;
}

.public-sercive li {
  display: table-cell;
  padding: 0px 7px;
}

.public-sercive li a {
  display: block;
  background: #fff;
  border-radius: 8px;
  width: 100%;
  height: 130px;
  text-align: center;
  padding-top: 75px;
  background-repeat: no-repeat;
  background-position: center 20px;
  border: 1px solid #e5f2f6;
  position: relative;
  overflow: hidden;
  font-size: 15px;
  transition: all ease-in-out .2s;
}

.public-sercive li a:hover {
  border: 1px solid #3ba9fb;
  font-weight: bold;
}

.public-sercive li:first-child a {
  background-image: url(../images/public_icon01.png);
}

/*민원신청*/
.public-sercive li:nth-child(2) a {
  background-image: url(../images/public_icon02.png);
}

.public-sercive li:nth-child(3) a {
  background-image: url(../images/public_icon03.png);
}

.public-sercive li:nth-child(4) a {
  background-image: url(../images/public_icon04.png);
}

.public-sercive li:nth-child(5) a {
  background-image: url(../images/public_icon05.png);
}

.public-sercive li:nth-child(6) a {
  background-image: url(../images/public_icon06.png);
}

.public-sercive li:nth-child(7) a {
  background-image: url(../images/public_icon07.png);
}

.public-sercive li:nth-child(8) a {
  background-image: url(../images/public_icon08.png);
}



/*** service-menu ***/
.service-menu {
  position: relative;
}

.main-section article.service-menu{
  width:100%
}
/*
.service-menu .link-btn{
  display: inline-block;
  vertical-align: middle;
  line-height: 52px;
  height:52px;
  width:180px;
  font-size:20px;
  font-weight: 600;
  border-radius: 52px;
  background: linear-gradient(to bottom, #fff, #edf6fc);
  border: 2px solid #004083;
  color: #004083;
  box-shadow: 2px 2px 5px 2px rgb(0 0 0 / 10%);
  transition: all ease-in-out .3s;
  margin:-25px 0 0 10px;
  position:relative;
}

.service-menu .link-btn::after{
  content: "";
  background-image: url(../images/e_logo.png);
  background-repeat: no-repeat;
  height: 26px;
  width: 138px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.service-menu .link-btn:hover{
  border: 2px solid #256ef4;
  background:#fff;
  color: #256ef4;
}
*/
.service-menu .s-menu li > a {
  padding-top:92px;
  height:138px;
  font-size:16px;
  line-height:22px;
  width:100%
}
/*
.service-menu .s-menu li > a:focus {
  outline: 2px dashed #666 !important;
}
*/
.service-menu .s-menu li > a:after {
  content: '';
  width:84px;
  height:84px;
  border-radius:84px;
  display: block;
  position: absolute;
  top:0;
  left: 50%;
  transform: translateX(-50%);
  background-color:#fff;
  background-repeat: no-repeat;
  background-position: center;
  border:2px solid #0059bb;
  background-size: 33px;
}

.service-menu .s-menu li:hover > a::after {
  /*animation: moveCircle 0.4s 1 forwards;*/
  transform: translateY(-20px);
  left:25%;
  background-color:#0059bb;
  animation: moveCircle2 0.8s 1 forwards;
}

@keyframes moveCircle2 {
  0% {transform: rotateY(0deg);}
  100% {transform: rotateY(360deg);}
}

.service-menu li.s1 a:after {background-image: url(../images/ic_ms_01.svg);}
.service-menu li.s2 a:after {background-image: url(../images/ic_ms_02.svg);}
.service-menu li.s3 a:after {background-image: url(../images/ic_ms_03.svg);}
.service-menu li.s4 a:after {background-image: url(../images/ic_ms_04.svg); background-size: 28px;}
.service-menu li.s5 a:after {background-image: url(../images/ic_ms_05.svg);}
.service-menu li.s6 a:after {background-image: url(../images/ic_ms_06.svg);}
.service-menu li.s7 a:after {background-image: url(../images/ic_ms_07.svg);}
.service-menu li.s8 a:after {background-image: url(../images/ic_ms_08.svg); background-size: 25px;}
.service-menu li.s9 a:after {background-image: url(../images/ic_ms_09.svg);}
.service-menu li.s10 a:after {background-image: url(../images/ic_ms_10.svg);}
.service-menu li.s11 a:after {background-image: url(../images/ic_ms_11.svg);}
.service-menu li.s12 a:after {background-image: url(../images/ic_ms_12.svg);}
.service-menu li.s13 a:after {background-image: url(../images/ic_ms_13.svg); background-size: 35px;}
.service-menu li.s14 a:after {background-image: url(../images/ic_ms_14.svg); background-size: 35px;}
.service-menu li.s15 a:after {background-image: url(../images/ic_ms_15.svg); background-size: 40px;}
.service-menu li.s16 a:after {background-image: url(../images/ic_ms_16.svg); background-size: 45px;}
.service-menu li.s17 a:after {background-image: url(../images/ic_ms_17.svg); background-size: 40px;}
.service-menu li.s18 a:after {background-image: url(../images/ic_ms_18.svg); background-size: 40px;}

.service-menu li.s1 a:hover:after {background-image: url(../images/ic_ms_01_on.svg);}
.service-menu li.s2 a:hover:after {background-image: url(../images/ic_ms_02_on.svg);}
.service-menu li.s3 a:hover:after {background-image: url(../images/ic_ms_03_on.svg);}
.service-menu li.s4 a:hover:after {background-image: url(../images/ic_ms_04_on.svg);}
.service-menu li.s5 a:hover:after {background-image: url(../images/ic_ms_05_on.svg);}
.service-menu li.s6 a:hover:after {background-image: url(../images/ic_ms_06_on.svg);}
.service-menu li.s7 a:hover:after {background-image: url(../images/ic_ms_07_on.svg);}
.service-menu li.s8 a:hover:after {background-image: url(../images/ic_ms_08_on.svg);}
.service-menu li.s9 a:hover:after {background-image: url(../images/ic_ms_09_on.svg);}
.service-menu li.s10 a:hover:after {background-image: url(../images/ic_ms_10_on.svg);}
.service-menu li.s11 a:hover:after {background-image: url(../images/ic_ms_11_on.svg);}
.service-menu li.s12 a:hover:after {background-image: url(../images/ic_ms_12_on.svg);}
.service-menu li.s13 a:hover:after {background-image: url(../images/ic_ms_13_on.svg);}
.service-menu li.s14 a:hover:after {background-image: url(../images/ic_ms_14_on.svg);}
.service-menu li.s15 a:hover:after {background-image: url(../images/ic_ms_15_on.svg);}
.service-menu li.s16 a:hover:after {background-image: url(../images/ic_ms_16_on.svg);}
.service-menu li.s17 a:hover:after {background-image: url(../images/ic_ms_17_on.svg);}
.service-menu li.s18 a:hover:after {background-image: url(../images/ic_ms_18_on.svg);}

/*** full ***/
.service-menu.full .tab-content {
  width: calc(100% - 480px);
  right: 100px;
  top: 60px;
}

.service-menu .s-menu > ul{
  display: table;
  table-layout: fixed;
  width:100%
}
.service-menu .s-menu > ul > li{
  display: table-cell;
  vertical-align: middle;
  text-align:center;
}

.service-menu .s-menu > ul > li a{
  position: relative;
  display: block;
}

.service-menu .stab::after {
  content: "";
  position: absolute;
  z-index: 900;
  left: 100px;
  top: 25px;
  width: 249px;
  height: 180px;
  background-image: url(../images/whale_bg.png);
  background-repeat: no-repeat;
  background-size:249px;
}

.service-menu .stab::before{
  content: "";
  position: absolute;
  z-index: 900;
  left: 100px;
  top: 15px;
  width: 249px;
  height: 180px;
  background-image: url(../images/whale_img.png);
  background-repeat: no-repeat;
  background-size:249px;
  /*animation: shape 0.9s ease-in 0s infinite alternate;*/
  animation: shape 1.3s linear 0s infinite alternate; 
}

@keyframes shape {
  0% {
    margin-top: 0px;
  }

  100% {
    margin-top: 15px;
  }
}
/*** //full ***/


.service-menu .swiper {
  width: 95%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:2px;
}

.service-menu .swiper-wrapper {
  display: flex;
  text-align: center;
  margin-top:15px
}

.service-menu .swiper-slide {
  width: auto;
  height:auto;
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;*/
  display: flex;
  /*-webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;*/
  justify-content: center;
  /*-webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;*/
  align-items: center;
}

.service-menu .swiper-button-next, .service-menu .swiper-button-prev {
  background-image: none;
  margin-top:10px;
  top:30%
}

.service-menu .swiper-button-prev:after, .service-menu .swiper-button-next:after {
  font-size: 25px;
  color: #000;
  font-weight: bold
}

.service-menu .swiper-button-next, .swiper-container-rtl .swiper-button-prev{
  right:0 !important;
  background-color:unset;
}

.service-menu .swiper-button-prev, .swiper-container-rtl .swiper-button-next{
  left:0 !important;
  background-color:unset;
}

.service-menu .swiper-button-prev:after {
  /*content: url(../images/arrow_prev.png); opacity:0.5*/
  content: "prev";
}

.service-menu .swiper-button-next:after {
  /*content: url(../images/arrow_next.png); opacity:0.5*/
  content: "next";
}

.service-menu .stab{
  height:234px;
  background-image: url(../images/public_background.png);
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  border-radius:25px;
}

.service-menu .stab > ul{
  padding:55px;
  height:100%;
}

.service-menu .stab > ul > li{
  width:100%;
  display: flex;
  flex-wrap: wrap;
}

.service-menu .stab > ul .tm{
  width:174px;
  line-height:54px;
  border:1px dashed #a8b0b8;
  background-color:#fff;
  font-size:20px;
  color:#6a88a9;
  transition: all ease-in-out .3s;
  border-radius:5px;
  text-align:center;
  margin-bottom:10px;
}

.service-menu .stab > ul .on .tm{
  border:1px solid #143962;
  background-color:#fff;
  font-weight:600;
  color:#143962
}

.service-menu .tab-content{
  width: calc(100% - 280px);
  position: absolute;
  right: 30px;
  top: 30px;
}





/*** popupzone ***/
.popup-zone {
  position: absolute;
  z-index: 3000;
  top: 370px;
  left: 0;
}

.popup-zone .popup-btn {
  background: #256ef4;
  color: #fff;
  display: inline-block;
  width: 77px;
  height: 65px;
  border-radius: 0 10px 10px 0;
  /*border:3px dotted rgba(255,255,255,.3);*/
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  position: relative;
  padding: 12px 10px 0;
  word-break: keep-all;
}

.popup-zone .popup-btn strong {
  display: block
}

.popup-zone a:focus, .popup-zone a:active{
  outline: inherit !important;
  border:2px dashed #666 !important;
  opacity:1
}


#popup-slider {
  width: 450px;
  padding: 25px 25px 30px;
  background: rgba(255, 255, 255, 1);
  border-radius: 0 25px 25px 0;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 5%);
  margin-top: 0;
  position: relative;
}

#popup-slider .swiper {
  width: 100%;
  height: 100%;
}

#popup-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
}

#popup-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#popup-slider .swiper-pagination {
  position: inherit;
  top: 5px
}

#popup-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  text-align: center;
  line-height: 8px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  vertical-align: middle;
}

#popup-slider .swiper-pagination-bullet-active {
  color: #fff;
  background: #256ef4;
  width: 13px;
  height: 13px;
}

#popup-slider .swiper-button-next:after,
#popup-slider .swiper-button-prev:after {
  color: #256ef4;
  font-size:13px;
  font-weight:bold;
}

#popup-slider .swiper-button-prev,
#popup-slider .swiper-button-next {
  background: #fff;
  box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 5%);
  border-radius:2px;
}

#popup-slider .swiper-button-prev{
  border-radius:0px 7px 7px 0;
}

#popup-slider .swiper-button-next{
  border-radius:7px 0 0 7px;
}

#popup-slider .swiper-button-next, 
#popup-slider .swiper-container-rtl .swiper-button-prev{
  width:18px;
  right:0px;
}

#popup-slider .swiper-button-prev, 
#popup-slider .swiper-container-rtl .swiper-button-next{
  width:18px;
  left:0px;
}

#popup-slider h6 {
  font-size: 21px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px
}

#popup-slider h6::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 3px solid #256ef4;
  background: #fff;
  position: absolute;
  left: 0;
  top: 7px
}

#popup-slider .ckdbox {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 15px;
}


#popup-slider .swiper-button-prev.swiper-button-disabled, 
#popup-slider .swiper-button-next.swiper-button-disabled{
  display:none;
}


/*
.noimage img{
  width:65% !important;
}
*/
@media screen and (max-width:1680px) {
  .main-slider .slider-nav {
    width: 100%;
  }

  .main-slider .text .mtxt {
    font-size: 55px;
    line-height: 65px
  }

  .main-slider .text-wrap .more-btn {
    margin-top: 50px
  }

  .main-section {
    padding: var(--krds-padding-10) var(--krds-contents-padding-x) var(--krds-padding-8); 
  }

  .main-section.public-sercive {
    padding: 50px
  }

  .service-menu ul{
    margin-top:0
  }

  .service-menu h2 {
    margin-bottom: 20px
  }

  .service-menu li {
    margin-right: 1.8%
  }

  .service-menu li:nth-child(9) {
    margin-right: 1.8%;
  }

  .info-link .box {
    padding: 30px
  }

  .public-sercive li a {
    height: 140px;
    font-size: 15px;
    padding-top: 90px;
    background-position: center 25px
  }

  .webzine-news .btn {
    width: calc(100% - 190px)
  }

  .webzine-news .btn a {
    width: 135px;
  }

  .webzine-news .box {
    padding: 30px;
  }
}

@media screen and (max-width:1479px) {
  .main-slider .text .mtxt {
    font-size: 50px;
    line-height: 60px
  }

  .main-section article, .main-section article:first-child {
    width: 30.6%
  }

  .main-section article.service-menu{
    width:100%
  }

  .main-section article.info-link {
    width: 100%;
    float: none;
    margin: 0;
    height: auto;
  }

  .main-section article.info-link:last-child {
    margin-top: 40px
  }

  .service-menu li {
    margin-top: 0
  }

  .main-notice .notice-tab {
    width: 55%
  }

  .main-notice .notice-tab li a {
    font-size: 15px;
    line-height: 38px;
  }

}

@media screen and (max-width:1399px) {
  .section-area{gap:60px 4%;}

  .main-slider .text-wrap .more-btn {
    width: 150px;
    line-height: 45px;
    font-size: 15px
  }

  .main-section h2 {
    font-size: 30px
  }

  .main-section article, .main-section article:first-child {
    width: 48%;
  }

  .main-section article:nth-child(2n) {
    margin-right: 0
  }

  .main-section article:first-child {
    width: 100%
  }

  .main-section article.director-cont {
    width: 100%
  }

  .main-notice ul.list li{
    padding:24px 0;
    height:80px;
  }

  .main-notice ul.list li.latest .con {
    height: 48px
  }

  .news-board ul.list {
    padding: 23px;
    height: 320px
  }

  .news-board ul.list li a {
    padding: 20px
  }

  .director-cont .box {
    background-size: 180px;
    background-position: 100% bottom;
    height: auto;
  }

  .director-cont .menu a {
    font-size: 17px;
    line-height: 55px;
    width: 185px;
    display: inline-block;
  }

  .webzine-news .box {
    padding: 10px 45px;
  }

  .report-news .box, .photo-news .box, .sns-news .box {
    height: 340px
  }

  .report-news li.latest .tit, .photo-news .tit, .sns-news .tit, .main-notice ul.list li.latest .tit, .result-list .tit, .banner-slider .tit {
    font-size: 19px
  }

  .sns-news .tit, .photo-news .text{
    padding:20px;
  }

  .report-news li:nth-child(4) {
    display: none
  }

  .report-news .tit, .main-notice .tit {
    font-size: 17px;
  }

  .report-news li.latest .con, .photo-news .con, .main-notice ul.list li.latest .con, .banner-slider .con {
    font-size: 15px
  }

  .report-news .date, .main-notice .date, .photo-news .date {
    font-size: 14px;
  }

  .banner-slider .con {
    font-size: 15px;
  }

  .banner-slider .swiper-pagination-current {
    font-size: 20px
  }

  .banner-slider .swiper-pagination-fraction {
    font-size: 15px;
  }

  .result-list li {
    height: 110px
  }

  .result-list li a {
    padding: 14px 0
  }

  .result-list .text {
    margin: 16px 0 0 3%
  }

  .result-list .con {
    margin-top: 5px
  }

  .result-list .thumbnail {
    width: 100px;
    height: 81px
  }

  .service-menu li a::before {
    width: 95px;
    height: 95px
  }

  .public-sercive ul {
    float: none;
    width: 100%
  }

  .public-sercive li:first-child {
    padding-left: 0
  }

  .public-sercive li:last-child {
    padding-right: 0
  }

  .public-sercive h2 {
    width: 100%;
    margin: 0;
    margin-bottom: 20px
  }

  .public-sercive h2 span {
    width: 100%
  }

  .public-sercive::after {
    background-size: 70%;
    top: 35px;
    left: auto;
    right: 30px
  }

  .public-sercive::before {
    left: auto;
    right: 150px;
    top: 20px
  }

  .webzine-news .btn {
    margin: 17% 0 0 0
  }

  .webzine-news .btn a {
    width: 130px
  }

  .tab-menu li a {
    font-size: 15px;
    line-height: 44px
  }

  .info-link .box h3 {
    font-size: 20px
  }

  .photo-news .thumbnail, .sns-news .thumbnail {
    height: 268px;
  }
}

@media screen and (max-width:1279px) {
  .main-slider .text-wrap {
    width: 43%;
  }

  .main-slider .text .mtxt {
    font-size: 45px;
    line-height: 55px
  }

  .main-slider .slick-dots {
    bottom: -35px
  }

  .main-slider .slick-prev {
    left: 81%
  }

  .main-slider .slick-next {
    left: 88%
  }

  .main-slider .slider-control {
    bottom: -45px;
  }

  .service-menu li a {
    font-size: 15px
  }

  .service-menu li span {
    font-size: 13px
  }

  .banner-slider {
    width: 100%
  }

  .service-menu.full .tab-content{
    width: calc(100% - 300px);
    right: 40px;
  }

  .service-menu .stab::after, .service-menu .stab::before{
    left:30px
  }
}


@media screen and (max-width:1025px) {
  .banner-slider .thumbnail {
    height: 180px
  }

  .public-sercive ul {
    table-layout: inherit;
  }

  .public-sercive li {
    float: left;
    width: 33.3%;
    padding: 3px
  }

  .public-sercive li:first-child {
    padding-left: 3px
  }

  .public-sercive li:last-child {
    padding-right: 3px
  }
}

@media screen and (max-width:999px) {
  body, html .main {
    font-size: 15px
  }

  .main-section.public-sercive {
    margin: 30px 0
  }

  .main-section article.info-link {
    padding: 40px 30px
  }

  .main-section article.info-link.system {
    background-size: 30%
  }

  .main-section h2 {
    font-size: 25px
  }

  .main-slider {
    overflow: inherit;
    height: 300px
  }

  .main-slider .text .mtxt {
    font-size: 40px;
    line-height: 50px
  }

  .main-slider .text .stxt{font-size:16px}

  .main-slider .text-wrap {
    float: none;
    width: 100%;
    display: inline-block;
    padding: 0px 20px;
    left: 0;
  }

  .main-slider .text-wrap .more-btn {
    display: none
  }

  .main-slider .slider-control {
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .8);
    padding: 8px 10px;
    border-radius: 30px;
    width: 165px;
    text-align: center;
  }

  .main-slider .slider-nav {
    display:none;
  }

  .main-slider .slider-for .background, .main-slider .slider-for .bg-slide {
    height: 300px;
  }

  .main-slider .slider-for .bg-slide img{
    object-position: right;
  }

  .main-slider .slick-dots {
    text-align: center;
  }

  .main-slider .slick-dots li button:before {
    color: #b1bdc5;
  }

  .main-slider .slick-dots li.slick-active button:before {
    color: #256ef4;
  }

  .report-news li.latest .tit, .photo-news .tit, .sns-news .tit, .main-notice ul.list li.latest .tit, .result-list .tit, .banner-slider .tit {
    font-size: 18px;
  }

  .report-news li.latest .tit {
    width: 100%
  }

  .report-news .tit, .main-notice .tit, .news-board .tit {
    font-size: 16px;
    line-height: 21px;
    width: calc(100% - 80px);
  }

  .report-news .date, .main-notice .date, .photo-news .date {
    font-size: 13px;
    line-height: 21px;
    width: 73px
  }

  .news-board .date {
    font-size: 13px
  }

  .news-board ul.list {
    height: auto;
  }

  .main-notice .cate-select{
    top:-5px
  }

  .main-notice .cate-select li a {
    line-height: 38px;
    font-size: 15px
  }

  .main-notice ul.list li.latest .con {
    font-size: 15px;
    line-height: 22px;
    height: 40px
  }

  .webzine-news h3 {
    font-size: 19px
  }

  .webzine-news .box {
    padding: 20px 35px
  }

  .webzine-news .title {
    width: 150px
  }

  .webzine-news .btn {
    width: calc(100% - 160px);
    margin: 70px 0 0 0
  }

  .webzine-news .btn a {
    width: 115px;
    font-size: 15px;
    height: 48px;
    line-height: 48px
  }

  .banner-slider .thumbnail {
    height: 190px
  }

  .info-link.system::after {
    background-size: 200px;
    top: 40px;
    right: 0px
  }

  .info-link.data::after {
    background-size: 145px;
    top: 60px;
    right: 0px
  }

  .main-section.public-sercive {
    padding: 50px 40px
  }

  .popup-zone {
    top: 116px;
    left: 0;
  }

  .popup-zone .popup-btn {
    width: 130px;
    height: auto;
    padding: 10px;
    border-radius: 0 10px 10px 0
  }

  .popup-zone .popup-btn strong {
    display: inline-block;
    margin-left: 5px
  }

  #popup-slider {
    margin: 0;
    width: 100%;
    border-radius: 0;
  }

  .service-menu.full .tab-content{
    width: 100%;
    position: relative;
    right: auto;
  }

  .service-menu .stab::after, .service-menu .stab::before{
    content:none;
  }
}

@media screen and (max-width:767px) {
  .main-section.public-sercive {
    margin: 25px 0
  }

  .main-section.first {
    padding-top: 30px
  }

  .main-section article {
    width: 100%;
  }

  .main-section article:last-child {
    margin: 0
  }

  .main-section article.info-link {
    background: none !important;
    padding: 0
  }

  .main-section article.info-link h2 {
    margin-bottom: 20px
  }

  .main-section article.info-link h2 span {
    display: none
  }

  .main-section h2 span {
    display: none
  }

  .section-area{
    gap:50px 0;
  }

  .section-area .more-view{
    top:0
  }

  .main-slider .text .mtxt {
    font-size: 35px;
    line-height: 44px;
    margin-bottom: 20px
  }

  .main-slider .slider-nav-wrap{
    margin-top:-90px
  }

  .main-slider .slick-dots {
    bottom: -25px
  }

  .main-slider .slick-dots {
    width: 90%;
    left: 50%;
    transform: translateX(-50%)
  }

  /*.main-slider .slider-nav-wrap{top:194px; width:90%}*/

  /*
  .main-slider .slick-dots li button{background:#d9e4eb}
  .main-slider .slick-dots li.slick-active button{background:#256ef4}
  .main-slider .slick-dots .slick-active{background:#256ef4}
  */
  .info-link .box {
    background: #edf6fc;
    border: 1px solid #e8f1f6;
    padding: 20px;
    float: none;
    width: 100% !important;
    height: auto !important;
    margin: 0 0 10px 0 !important;
  }

  .info-link .box:last-child {
    margin-bottom: 0 !important
  }

  .info-link .box h3 {
    font-size: 17px
  }

  .info-link::after {
    display: none
  }

  .director-cont .box {
    padding: 20px
  }

  .director-cont .menu a {
    display: block;
    font-size: 15px;
    line-height: 45px;
    background-size: 16px !important;
    width: 150px
  }

  .report-news .box, .photo-news .box, .sns-news .box {
    height: auto;
  }

  .report-news li.latest {
    padding: 0 0 10px 0
  }

  .report-news li.latest .tit, .photo-news .tit, .sns-news .tit, .main-notice ul.list li.latest .tit, .result-list .tit, .banner-slider .tit {
    font-size: 17px;
    line-height: 25px
  }

  .sns-news .tab-menu {
    margin: 0 0 0 10px
  }

  .sns-news .tab-menu li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-position: center
  }

  .main-notice ul.list li, .report-news li {
    padding: 20px 0;
    height: auto;
  }

  .main-notice .cate-select li a {
    font-size: 13px;
    line-height: 34px;
    padding: 0px 10px;
  }

  .service-menu .link-btn{
    width:100%;
    display: block;
    height:48px;
    line-height:48px;
    margin:10px 0 0 0
  }
  
  .service-menu .link-btn::after{
    background-size: 110px;
    height: 22px;
    width: 110px;
  }

  .photo-news .thumbnail {
    height: 180px
  }

  .tab-menu li a {
    font-size: 13px;
    line-height: 38px;
    padding: 0px 8px 0 0;
    background-position: 8px center
  }

  .webzine-news .box {
    height: 300px;
  }

  .webzine-news h3 {
    font-size: 17px
  }

  .webzine-news .btn {
    margin: 70px 0 0 0
  }

  .webzine-news .btn a {
    font-size: 14px;
    width: 90%
  }

  .webzine-news .wz-tab li .tab{
    font-size:16px;
    line-height:48px;
    height:48px;
  }

  .webzine-news .custom-bullet span{
    font-size:16px; 
    line-height:48px;
  }

  .banner-slider .thumbnail {
    height: 220px
  }

  .service-menu .stab{background-image: none; border-radius:0; height:auto; overflow: inherit;}
  /*.service-menu .stab > ul{padding:0;}
  .service-menu .stab > ul > li{display: inline;}
  .service-menu .stab > ul .tm{display: inline-block; line-height:46px; width:47%; font-size:16px}
  .service-menu .s-menu li > a{font-size:14px; line-height:20px;}*/
  .service-menu .tab-content{width:100%; top:auto; right: auto; left:50%; transform: translateX(-50%);}
  .service-menu.full .tab-content{top:auto}
  .service-menu .s-menu{width:100%}
  .service-menu .s-menu > ul{display: flex; flex-wrap: wrap;}
  .service-menu .s-menu > ul > li{width:33.3%; margin:0;}
  .service-menu .s-menu > ul > li a{font-size:14px}
  .public-sercive::after {top: -10px;right: 0}
  .public-sercive::before {top: -20px;right: 120px}
  .main-section.public-sercive {padding: 30px 20px}
  .public-sercive li a {font-size: 13px;height: 110px;line-height: normal;padding-top: 70px;background-position: center 15px;background-size: 40px !important}
  .popup-zone {width: 100%}
  .popup-zone .popup-btn {font-size: 14px;width: 110px}

  #popup-slider {padding: 20px;width: 100%}
  #popup-slider h6 {font-size: 19px}
  #popup-slider .close-btn {top: 20px}
  #popup-slider .swiper-pagination-bullet {width: 6px;height: 6px;}
  #popup-slider .swiper-pagination-bullet-active{width: 10px;height: 10px;}

}

@media screen and (max-width:375px) {
  .webzine-news .box {height: 270px}
  .webzine-news .title {width: 130px}
  .webzine-news .thumbnail {height: 170px}
  .webzine-news .btn {width: calc(100% - 140px);margin: 60px 0 0 0}
  .report-news .box, .photo-news .box, .sns-news .box {padding: 20px}

}




