





/*-----------------------------------------------
    banner  整體設定
-----------------------------------------------*/
.banner {
    --speed: 1000ms;
    --delay: 6500ms;
    --width: 10vw;
    /*! --height: 47rem; */


    position: relative;
    width: 100%;
    /*height: calc(100vh - 80px);*/
    min-height: 500px;
    overflow: hidden;
    font-family: var(--font-family2);
    margin: auto;
    height: var(--height);
    max-height: 830px;
    margin-top: 10px;
     transition: height 0.8s ease-in-out;
    aspect-ratio: 1920/800;
}


@media screen and (min-width: 1921px) {
    .banner {

        max-height: 95vh;
        --width: 0;
        --height: 61rem;
    }
}


@media screen and (min-width: 769px) and (max-width: 1920px) {
.banner.banner-top{
 height: 70vh;
  transition: all 1s ease-in-out;
 margin-left: 5.5rem;
 margin-top: 20px;
}
}


@media screen and (max-width: 1600px) {

.banner {

       aspect-ratio: 1920/818;
    }
}

@media screen and (max-width: 1440px) {

.banner {

       aspect-ratio: 1920/890;
    }
}



.banner-inner {
    position: relative;
    width: calc(100% + var(--width));
    left: calc(var(--width) / 2 * -1);
    transition-property: transform;
    transition-duration: var(--speed);
}

/* slideChange */
.slideChange .banner-inner {
    transition-duration: calc(var(--speed) - 0.2s);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-delay: 1s;
    transform: translate3d(calc(var(--width) / 2), 0, 0);
}

/* transitionEnd */
.transitionEnd .banner-inner {
    /*transition-duration: var(--delay);*/
    transition-duration: 2s;
    transition-timing-function: linear;
    /*修改-畫面偏左*/
    /*transform: translate3d(calc(var(--width) / 3 * -1), 0, 0);*/
    transform: translate3d(calc(var(--width) / 3 *0.5), 0, 0);
    transition-delay: 1s;
}

/* swiping transition */
.slideChange.touchMove .banner-inner {
    transition-timing-function: cubic-bezier(.08, .82, .17, 1);
}





/*-----------------------------------------------
    init
-----------------------------------------------*/

.banner .swiper-container {
    opacity: 0;
}

.banner .swiper-container.init {
    opacity: 1;
}


/*-----------------------------------------------
    swiper-slide
-----------------------------------------------*/

.banner__item {
    position: relative;
    transform: translate3d(0, 0, 0);
    box-sizing: border-box;
    overflow: hidden;
    width: calc(80%);
    height: 100%;
}


@media screen and (max-width: 1280px) {
    .banner__item {
        width: calc(90% - 0px);

    }
}


/* ---------- */



.banner-bg {
    position: relative;
    width: 100%;
    height: 60%;
    z-index: 1;
    overflow: hidden;
    transition: 0.8s cubic-bezier(.77, 0, .18, 1);
    transition-property: width;
    border-radius: 0;
    /*! background-color: rgb(244, 243, 235); */
}



@media screen and (min-width: 769px) and (max-width: 1920px) {
  .banner.banner-top .banner-bg {
    transition: .8s cubic-bezier(.77, 0, .18, 1);
    border-radius: 10px 0 0 10px;
  }
}






/* swiping transition */
.slideChange.touchMove .banner-bg {
    transition-timing-function: cubic-bezier(.08, .82, .17, 1);
}

.banner-bg-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
}

.banner-bg-inner:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 400% 0%;
    }
}

@media screen and (min-width: 1280px) {
    .banner-bg {
        height: 100%;
    }

    .init .banner-bg-inner:before {
        background-image: linear-gradient(110deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 80%);
        background-size: 250% 100%;
        background-repeat: no-repeat;
        animation: gradient 5s cubic-bezier(.77, 0, .18, 1) 1;
        animation-fill-mode: forwards;
    }

    .msie .banner-bg-inner {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .msie .banner-bg-inner img {
        display: none;
    }

    .banner-bg .img-in-corner::before,
    .banner-bg .img-in-corner::after {
        width: 35px;
        height: 35px;
    }
}


.banner-bg-inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;

}

.init .banner-bg img {
    opacity: 1;
    transition: 3s cubic-bezier(.77, 0, .18, 1);

    --delay: 0.5s;
    --base-time: 0.25s;
}



.init .banner__item:nth-child(1) .banner-bg-inner:before {
    animation-delay: calc(var(--base-time) + var(--delay) * 0);
}

.init .banner__item:nth-child(2) .banner-bg-inner:before {
    animation-delay: calc(var(--base-time) + var(--delay) * 0);
}

.init .banner__item:nth-child(3) .banner-bg-inner:before {
    animation-delay: calc(var(--base-time) + var(--delay) * 0);
}

