@charset "utf-8";

.main .content {
  max-width: 100%;
}

/*** main-slider ***/
.main-slider {
  position: relative;
  padding: var(--krds-padding-10) var(--krds-padding-6);
  width: 100%;
  max-width:1480px;  
  margin: auto;
  overflow:hidden;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
} 

.main-slider .slider-inner{
  width:70%;
  height:419px;
  position: relative;
}

.main-slider .slider-for .background {
  width: 100%;
  height: 419px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius:25px;
  overflow: hidden;
}

.main-slider .slider-for .bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  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, .3);
  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 {
  /*margin: auto;
  width: 100%;
  max-width: 430px;*/
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: 1
}

.main-slider .slider-nav {
  width: 500px;
  height: 235px;
  border:3px solid #fff;
  border-bottom:0;
  border-radius:30px 30px 0 0;
  overflow:hidden;
}

.main-slider .slider-nav .slide {
  width: 100%;
  height: 235px;
}

.main-slider .slider-nav .slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
/*
.main-slider .slider-nav .slick-list {
  border-radius: 0 35px 0 35px;
  box-shadow: 5px 5px 20px 10px rgb(0 0 0 / 40%);
}
*/
.main-slider .slider-nav .slick-track {
  /*height: 340px;*/
  overflow: hidden;
}

/*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;
}

.main-slider .slick-dots {
  left: 0;
  bottom: -20px;
  text-align: left;
  display: none !important;
  /*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: 50px;
  left: 50px;
  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:50px;
  margin: auto;
  position: relative;
  z-index: 1100;
}

.main-slider .text-wrap {
  position: absolute;
  z-index: 2;
  top: 40px;
  color: #fff;
  width: 90%
}

.main-slider .text .mtxt {
  font-size: 47px;
  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 solid #fff !important;
}

.main-slider .slick-dots{
  width:auto
}

.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;
}

.right-section{
  width:26%;
}

.right-section h2{
  font-size: 33px;
  line-height: normal;
  font-weight: 600;
  line-height:70px;
  padding-left:20px
}




/*** 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: 30px;
  border-radius:50px 50px 0 0;
  /*background-color:#edf6fc;
  background-image: url(../images/info_background.png);*/
  background: linear-gradient(180deg, #2c7bd8, #1a51af);
  margin-top:40px;
  color:#fff
}

/*
.main-section.first {
  padding-top: 50px
}
*/

.main-section.last{
  padding-bottom:80px
}

.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 h2{
  float:left
}

.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%;
  float:right;
  margin:-10px 40px 0 0;
  /*position: absolute;
  right: 40px;
  top: -5px;*/
}

.main-notice .notice-tab > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: end; 
}

.main-notice .notice-tab > ul > li {
  float: left;
  width: 19.5%;
  margin-right: 0.5%
}

.main-notice .notice-tab > ul > li:last-child {
  margin-right: 0
}

.main-notice .notice-tab > ul > li > a {
  display: block;
  border: 1px dashed #cdd1d5;
  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 > ul > li.on > a,
.main-notice .notice-tab > ul > li > a:hover {
  color: #256ef4;
  border: 1px solid #256ef4;
  font-weight: 800;
  text-decoration: underline;
}

.main-notice .notice-tab .list{
  position: absolute;
  left:0;
  top:50px;
  width:100%
}

.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-flex;
  width: 100%;  
}

.photo-news .tit {
  font-size: 22px;
  font-weight: 500;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 85px);
}

.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: 55%;
  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: 17px;
  height: 17px;
  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: 11px;
  height: 17px;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  box-sizing: border-box;
}



/*** 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{
  position: relative;
}

.webzine-news .date{
  position: absolute;
  z-index:10;
  right:25px;
  top:15px;
  width:70px;
  height:70px;
  line-height:70px;;
  border-radius:70px;
  text-align:center;
  font-size:20px;
  font-weight:600;
  background-color:#005abd;
  color:#fff
}

.webzine-news .box-wrap {
  background-color:#fff;
  width: 100%;
  /*height: 367px;*/
  border: 1px solid #e0e3e9;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.webzine-news .box{
  padding-top:15px
}

.webzine-news .box a{
  display: block;
  width: 100%;
  height: 100%;
}

.webzine-news .thumbnail {
  width: 100%;
  height: 290px;
}

.webzine-news .thumbnail img {
  width: 100%;
  height: 100%
}

