/* header start */
header{
  position: absolute;
  top:0;
  width:100%;
  min-width:1400px;
  z-index: 9999;
  height:80px;
  transition: all .3s ease-in-out;
  background-color:#fff;
}
header.on{
  position: fixed;
  width:100%;
  min-width:1400px;
  top:0;
  left:0;
}
header .logo h1{
  position: absolute;
  width:313px;
  height:45px;
  top:18px;
  left:0;
  transition:all .3s ease-in-out;
  background: url(../img/logo.png) 0 0 no-repeat;
  background-size: 313px;
}
/* header .logo h1.on{background: url(../img/logo.jpg) 0 0 no-repeat; background-size: 199px;} */
header .logo h1 a{
  display: block;
  width:313px;
  height:45px;
}

nav{
    width:100%;
    max-width:1400px;
    min-width:1400px;
    margin:0 auto;
    z-index: 999;
    position: relative;
}
.gnb{
    font-size:0;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: right;
    gap:60px
}
.gnb > li{
    transition: all .2s ease-in-out;
    position: relative;
    text-align: center;
    display: table;
    height:80px;
}
.gnb > li:nth-of-type(5){margin-left:75px;}
.gnb > li:last-child{margin-left:65px;}

.gnb > li:hover > a:before{width:100%;}
/* .gnb > li > a.on{color:#fff;} */

