/* header start */
header{
  position: fixed;
  width:100%;
  height:95px;
  min-width:1300px;
  z-index: 9999;
  top:0;
  left:0;
  transition: all .3s ease-in-out;
  /* background-color:#fff; */
  /* border-bottom:1px solid #ccc; */
}
header.on{
  position: fixed;
  width:100%;
  min-width:1300px;
  top:0;
  left:0;
  background-color: #fff;
  border-bottom:1px solid #ccc;
}
header .logo h1{
  position: absolute;
  width:267px;
  height:52px;
  top:30px;
  left:0;
  transition:all .3s ease-in-out;
  background: url(../img/logo.png) 50% 50% no-repeat;
  background-size: 267px;
  z-index: 9999;
}
header .logo h1.on{
  background: url(../img/logo.png) 50% 50% no-repeat;
  background-size: 267px;
}
header .logo h1 a{
  display: block;
  width:267px;
  height:52px;
}

header:hover{background-color: #fff; transition: all .3s ease-in-out;}
header:hover .logo h1{background: url(../img/logo.png) 50% 50% no-repeat; background-size:267px; transition:all .3s ease-in-out;}
header:hover .gnb li a{color:#333;  transition:all .3s ease-in-out;}
header:hover .menubtn_wrap ul li{background-color: #333;}



header .logo1 h1{position: absolute; width:238px; height:43px; top:25px; left:0; transition:all .3s ease-in-out; background: url(../img/logo1.png) 50% 50% no-repeat; background-size: 238px; z-index: 9999;}
header .logo1 h1.on{background: url(../img/logo1.png) 50% 50% no-repeat; background-size: 238px;}
header .logo1 h1 a{display: block; width:238px; height:43px;}
header:hover .logo1 h1{background: url(../img/logo1.png) 50% 50% no-repeat; background-size:238px; transition:all .3s ease-in-out;}

header .logo2 h1{position: absolute; width:228px; height:53px; top:20px; left:0; transition:all .3s ease-in-out; background: url(../img/logo2.png) 50% 50% no-repeat; background-size: 228px; z-index: 9999;}
header .logo2 h1.on{background: url(../img/logo2.png) 50% 50% no-repeat; background-size: 228px;}
header .logo2 h1 a{display: block; width:228px; height:53px;}
header:hover .logo2 h1{background: url(../img/logo2.png) 50% 50% no-repeat; background-size:228px; transition:all .3s ease-in-out;}

header .logo3 h1{position: absolute; width:234px; height:51px; top:20px; left:0; transition:all .3s ease-in-out; background: url(../img/logo3.png) 50% 50% no-repeat; background-size: 234px; z-index: 9999;}
header .logo3 h1.on{background: url(../img/logo3.png) 50% 50% no-repeat; background-size: 234px;}
header .logo3 h1 a{display: block; width:234px; height:51px;}
header:hover .logo3 h1{background: url(../img/logo3.png) 50% 50% no-repeat; background-size:234px; transition:all .3s ease-in-out;}

header .logo4 h1{position: absolute; width:242px; height:43px; top:30px; left:0; transition:all .3s ease-in-out; background: url(../img/logo4.png) 50% 50% no-repeat; background-size: 242px; z-index: 9999;}
header .logo4 h1.on{background: url(../img/logo4.png) 50% 50% no-repeat; background-size: 242px;}
header .logo4 h1 a{display: block; width:242px; height:43px;}
header:hover .logo4 h1{background: url(../img/logo4.png) 50% 50% no-repeat; background-size:242px; transition:all .3s ease-in-out;}



.pos{position: relative;}
.bar{
  width:0;
  height: 3px;
  background-color: #153b7a;
  position: absolute;
  left: 0;
  bottom: 0;
}
nav{
    width:100%;
    max-width:1300px;
    min-width:1300px;
    margin:0 auto;
    z-index: 999;
    position: relative;
}
.gnb{
    display: flex;
    align-items: center;
    justify-content: end;
    gap:80px;
}
.gnb > li{
    transition: all .2s ease-in-out;
    text-align: center;
}
.gnb > li > .gnb_wrap > a.on{color:#333;}

.gnb > li > .gnb_wrap > a{
    color:#333;
    font-size:20px;
    font-weight: 400;
    height:95px;
    line-height: 95px;
    position: relative;
}
.gnb > li > .gnb_wrap > a::after{content:'';
    display:block;
    width:0;
    height:2px;
    position: absolute;
    bottom:-10px;
    left:50%;
    background-color: #015aae;
    transform: translateX(-50%);
    transition: all .3s ease-in-out;
}

.bg{
  position: absolute;
  left: 0;
  top: 94px;
  width: 100%;
  height: 190px;
  display: none;
  z-index: 9;
  background-color: #fff;
  border-top:1px solid #ccc;
  border-bottom:3px solid #015aae;
}

.gnb > li > .gnb_wrap{position: relative;}
.sub_menu{
  font-size:0;
  display:none;
  position: absolute;
  z-index:99;
  left:50%;
  transform: translateX(-50%);
  width:100%;
  width:140px;
}
.sub_menu li{transition: all .2s ease-in-out;}
.sub_menu a{
  font-size:16px;
  font-weight: 400;
  color: #464243 !important;
  line-height: 36px;
  display: block;
  position: relative;
  transition: all .2s ease-in-out;
  overflow: hidden;
}
.sub_menu a::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 200%;
  border-radius: 50%;
  transform: translate3d(-50%,-50%,0) scale3d(0,0,0);
  transition: opacity .4s cubic-bezier(.19,1,.22,1),transform .75s cubic-bezier(.19,1,.22,1);
  /* background-color: #bf0b2c; */
  background-color: #015aae;
  opacity: 0;
  z-index: -1;
  transition: all .2s ease-in-out;
}
.sub_menu a:hover::before{
  opacity: 1;
  transition-duration: .85s;
  transition: all .2s ease-in-out;
  transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
}
.sub_menu a:hover{color: #fff !important; transition: all .2s ease-in-out;}

/* header menu active */
header.active1 .gnb > li:nth-child(1) .gnb_wrap > a,
header.active2 .gnb > li:nth-child(2) .gnb_wrap > a,
header.active3 .gnb > li:nth-child(3) .gnb_wrap > a,
header.active4 .gnb > li:nth-child(4) .gnb_wrap > a,
header.active5 .gnb > li:nth-child(5) .gnb_wrap > a,
header.active6 .gnb > li:nth-child(6) .gnb_wrap > a{color: #015aae;}

header.active1 .gnb > li:nth-child(1) .gnb_wrap > a::after,
header.active2 .gnb > li:nth-child(2) .gnb_wrap > a::after,
header.active3 .gnb > li:nth-child(3) .gnb_wrap > a::after,
header.active4 .gnb > li:nth-child(4) .gnb_wrap > a::after,
header.active5 .gnb > li:nth-child(5) .gnb_wrap > a::after,
header.active6 .gnb > li:nth-child(6) .gnb_wrap > a::after{width:100%;}
/* header end */

/* header end */

/* visual swiper start */
.visual{
    width:100%;
    height:824px;
    min-width:1300px;
    margin-top:95px;
}
.visual .typo_wrap{
  width:1300px;
  height:100%;
  margin:0 auto;
  position: absolute;
  z-index: 99;
}
.typo{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:0;
    width:100%;
    z-index: 99;
    text-align: left;
}

/* .typo > span.up{opacity:1; transform:translate(0,0);} */

.typo span{
    display:block;
    transition:all 1s ease-in-out;
    color:#fff;
}
.typo span:first-child{
    font-size:72px;
    transition-delay:0s;
    font-weight: 800;
}
.typo span:nth-child(2){
    font-size:32px;
    transition-delay:0.5s;
    padding:40px 0;
}

.visual .swiper-slide > img{width:100%; transform:scale(1.2); transition:all 5s ease;}
.visual .swiper-slide.swiper-slide-active > img.zoom{transform:scale(1);}

/* .visual .swiper-slide.swiper-slide-active .typo > span.up{opacity:1; transform:translate(0,0);} */

.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span:first-child{animation:bounceInLeft 1s .2s both;}
.visual .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active span:nth-child(2){animation:bounceInLeft 1s .4s both;}


.visual .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.visual .swiper-slide {
  width:100%;
  text-align: center;
  font-size: 18px;
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.visual .swiper-slide img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual .swiper-slide::before{
  position: absolute;
  content: '';
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.visual .swiper .swiper-pagination span{margin:0 3px;}

.visual .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border:1px solid #fff;
    background: none;
    border-radius: 100%;
}

.visual .swiper-pagination-bullet-active {
    opacity: 1;
    background: #015aae;
}
.visual .swiper .swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
    left:50%;
    bottom:50px;
    transform: translate(-50%, 100%);
}
.visual .swiper-button-prev,
.visual .swiper-container-rtl .swiper-button-next {
    /* background-image: url("../img/swiper_prev.png"); */
    left: 10px;
    right: auto;
    width:20px;
    color:#fff
}
.visual .swiper-button-next,
.visual .swiper-container-rtl .swiper-button-prev {
    /* background-image: url("../img/swiper_next.png"); */
    right: 10px;
    left: auto;
    width:20px;
    color:#fff
}
.visual .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{font-size:44px;}
.visual .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{font-size:44px;}

.visual .swiper-button-next,
.visual .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 60px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 40px 60px;
    background-position: center;
    background-repeat: no-repeat
}
/* visual swiper end */

/* image_show_wrap 공통 */
section .image_show_wrap,
section .image_show_wrap2{
    position: relative;
    top: 0px;
    left: 0%;
    width: 100%;
}
section .image_show_wrap{overflow: hidden; animation-duration: 1.4s;}
section .image_show_wrap2{animation-duration: 1.4s;}

section .show_img01{animation-name: show_img01;}
@keyframes show_img01{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
section .show_img02{animation-name: show_img02;}
@keyframes show_img02{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
section .show_img03{animation-name: show_img03;}
@keyframes show_img03{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
section .show_img04{animation-name: show_img04;}
@keyframes show_img04{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
section .show_img05{animation-name: show_img05;}
@keyframes show_img05{
    0%{opacity: 0; transform: translate3d(0, 100%, 0);}
}
section .show_img06{animation-name: show_img06;}
@keyframes show_img06{
    0%{opacity: 0; transform: translate3d(0, -100%, 0);}
}
/* image_show_wrap 공통 */

/* image 확대 공통 */
.clip-animation {
  clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  animation: clipExpand 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) forwards;
}
@keyframes clipExpand {
  from {
      clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  }
  to {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
/* image 확대 공통 */


/* ------------------------------------- section ------------------------------------- */
/* section1 */
.main_qmenu{margin:60px 0;}
.main_qmenu ul{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap:20px;
}
.main_qmenu ul li{width:20%;}
.main_qmenu ul li a{
  display: block;
  overflow: hidden;
  transition: all .3s ease-in-out;
  border-radius: 10px;
  position: relative;
}
.main_qmenu ul li a .img img{transition: all .3s ease-in-out;}
.main_qmenu ul li a:hover .img img{transform: scale(1.1); opacity: .8;}
.main_qmenu ul li a .tit{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  transition: all .3s ease-in-out;
  width:100%;
}
.main_qmenu ul li a:hover .tit{top:45%;}
.main_qmenu ul li a .tit p{
  font-size:24px;
  color:#fff;
  text-align: center;
  font-weight: 600;
}

.main_qmenu ul li a .arrow{
  position: absolute;
  bottom:30px;
  right:30px;
  transition: all .3s ease-in-out;
}
.main_qmenu ul li a:hover .arrow{right:25px;}
/* section1 */



/* section2 */
.main_notice{
  background-color: #eee;
  padding:60px 0;
  position: relative;
}
.main_notice h2{
  font-size:48px;
  color:#000;
  text-align: left;
}
.main_notice .inner > p{
  font-size:18px;
  color:#333;
  text-align: left;
  margin-top:10px;
}
.main_notice .button{
  position: absolute;
  top:80px;
  right:15px;
}

.main_notice .button a{
  font-size:18px;
  color:#333;
  transition: all .3s ease-in-out;
  position: relative;
}
.main_notice .button a span{
  position: absolute;
  top:5px;
  right:-20px;
  font-size:20px;
  color:#333;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.main_notice .button a:hover{color:#015aae}
.main_notice .button a:hover span{color:#015aae; transform: rotate(-90deg);}

.main_notice .slide{margin-top:20px;}
.main_notice .slide .swiper {
  width: 100%;
  height: 100%;
  padding-top:20px;
  position: relative;
}
.main_notice .slide .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_notice .slide .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_notice .slide .arrow{
  position: absolute;
  top:55%;
  left:50%;
  transform: translate(-50%, -50%);
  width:1300px;
  z-index: 99;
}
.main_notice .slide .swiper-button-prev,
.main_notice .slide .swiper-container-rtl .swiper-button-next {
    left: 0px;
    right: auto;
    width:20px;
    color:#fff;
    /* background-image: url("../img/section2/arrow_l.png"); */
    transition: all .3s ease-in-out;
}
.main_notice .slide .swiper-button-next,
.main_notice .slide .swiper-container-rtl .swiper-button-prev {
    right:0px;
    left: auto;
    width:20px;
    color:#fff;
    /* background-image: url("../img/section2/arrow_r.png"); */
    transition: all .3s ease-in-out;
}
.main_notice .slide .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{font-size:30px; margin-right: 5px;}
.main_notice .slide .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{font-size:30px; margin-left: 5px;}

.main_notice .slide .swiper-button-next,
.main_notice .slide .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 60px 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #015aae;
    transition: all .3s ease-in-out;
}

.main_notice .slide .swiper-button-next:hover{background-color: #fff; border:1px solid #ccc;}
.main_notice .slide .swiper-button-prev:hover{background-color: #fff; border:1px solid #ccc;}

.main_notice .slide .swiper-button-next:hover{color:#015aae;}
.main_notice .slide .swiper-button-prev:hover{color:#015aae;}


.main_notice .slide .swiper .slide_img{overflow: hidden; border-radius: 10px;}
.main_notice .slide .swiper .slide_img img{transition: all .3s ease-in-out;}

.main_notice .slide .swiper .slide_tit p{
  font-size:18px;
  color:#333;
  text-align: center;
  padding:10px 0;
  transition: all .3s ease-in-out;
}

.main_notice .slide .swiper-slide a:hover .slide_img img{transform: scale(1.1);}
.main_notice .slide .swiper-slide a:hover .slide_tit p{color:#015aae;}
/* section2 */



/* footer */
.footer{
  padding:30px 0;
  background-color: #333;
}
.footer .footer_logo{
  font-size:28px;
  color:#fff;
  text-align: left;
  font-family: 'S-CoreDream-3Light';
  font-weight: 800;
}
.footer .tit p{
  font-size:14px;
  color:#ccc;
  text-align: left;
  line-height:28px;
}
.footer .tit span{
  display: block;
  font-size:13px;
  color:#fff;
  text-align: left;
  margin-top:10px;
}

/*side_box*/
.footer .site{
  position: absolute;
  top:0px;
  right:0px;
}
.footer .site_wrap{
  position:relative;
}
.footer .fm_site{
  border:1px solid #ccc;
  width:200px;
  height:40px;
  line-height:40px;
  padding-left:15px;
  margin-bottom:15px;
  background:url(../img/btn_up.png) no-repeat right;
  cursor:pointer;
  transition: all 0.3s ease;
}
.footer .fm_site p{
  font-size:1rem; color:#ccc;
  transition: all 0.3s ease;
}
.footer .inner_fm_site{
  position:absolute;
  bottom:40px;
  border:1px solid #8c8577;
  background:#fff;
  width:200px;
  height:auto;
  display:none;
  z-index:9999;}

.footer .inner_fm_site ul li{
  font-size:1rem;
  color:#333;
  height:32px;
  line-height:32px;
  padding-left:15px;
  cursor:pointer;}

.footer .inner_fm_site ul li:hover{background:#f3f3f3;}
.footer .inner_fm_site ul li:hover a{color:#015aae;}
.footer .fm_site:hover{border:1px solid #015aae; transition: all 0.3s ease;}
/* .footer .fm_site:hover p{color:#015aae; transition: all 0.3s ease;} */
/*side_box*/
/* footer */
/* ------------------------------------- section ------------------------------------- */


/* top_btn */
.topbtn{
    position: fixed;
    bottom:60px;
    right:60px;
    z-index:9999999999999;
    width:50px;
    height:50px;
    border-radius: 40px;
    background-color:  #015aae;
    transition: all 0.5s ease;
    opacity: 0;
}
.topbtn.on{opacity: 1;}

.topbtn img{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:30px;
}

.topbtn:hover{
    transition: all 0.5s ease;
    background-color: #151515;
}
/* top_btn */