.webzine-news .box a:focus, 
.webzine-news .box a:focus .thumbnail{
  outline: none !important;
  outline: 0.4rem solid #38caff !important;
  box-shadow: 0 0 0 0.4rem #38caff !important;
  transition: outline 0s, box-shadow 0s !important;  
  outline-offset:-4px;
}

.webzine-news .btn {
  width:100%;
  display: table;
  table-layout: fixed;
}

.webzine-news .btn a{
  height:59px;
  line-height:59px;
  display: table-cell;
  vertical-align: middle;
  text-align:center;
  background-color:#fff;
  color:#005abd;
  font-size:20px;
  font-weight:600;
}

.webzine-news .btn a.em{
  background-color:#005abd;
  color:#fff
}




/*** banner-slider ***/
.banner-slider {
  width: 100%;
  /*height:422px;*/
  border:1px solid #e0e3e9;
  border-radius:20px;
  overflow:hidden;
  position: relative;
}

.banner-slider .thumbnail {
  width: 100%;
  height: 351px;
  overflow: hidden;
}

.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-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: absolute;
  z-index:1;
  top:37px;
  right:0;
}

.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: 38px;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 35px;
  text-align: center;
  z-index: 100;
}

.banner-slider .swiper-button-prev {
  left: auto;
  right: 107px;
}

.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;
  mask-size:21px;
}

.banner-slider .swiper-button-pause {
  position: absolute;
  right: 63px;
  bottom:-17px;
  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 {
  line-height: normal;
  height: 25px;
  position: absolute;
  top: 23px;
  left:auto;
  right: 150px;
  width: 40px;
  z-index: 1;
}

.banner-slider .swiper-pagination-current {
  font-size:17px;
}

.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 dashed #cdd1d5;
  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: 1px solid #cdd1d5;
  border-bottom: 4px solid #256ef4;
}

.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;
}

.service-menu .s-menu li > a {
  padding-top:92px;
  height:138px;
  font-size:16px;
  line-height:20px;
  width:100%;
  text-align:center;
}

.service-menu .s-menu li > a:after {
  content: '';
  width:78px;
  height:78px;
  border-radius:10px;
  display: block;
  position: absolute;
  top:0;
  left: 50%;
  transform: translateX(-50%);
  background-color:#fff;
  border:1px solid #dcecf4;
  background-repeat: no-repeat;
  background-position: center;
  background-size:32px;
}

.service-menu.full .s-menu li > a:after{
  /*box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 5%);*/
}

.service-menu .s-menu li:hover > a::after {
  /*animation: moveCircle 0.4s 1 forwards;*/
  transform: translateY(-12px);
  left:12%;
  background-color:#0059bb;
  border:1px solid #0059bb;
  animation: moveCircle2 0.8s 1 forwards;
}

@keyframes moveCircle2 {
  0% {transform: rotateY(0deg);}
  100% {transform: rotateY(360deg);}
}

.service-menu .s-menu > ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap:5px 0;
}
.service-menu .s-menu > ul > li{
  width:33.3%
}

.service-menu .s-menu > ul > li a{
  position: relative;
  display: block;
}

.service-menu li span{
  font-size:12px
}

.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: 24px;}
.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); background-size: 28px;}
.service-menu li.s7 a:after {background-image: url(../images/ic_ms_07.svg); background-size: 28px;} 
.service-menu li.s8 a:after {background-image: url(../images/ic_ms_08.svg); background-size: 21px;}
.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: 35px;}
.service-menu.full li.s16 a:after {background-image: url(../images/ic_ms_16.svg); background-size: 44px;}
.service-menu li.s17 a:after {background-image: url(../images/ic_ms_17.svg); background-size: 38px;}
.service-menu li.s18 a:after {background-image: url(../images/ic_ms_18.svg); background-size: 38px;}
.service-menu li.s19 a:after {background-image: url(../images/ic_ms_19.svg); background-size: 38px;}
.service-menu.full li.s20 a:after {background-image: url(../images/ic_ms_20_.svg);}
.service-menu.full li.s21 a:after {background-image: url(../images/ic_ms_21.svg);}
.service-menu.full li.s22 a:after {background-image: url(../images/ic_ms_22.svg);}
.service-menu.full li.s23 a:after {background-image: url(../images/ic_ms_23.svg);}
.service-menu.full li.s24 a:after {background-image: url(../images/ic_ms_24.svg); background-size:35px;}
.service-menu.full li.s25 a:after {background-image: url(../images/ic_ms_25.svg); background-size:38px;}
.service-menu.full li.s26 a:after {background-image: url(../images/ic_ms_26.svg); background-size:40px;}
.service-menu.full li.s27 a:after {background-image: url(../images/ic_ms_27.svg); background-size:44px;}
.service-menu.full li.s28 a:after {background-image: url(../images/ic_ms_28.svg); background-size:40px;}
.service-menu.full li.s29 a:after {background-image: url(../images/ic_ms_29.svg); background-size:40px;}
.service-menu.full li.s30 a:after {background-image: url(../images/ic_ms_30.svg);}
.service-menu.full li.s31 a:after {background-image: url(../images/ic_ms_31.svg); background-size:38px;}

