/* 字體 */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");

@font-face {
    font-family: "Futura-Std-Book";
    src: url(../../fonts/Futura-Std-Book.otf);
}

@font-face {
    font-family: "Futura-Std-Light";
    src: url(../../fonts/Futura-Std-Light.otf);
}

@font-face {
    font-family: "Futura-Std-Medium";
    src: url(../../fonts/Futura-Std-Medium.OTF);
}

@font-face {
    font-family: "AdobeMingStd-Light";
    src: url(../../fonts/DFFN_6.TTC);
}

@font-face {
    font-family: "Raleway";
    src: url(../../fonts/Raleway-VariableFont_wght.ttf);
}

@font-face {
    font-family: "jf-jinxuan-fresh2.2-Medium";
    src: url(../../fonts/金萱2.2半糖.otf);
}

.Futura-Std-Book {
    font-family: "Futura-Std-Book";
}

.Futura-Std-Light {
    font-family: "Futura-Std-Light";
}

.Futura-Std-Medium {
    font-family: "Futura-Std-Medium";
}

.Raleway {
    font-family: "Raleway";
}

.jf-jinxuan {
    font-family: "jf-jinxuan-fresh2.2-Medium";
}

.AdobeMingStd-Light {
    font-family: "AdobeMingStd-Light";
}

body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    /* background-color: #f8f8f6; */
    --vw-base: calc(100vw / 768);
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}



.loading {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    background-color: #edd6ae;
}

.la-square-loader,
.la-square-loader>div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.la-square-loader {
    display: block;
    font-size: 0;
    color: #fff;
}

.la-square-loader.la-dark {
    color: #fff;
}

.la-square-loader>div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.la-square-loader {
    width: 32px;
    height: 32px;
}

.la-square-loader>div {
    width: 100%;
    height: 100%;
    background: transparent;
    border-width: 2px;
    border-radius: 0;
    -webkit-animation: square-loader 3s infinite ease;
    -moz-animation: square-loader 3s infinite ease;
    -o-animation: square-loader 3s infinite ease;
    animation: square-loader 3s infinite ease;
}

.la-square-loader>div:after {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    content: "";
    background-color: currentColor;
    -webkit-animation: square-loader-inner 3s infinite ease-in;
    -moz-animation: square-loader-inner 3s infinite ease-in;
    -o-animation: square-loader-inner 3s infinite ease-in;
    animation: square-loader-inner 3s infinite ease-in;
}

.la-square-loader.la-sm {
    width: 16px;
    height: 16px;
}

.la-square-loader.la-sm>div {
    border-width: 1px;
}