.init .banner__item:nth-child(4) .banner-bg-inner:before {
    animation-delay: calc(var(--base-time) + var(--delay) * 0);
}

.init .banner__item:nth-child(5) .banner-bg-inner:before {
    animation-delay: calc(var(--base-time) + var(--delay) * 1);
}

.init .banner__item:nth-child(6) .banner-bg-inner:before {
    animation-delay: calc(var(--base-time) + var(--delay) * 2);
}

.init .banner__item:nth-child(7) .banner-bg-inner:before {
    animation-delay: calc(var(--base-time) + var(--delay) * 3);
}

.init .banner__item:nth-child(8) .banner-bg-inner:before {
    animation-delay: calc(var(--base-time) + var(--delay) * 4);
}

.init .banner__item:nth-child(9) .banner-bg-inner:before {
    animation-delay: calc(var(--base-time) + var(--delay) * 5);
}

.init .banner__item:nth-child(1) .banner-bg img {
    transition-delay: calc(var(--base-time) + var(--delay) * 0);
}

.init .banner__item:nth-child(2) .banner-bg img {
    transition-delay: calc(var(--base-time) + var(--delay) * 0);
}

.init .banner__item:nth-child(3) .banner-bg img {
    transition-delay: calc(var(--base-time) + var(--delay) * 0);
}

.init .banner__item:nth-child(4) .banner-bg img {
    transition-delay: calc(var(--base-time) + var(--delay) * 0);
}

.init .banner__item:nth-child(5) .banner-bg img {
    transition-delay: calc(var(--base-time) + var(--delay) * 1);
}

.init .banner__item:nth-child(6) .banner-bg img {
    transition-delay: calc(var(--base-time) + var(--delay) * 2);
}

.init .banner__item:nth-child(7) .banner-bg img {
    transition-delay: calc(var(--base-time) + var(--delay) * 3);
}

.init .banner__item:nth-child(8) .banner-bg img {
    transition-delay: calc(var(--base-time) + var(--delay) * 4);
}

.init .banner__item:nth-child(9) .banner-bg img {
    transition-delay: calc(var(--base-time) + var(--delay) * 5);
}


.banner-bg {
    width: 100%;
    height: 100%;
}

.transitionEnd [class*='active'] .banner-bg,
.transitionStart [class*='active'] .banner-bg {
    width: 70%;
}


@media screen and (min-width: 769px) and (max-width: 1920px) {



.banner.banner-top.transitionEnd [class*='active']  .banner-bg,
 .banner.banner-top.transitionStart [class*='active'] .banner-bg {
    width: 55%;
     height: 100%;
}


}




/*

.transitionEnd [class*='active'] a:hover .banner-bg-icon .label {
    height: 80px;
    opacity: 1;
    transition-delay: 0s, 0.25s;
}

.msie .transitionEnd .banner-bg,
.msie .transitionStart .banner-bg {
    width: 70% !important;
}
*/


@media screen and (max-width: 1280px) {

    .transitionEnd [class*="active"] .banner-bg,
    .transitionStart [class*="active"] .banner-bg {
        width: 75%;
    }
}


@media screen and (max-width: 768px) {

    .transitionEnd [class*="active"] .banner-bg,
    .transitionStart [class*="active"] .banner-bg {
        width: 100%;
    }
}

/*-----------------------------------------------
    banner 文字區塊
-----------------------------------------------*/


.banner-content {
    position: absolute;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    padding: 0;


    align-items: flex-start;
    align-items: flex-end;
    top: 0;
    bottom: auto;
    width: auto;
    min-width: 30%;
    height: 100%;
    text-align: left;
    /*! overflow: hidden; */
}






@media screen and (min-width: 769px) and (max-width: 1920px) {
.banner.banner-top .banner-content {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  align-items: flex-start;
  align-items: flex-end;
  top: 0;
  bottom: auto;
  width: 45%;
  min-width: 30%;
  height: 99.6%;
  text-align: left;
  border-right: 1px solid var(--dark08);
  border-radius: 0 10px 10px 0;
  border-bottom: 1px solid var(--dark08);
  border-top: 1px solid var(--dark08);
  /*! box-shadow: 1px 1px 5px var(--dark08); */
}

}

.banner-content-inner {
    width: auto;
    transform: translate3d(-80px, 0, 0);
    opacity: 1;
    writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-feature-settings: normal;
}



.transitionEnd [class*='active'] .banner-content-inner {
    transform: translate3d(0, 0, 0);
    transition-timing-function: linear;
    transition-duration: var(--speed), var(--delay);
}