.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);}
.service-menu li.s19 a:hover:after {background-image: url(../images/ic_ms_19_on.svg);}*/

.service-menu .stab > ul > li > div {
  height:367px;
  background-image: url(../images/public_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border-radius:20px;  
  width:100%;
  position: absolute;
  overflow:hidden;
  top: 50px;
  left:0;
  padding: 40px 20px; 
}

.service-menu .stab::after {
  content: "";
  position: absolute;
  z-index: 900;
  right: -40px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  background-image: url(../images/whale_bg.png);
  background-repeat: no-repeat;
  background-size:150px;
}

.service-menu .stab::before{
  content: "";
  position: absolute;
  z-index: 900;
  right: -40px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  background-image: url(../images/whale_img.png);
  background-repeat: no-repeat;
  background-size:150px;
  /*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-bottom: 15px;
  }
}

.service-menu .stab > ul{
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}

.service-menu .stab > ul > li{
  width:48.5%;

}

.service-menu .stab > ul .tm{
  display: block;
  border: 1px solid #e2e7eb;
  border-radius: 8px;
  background: #fff;
  line-height: 45px;
  font-size: 20px;
  color: #444;
  text-align: center;
}

.service-menu .stab > ul .on .tm{
  color: #256ef4;
  border: 1px dashed #256ef4;
  font-weight: 800;
  text-decoration: underline;
}

/*** full ***/
.main-section article.service-menu.full{
  width:95%;
  margin:auto;
}

.service-menu.full{
  width:100%;
}

.service-menu.full .s-menu > ul{
  /*display: table;
  table-layout: fixed;
  width:100%;*/
  flex-wrap: nowrap;
}
/*
.service-menu.full .s-menu > ul > li{
  display: table-cell;
  vertical-align: middle;
  text-align:center;
}
*/
.service-menu.full .s-menu > ul > li a{
  position: relative;
  display: block;
  /*
  background-color:#fff;
  border: 1px solid #dcecf4;
  box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 5%);
  border-radius:5px;
  padding:70px 10px 10px;
  */
}

.service-menu.full .s-menu li > a:after{
  border-radius:10px;
}

.service-menu.full .s-menu li > a:hover::after {
  transform:translateX(-50%);
  left: 50%;
  background-color:unset;
  animation: none;
  transition: all ease-in-out .2s;
}

.service-menu.full .s-menu li > a:hover::before{
  content:"";
  width: 78px;
  height: 78px;
  border-radius: 78px;
  display: block;
  position: absolute;
  top: 0;
  transform:translateX(-50%);
  left: 50%;
  border: 4px solid transparent;
  border-radius:10px;   
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #256ef4 0%, #3daafb 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.service-menu.full a:focus, .service-menu.full button:focus{
  outline: 0.2rem solid #38caff !important;
  box-shadow: 0 0 0 0.4rem #38caff !important;
  transition: outline 0s, box-shadow 0s !important;
} 

.service-menu.full .swiper{
  padding:5px 0;
}

.service-menu.full .swiper-button {
  position: absolute;
  z-index:1;
  top:20px;
  right:0;
}

.service-menu.full .swiper-button-prev,
.service-menu.full .swiper-button-next,
.service-menu.full .swiper-button-pause {
  background-image: none;
  background: #fff;
  border: 1px solid #e0e3e9;
  border-radius: 6px;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 35px;
  text-align: center;
  z-index: 100;
}

.service-menu.full .swiper-button-prev {
  left: auto;
  right: 107px;
}

.service-menu.full .swiper-button-next {
  right: 20px;
}

.service-menu.full .swiper-button-prev:after,
.service-menu.full .swiper-button-next:after {
  font-size: 12px;
  /*color: #256ef4;*/
  background-color: #143962;
  font-weight: bold;
  position: relative;
  bottom:17px;
  mask-size:21px;
}

.service-menu.full .swiper-button-pause {
  position: absolute;
  right: 63px;
  bottom:-17px;
  line-height: normal;
  cursor: pointer;
}

.service-menu.full .swiper-button-pause button {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  float: none;
}

.service-menu.full .swiper-button-pause button::after {
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.service-menu.full .swiper-button-pause button[aria-pressed="true"]:after {
  border-top: 6px solid transparent;
  border-left: 10px solid #143962;
  border-bottom: 6px solid transparent;
}

.service-menu.full .swiper-button-pause button[aria-pressed="false"]:after {
  width: 9px;
  height: 12px;
  border-left: 2px solid #143962;
  border-right: 2px solid #143962;
  box-sizing: border-box;
}

.service-menu.full .swiper-pagination {
  line-height: normal;
  height: 25px;
  position: absolute;
  top: 23px;
  left:auto;
  right: 150px;
  width: 40px;
  z-index: 1;
}

.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-left: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 #fff;
  background-color:#fff;
  color: #0073eb;
}




/*** popupzone ***/
/*** 
.popup-zone-wrap{
  position: fixed;
  z-index: 3000;
  width: 100%;
  height: 100%;
  left:0;
  top:0;
  right:0;
  bottom:0;
  background-color: transparent;
} 
***/

.popup-zone {
  position: absolute;
  z-index: 3000;
  top:30px;
  left:30px;
  /*transform: translate(-50%, -50%);*/
  box-shadow: 1px 1px 10px 1px rgb(0 0 0 / 6%);

}

.popup-zone .title{
  background-color: rgba(255, 255, 255, 1);
  padding:7px 0;
  font-size:1.7rem;
  position:relative;
  width:100%;
  text-align:left;
}

.popup-zone .thumb{
  width:100%;
}

.popup-zone .thumb a{
  display: block;
  width:100%;
  height:100%;
}

.popup-zone .thumb a:focus{
  outline-offset:-3px
}

.popup-zone .thumb img{
  width:100%;
  height:100%;
}

.popup-zone .popup-close{
  background: url(../images/close_sml_btn.png) no-repeat center center;
  background-size: 17px;
  width: 17px;
  height: 17px;
  position: absolute;
  right: 8px;
  top: 12px;
  cursor: pointer;
  padding: 0;
  border-radius: 0;
  border: 0; 
  z-index:1000;
}

#popup-slider {
  width: 450px;
  padding: 0px 8px 12px;
  background-color: rgba(255, 255, 255, 1);
  border:1px solid #e5e8ee;
  border-radius:5px;
  margin-top: -1px;
  position: relative;
}

#popup-slider .swiper {
  width: 100%;
  height: 100%;
}