.la-square-loader.la-2x {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.la-square-loader.la-2x>div {
    border-width: 2px;
}

.la-square-loader.la-3x {
    width: 96px;
    height: 96px;
}

.la-square-loader.la-3x>div {
    border-width: 6px;
}


/*
 * Animations
 */
@-webkit-keyframes square-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    75% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes square-loader {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    50% {
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    75% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes square-loader {
    0% {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    50% {
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    75% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes square-loader {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    75% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes square-loader-inner {
    0% {
        height: 0;
    }

    25% {
        height: 0;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0;
    }
}

@-moz-keyframes square-loader-inner {
    0% {
        height: 0;
    }

    25% {
        height: 0;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0;
    }
}

@-o-keyframes square-loader-inner {
    0% {
        height: 0;
    }

    25% {
        height: 0;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0;
    }
}

@keyframes square-loader-inner {
    0% {
        height: 0;
    }

    25% {
        height: 0;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0;
    }
}



.all {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.opacity1 {
    opacity: 1;
}



/*footer-nav*/
.footer-nav {
    width: 100%;
    position: fixed;
    height: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    box-sizing: border-box;
    display: none;
    background-color: rgba(57, 50, 44, 0.79);
}

.footer-li {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.footer-nav:after {
    content: "";
    clear: both;
    display: block;
}

.footer-nav-li {
    width: 25%;
    float: left;
    position: relative;
}

.footer-nav-li::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 8vw;
    right: 0;
    top: 20%;
    background-color: #fff;
    opacity: 0.5;
}

.footer-nav-li5::after {
    background-color: transparent;
}

.icon {
    width: 8vw;
    height: auto;
    display: block;
    margin: 15% auto;
}

.icon img {
    width: 100%;
    object-fit: cover;
}



.swiper-button-prev {
    width: 4vw !important;
    height: 7.135vw !important;
    left: 1vw;
    top: 49%;
    margin: 0;
    z-index: 998 !important;
    background-image: url(../img/arrow-l.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 4vw 7.135vw;
    overflow: hidden;
    transition: all 0.3s ease;
}

.swiper-button-next {
    width: 7vw !important;
    height: 7.135vw !important;
    right: 1vw;
    top: 49%;
    margin: 0;
    z-index: 998 !important;
    background-image: url(../img/arrow-r.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 4vw 7.135vw;
    overflow: hidden;
    transition: all 0.3s ease;
}




.opacity {
    opacity: 0;
    transition: all 0.3s linear;
}

.opacity1 {
    opacity: 1;
    transition: all 0.3s linear;
}


/*頁面1*/
.main1 {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.main1>img {
    width: 100%;
    object-fit: cover;
}

.main1-mask {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    mix-blend-mode: multiply;
}

.main1-logo {
    width: 72vw;
    height: auto;
    position: absolute;
    left: 14vw;
    top: 33vw;
}

.main1-logo-li {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.main1-flower {
    width: 72.5vw;
    height: auto;
    position: absolute;
    left: 13vw;
    top: 50vw;
}

.logo-txt {
    width: 72vw;
    height: auto;
    position: absolute;
    top: 110vw;
    left: 14vw;
}

.logo-txt-li {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.logo-box {
    width: 72vw;
    height: 15vw;
    position: absolute;
    top: 130vw;
    left: 14vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 6vw;
    letter-spacing: 0.4vw;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3c2717;
}

.logotxt-min {
    font-size: 2.8vw;
}

.logo-box .line {
    background-color: #000;
    position: absolute;
}

.logo-box .line1 {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
    animation: bg1_line1_ani 1s forwards linear;
    animation-delay: 4s;
}

.logo-box .line2 {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
    animation: bg1_line2_ani 1s forwards linear;
    animation-delay: 4s;
}

.logo-box .line3 {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
    animation: bg1_line3_ani 1s forwards linear;
    animation-delay: 4s;
}

.logo-box .line4 {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
    animation: bg1_line4_ani 1s forwards linear;
    animation-delay: 4s;
}

@keyframes bg1_line1_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 72vw;
    }
}

@keyframes bg1_line2_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 15vw;
    }
}

@keyframes bg1_line3_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 72vw;
    }
}

@keyframes bg1_line4_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 15vw;
    }
}

.logo-box .logotxt {
    animation: bg1_txt_ani 1s forwards linear;
    animation-delay: 5s;
    opacity: 0;
}

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

    100% {
        opacity: 1;
    }
}



/*頁面2*/
.main2 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main2>img {
    width: 100%;
    object-fit: cover;
}

.main2 .pic-txt {
    position: absolute;
    right: 3vw;
    top: 3vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 400;
    font-size: 3.3vw;
    line-height: 4vw;
    letter-spacing: 0.05vw;
    color: #fff;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0));
}

.main2-bd {
    width: 100vw;
    position: absolute;
    right: 0;
    bottom: 0;
}

.main2 .txt-box {
    width: 53vw;
    height: 31vw;
    position: absolute;
    top: 14vw;
    left: 9.5vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3vw;
    letter-spacing: 0.1vw;
    color: #000;
}

.txt-box .cht {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 5vw;
    line-height: 6vw;
    letter-spacing: 2vw;
    position: absolute;
    left: 3vw;
    bottom: 1.5vw;
}

.main2 .txt-box .eng {
    position: absolute;
    top: 2vw;
    right: 2vw;
    font-family: "Raleway";
    font-weight: 300;
    font-size: 2.3vw;
    letter-spacing: 0.1vw;
}

.main2 .txt-box .line {
    background-color: #000;
    position: absolute;
}

.main2 .txt-box .line1 {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;

}

.main2 .txt-box .line2 {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;

}

.main2 .txt-box .line3 {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;

}

.main2 .txt-box .line4 {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;

}

.main2 .txt-box .line1.active {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
    animation: bg2_line1_ani 1s forwards linear;

}

.main2 .txt-box .line2.active {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
    animation: bg2_line2_ani 1s forwards linear;

}

.main2 .txt-box .line3.active {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
    animation: bg2_line3_ani 1s forwards linear;

}

.main2 .txt-box .line4.active {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
    animation: bg2_line4_ani 1s forwards linear;

}

@keyframes bg2_line1_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 53vw;
    }
}

@keyframes bg2_line2_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

@keyframes bg2_line3_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 53vw;
    }
}

@keyframes bg2_line4_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

.main2-flower {
    width: 21vw;
    height: auto;
    position: absolute;
    left: 46vw;
    top: 22.5vw;
}

.main2 .cent {
    width: 53vw;
    position: absolute;
    top: 51vw;
    left: 9.5vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3.3vw;
    line-height: 5.3vw;
    letter-spacing: 0.25vw;
    color: #000;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
}




/*頁面3*/
.main3 {
    position: relative;
    width: 100%;
    height: calc(1460*var(--vw-base));
    overflow: hidden;
    background-color: #fff;
}

.main3>img {
    width: 100%;
    object-fit: cover;
}

.main3-bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.main3 .bg-contain {
    position: relative;
    height: 100%;
    width: calc(2208*var(--vw-base));
}

/* .bg-light {
    position: absolute;
    height: 100%;
    width: calc(2208*var(--vw-base));
    left: 0;
    top: 0;
    z-index: 1;
    animation: m2-light 1s ease 0.6s infinite;
} */

@keyframes m2-light {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.main3-scroll {
    position: absolute;
    left: calc(266*var(--vw-base));
    bottom: calc(57*var(--vw-base));
    width: calc(194*var(--vw-base));
    height: calc(54*(var(--vw-base)));
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 1));
    z-index: 15;
}