@media screen and (min-width: 769px) and (max-width: 1920px) {

.banner.banner-top .banner-content-inner {
    width: auto;
    transform: translate3d(-80px, 0, 0);
    opacity: 1;
    writing-mode: initial;
}

.banner.banner-top.transitionEnd [class*='active'] .banner-content-inner {
    transform: translate3d(0, 0, 0);
    transition-timing-function: linear;
    transition-duration: 0.5s , 0.1s;
}

}


.banner__subttl {
    margin-left: 20px;
    padding: 10px 0;
    font-size: 1.3rem;
    align-self: flex-start;
}


@media screen and (max-width: 1280px) {

    .banner-content {

        min-width: 25%;

    }
}

@media screen and (max-width: 768px) {

    .banner-content {


        width: 100%;
        height: 17%;
        bottom: 0;
        top: initial;
        /*color: var(--white02);*/
        /*! background: var(--dark04); */
        z-index: 10;
    }

    .banner-content-inner {
        writing-mode: initial;
    }
}





/*-----------------------------------------------
    banner__read 文字設定
-----------------------------------------------*/
.banner-text {
    display: block;
    overflow: hidden;
    margin-left: 0.2em;
    letter-spacing: 0rem;
    color: var(--black02);
    line-height: 1.2;
}

.banner-text-inner {
    opacity: 1;
    display: inline-block;
    transform: translateX(-120%);
    transition: 1s cubic-bezier(.22, .61, .36, 1) 1s;
    transition-property: transform, opacity;
    backface-visibility: visible;
}

.banner-text:nth-child(1) .banner-text-inner {
    transition-delay: 1.0s;
}

.banner-text:nth-child(2) .banner-text-inner {
    transition-delay: 1.1s;
}

.banner-text:nth-child(3) .banner-text-inner {
    transition-delay: 1.2s;
}

.banner-text:nth-child(4) .banner-text-inner {
    transition-delay: 1.3s;
}

.banner-text:nth-child(5) .banner-text-inner {
    transition-delay: 1.4s;
}


.-b1 {
    font-size: var(--fs-xl);
    margin: 0;
}

.-b2 {
    margin: 8% 0 0 0%;
    font-size: var(--fs-2xl);
}

.-b3 {
    margin: 20% 2px 0 0;
    line-height: 1;
    font-size: var(--fs-s3);
    font-family: var(--font-family-eng);
    color: var(--orange);
    letter-spacing: 0.12rem;
    font-style: italic;
    font-weight: 600;
}




.-b4,
.-b5,
.-b6 {
    font-size: var(--fs-h5);
    line-height: 1.4;
    z-index: 1;
    letter-spacing: 0.05em;
}


.transitionEnd [class*='active'] .banner-text-inner,
.transitionStart [class*='active'] .banner-text-inner {
    transform: translateX(0);
}

.transitionEnd [class*='prev'] .banner-text-inner,
.transitionStart [class*='prev'] .banner-text-inner {
    transition-delay: 0s;
}



@media screen and (min-width: 769px) and (max-width: 1920px) {



.banner.banner-top    .banner-text-inner {
    transform: translateY(120%);
    opacity: 0;
}


.banner.banner-top .-b1 {
  font-size: var(--fs-h1);
  margin: 0;
}
.banner.banner-top  .-b2 {
    margin: 0;
    font-size: var(--fs-xl);
}
.banner.banner-top  .-b3 {
  margin: 2% 0 0 0;

}

.banner.banner-top.transitionEnd [class*='active'] .banner-text-inner,
.banner.banner-top.transitionStart [class*='active'] .banner-text-inner {
    transform: translateY(0);
    opacity: 1;
}



}




.contrast-mode--normal .banner__read {
    transform: scaleY(0.88);
    transform-origin: 0 0;
    letter-spacing: 0.075em;
}

.msie .banner-content-inner {
    transform: translateX(0);
}

.msie .banner-text-inner {
    transform: translateX(0);
}



@media screen and (max-width: 1600px) {

.-b1 {
    font-size: var(--fs-l);
    margin: 0;
}

.-b2 {
    margin: 8% 0 0 0%;
    font-size: var(--fs-xl);
}

.-b3 {
    margin: 20% 2px 0 0;
    line-height: 1;
    font-size: var(--fs-s3);
    letter-spacing: 0.12rem;
}

.-b4,
.-b5,
.-b6 {
    font-size: var(--fs-h6);
    line-height: 1.4;
    z-index: 1;
    letter-spacing: 0.05em;
}

}





@media screen and (max-width: 1440px) {

    .banner__read {
        margin: 30% 5% 0 0;

    }
}