#popup-slider .swiper-slide {
  text-align: center;
  background: #fff;
  display: block;
}

#popup-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#popup-slider .swiper-pagination {
  position: inherit;
  top: 5px;
  text-align:left;
  width: auto;
  height:auto;
}

#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: 7px;
  bottom: 2px;
  font-size: 1.5rem;
  min-width: unset;
}

#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 .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
  }

  .info-link .box {
    padding: 30px
  }

  .public-sercive li a {
    height: 140px;
    font-size: 15px;
    padding-top: 90px;
    background-position: center 25px
  }
}



@media screen and (max-width:1479px) {
  .main-section article.info-link {
    width: 100%;
    float: none;
    margin: 0;
    height: auto;
  }

  .main-section article.info-link:last-child {
    margin-top: 40px
  }

  .main-notice .notice-tab {
    width: 55%;
    height:458px;
  }

  .main-notice .notice-tab > ul > li > a {
    font-size: 15px;
    line-height: 38px;
  }

}

@media screen and (max-width:1399px) {
  .section-area{gap:60px 4%;}

  .main-slider .slider-inner{
    width:66%
  }

  .right-section{
    width:30%
  }

  .main-slider .text-wrap .more-btn {
    width: 150px;
    line-height: 45px;
    font-size: 15px
  }

  .main-section h2, .right-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 .notice-tab{
    height:470px;
  }

  .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;
  }

  .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
  }

  .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:1199px) {

  .main-slider{
    display: block;
  }

  .main-slider .slider-inner, .main-slider .slider-for .background, .main-slider .right-section{
    width:100%;
  }

  .main-slider .slider-nav{
    width: 400px;
    height: 200px; 
  }

  .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:30px;
  }

  .service-menu .s-menu > ul > li{
    width:32.5%
  }

  .service-menu li a {
    font-size: 15px
  }

  .service-menu li span {
    font-size: 13px
  }

  .right-section{
    margin-top:40px
  }
  
  .banner-slider {
    width: 100%
  }
}