.main3-scroll>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: m2-light 5s ease 0.5s infinite;
}

.main3-scroll .s1 img {
    --move: -10px;
}

@keyframes scroll-arrow {
    0% {
        transform: translateX(0);
    }

    35% {
        transform: translateX(calc(var(--move) * 1));
    }

    70% {
        transform: translateX(0);
    }
}

.main3-scroll .s3 img {
    --move: 10px;
}

.main3-scroll .s1 img,
.main3-scroll .s3 img {
    animation: scroll-arrow 2s ease infinite;
}

.main3-scroll img {
    object-fit: contain;
}


.main3 .txt-box {
    width: 53vw;
    height: 31vw;
    position: absolute;
    top: 14vw;
    left: 9.5vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3vw;
    letter-spacing: 0.1vw;
    color: #fff;
    z-index: 2;
}

.main3 .txt-box .cht {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 5vw;
    line-height: 7vw;
    letter-spacing: 2vw;
    position: absolute;
    left: 3vw;
    top: 2vw;
}

.main3 .txt-box .eng {
    position: absolute;
    top: 2vw;
    right: 2vw;
    font-family: "Raleway";
    font-weight: 300;
    font-size: 2.3vw;
    letter-spacing: 0;
}

.main3 .txt-box .line {
    background-color: #fff;
    position: absolute;
}

.main3 .txt-box .line1 {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
}

.main3 .txt-box .line2 {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
}

.main3 .txt-box .line3 {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
}

.main3 .txt-box .line4 {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
}

.main3 .txt-box .line1.active {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
    animation: bg3_line1_ani 1s forwards linear;

}

.main3 .txt-box .line2.active {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
    animation: bg3_line2_ani 1s forwards linear;

}

.main3 .txt-box .line3.active {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
    animation: bg3_line3_ani 1s forwards linear;

}

.main3 .txt-box .line4.active {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
    animation: bg3_line4_ani 1s forwards linear;

}

@keyframes bg3_line1_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 53vw;
    }
}

@keyframes bg3_line2_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

@keyframes bg3_line3_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 53vw;
    }
}

@keyframes bg3_line4_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

.main3-flower {
    width: 25vw;
    height: auto;
    position: absolute;
    left: 48vw;
    top: 20.5vw;
    z-index: 2;
}

.main3 .cent {
    width: 80vw;
    position: absolute;
    top: 51vw;
    left: 9.5vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3.3vw;
    line-height: 5.3vw;
    letter-spacing: 0.25vw;
    color: #fff;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
    z-index: 2;
}

.main3-logo {
    width: 20vw;
    position: absolute;
    left: 106vw;
    top: 73vw;
    transform: translateX(-50%);
    animation: main3-logo-shine 1s infinite linear;
}

@keyframes main3-logo-shine {
    0% {
        filter: brightness(90%);
    }

    50% {
        filter: brightness(115%);
    }

    100% {
        filter: brightness(90%);
    }
}



/*頁面4*/
.main4 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main4>img {
    width: 100%;
    object-fit: cover;
}

.main4 .banner {
    width: 85vw;
    height: 72vw;
    position: absolute;
    left: 5vw;
    top: 98vw;
    overflow: hidden;
    z-index: 10;
}

.main4 .banner .swiper-container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.main4-img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0vw;
    top: 0vw;
}

.main4 .banner .pic-txt {
    position: absolute;
    right: 2vw;
    bottom: 1vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 3.3vw;
    line-height: 4vw;
    letter-spacing: 0.05vw;
    color: #fff;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 1));
}

.main4-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main4 .txt-box {
    width: 64vw;
    height: 31vw;
    position: absolute;
    top: 30vw;
    left: 26vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3vw;
    letter-spacing: 0.1vw;
    color: #000;
}

.main4 .txt-box .cht {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 5vw;
    line-height: 7vw;
    letter-spacing: 2.5vw;
    position: absolute;
    left: 3vw;
    bottom: 2vw;
}

.main4 .txt-box .eng {
    position: absolute;
    top: 2vw;
    right: 2vw;
    font-family: "Raleway";
    font-weight: 300;
    font-size: 2.3vw;
    letter-spacing: 0;
}

.main4 .txt-box .line {
    background-color: #000;
    position: absolute;
}

.main4 .txt-box .line1 {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
}

.main4 .txt-box .line2 {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
}

.main4 .txt-box .line3 {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
}

.main4 .txt-box .line4 {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
}

.main4 .txt-box .line1.active {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
    animation: bg4_line1_ani 1s forwards linear;

}

.main4 .txt-box .line2.active {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
    animation: bg4_line2_ani 1s forwards linear;

}

.main4 .txt-box .line3.active {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
    animation: bg4_line3_ani 1s forwards linear;

}

.main4 .txt-box .line4.active {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
    animation: bg4_line4_ani 1s forwards linear;

}

@keyframes bg4_line1_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 64vw;
    }
}

@keyframes bg4_line2_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

@keyframes bg4_line3_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 64vw;
    }
}

@keyframes bg4_line4_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