@media screen and (max-width:1280px) {


    .banner__read {
        margin: 25% 5% 0 0;

    }


    .transitionEnd [class*='active'] .banner-content-inner {
        opacity: 1;
        transform: translate3d(20px, 0, 0);
        transition-timing-function: linear;
        transition-duration: 0.5s;
    }

    .msie .banner-content-inner {
        transform: translate3d(0, 0, 0) !important;
    }


    .banner-content-inner>* {
        /*! letter-spacing: 0.25em; */
    }

    .banner__subttl {
        position: relative;
        top: 0;
        align-self: center;
        height: auto;
        margin-bottom: 8px;
        padding: 0 5px;
        font-size: 1.1rem;
        font-weight: bold;
        text-indent: 0.1em;
        border: 0.5px solid rgba(0, 0, 0, 0);
        transition: border 0.5s ease-out;
    }

/*    .transitionEnd [class*='active'] .banner__subttl {
        border-color: rgba(0, 0, 0, 0.8);
    }
*/


    .banner .small {
        font-size: 80%;
    }



}


@media screen and (max-width: 768px) {
    .banner-text {
        display: block;
        overflow: hidden;
        margin-left: 0.2em;
        letter-spacing: 0rem;
        color: var(--white02);
        line-height: 1.2;
    }

    .-b1 {
        font-size: var(--fs-h4);
        margin: 0;
    }

    .-b2 {
        margin: 0 0 0 0;
        font-size: var(--fs-h1);
    }

    .-b3 {
        margin: 2% 2px 0 0;
        line-height: 1;
        font-size: var(--fs-s4);
        font-family: var(--font-family-eng);
        color: var(--orange);
        letter-spacing: 0.12rem;
        font-style: italic;
        font-weight: 600;
    }

    .-b4,
    .-b5,
    .-b6 {
        font-size: var(--fs-h5);
        line-height: 1.4;
        z-index: 1;
        letter-spacing: 0.05em;
    }

    .banner-text-inner {
        transition-property: transform, opacity;
        transform: translateX(50%) translateY(120%);
    }

    .transitionEnd [class*='active'] .banner-text-inner,
 .transitionStart [class*='active'] .banner-text-inner {
    transform:translateX(0%)  translateY(0);
}


}







/*-----------------------------------------------
    banner__tit 標題大字
-----------------------------------------------*/
.banner__tit {
    position: relative;
}

.contrast-mode--normal .banner__tit {
    transform: scaleY(.88);
    transform-origin: 0 0;
    letter-spacing: .05em;
}

@media screen and (max-width: 1280px) {


    .banner__tit {
        margin: 1% 0% 0 0;
    }
}

@media screen and (max-width: 768px) {
  .banner__tit {
    margin: 4% 5% 5% 5%;
  }
}


/*-----------------------------------------------
    banner__read 標題小字
-----------------------------------------------*/
.banner__read {
    display: block;
    position: relative;
    margin: 40% 9% 0 0;
    font-weight: 500;
}




@media screen and (min-width: 769px) and (max-width: 1920px) {
.banner.banner-top .banner__read {
  display: block;
  position: relative;
  margin: 20% 9% 0 0;
  font-weight: 500;
}

}

.banner__read>*:last-child {
    /*! margin-left: 0; */
}


.banner__tit {
    /*! margin-left: 20px; */
    /*font-size: 1.6rem;*/
    /*! overflow: hidden; */
    position: relative;
}

.contrast-mode--normal .banner__tit {
    transform: scaleY(.88);
    transform-origin: 0 0;
    letter-spacing: .05em;
}

@media screen and (max-width: 1280px) {

.banner__read {
  margin: 22% 6% 0 0;
}
}


/* Anchor ---------- */


.banner__item-anchor {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(100% - 40px);
    margin: 0 auto;
    box-sizing: border-box;
    pointer-events: none;
}

.swiper-slide-active .banner__item-anchor {
    pointer-events: auto
}

@media screen and (min-width: 1280px) {

    .banner-bg:before {
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        content: "";
        width: 100%;
        height: 100%;
        z-index: 5;
        /*! border: 3px solid rgba(0,0,0,0); */
        transition: border 0.25s ease-in-out;
        box-sizing: border-box;
        border-radius: 13px;
    }

    .swiper-slide-active .banner-bg:before {
        pointer-events: auto;
        border-color: currentColor;
    }

    .contrast-mode--normal .banner-bg:before {
        z-index: 2;
        transition: box-shadow 0.25s ease-in-out;
        border: none;
        /*box-shadow: inset 0 0 0 rgba(0,0,0,0);*/
    }

    .contrast-mode--normal .swiper-slide-active a:hover .banner-bg:before {
        /*box-shadow: inset 0 0 20px rgba(0,0,0,0.25);*/
    }

    .swiper-slide-active a:hover .banner-bg-icon {}

}



/* Swiper ------------------------------------------------------------------ */

.swiper-container {
    position: relative;
    height: 100%;
    margin: 0 auto;
}

