.mainvisualArea {
    background-color:#e6f0f7;
    position: relative;
    width: 100%;
    max-width: 100%;
    display:block
}



.mainvisualArea:before {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#5A98ED), color-stop(54%, #BED9EA));
    background-image: linear-gradient(-180deg, #5A98ED 0%, #BED9EA 54%);
    overflow: hidden;
 
   content:"";
   display: block;
   position: absolute;
   width: 100%;
   height: 100%;

   
}




.mainvisual {
    margin: auto;
    position: relative;
    width: 100%;
    height:60vh;
    max-width: 1360px;
    z-index: 1;
    top: 100px;
}





.about-bg-shape-1 {
    position: absolute;
    left: 5%;
    bottom: 60px;
    z-index: -1;
}


.news-bg-shape-1 {
    position: absolute;
    right: 2%;
    top: 3%;
}

.news-bg-shape-2 {
    position: absolute;
    left: 2%;
    bottom: 5%;
}



.link-bg-spape {
position: absolute;
bottom:10px;
right: 10px;
z-index:1 
}


.blog-bg-shape-1 {
position: absolute;
left: 2%;
bottom: 1%;
}

.up-down-animation {
    animation: up_down 3s ease-in infinite alternate-reverse;
}


@keyframes up_down {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
    }
}


.left-right-animation {
    animation: left_right 3s ease-in infinite alternate-reverse;
}

@keyframes left_right {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-30px);
    }
}


@media (max-width:1280px) {

.link-bg-spape {
    position: absolute;
   top: 0px;
   bottom:auto;
    right: 10px;
    z-index: 1
}

}


@media (max-width:811px) {

.mainvisual {
    top: 90px;
}

}
@media (max-width:911px) {
    .about-bg-shape-1 {
        bottom: 10px;
    }
}


@media (max-width:767px) {
.link-bg-spape {
    position: absolute;
    bottom: 5px;
    top:auto;
    right: 10px;
    z-index: 1
}
}
@media (max-width:736px) {
    .wave {
        display: none
    }

    .slideBg {
        height: 60px;
        margin-bottom: 60px
    }
}



@media (min-width: 576px) {
    .mainvisual {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .mainvisual {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .mainvisual {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .mainvisual {
        max-width: 1290px
    }
}

@media (min-width: 1400px) {
    .mainvisual {
        max-width: 1360px
    }
}


.mainvisual__group {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.mainvisual__item {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    overflow: hidden;
    transition: opacity 3000ms ease 0s;
    background-color: #fff
}

    .mainvisual__item > a {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        -webkit-transition: opacity .3s ease;
        transition: opacity .3s ease
    }
  
/*------按下去-------*/
@media screen and (max-width:950px) {
    .mainvisual__item > a:active {
        opacity: .7
    }
} .mainvisual__item > active {
        opacity: .7
    }

@media screen and (min-width:951px) {
    .mainvisual__item > a:hover {
        opacity: .7
    }
    .mainvisual__item > hover {
        opacity: .7
    }
}

/*mainvisual__item img {
    position: absolute;
    top: -1000%;
    right: -1000%;
    bottom: -1000%;
    left: -1000%;
    min-width: calc(500% + 10px);
    max-width: none;
    min-height: calc(500% + 10px);
    margin: auto;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
   
    
}*/

.mainvisual__item img {
    max-width: 100%;
    height: auto;
    border-style: none;
    vertical-align: bottom;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%; 
    cursor: pointer;  
    -webkit-animation: 6s zoom-slider forwards;
    animation: 6s zoom-slider forwards
}



.is-initialized .mainvisual__item.is-active {
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity 1.8s ease;
    transition: opacity 1.8s ease;
}


.is-initialized .mainvisual__item {
    opacity: 0;
    -webkit-transition: opacity 3s ease 1.8s;
    transition: opacity 3s ease 1.8s;
}


  

@keyframes fadezoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.16);
    }
}
@keyframes zoom-slider {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1)
    }
}
@-webkit-keyframes zoom-slider {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1)
    }
}

@-moz-keyframes zoom-slider {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1)
    }
}

  .is-initialized .mainvisual__item:nth-child(n+2) {
        display: block
    }

.mainvisual__pagination {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 30px;
    left: 0;
    width: 100%
}

@media screen and (max-width:950px) {
    .mainvisual__pagination {
        bottom: 15px
    }
}

.mainvisual__pagination__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center
}

    .mainvisual__pagination__inner > * {
        width: 40px;
        height: 6px;
        margin-left: 20px;
        border-radius: 0;
        background-color: #eef4f7;
        opacity: 1
    }

@media screen and (max-width:950px) {
    .mainvisual__pagination__inner > * {
        width: 30px;
        height: 4px;
        margin-left: 10px
    }
}

.mainvisual__pagination__inner > :first-child {
    margin-left: 0
}