.main4-flower {
    width: 32vw;
    height: auto;
    position: absolute;
    left: 37vw;
    top: 14.5vw;
}

.main4 .cent {
    width: 64vw;
    position: absolute;
    top: 68vw;
    left: 26vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3.3vw;
    line-height: 5.3vw;
    letter-spacing: 0.25vw;
    color: #000;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
}


/*頁面5*/
.main5 {
    width: 100%;
    position: relative;
    /*overflow: hidden;*/
}

.main5>img {
    width: 100%;
    object-fit: cover;
}

.main5-mask {
    width: 80vw;
    position: absolute;
    left: 0;
    top: -70vw;
}

.main5 .banner {
    width: 85vw;
    height: 110vw;
    position: absolute;
    left: 10vw;
    top: 100vw;
    overflow: hidden;
}

.main5 .banner .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.main5-img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.main5-txt {
    width: 82vw;
    position: absolute;
    right: 3vw;
    bottom: 10vw;
    color: #000;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 2.3vw;
    line-height: 3vw;
    letter-spacing: 0.1vw;
}

.main5-txt h2 {
    font-size: 4.8vw;
    height: 5vw;
}

.main5-txt h4 {
    font-size: 3.3vw;
    line-height: 5.3vw;
    letter-spacing: 0.05vw;
    padding: 0;
    margin: 0;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
}

.main5 .banner .pic-txt {
    position: absolute;
    right: 2vw;
    top: 61vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 3.3vw;
    line-height: 4vw;
    letter-spacing: 0.05vw;
    color: #fff;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 1));
}

.main5-img img {
    width: 100%;
    object-fit: cover;
}

.main5 .txt-box {
    width: 57vw;
    height: 31vw;
    position: absolute;
    top: 0vw;
    left: 10vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3vw;
    letter-spacing: 0.1vw;
    color: #000;
}

.main5 .txt-box .cht {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 5vw;
    line-height: 7vw;
    letter-spacing: 1.55vw;
    position: absolute;
    left: 3vw;
    bottom: 2vw;
}

.main5 .txt-box .eng {
    position: absolute;
    top: 2vw;
    right: 2vw;
    font-family: "Raleway";
    font-weight: 300;
    font-size: 2.3vw;
    letter-spacing: 0;
}

.main5 .txt-box .line {
    background-color: #000;
    position: absolute;
}

.main5 .txt-box .line1 {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
}

.main5 .txt-box .line2 {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
}

.main5 .txt-box .line3 {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
}

.main5 .txt-box .line4 {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
}

.main5 .txt-box .line1.active {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
    animation: bg5_line1_ani 1s forwards linear;
}

.main5 .txt-box .line2.active {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
    animation: bg5_line2_ani 1s forwards linear;
}

.main5 .txt-box .line3.active {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
    animation: bg5_line3_ani 1s forwards linear;
}

.main5 .txt-box .line4.active {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
    animation: bg5_line4_ani 1s forwards linear;
}

@keyframes bg5_line1_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 57vw;
    }
}

@keyframes bg5_line2_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

@keyframes bg5_line3_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 57vw;
    }
}

@keyframes bg5_line4_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

.main5 .cent {
    width: 57vw;
    position: absolute;
    top: 38vw;
    left: 10vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3.3vw;
    line-height: 5.3vw;
    letter-spacing: 0.3vw;
    color: #000;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
}




/*頁面6*/
.main6 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main6>img {
    width: 100%;
    object-fit: cover;
}

.main6 .banner_top {
    width: 90vw;
    height: 59vw;
    position: absolute;
    left: 5vw;
    top: 87vw;
    overflow: hidden;
}

.main6 .banner_bottom {
    width: 90vw;
    height: 59vw;
    position: absolute;
    left: 5vw;
    top: 205vw;
    overflow: hidden;
}

.main6 .banner .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.main6 .banner_top .main6-img {
    width: 90vw;
    height: 59vw;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.main6 .banner_bottom .main6-img {
    width: 90vw;
    height: 59vw;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.main6 .banner .pic-txt {
    position: absolute;
    right: 2vw;
    bottom: 1vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 3.3vw;
    line-height: 4vw;
    letter-spacing: 0.05vw;
    color: #fff;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 1));
}

.main6-img img {
    width: 100%;
    object-fit: cover;
}

.main6 .txt-box {
    width: 64vw;
    height: 31vw;
    position: absolute;
    top: 20vw;
    left: 5vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3vw;
    letter-spacing: 0.1vw;
    color: #000;
}

.main6 .txt-box.txt1 {
    width: 64vw;
    height: 31vw;
    position: absolute;
    top: 10vw;
    left: 11.5vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3vw;
    letter-spacing: 0.1vw;
    color: #000;
}

.main6 .txt-box .cht {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 5.6vw;
    line-height: 7vw;
    letter-spacing: 2vw;
    position: absolute;
    left: 3vw;
    bottom: 2vw;
}

.main6 .txt-box .eng {
    position: absolute;
    top: 2vw;
    left: 2vw;
    font-family: "Raleway";
    font-weight: 300;
    font-size: 2.3vw;
    letter-spacing: 0;
}

.main6 .txt-box .line {
    background-color: #000;
    position: absolute;
}

.main6 .txt-box .line1 {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
}

.main6 .txt-box .line2 {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
}

.main6 .txt-box .line3 {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
}

.main6 .txt-box .line4 {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
}

.main6 .txt-box .line1.active {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
    animation: bg6_line1_ani 1s forwards linear;
}

.main6 .txt-box .line2.active {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
    animation: bg6_line2_ani 1s forwards linear;
}

.main6 .txt-box .line3.active {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
    animation: bg6_line3_ani 1s forwards linear;
}

.main6 .txt-box .line4.active {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
    animation: bg6_line4_ani 1s forwards linear;
}

@keyframes bg6_line1_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 64vw;
    }
}