.swiper-wrapper {
    height: calc(100% - 0px);
    margin: 0;
    transition-timing-function: cubic-bezier(.65, .05, .36, 1);
}

/* swiping transition */
.slideChange.touchMove .swiper-wrapper {
    transition-timing-function: cubic-bezier(.08, .82, .17, 1);
}


/* swiper-ui --------------------------------------------------------------- */

.swiper-ui {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    height: 100%;
    width: 100% - 0;
    margin: auto;
    pointer-events: none;
    box-sizing: border-box;
}

.swiper-ui>* {
    pointer-events: auto;
}

/* ----- */

.swiper-button-next,
.swiper-button-prev {
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    z-index: 10;
    cursor: pointer;
    background: transparent;
    border-radius: 5px;
    padding: 0;
    border: none !important;
    outline: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    margin: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    top: auto;
    bottom: 0;
    right: 0;
    left: auto;
    margin: auto;
}


.swiper-button-next svg,
.swiper-button-prev svg {
    width: 36px;
    height: 36px;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0px;
}


/*-----------------------------------------------
    swiper-pagination  選單
-----------------------------------------------*/

.swiper-pagination {
    top: auto;
    left: 0;
    right: 15%;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: right;
    height: 45px;
    pointer-events: none;
    color: rgba(50, 50, 50, 1);
}

.swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    width: auto;
    border-style: solid;

    height: 1px;
    margin: 0 5px;
    padding: 10px 5px;
    border-radius: 0;
    background: transparent;
    border: none !important;
    opacity: 0.6;
    transition: all 0.2s ease-out;
    pointer-events: auto;
    outline: none;
    min-width: 80px;
}

.swiper-pagination-bullet:before,
.swiper-pagination-bullet:after {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1px;
    margin: auto;
    opacity: 0;
    transition: 0.3s ease-in-out;
    transition-property: opacity, height;
    box-sizing: border-box;
    border-radius: 5px;
    /*background-image: var(--svg-v-line_2-bk);*/
    background-image: url(../images/bullet-bg.png);


}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0%;
    top: inherit;
    /*right: 14vw;*/
    min-width: 30%;
    z-index: 9;
    left: inherit;
}



@media screen and (min-width: 769px) and (max-width: 1920px) {
.banner.banner-top .swiper-horizontal>.swiper-pagination-bullets,
.banner.banner-top .swiper-pagination-bullets.swiper-pagination-horizontal,
.banner.banner-top .swiper-pagination-custom,
.banner.banner-top .banner.banner-top .swiper-pagination-fraction {
  bottom: 7%;
  top: inherit;
  right: 19vw;
  min-width: 30%;
  z-index: 9;
  left: inherit;
  /*! background: #fff; */
  bottom: 3%;
  width: auto;
}

}



.msie .swiper-pagination-bullet:before,
.msie .swiper-pagination-bullet:after {
    background-color: rgba(0, 0, 0, 0.5);
}

.swiper-pagination-bullet:before {}

.swiper-pagination-bullet:after {
    top: 0;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    border: none !important;
    opacity: 1;
}

.swiper-pagination-bullet-active:after {
    height: 3px;
    opacity: 0.25;
}

.swiper-pagination-bullet-active:before {
    opacity: 1;
    height: 6px;
    animation: bulletBar var(--delay) 1 linear 0s;
    animation-fill-mode: forwards;
    transition: opacity 0.3s ease;
}

@keyframes bulletBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.swiper-pagination-bullet span {
    font-size: var(--fs-s2);
    font-family: var(--font-family);
    letter-spacing: 0.1rem;
}


@media screen and (max-width: 1440px) {

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        right: 0;
        left: 0;

        margin: auto;
        justify-content: center;
    }


}

@media screen and (max-width: 768px) {

.swiper-pagination-bullet span {

  opacity: 0;
}


/*    Swiper Pagination - Compact Mode (Mobile + >=5)*/

.pagination--compact
.swiper-horizontal > .swiper-pagination-bullets,
.pagination--compact
.swiper-pagination-bullets.swiper-pagination-horizontal,
.pagination--compact
.swiper-pagination-custom,
.pagination--compact
.swiper-pagination-fraction {
    right: 0;
    left: 0;
    width: 100%;
    margin: auto;
    bottom: 1%;
}

/* 圓點 bullet */
.pagination--compact .swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    min-width: initial;
    border-radius: 10px;
    background: var(--black09);
    opacity: 1;
    overflow: hidden;
}

/* active 狀態 */
.pagination--compact .swiper-pagination-bullet-active {
    background: var(--black02);
}

/* 關閉原本的線條 / 動畫 */
.pagination--compact
.swiper-pagination-bullet::before,
.pagination--compact
.swiper-pagination-bullet::after {
    background-image: none !important;
    height: 0 !important;
    opacity: 0 !important;
}