.gnb > li > a{
    vertical-align: middle;
    display: table-cell;
    color:#333;
    font-size:16px;
    font-weight: 600;
    position: relative;
}
.gnb > li:nth-of-type(5) > a{color:#0085d4;}

.gnb > li > a:before{content:'';
    display:block;
    width:0;
    height:2px;
    position: absolute;
    bottom:10px;
    left:50%;
    transform: translateX(-50%);
    background-color: #0085d4;
    transition: all .3s ease-in-out;
}
.gnb > li > a::after{
  content: '';
  position: absolute;
  top:0;
  right:-30px;
  font-size: 36px;
  color:#333;
  font-weight: 600;
  transform: rotate(-180deg);
}

.gnb > li .language{
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  right:0;
  border:none;
}
.gnb > li .language ul{
  display: flex;
  align-items: center;
}
.gnb > li .language li{
  font-size:14px;
  color:#333;
}
.gnb > li .language li a{
  display: block;
  font-size:14px;
  color:#333;
  margin-left:10px;
  transition: all .3s ease-in-out;
}
.gnb > li .language li:nth-of-type(2) a{font-size:10px;}


.sub_menu{
    font-size:0;
    display:none;
    position: absolute;
    z-index:99;
    top:80px;
    left:50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-bottom:3px solid #0085d4;
    border-radius: 0 0 10px 10px;
}
.sub_menu a{
    font-size:15px;
    color:#333;
    display: block;
    padding:5px 0;
    text-align: center;
    width:250px;
    transition: all .2s ease-in-out;
    position: relative;
    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: #0085d4;
  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) > a,
header.active2 .gnb > li:nth-child(2) > a,
header.active3 .gnb > li:nth-child(3) > a,
header.active4 .gnb > li:nth-child(4) > a,
header.active5 .gnb > li:nth-child(5) > a,
header.active6 .gnb > li:nth-child(6) > a,
header.active7 .gnb > li:nth-child(7) > a,
header.active8 .gnb > li:nth-child(8) > a,
header.active9 .gnb > li:nth-child(9) > a{color: #bf1e2e;}

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


/* visual swiper start */
.visual{
    width:100%;
    height:100%;
    min-width:1300px;
    padding-top:80px;
    position: relative;
}
.visual .typo{
    position: absolute;
    width:1400px;
    top:30%;
    left:50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    text-align: left;
}

.visual .typo span{
    display:block;
    color: #fff;
    transition:all 1s ease-in-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'S-CoreDream-9Black';
    font-weight: 800;
}
.visual .typo span:nth-of-type(1){
    font-size:36px;
    transition-delay:0s;
    background-color: rgb(0, 133, 212);
    width:250px;
    text-align: center;
    border-radius: 5px;
    padding:5px 0;
}
.visual .typo span:nth-child(2){
    font-size:50px;
    transition-delay:0.5s;
}
.visual .typo span:nth-of-type(3){
    font-size:36px;
    transition-delay:1s;
}

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

/* visual swiper start */
.visual .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.visual .swiper-slide {
  width:100%;
  text-align: center;
  font-size: 18px;
  background: transparent;
  overflow: hidden;

  /* Center slide text vertically */
    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;
}
.visual .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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: #fae1d4;
}
.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 {
    left: 10px;
    right: auto;
    width:20px;
    color:#fff;
}
.visual .swiper-button-next,
.visual .swiper-container-rtl .swiper-button-prev {
    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-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 .video{
  position: relative;
  width:100%;
  height:0;
  padding-top:30%;
  overflow: hidden;
  z-index: 0;
}
.visual .swiper .video::before{
  content: '';
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: transparent;
  z-index: 1;
}
.visual .swiper .video iframe{
  position: absolute;
  top:-60px;
  left:0;
  width:100%;
  height:calc(100% + 120px);
  object-fit: cover;
}
/* 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_notice{padding:120px 0;}
.main_notice h2{
  font-size:42px;
  color:#000;
  text-align: left;
}
.main_notice ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap:20px;
  margin-top:10px;
}
.main_notice ul li{width:25%; cursor: pointer;}
.main_notice ul li .img{background-color: #000; overflow: hidden;}
.main_notice ul li .img img{transition: all .3s ease-in-out; width:100%;}
.main_notice ul li:hover .img img{transform: scale(1.1); opacity: .8;}

.main_notice ul li .tit span{
  display: block;
  font-size:16px;
  color:#0085d4;
  text-align: left;
  font-weight: 600;
  padding:20px 0;
}
.main_notice ul li .tit p{
  font-size:18px;
  color:#333;
  text-align: left;
  line-height:32px;
}
.main_notice ul li > a{
  display: inline-block;
  font-size:16px;
  color:#fff;
  background-color: #0085d4;
  padding:5px 30px;
  margin:40px 0;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all .3s ease-in-out;
}
.main_notice ul li > a::before{
  content: '';
  position: absolute;
  top:0;
  left:0;
  width:0;
  height:100%;
  background-color: #000;
  z-index: -1;
  transition: all .3s ease-in-out;
}
.main_notice ul li > a:hover:before{width:100%;}

.main_notice .button a{
  display: inline-block;
  font-size:18px;
  color:#fff;
  background-color: #000;
  text-align: center;
  padding:10px 30px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all .3s ease-in-out;
}
.main_notice .button a::before{
  content: '';
  position: absolute;
  top:0;
  left:0;
  width:0;
  height:100%;
  background-color: #0085d4;
  z-index: -1;
  transition: all .3s ease-in-out;
}
.main_notice .button a:hover::before{width:100%;}
/* section1 */



/* section2 */
.businesses{
  background-color: #f2f2f2;
  padding:120px 0;
}
.businesses .inner > ul{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap:80px;
}

.businesses .inner > ul > li:nth-of-type(1){width:40%}
.businesses .inner > ul > li:nth-of-type(2){width:60%}

.businesses .inner > ul > li h2{
  font-size:42px;
  color:#000;
  text-align: left;
}
.businesses .inner > ul > li > p{
  font-size:16px;
  color:#333;
  text-align: left;
  line-height:32px;
  margin-top:60px;
  letter-spacing: -1px;
}



/* businesses_slide swiper start */
.businesses .businesses_slide{position: relative;}
.businesses .businesses_slide .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.businesses .businesses_slide .swiper-slide {
  width:100%;
  text-align: center;
  font-size: 18px;
  background: transparent;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.businesses .businesses_slide .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.businesses .businesses_slide .swiper-button-prev,
.businesses .businesses_slide .swiper-container-rtl .swiper-button-next {
    left: 0px;
    right: auto;
    width:20px;
    color:#fff;
}
.businesses .businesses_slide .swiper-button-next,
.businesses .businesses_slide .swiper-container-rtl .swiper-button-prev {
    right: 0px;
    left: auto;
    width:20px;
    color:#0562c2;
}
.businesses .businesses_slide .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{font-size:24px;}
.businesses .businesses_slide .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{font-size:24px;}

.businesses .businesses_slide .swiper-button-next,
.businesses .businesses_slide .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 45px;
    height: 60px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 45px 60px;
    background-position: center;
    background-repeat: no-repeat;
}
.businesses .businesses_slide .swiper-button-next{background-color: #fff;}
.businesses .businesses_slide .swiper-button-prev{background-color: #0562c2;}

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

.businesses .businesses_slide .swiper-slide a{
  overflow: hidden;
  position: relative;
}
.businesses .businesses_slide .swiper-slide a p{
  position: absolute;
  bottom:0;
  right:0;
  width:300px;
  font-size:18px;
  color:#fff;
  text-align: center;
  padding:10px 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.businesses .businesses_slide .arrow{
  position: absolute;
  width:90px;
  height:60px;
  top:50%;
  transform: translateY(-50%);
  left:-45px;
  z-index: 99;
}
/* section2 */



/* section3 */
.c_line{
  background-color: #fff;
  padding:120px 0;
}
.c_line .inner > ul{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap:80px;
}

.c_line .inner > ul > li:nth-of-type(1){width:60%}
.c_line .inner > ul > li:nth-of-type(2){width:40%}

.c_line .inner > ul > li h2{
  font-size:42px;
  color:#000;
  text-align: left;
}
.c_line .inner > ul > li > p{
  font-size:16px;
  color:#333;
  text-align: left;
  line-height:32px;
  margin-top:60px;
  letter-spacing: -1px;
}



/* c_line_slide swiper start */
.c_line .c_line_slide{position: relative;}
.c_line .c_line_slide .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.c_line .c_line_slide .swiper-slide {
  width:100%;
  text-align: center;
  font-size: 18px;
  background: transparent;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.c_line .c_line_slide .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c_line .c_line_slide .swiper-button-prev,
.c_line .c_line_slide .swiper-container-rtl .swiper-button-next {
    left: 0px;
    right: auto;
    width:20px;
    color:#0562c2;
}
.c_line .c_line_slide .swiper-button-next,
.c_line .c_line_slide .swiper-container-rtl .swiper-button-prev {
    right: 0px;
    left: auto;
    width:20px;
    color:#fff;
}
.c_line .c_line_slide .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{font-size:24px;}
.c_line .c_line_slide .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{font-size:24px;}

.c_line .c_line_slide .swiper-button-next,
.c_line .c_line_slide .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 45px;
    height: 60px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 45px 60px;
    background-position: center;
    background-repeat: no-repeat;
}
.c_line .c_line_slide .swiper-button-next{background-color: #0562c2;}
.c_line .c_line_slide .swiper-button-prev{background-color: #fff;}

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

.c_line .c_line_slide .arrow{
  position: absolute;
  width:90px;
  height:60px;
  top:50%;
  transform: translateY(-50%);
  right:-45px;
  z-index: 99;
}

.c_line .c_line_slide .swiper-slide .tit{
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  left:0;
  padding:30px 0;
  width:470px;
  padding:60px 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99;
  text-align: left;
}
.c_line .c_line_slide .swiper-slide .tit h3{
  font-size:24px;
  color:#fff;
  text-align: left;
  padding-left:30px;
}
.c_line .c_line_slide .swiper-slide .tit p{
  font-size:16px;
  color:#fff;
  text-align: left;
  padding:20px 0 20px 30px;
  line-height:32px;
}
.c_line .c_line_slide .swiper-slide .tit a{
  display: inline-block;
  font-size:16px;
  color:#fff;
  text-align: left;
  margin-left:30px;
  position: relative;
  transition: all .3s ease-in-out;
}
.c_line .c_line_slide .swiper-slide .tit a::before{
  content: '→';
  position: absolute;
  top:0;
  right:-30px;
  font-size:18px;
  color:#fff;
  transition: all .3s ease-in-out;
}
.c_line .c_line_slide .swiper-slide .tit a:hover{color:#bf1e2e;}
.c_line .c_line_slide .swiper-slide .tit a:hover::before{right:-35px; color:#bf1e2e;}
/* section3 */

/* section4 */
.bottom{
  padding:30px 0;
  background-color: #000;
}
.bottom ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap:40px;
}
.bottom ul li{width:16.666%;}
.bottom ul li h4{
  font-size:18px;
  color:#fff;
  text-align: left;
}
.bottom ul li h4 > a{
  font-size:18px;
  color:#fff;
  text-align: left;
  transition: all .3s ease-in-out;
}
.bottom ul li h4 > a:hover{color:#0562c2;}
.bottom ul li .tit{margin-top:20px;}
.bottom ul li .tit a{
  display: block;
  font-size:16px;
  color:#fff;
  text-align: left;
  line-height:32px;
  transition: all .3s ease-in-out;
}
.bottom ul li .tit a:hover{color:#0562c2;}
/* section4 */

/* footer */
.footer{
  background-color: #0562c2;
  padding:30px 0;
}
.footer p{
  font-size:14px;
  color:#ccc;
  text-align: center;
}
.footer span{
  display: block;
  margin-top:10px;
  font-size:13px;
  color:#fff;
  text-align: center;
}
/* footer */
/* ------------------------------------- section ------------------------------------- */
/* top_btn */
.topbtn{
  position: fixed;
  bottom:60px;
  right:60px;
  z-index:9999999999999;
  width:50px;
  height:50px;
  border-radius: 40px;
  background-color:  #000;
  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 */