@keyframes bg6_line2_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

@keyframes bg6_line3_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 64vw;
    }
}

@keyframes bg6_line4_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

.main6-flower {
    width: 24vw;
    height: auto;
    position: absolute;
    left: 46vw;
    top: 6.5vw;
}

.main6 .cent {
    width: 64vw;
    position: absolute;
    top: 58vw;
    left: 5vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3.3vw;
    line-height: 5.3vw;
    letter-spacing: 0.25vw;
    color: #000;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
}

.main6-txt {
    width: 82vw;
    position: absolute;
    top: 152vw;
    left: 5vw;
    color: #000;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 2.3vw;
    line-height: 3vw;
    letter-spacing: 0.05vw;
}

.main6-txt.txt2 {
    top: 270vw;
}

.main6-txt h2 {
    font-size: 4.8vw;
    height: 5vw;
}

.main6-txt h4 {
    font-size: 3.3vw;
    line-height: 5.3vw;
    letter-spacing: 0vw;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
}


/*頁面7*/
.main7 {
    width: 100%;
    position: relative;
    overflow: hidden;
    
}

.main7>img {
    width: 100%;
    object-fit: cover;
}

.main7-mask {
    width: 83.5vw;
    position: absolute;
    right: 0;
    top: 116vw;
}

.main7 .banner {
    width: 80vw;
    height: 87vw;
    position: absolute;
    left: 10vw;
    top: 128vw;
    overflow: hidden;
    z-index: 10;
}

.main7 .banner .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.main7 .banner .main7-img {
    width: 80vw;
    height: 87vw;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.main7 .banner .pic-txt {
    position: absolute;
    right: 2vw;
    bottom: 1vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 3.3vw;
    line-height: 4vw;
    letter-spacing: 0.05vw;
    color: #fff;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 1));
}

.main7-img img {
    width: 100%;
    object-fit: cover;
}

.main7 .txt-box {
    width: 70vw;
    height: 31vw;
    position: absolute;
    top: 8.5vw;
    left: 15vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3vw;
    letter-spacing: 0.1vw;
    color: #000;
}

.main7 .txt-box .cht {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 5.6vw;
    line-height: 7vw;
    letter-spacing: 2vw;
    position: absolute;
    left: 3vw;
    bottom: 2vw;
}

.main7 .txt-box .eng {
    position: absolute;
    top: 2vw;
    right: 2vw;
    font-family: "Raleway";
    font-weight: 300;
    font-size: 2.3vw;
    letter-spacing: 0;
}

.main7 .txt-box .line {
    background-color: #000;
    position: absolute;
}

.main7 .txt-box .line1 {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
}

.main7 .txt-box .line2 {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
}

.main7 .txt-box .line3 {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
}

.main7 .txt-box .line4 {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
}

.main7 .txt-box .line1.active {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
    animation: bg7_line1_ani 1s forwards linear;
}

.main7 .txt-box .line2.active {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
    animation: bg7_line2_ani 1s forwards linear;
}

.main7 .txt-box .line3.active {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
    animation: bg7_line3_ani 1s forwards linear;
}

.main7 .txt-box .line4.active {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
    animation: bg7_line4_ani 1s forwards linear;
}

@keyframes bg7_line1_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 70vw;
    }
}

@keyframes bg7_line2_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

@keyframes bg7_line3_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 70vw;
    }
}

@keyframes bg7_line4_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

.main7 .cent {
    width: 70vw;
    position: absolute;
    top: 50vw;
    left: 15vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3.3vw;
    line-height: 5.3vw;
    letter-spacing: 0.05vw;
    color: #000;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
}

.main7-txt {
    width: 70vw;
    position: absolute;
    left: 15vw;
    top: 73vw;
    color: #000;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 2.3vw;
    line-height: 3vw;
    letter-spacing: 0.05vw;
}

.main7-txt h2 {
    font-size: 4.8vw;
    line-height: 7vw;
    letter-spacing: 1vw;
    padding-bottom: 0;
    margin-bottom: 0;
}

.main7-txt h4 {
    font-size: 3.3vw;
    line-height: 5.3vw;
    letter-spacing: 0vw;
    padding-top: 0;
    margin-top: 0.5vw;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
}



/*頁面8*/
.main8 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main8>img {
    width: 100%;
    object-fit: cover;
}