/*swiper-pagination-bullet*/

.swiper-pagination-bullet {

    min-width: 70px;
}

.swiper-pagination-bullet:before,
.swiper-pagination-bullet:after {

    border-radius: 50px;



}


}

/*-----------------------------------------------
     text
-----------------------------------------------*/



.banner-inner {
    width: 100%;
    height: calc(100% - 70px);
    transition: transform .3s ease;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    margin: 0 10px;
    transform: scale(0.7);
    transition: transform 1s ease;
    position: relative;
    /*! margin: 0 5px; */
}

.swiper-slide-active {
    transform: scale(1);

}

/*.banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}*/

.banner-bg {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 10;
    /*! width: 70%; */
}

.banner-bg figure,
.banner-bg img {
    /*display: block;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% center;
}




.banner-bg img{
    width: initial;
    height: 100%;
}


    .transitionEnd [class*='active'] .banner-bg img,
 .transitionStart [class*='active'] .banner-bg img {
    width: 100%;
    height: inherit;
}






.banner-content-inner {
    position: absolute;
    top: 5%;
    z-index: 2;
    color: #000;
    transform: translate3d(200px, 0, 0);
    transition: all 0.8s ease;
    height: 95%;
    right: 10%;
    width: 100%;
}



@media screen and (min-width: 769px) and (max-width: 1920px) {

.banner.banner-top .banner-content-inner {
    right: initial;
    top: 15%;
    min-width: 70%;
    left: 16%;
}



}

.banner-bg {


border-radius: 10px;
}


.swiper-slide-active .banner-content-inner {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.swiper {
    width: 80%;
    /*! height: 87vh; */
    overflow: visible;
    /*! margin: 5% auto; */
}
/* .banner-swiper {
     aspect-ratio: 1920 / 630;
 }*/



@media screen and (max-width:1600px) {
.banner-content-inner {
        /*! top: 5%; */
        /*! right: 0; */
}


}




@media screen and (max-width: 768px) {

    .banner {
        width: 100%;
        height: 170vw;
        overflow: hidden;
        padding: 0 0 0 0;
    }

    .banner-bg {
        width: 100%;
        height: 100%;
        position: relative;
        border-radius: 10px;
    }

    .banner-content-inner {
        position: absolute;
        top: 0%;
        right: 5%;
        z-index: 2;
        opacity: 0;
        overflow: hidden;
    }


    .swiper-slide {

  border-radius: 10px;
  overflow: hidden;
  width: 95%;
  margin: 0 0px 0 10px;
}
}



/*-----------------------------------------------
    border-radius
-----------------------------------------------*/



.banner-content a.btn-more {
    width: 30px;
    bottom: 7%;
    left: 1%;
    position: absolute;


    z-index: 10;
    /*! overflow: hidden; */
    writing-mode: vertical-rl;
    transform: translate3d(0%, 10px, 0);
    margin: 0;
    padding: 2rem 0 1rem;
    border: 0;
    color: var(--black02);
    font-size: var(--fs-df);
    font-weight: 500;
    height: auto;
    background: transparent;
    letter-spacing: 0.1rem;
}

/*白底三角形*/
.banner-content a.btn-more:before {
    content: '';
    position: absolute;
    width: 6.3rem;
    height: 5rem;
    z-index: -1;
    top: -2rem;
    right: 0;
    clip-path: polygon(100% 0, 40% 45%, 100% 100%);

    background: var(--bg-color);
    display: none;
}

.banner-content .btn-more:hover {
    color: var(--orange);
    /*letter-spacing: 0.2rem;*/
    /*background: transparent;*/
}


@keyframes morefadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@keyframes fadeInLeft {

    0%,
    60% {
        opacity: 0;
        transform: translate3d(-50%, 10px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0%, 10px, 0);
    }
}

@keyframes fadeInRight {

    0%,
    60% {
        opacity: 0;
        transform: translate3d(50%, 10px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0%, 10px, 0);
    }
}



@keyframes dashed {
    0% {
        height: 10%;
    }

    100% {
        height: 55%;
    }
}


/*虛線*/
.banner-content .btn-more::after {
    content: "";
    position: absolute;
    top: 30%;
    right: -3px;
    width: 1px;
    height: 0%;
    border-right: 1px dashed #000;
    opacity: 0.8;
    transform: scale(-1);
}


/*icon-location*/
.banner-inner .btn-more span {
    content: '';
    position: absolute;
    top: 0.2rem;
    right: 16%;
    /*opacity: 0;*/
    background: url(../images/icon-location.png) center /100% no-repeat;
    width: 1.2rem;
    height: 1.2rem;
    /*animation:fadeInRight 1s cubic-bezier(.250, .460, .450, .940) 1.5s 1 both;*/
    z-index: 1;
}