.mainvisual__pagination__inner > .swiper-pagination-bullet-active {
    background: -webkit-gradient(linear,left top,right top,color-stop(0,#338edc),color-stop(33%,#16a0d7),color-stop(66%,#02afb5),to(#3eb164));
    background: linear-gradient(to right,#338edc 0,#16a0d7 33%,#02afb5 66%,#3eb164 100%)
}

.mainvisual__control {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    left: 0;
    width: 100%
}

.mainvisual__control-next,
.mainvisual__control-prev {
    position: absolute;
    width: 40px;
    height: 40px;
    margin-top: 0px;
    /*background-size: cover;*/
    cursor: pointer;

}
@media screen and (max-width:1180px) {
    .mainvisual__control {
               top: 40%;}
}

@media screen and (max-width:950px) {
    .mainvisual__control-next,
    .mainvisual__control-prev {
        width: 40px;
        height: 40px;
        margin-top: 0px
    }
}

@media screen and (max-width:950px) {
    .mainvisual__control-next:active,
    .mainvisual__control-prev:active {
        opacity: .7
    }
}

@media screen and (min-width:951px) {
    .mainvisual__control-next:hover,
    .mainvisual__control-prev:hover {
        opacity: .7
    }
}

.mainvisual__control-prev {
    left: 20px;
   /* -webkit-transform: rotate(180deg);
    transform: rotate(180deg)*/
}

@media screen and (max-width:950px) {
    .mainvisual__control-prev {
        left: 10px
    }
}

.mainvisual__control-next {
    right: 20px
}

@media screen and (max-width:950px) {
    .mainvisual__control-next {
        right: 10px
    }
}

.slide__arrow {
    position: absolute;
    top: 0;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 46px;
    background: #fffffe;
    -webkit-box-shadow: 0 6px 30px 0 rgba(0,0,0,.15);
    box-shadow: 0 6px 30px 0 rgba(0,0,0,.15);
    cursor: pointer;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease
}

@media screen and (max-width:950px) {
    .slide__arrow:active {
        opacity: .7
    }
}

@media screen and (min-width:951px) {
    .slide__arrow:hover {
        opacity: .7
    }
}

.slide__arrow img {
    position: absolute;
    top: 17px;
    width: 18px
}

.slide__arrow.left {
    left: -56px
}

    .slide__arrow.left img {
        left: 13px;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

.slide__arrow.right {
    right: -56px
}

    .slide__arrow.right img {
        right: 13px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }

.slide__scrollBar {
    position: absolute;
    top: 22px;
    left: 0;
    width: 180px;
    height: 3px;
    background: #fffffe
}

.swiper-scrollbar-drag {
    height: 3px;
    background: -webkit-gradient(linear,left top,right top,from(#338edc),color-stop(30%,#16a0d7),color-stop(65%,#02afb5),color-stop(82%,#20b08d),to(#3eb164));
    background: linear-gradient(90deg,#338edc 0,#16a0d7 30%,#02afb5 65%,#20b08d 82%,#3eb164 100%);
    cursor: pointer
}

@media screen and (max-width:950px) {
    .slide__arrow {
        width: 35px;
        height: 35px;
        border-radius: 35px
    }

        .slide__arrow img {
            position: absolute;
            top: 13px;
            width: 18px
        }

        .slide__arrow.left {
            left: 0
        }

            .slide__arrow.left img {
                left: 7px
            }

        .slide__arrow.right {
            right: 0
        }

            .slide__arrow.right img {
                right: 7px
            }

    .slide__scrollBar {
        top: 18px;
        left: 50px;
        width: 140px
    }
}

@media screen and (max-width:950px) {
    .only-lg {
        display: none !important
    }
}

@media screen and (min-width:951px) {
    .only-sm {
        display: none !important
    }
}

.hidden {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important
}



.mainvisual__pagination {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 30px;
    left: 0;
    width: 100%
}

@media screen and (max-width:950px) {
    .mainvisual__pagination {
        bottom: 15px
    }
}

.mainvisual__pagination__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center
}

    .mainvisual__pagination__inner > * {
        width: 40px;
        height: 6px;
        margin-left: 20px;
        border-radius: 0;
        background-color: #eef4f7;
        opacity: 1
    }

@media screen and (max-width:950px) {
    .mainvisual__pagination__inner > * {
        width: 30px;
        height: 4px;
        margin-left: 10px
    }
}

.mainvisual__pagination__inner > :first-child {
    margin-left: 0
}

.mainvisual__pagination__inner > .swiper-pagination-bullet-active {
    background: -webkit-gradient(linear,left top,right top,color-stop(0,#338edc),color-stop(33%,#16a0d7),color-stop(66%,#02afb5),to(#3eb164));
    background: linear-gradient(to right,#338edc 0,#16a0d7 33%,#02afb5 66%,#3eb164 100%)
}

    
   	/*--------------------------------------------------------------------------------
	top_Bg
--------------------------------------------------------------------------------*/

.top_fv_sec {
    padding: 50px 0 150px 0;
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    background: #0B5092;
  }
  .top_dotBg {
    position: absolute;
       display: block;
    width: 100%;
    max-width: 100%;
    left: 30px;
    top: 0;
}
 .wavesBox {
    display: block;
    position: relative;
    text-align: center;
    background-color:#BED9EA;
    overflow:hidden;
    max-width: 100%;
    width: 100%;
    max-height: 180px;
    margin-top: -80px;
  }
.waves {
    position: relative;
    width: 100%;
   
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 180px;
    max-height: 180px;
  }
 
  /* Animation */
  .parallax>use {
    animation: move-forever 55s cubic-bezier(.55, .5, .45, .5) infinite;
  }
  .parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 20s;
  }
  .parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 18s;
  }
  .parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 21s;
  }
  .parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 35s;
  }
  @keyframes move-forever {
    0% {
      transform: translate3d(-90px, 0, 0);
    }
    100% {
      transform: translate3d(85px, 0, 0);
    }
  }
 
  
/*Shrinking for ipad*/
@media screen and (max-width:950px) {
    .mainvisual {
          top: 90px;
          height: 40vw;
    }
  
}
@media screen and (max-width:768px) {
    .mainvisual {
        height: 0;
        padding-top: 100%
    }
    .wavesBox {
        display:none

      }
}




   
    @media (max-width: 768px) {
      .waves {
        display: none;
      }
      .top_fv_sec {
          padding-top: 130px;
          padding-bottom:60px
    }
  
  }
/* ------------------
    
   內頁 

--------------------------- */


.sectionHero {
    overflow: hidden;
    display: block;
    margin: 100px auto 15px auto;
    padding-left: 5%;
    padding-right: 5%;
    
    background-color: #2860ac;
    position: relative;
}



.heroVisual {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-height: 300px;
    max-height: 300px;
    z-index:2
}




    
.heroVisual  img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
    pointer-events: none;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    z-index:3
}

.animation-loading.is-loaded {
    animation: finish-loading .4s forwards;
    animation-delay: 1.5s;
    animation-timing-function: ease-in;
}

@keyframes finish-loading {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
        visibility: hidden;
    }
}

.animation-keyvisual-after-load {
    animation: keyvisual-loaded 2.5s cubic-bezier(0.28, 0.37, 0.43, 0.99) forwards;
}

@keyframes keyvisual-loaded {
    0% {
        transform: scale(1.08);
        filter: brightness(1);
    }

    5% {
        filter: brightness(1.08);
    }

    30% {
        filter: brightness(1.02);
    }

    100% {
        transform: scale(1);
    }
}




    
/*==========================================
內頁--banner上方tit
===========================================*/

.page_ttl {
    margin: 0 auto;
    position: absolute;
    padding: 15px 30px ;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1;
    letter-spacing: 1px;
    z-index: 10;
    left: 0%;
    top: 25%;
    right: auto;
    bottom: auto;
    width: auto;
    box-shadow: 0 0.8rem 2.4rem rgb(49 84 153 / 10%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: all 700ms;
    transition: all 700ms;
    display: block;
    -webkit-border-top-right-radius: 20px;
-webkit-border-bottom-right-radius: 20px;
-moz-border-radius-topright: 20px;
-moz-border-radius-bottomright: 20px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
  }
  .page_ttl::before {
  position: absolute;
    content: "";
    width: 8px;
    height: 36px;
    top: 35px;
    left: 0;
    display: block;
    background-color: #ffd900;
    opacity: 0.9;
}
  
  .all_main_ttl {
    text-align: left;
    padding: 10px 15px 15px 0px;
    display: block;
    padding-left: 1px;
    position: relative;
    z-index: 2;
  }
  
  .all_main_ttl ._tw {
    padding-left: 10px;
    opacity: 0.9;
    letter-spacing: 0.03em;
    font-size: 18px;
    color: #1D2B3B;
    font-weight:600;
    padding-top: 10px;
  }
  .all_main_ttl ._en {
    font-style: normal;
      font-family: 'Montserrat','Open Sans' sans-serif;
      font-size: 50px;
      font-weight:600;
      text-transform: uppercase;
    
      background: linear-gradient(to right,
     #00affa 20%,
      #0E5DA8 30%,
      #0190cd 70%,
      #00affa 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
    }
    
    @keyframes textShine {
        0% {
            background-position: 0% 50%;
        }
        100% {
            background-position: 100% 50%;
        }
    }

    @media screen and (max-width:812px) {
        .sectionHero {
            margin-top: 60px
        }

        .page_ttl {
            padding: 15px 10px 15px 10px;}

            .all_main_ttl ._en {
                padding-left: 10px; 
                font-size:32px;
            }

            .all_main_ttl ._tw {
                font-size: 16px;
                                 
            }
            .page_ttl::before {
                width:5px;
                height: 100%;
                top: 0;
                left: 0;}

    }


   