.main8 .banner {
    width: 86vw;
    height: 100vw;
    position: absolute;
    left: 5vw;
    top: 74vw;
    overflow: hidden;
    z-index: 10;
}

.main8 .banner .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.main8 .banner .main8-img {
    width: 86vw;
    height: 100vw;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.main8 .banner .pic-txt {
    position: absolute;
    right: 2vw;
    bottom: 1vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 3.3vw;
    line-height: 4vw;
    letter-spacing: 0.05vw;
    color: #fff;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 1));
}

.main8-img img {
    width: 100%;
    object-fit: cover;
}

.main8 .txt-box {
    width: 53vw;
    height: 31vw;
    position: absolute;
    top: 0vw;
    left: 37vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3vw;
    letter-spacing: 0.1vw;
    color: #000;
    z-index: 10;
}

.main8 .txt-box .cht {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 5.6vw;
    line-height: 7vw;
    letter-spacing: 2vw;
    position: absolute;
    left: 3vw;
    bottom: 2vw;
}

.main8 .txt-box .eng {
    position: absolute;
    top: 2vw;
    right: 2vw;
    font-family: "Raleway";
    font-weight: 300;
    font-size: 2.3vw;
    letter-spacing: 0;
}

.main8 .txt-box .line {
    background-color: #000;
    position: absolute;
}

.main8 .txt-box .line1 {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
}

.main8 .txt-box .line2 {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
}

.main8 .txt-box .line3 {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
}

.main8 .txt-box .line4 {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
}

.main8 .txt-box .line1.active {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
    animation: bg8_line1_ani 1s forwards linear;
}

.main8 .txt-box .line2.active {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
    animation: bg8_line2_ani 1s forwards linear;
}

.main8 .txt-box .line3.active {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
    animation: bg8_line3_ani 1s forwards linear;
}

.main8 .txt-box .line4.active {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
    animation: bg8_line4_ani 1s forwards linear;
}

@keyframes bg8_line1_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 53vw;
    }
}

@keyframes bg8_line2_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

@keyframes bg8_line3_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 53vw;
    }
}

@keyframes bg8_line4_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 31vw;
    }
}

.main8 .cent {
    width: 53vw;
    position: absolute;
    top: 38vw;
    left: 37vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 3.3vw;
    line-height: 5.3vw;
    letter-spacing: 0.05vw;
    color: #000;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
}





/*頁面9*/
.main9 {
    width: 100%;
    position: relative;
}

.main9-bg {
    position: relative;
    width: 100%;
    height: calc(1740*var(--vw-base));

}

.main9-bg>img {
    width: 100%;
    object-fit: cover;
}

.main9-mask {
    width: 100%;
    position: absolute;
    left: 0;
    top: -80vw;
    z-index: 0;
}

.main9-mask img {
    width: 100%;
    object-fit: cover;
}

.main9-bd {
    width: 96vw;
    position: absolute;
    right: 2vw;
    bottom: 12vw;
}

.main9 .banner {
    width: 90vw;
    height: 50vw;
    position: absolute;
    left: 0vw;
    top: 10vw;
    overflow: hidden;
}

.main9 .banner .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.main9 .banner .main9-img {
    width: 90vw;
    height: 50vw;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.main9 .banner .pic-txt {
    position: absolute;
    right: 2vw;
    bottom: 1vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 3.3vw;
    line-height: 4vw;
    letter-spacing: 0.05vw;
    color: #fff;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 1));
}

.main9-img img {
    width: 100%;
    object-fit: cover;
}

.main9 .txt-box {
    width: 60vw;
    position: absolute;
    top: 78vw;
    left: 42.5vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    font-size: 3vw;
    color: #000;
}

.main9 .txt-box .cht {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 4.8vw;
    line-height: 7vw;
    letter-spacing: 2.5vw;
    text-align: right;
}



/*頁面10*/
.main10 {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.main10>img {
    width: 100%;
    object-fit: cover;
}

.main10-mask {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    mix-blend-mode: multiply;
}

.main10-logo {
    width: 75vw;
    height: auto;
    position: absolute;
    left: 12.5vw;
    top: 15vw;
}

.main10-logo-li {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.main10-flower {
    width: 75vw;
    height: auto;
    position: absolute;
    left: 12.5vw;
    top: 35vw;
}

.main10 .txt-box {
    width: 80vw;
    height: 15vw;
    position: absolute;
    top: 91vw;
    left: 10vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 6vw;
    letter-spacing: 0.4vw;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3c2717;
}

.main10 .txt-box .line {
    background-color: #000;
    position: absolute;
}

.main10 .txt-box .line1 {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
}

.main10 .txt-box .line2 {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
}

.main10 .txt-box .line3 {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
}

.main10 .txt-box .line4 {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
}

.main10 .txt-box .line1.active {
    left: 0;
    top: 0;
    width: 0vw;
    height: 1px;
    animation: bg10_line1_ani 1s forwards linear;
}

.main10 .txt-box .line2.active {
    left: 0;
    top: 0;
    width: 1px;
    height: 0vw;
    animation: bg10_line2_ani 1s forwards linear;
}

.main10 .txt-box .line3.active {
    right: 0;
    bottom: 0;
    width: 0vw;
    height: 1px;
    animation: bg10_line3_ani 1s forwards linear;
}

.main10 .txt-box .line4.active {
    right: 0;
    bottom: 0;
    width: 1px;
    height: 0vw;
    animation: bg10_line4_ani 1s forwards linear;
}

@keyframes bg10_line1_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 80vw;
    }
}

@keyframes bg10_line2_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 15vw;
    }
}