/* active*/
.swiper-slide-active .banner-content .btn-more {
    transform: translate3d(120%, 10px, 0);
    animation: fadeInLeft 1s cubic-bezier(.250, .460, .450, .940) 1.6s 1 both;
}



.swiper-slide-active .banner-content .btn-more:before {
    animation: fadeInLeft 1s cubic-bezier(.250, .460, .450, .940) 1.6s 1 both;
}


.swiper-slide-active .banner-content .btn-more::after {
    animation: dashed .5s cubic-bezier(.250, .460, .450, .940) 2.5s 1 both;
}


@media screen and (max-width: 768px) {
    .banner-content .btn-more {
        display: none;
        position: absolute;
        left: 10px;
        top: 75%;
        writing-mode: vertical-rl;
        color: #000;
        padding: 0;
        letter-spacing: 0.5rem;
        font-weight: 600;

        margin: 0;
    }


}

/*-----------------------------------------------
    dash-line
-----------------------------------------------*/

/*dash-line*/




.dash-line {
    position: absolute;
    right: 22.8%;
    top: 0;
    width: 1px;
    height: 100%;
    border-left: 1px dashed var(--black09);
    z-index: 2;
}

.swiper-slide-active .dash-line {
     animation: dashLine .5s ease-out 1.5s 1 both;
}


@media screen and (min-width: 769px) and (max-width: 1920px) {
.dash-line {
  right: 19.8%;
}

}


@keyframes dashLine {

    0%,
    50% {
        opacity: 1;
        transform: scaleY(1);
    }

    90%,
    100% {
        opacity: 0;
        transform: scaleY(1.5);
    }

}


.dash-line:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    /*background: url(../images/icon-star.png) center 0 /100% no-repeat;*/
    border-radius: 50%;
    background: #fff;
    top: -20px;
    left: -20px;

}

.dash-line:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    /*background: url(../images/icon-star.png) center 0 /100% no-repeat;*/
    bottom: -25px;
    left: -25px;

    transform: scale(-1);
}


@keyframes dashLine-m {

    0%,
    50% {
        opacity: 1;
        transform: scaleY(1);
        bottom: 0%;
    }

    90%,
    100% {
        opacity: 1;
        transform: scaleY(1);
        bottom: 16.6%;
    }

}

@media screen and (max-width: 768px) {
/*
	.dash-line {
    position: absolute;
    right: 22.8%;
    top: 0;
    width: 1px;
    height: 100%;
    border-left: 1px dashed var(--black09);
    z-index: 2;
}
*/

	.swiper-slide-active .dash-line {
     animation: dashLine-m .5s ease-out .5s 1 both;
}


.dash-line {
  left: 0;
  top: initial;
  height: 1px;
  width: 100%;
  border-bottom: 1px dashed var(--pale08);
  border-left: 0px;
  bottom: 16.5%;
}
.dash-line::after {
  content: '';
  bottom: -20px;
  right: -20px;
  transform: scale(-1);
  left: initial;
  width: 40px;
  height: 40px;
}
}



/*-----------------------------------------------
    偽機票
-----------------------------------------------*/
.ticket-cover {
    position: absolute;
    width: 0%;
    height: 100%;
    right: 0;
    top: 0;
    background-image: url(../images/ticket.png);
    background-color: rgba(0, 0, 0, 0.6);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: 200px;
    z-index: 1;
}



@media screen and (min-width: 769px) and (max-width: 1920px) {
.banner.banner-top .ticket-cover {

  background-size: 130px;
}
}





/*3角*/
.ticket-cover:before {
content: '';
  position: absolute;
  width: 3rem;
  height: 2.5rem;
  z-index: -1;
  top: 76%;
  right: -1px;
  clip-path: polygon(100% 0, 40% 45%, 100% 100%);
  background: var(--bg-color);
z-index: 19;
}

.swiper-slide-active .ticket-cover:before {
    animation: triangel .5s ease-in 1.6s 1 both;
}



.swiper-slide-active .ticket-cover {
    animation: whiteCover .5s ease-in 1.5s 1 both;
}

@media screen and (min-width: 769px) and (max-width: 1920px) {

.swiper-slide-active .ticket-cover {
    animation: whiteCover-s .5s ease-in 1.5s 1 both;
}



}




@keyframes triangel {

    0%,
    50% {
        opacity: 0;
        right: -50px;
    }

    100% {
        opacity: 1;
        right: -1px;
    }

}


@keyframes whiteCover {

    0%,
    50% {
        width: 23%;
    }

    100% {
        width: 0%;
    }


}
@keyframes whiteCover-s {

    0%,
    50% {
        width: 20%;
    }

    100% {
        width: 0%;
    }


}