@media screen and (max-width:1025px) {
  .main-slider .slider-inner, .main-slider .slider-for .background, .main-slider .right-section{
    height:380px;
  }

  .main-slider .slider-control{
    bottom: -15px;
  }

  .banner-slider .thumbnail{
    height:306px;
  }

  .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
  }

  .service-menu .s-menu > ul > li{
    width:33.3%
  }

  .service-menu .stab::after, .service-menu .stab::before{
    content:none;
  }
}

@media screen and (max-width:999px) {
  body, html .main {
    font-size: 15px
  }

  .main-slider{
    display: block;
  }

  .main-slider .right-section{
    margin-top:2.4rem
  }

  .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, .right-section h2{
    font-size: 25px
  }

  .main-slider {
    overflow: inherit;
  }

  .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 .slider-control {
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .8);
    padding: 8px 10px;
    border-radius: 30px;
    width: 165px;
    text-align: center;
    z-index: 10;
  }

  .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;
  }

  .report-news .date, .main-notice .date, .photo-news .date {
    font-size: 13px;
    line-height: 21px;
  }

  .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
  }

  .banner-slider{
    height:380px;
  }

  .banner-slider .thumbnail {
    height: 308px
  }

  .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
  }

  .service-menu.full .tab-content{
    width: 100%;
    position: relative;
    right: auto;
  }
}

@media screen and (max-width:767px) {
  .main-section.public-sercive {
    margin: 25px 0
  }

  .main-section.first {
    padding-top: 30px
  }

  .main-section:last-child{
    padding:30px 25px;
  }

  .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
  }

  .main-section.last .section-area{
    height:250px;
  }

  .section-area{
    gap:50px 0;
  }

  .section-area .more-view{
    width:19px;
    height:19px;
  }

  .main-slider .text .mtxt {
    font-size: 35px;
    line-height: 44px;
    margin-bottom: 20px
  }

  .main-slider .slick-dots {
    bottom: -25px
  }

  .main-slider .slick-dots {
    width: 90%;
    left: 50%;
    transform: translateX(-50%)
  }

  .main-slider .slider-nav-wrap{
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width:90%
  }

  .main-slider .slider-nav{
    width:100%;
    height:200px;
  }

  .main-slider .slider-inner, 
  .main-slider .slider-for .background{
      height:440px;
    }

  .main-slider .text-wrap .more-btn{
    margin:20px auto
  }

  /*
  .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}
  */

  .main-notice .notice-tab{
    height:406px;
  }

  .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-wrap{height:auto;}
  .webzine-news .btn a{height:50px; line-height:50px; font-size:15px}
  .webzine-news .date{font-size:15px; width:55px; height:55px; line-height:55px; right:10px}
  .webzine-news .thumbnail{height:auto;}

  .service-menu .stab{background-image: none; border-radius:0; height:auto; overflow: inherit; height:325px;}
  .service-menu .stab > ul{padding:0;}
  .service-menu .stab > ul > li{display: inline;}
  .service-menu .stab > ul .tm{display: inline-block; line-height:46px; font-size:16px; width:100%}
  .service-menu .s-menu li > a{font-size:14px; line-height:20px;}
  .service-menu .tab-content{width: 100%; top: auto; right: auto; margin-top: 5px; height: auto; padding: 20px;}
  .service-menu .s-menu{width:100%}
  .service-menu .s-menu > ul > li a{font-size:14px}
  .service-menu.full .swiper-button{right:-15px}
  .service-menu.full .swiper-button-prev, .service-menu.full .swiper-button-next, .service-menu.full .swiper-button-pause{width:33px; height:33px; line-height:33px;}
  .service-menu.full .swiper-button-pause{bottom:-11px; right:59px}
  .service-menu.full .swiper-button-prev{right:98px}
  .main-section article.service-menu.full{width:100%}
  .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%; top:50%; left:50%; transform: translate(-50%, -50%);}
  #popup-slider {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) {
  .report-news .box, .photo-news .box, .sns-news .box {padding: 20px}
}