@keyframes bg10_line3_ani {
    0% {
        width: 0vw;
    }

    100% {
        width: 80vw;
    }
}

@keyframes bg10_line4_ani {
    0% {
        height: 0vw;
    }

    100% {
        height: 15vw;
    }
}

.main10 .main10-txt {
    width: 80vw;
    position: absolute;
    bottom: 17vw;
    left: 10vw;
    text-align: center;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1vw;
    color: #000;
    /*text-align: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;*/

}

.main10 .main10-txt h2 {
    font-size: 6.8vw;
    line-height: 8vw;
    letter-spacing: 1.8vw;
    font-weight: 500;
    padding: 0;
    margin: 0;
    margin-bottom: 7vw;
}

.main10 .main10-txt h3 {
    font-size: 3.5vw;
    font-weight: 500;
    line-height: 4.5vw;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.3vw;
    padding: 0;
    margin: 0;
    margin-top: 1vw;
}

.main10 .main10-txt a {
    display: block;
    color: #000;
    font-size: 3.5vw;
    font-weight: 500;
    line-height: 4.5vw;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.3vw;
    padding: 0;
    margin: 0;
    margin-top: 1vw;
}

.main10 .main10-txt h4 {
    font-size: 1.9vw;
    font-weight: 500;
    line-height: 3vw;
    text-align: left;
    font-weight: 500;
    padding: 0;
    margin: 0;
    letter-spacing: 0;
    margin-top: 3vw;
}

/*
.main10 .txt-box .logotxt {
    animation: bg10_txt_ani 1s forwards linear;
    animation-delay: 6s;
    opacity: 0;
}
@keyframes bg10_txt_ani {
  0%{opacity: 0;}
  100%{opacity: 1;}
}
*/