@keyframes whiteCover-m {

    0%,
    50% {
        height: 0;
        opacity: 0;
    }

    100% {
        height: 17%;
        opacity: 1;
    }

}

@media screen and (max-width: 1440px) {

    .ticket-cover {

        background-size: 120px;
    }

}



@media screen and (max-width: 768px) {

	.ticket-cover {
    width: 100%;
    height: 0%;
    right: 0;
    top: initial;
    bottom: 0;
    background-image: url(../images/ticket-m.png);
    background-color: rgba(0, 0, 0, 0.7);
    background-position: 96% 70%;
    background-repeat: no-repeat;
    background-size: 80px;
    z-index: 1;
}



    .swiper-slide-active .ticket-cover {
        animation: whiteCover-m .5s ease-in 0.5s 1 both;
    }

    .ticket-cover:before {
display: none;
}


}


/*-----------------------------------------------
    dot 文字雜點
-----------------------------------------------*/
.dot {}

.swiper-slide-active .dot:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 10;
    background: url(../images/dot.png) center 0 repeat;
    animation: dot .1s cubic-bezier(.250, .460, .450, .940) 1.4s 1 both;


}

@keyframes dot {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@media screen and (max-width: 768px) {

.swiper-slide-active .dot::after {
  content: '';

  width: 60%;
  height: 70%;
  background: url(../images/dot.png) 70% /200% repeat;
}
}


/*-----------------------------------------------
    banner-cover左右兩邊
-----------------------------------------------*/


@media screen and (min-width: 769px) and (max-width: 1920px) {

  .banner.banner-top .cover-l {
    position: absolute;
    left: 3px;
    top: 0;
    width: 9.3rem;
    /*! width: 16.8rem; */
    height: 101%;
    background: var(--bg-color);
    z-index: 10;
    border-radius: 0;
    transition: all .3s ease;
  }

  .banner.banner-top .cover-r {
    position: absolute;
    right: -10%;
    top: 0;
    height: 100%;
    width: 11%;
    background: var(--bg-color);
    z-index: 10;
    border-radius: 0;
    transition: all .3s ease;
    display: none;
  }

}


.cover-l:before {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 0px;
    background: url(../images/radius.png) center 0 /100% no-repeat;
    transform: scale(-1);
    width: 0.5rem;
    height: 0.5rem;
}

.cover-l:after {
    content: '';
    position: absolute;
    right: -0.5rem;
    bottom: 4px;
    background: url(../images/radius.png) center 0 /100% no-repeat;
    transform: scaleX(-1);
    width: 0.5rem;
    height: 0.5rem;
}


.cover-r:before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0px;
    background: url(../images/radius.png) center 0 /100% no-repeat;
    transform: scaleY(-1);
    width: 0.5rem;
    height: 0.5rem;
}

.cover-r:after {
    content: '';
    position: absolute;
    left: -0.5rem;
    bottom: 0px;
    background: url(../images/radius.png) center 0 /100% no-repeat;
    transform: scaleY(1);
    width: 0.5rem;
    height: 0.5rem;
}

.cover-l span {
    position: absolute;
    top: 0;
    right: -13%;
    width: 1rem;
    height: 100%;
    border-right: 1px dashed var(--white05);
    z-index: 10;
}

.cover-r span {
    position: absolute;
    top: 0;
    left: -13%;
    width: 1rem;
    height: 100%;
    border-right: 1px dashed var(--white05);
    z-index: 10;
}

.banner .cover-l {
    left: -11%;
    transition: all .5s ease;

}


.banner .cover-r {
    right: -21%;
    transition: all .5s ease;

}

@media screen and (max-width: 1440px) {
     .banner.banner-top .cover-l,
  .banner.banner-top .cover-r {
    /*width: 15.5rem;*/
    /*width: 16.3rem;*/
    width: 8.7rem;
  }


}
@media screen and (max-width: 1280px) {

    .cover-l,
    .cover-r {
        width: 8%;
    }

}


@media screen and (max-width: 768px) {

    .cover-l,
    .cover-r {
        display: none;
    }

      .banner.banner-top .cover-l,
  .banner.banner-top .cover-r {
    display: none;
  }

}



/*-----------------------------------------------
    .top-banner定位
-----------------------------------------------*/
.top-banner {
    /*不可刪*/
    /*! aspect-ratio: 1920 / 1060; */

}

@media screen and (min-width: 1921px) {

    .top-banner {
    /*不可刪*/
    aspect-ratio: 1920 / 930;

}

}



/*-----------------------------------------------
    btn-link-m 手機連結
-----------------------------------------------*/
.btn-link{
display: block;
width: 100%;
height: 100%;
    background: transparent;
position: absolute;
z-index: 500;
}