/*頁面11*/
.main11 {
    width: 100%;
    height: 280vw;
    position: relative;
    background-image: url(../img/bg11.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

}

.main11-map {
    width: 90vw;
    height: 90vw;
    position: absolute;
    left: 5vw;
    top: 23vw;
}

.form {
    width: 90vw;
    overflow: hidden;
    position: absolute;
    left: 5vw;
    top: 113vw;
    height: auto;
    font-family: 'Noto Serif TC', serif;
    color: #231815;
    background-color: rgba(188, 177, 160, 0.79);
}

.main11-logo {
    width: 75vw;
    height: 15vw;
    margin: 10vw auto 5vw auto;
    position: relative;
}

.main11-logo-li {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.form-title {
    width: 100%;
    margin: 0vw 0 1vw 0;
    font-family: 'Noto Sans TC', sans-serif;
    text-align: center;
}

.form-title h4 {
    font-weight: 500;
    font-size: 5.5vw;
    letter-spacing: 2vw;
    margin: 0 0 5vw 0;
    color: #231815;
}

form {
    padding: 0vw 4vw 12vw 4vw;
}

.form select {
    width: 100%;
    box-sizing: border-box;
    height: 9vw;
    line-height: 9vw;
    letter-spacing: 0.2vw;
    font-size: 3.3vw;
    color: #231815;
    padding-left: 2%;
    font-family: 'Noto Sans TC', sans-serif;
    background-color: transparent;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    background-image: url(../img/select.png);
    background-position-x: 97%;
    background-position-y: 54%;
    background-repeat: no-repeat;
    background-size: 0.8vw;
    outline: none;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    position: relative;
    padding: 0 0 0 22vw;
    display: block;
}

.select {
    width: 100%;
    position: relative;
    height: 9vw;
    line-height: 9vw;
    margin-bottom: 3vw;
    font-weight: 600;
}

.input {
    width: 100%;
    position: relative;
    height: 9vw;
    line-height: 9vw;
    margin-bottom: 3vw;
    font-weight: 300;
    background-color: #fff;
}


.check-item-time {
    position: absolute;
    right: 0vw;
    top: 0;
    height: 9vw;
    line-height: 9vw;
    letter-spacing: 0.2vw;
    font-size: 3.3vw;
    font-family: 'Noto Sans TC', sans-serif;
    display: block;
    color: #231815;
    z-index: 1;
}

.check-item-time label {
    width: 19.5vw;
    height: 9vw;
    line-height: 9vw;
    cursor: pointer;
    display: block;
    float: left;
}

.check-item-time label input[type="radio"] {
    width: 3.2vw;
    height: 3.2vw;
    margin: 0% 8% -1.8% 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0px;
    background: url(../img/check.png) no-repeat top center;
    background-size: 3.2vw 3.2vw;
    border: none;
    cursor: pointer;
}

.check-item-time label input:checked {
    background: url("../img/checked.png") no-repeat top center;
    background-size: 3.2vw 3.2vw;
}

.input-title {
    position: absolute;
    left: 3vw;
    top: 0;
    height: 9vw;
    line-height: 9vw;
    letter-spacing: 0.5vw;
    font-size: 3.3vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 400;
    z-index: 1;
    color: #231815;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"] {
    width: 100%;
    height: 9vw;
    line-height: 9vw;
    letter-spacing: 0.2vw;
    font-size: 3.3vw;
    border: none;
    background-color: transparent;
    color: #231815;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-appearance: none;
    outline: none;
    font-family: 'Noto Sans TC', sans-serif;
    padding: 0 0 0 22vw;
    position: relative;
    box-sizing: border-box;
    display: block;
    font-weight: 400;
}

.form input::placeholder {
    color: #231815 !important;
}

.check-item {
    width: 100%;
    height: 9vw;
    line-height: 9vw;
    color: #231815;
    margin: 0vw auto 0 auto;
    vertical-align: middle;
    font-weight: 400;
    letter-spacing: 0.1vw;
    font-size: 3.3vw;
    position: relative;
    background-color: #fff;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans TC', sans-serif;

}

.check-item::after {
    content: "";
    clear: both;
    display: block;
}

.check-item a:link,
.check-item a:visited,
.check-item a:hover,
.check-item a:active {
    color: #231815;
}

.check-label {
    width: 18vw;
    height: 9vw;
    line-height: 9vw;
    float: left;
}

.check-item label {
    height: 9vw;
    line-height: 9vw;
    cursor: pointer;
}

.check-item label input {
    width: 3.2vw;
    height: 3.2vw;
    margin: 0% 0% -1.8% 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0px;
    background: url(../img/check.png) no-repeat top center;
    background-size: 3.2vw 3.2vw;
    border: none;
    cursor: pointer;
}

.check-item label input:checked {
    background: url("../img/checked.png") no-repeat top center;
    background-size: 3.2vw 3.2vw;
}

.agreeBtn {
    height: 9vw;
    float: left;
}

.openTxtBtn {
    display: inline-block;
    height: 9vw;
    line-height: 9vw !important;
    cursor: pointer;
}

.form input[type="submit"],
.form input[type="button"] {
    width: 40vw;
    height: 10vw;
    line-height: 10vw;
    border: none;
    font-weight: 300;
    letter-spacing: 4vw;
    text-indent: 4vw;
    font-size: 4.5vw;
    color: #fff;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    outline: none;
    position: relative;
    margin: 0 auto;
    font-family: 'Noto Sans TC', sans-serif;
    display: block;
    padding: 0 0;
    background-color: rgba(57, 50, 44, 0.75);
    cursor: pointer;
}

.infor {
    width: 45vw;
    position: relative;
    height: auto;
    font-family: 'Noto Sans TC', sans-serif;
    color: #231815;
    letter-spacing: 0vw;
    font-size: 3vw;
    text-align: center;
    margin: 3.5vw auto 5vw auto;
    line-height: 4vw;
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;

}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #040000;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}


/*同意書照片預覽*/

.black {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 11111;
    font-family: 'Noto Sans TC', sans-serif;
}

.closeBtn {
    width: 30px;
    position: absolute;
    right: 5%;
    top: 4%;
    z-index: 1;
}

.infoWrap {
    width: 100%;
    margin: 0 auto;
    max-width: 80%;
    position: relative;
    height: 100vh;
    overflow: auto;
}

.infoWrap ul {
    list-style: none;
    font-size: 3.5vw;
    padding-inline-start: 7vw;
}

.infoWrap ul>li>ul {
    list-style: none;
    font-size: 3.5vw;
    padding-inline-start: 4vw;
}

.li1::before {
    content: "一、";
    position: absolute;
    left: 0vw;
}

.li2::before {
    content: "二、";
    position: absolute;
    left: 0vw;
}

.li3::before {
    content: "三、";
    position: absolute;
    left: 0vw;
}

.li4::before {
    content: "四、";
    position: absolute;
    left: 0vw;
}

.li5::before {
    content: "五、";
    position: absolute;
    left: 0vw;
}

.li1-li::before {
    content: "（１）";
    position: absolute;
    left: 0vw;
}

.li2-li::before {
    content: "（２）";
    position: absolute;
    left: 0vw;
}

.li3-li::before {
    content: "（３）";
    position: absolute;
    left: 0vw;
}

.li4-li::before {
    content: "（４）";
    position: absolute;
    left: 0vw;
}

.infoBox {
    width: 100%;
    height: calc(100% - 150px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    color: #fff;
    text-align: left;
}

.infoBox h3 {
    font-size: 5vw;
    line-height: 130%;
    margin-bottom: 25px;
    text-align: center;
}

.infoBox h4 {
    font-size: 3.5vw;
    line-height: 130%;
    margin-bottom: 25px;
}

.infoBox h5 {
    font-size: 4vw;
    line-height: 130%;
    margin-bottom: 25px;
}

.infoBox p {
    font-size: 3.5vw;
    line-height: 150%;
}