/* 字體 */

@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);
}

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

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

body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    --vw-base: calc(100vw / 1920);
    background-color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

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

button,
input,
textarea,
select,
option {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    border-radius: 0;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

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


.swiper-wrapper {
    -webkit-perspective: 3000;
    -webkit-backface-visibility: hidden;
    -webkit-overflow-scrolling: touch !important;
}

.swiper-slide {
    transform: translate3d(0, 0, 0) !important;
    transition-duration: 0ms !important;
}

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

.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: #ee5a24;
}

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

.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;
    visibility: hidden;
}

.visible {
    visibility: visible !important;
}

.top-logo {
    width: 7.5vw;
    position: fixed;
    left: 3.5vw;
    top: 3vw;
    z-index: 20;
    cursor: pointer;
}


/*頁面1*/

.main1 {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.title-AL {
    width: 31vw;
    height: 20vw;
    position: absolute;
    left: 50.3%;
    top: 55.4%;
    transform: translate(-50%, -50%);
}

.title-AL img.tit1,
.title-AL img.tit2,
.title-AL img.tit3 {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.main1 video,
.main3 video {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    border: none;
    font-size: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    mix-blend-mode: screen;
    z-index: 20;
}

.main3 video {
    /*水平翻轉*/
    /*    -moz-transform:scaleX(-1);
    -webkit-transform:scaleX(-1);
    -o-transform:scaleX(-1);
    transform:scaleX(-1);*/
}




.main-txt {
    width: 90%;
    position: absolute;
    top: 2vw;
    left: 7.5vw;
    z-index: 15;
}

.main-txt h2 {
    font-family: "Futura-Std-Book";
    font-size: 1.85vw;
    line-height: 3vw;
    letter-spacing: 0.1vw;
    margin: 0 auto;
    color: #ee5a24;
    position: relative;
    font-weight: normal;
}

.main-txt h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4vw;
    line-height: 2.5vw;
    letter-spacing: 0.2vw;
    margin: 0 auto;
    font-weight: 100;
    color: #fff;
}



/*頁面2*/
.main2 {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: -2vw;
    overflow: auto;
}


/*頁面3*/
.main3 {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 0vw;
    background-color: #000;
}

.water_mask {
    width: 120vw;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 14;
}

.m1 {
    position: absolute;
    left: -0.5vw;
    top: -7vw;

}

.main3-txt {
    width: 90%;
    position: absolute;
    top: -10vw;
    left: 7.5vw;
    z-index: 15;
}


/*頁面4*/
.main4 {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: -4vw;
    background-color: #000;

}

.m2 {
    position: absolute;
    left: -0.5vw;
    top: -8vw;
    z-index: 14;
}

.main4-txt {
    width: 90%;
    position: absolute;
    top: 4vw;
    left: 7.5vw;
    z-index: 15;
}

.main4-txt h4 {

    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8), 1px 1px 5px rgba(0, 0, 0, 0.8), 1px 1px 5px rgba(0, 0, 0, 0.8);
}



/*頁面5*/
.main5 {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 0vw;
    background-color: #000;
}

.m3 {
    position: absolute;
    left: -0.5vw;
    top: -19vw;
    z-index: 9;
}

.main5-txt {
    width: 90%;
    position: absolute;
    top: 2vw;
    left: 7.5vw;
    z-index: 15;
}

.main5 .st {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1vw;
    line-height: 2vw;
    letter-spacing: 0.1vw;
    font-weight: 100;
    color: #fff;
    position: absolute;
    right: 4.5vw;
    bottom: -2vw;
    z-index: 20;
}

.main5 .bgmm {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
}


/*頁面6*/
.main6 {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 62vw;

}

.m4 {
    position: absolute;
    left: -0.5vw;
    top: -41vw;
    z-index: 14;
}

.m5 {
    position: absolute;
    left: -0.5vw;
    top: -30vw;
    z-index: 10;
}

.main6-txt {
    width: 100vw;
    position: relative;
    margin: 35vw auto 5vw auto;
    text-align: center;
    left: 0;
    top: 0;
}

.main6-txt h2 {
    font-family: "Futura-Std-Book";
    font-size: 2.85vw;
    line-height: 5vw;
    letter-spacing: 0.25vw;
    margin: 0 auto;
    color: #fff;
    position: relative;
    font-weight: normal;
    padding: 0.5vw 0 1.5vw 0;
    margin-top: -5vw;
}

.main6-txt h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2vw;
    line-height: 3vw;
    letter-spacing: 0.53vw;
    margin: 0 auto;
    font-weight: lighter;
    color: #fff;
}

.main6-txt h4 span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}




.info-txt {
    position: relative;
    margin: 18vw auto 7vw auto;
    text-align: center;
}

.info-txt h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6vw;
    line-height: 4vw;
    letter-spacing: 0.25vw;
    margin: 0 auto;
    color: #fff;
    position: relative;
    font-weight: normal;
    padding-bottom: 0vw;
}

.info-txt h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.3vw;
    line-height: 4vw;
    letter-spacing: 0.5vw;
    margin: 0 auto;
    font-weight: normal;
    color: #fff;
}

.info-txt h5 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.7vw;
    line-height: 4vw;
    letter-spacing: 0.1vw;
    margin: 0 auto;
    font-weight: normal;
    color: #fff;
}


.main6-logo {
    width: 13vw;
    position: relative;
    margin: 10.5vw auto 0 auto;
    z-index: 20;
}


.icons {
    width: 12vw;
    position: relative;
    margin: 0vw auto 1vw auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.icons::after {
    content: "";
    clear: both;
    display: block;
}

.icons-li {
    width: 25%;
    float: left;
    display: block;
    box-sizing: border-box;
}

.phone {
    padding: 0%;
}

.fb {
    padding: 0;
}


.form {
    width: 25vw;
    height: auto;
    position: absolute;
    left: 37.5vw;
    top: 35vw;
    margin: 0 auto 10vw auto;
    z-index: 20;
    color: #ee5a24;
    font-family: 'Noto Sans JP', sans-serif;
}

.form form {
    position: relative;
}

.form-title {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 auto 0.5vw auto;
    text-align: center;
    font-size: 1.7vw;
    letter-spacing: 0.1vw;
    white-space: nowrap;
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;
}


.form-title h4 {
    margin: 0;
    line-height: 4vw;
    letter-spacing: 0.1vw;
    text-indent: 0.05vw;
    font-size: 1.7vw;
    font-weight: normal;
    text-align: center;
    color: #ee5a24;
    font-family: 'Noto Sans JP', sans-serif;
}

.text-input {
    width: 99%;
    height: 3vw;
    line-height: 3vw;
    margin-bottom: 0.5vw;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

.input-title {
    width: 33%;
    height: 3vw;
    line-height: 3vw;
    float: left;
    letter-spacing: 0.1vw;
    font-size: 1.65vw;
}

.input {
    width: 67%;
    height: 3vw;
    line-height: 3vw;
    float: left;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.input::after {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 17%;
    height: 1px;
    background-color: #ee5a24;
}

.check-item-time::after,
.clock::after {
    background-color: transparent;
}

.input input {
    width: 100%;
    height: 3vw;
    line-height: 3vw;
    padding: 0 0 0 1%;
    box-sizing: border-box;
    border: none;
    font-size: 1.65vw;
    background-color: transparent;
    font-family: 'Noto Sans JP', sans-serif;
    outline: none;
    letter-spacing: 0.1vw;
    color: #ee5a24;
}

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

.form-btn {
    width: 60%;
    margin: 3vw auto 0 auto;
    position: relative;
}

.form input[type="button"],
.form input[type="submit"],
.form input[type="reset"] {
    width: 100%;
    background-color: transparent;
    color: #000;
    background-color: #ee5a24;
    font-family: "Futura-Std-Book";
    outline: none;
    font-size: 1.65vw;
    box-sizing: border-box;
    letter-spacing: 0.1vw;
    line-height: 2.2vw;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    position: relative;
    cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #ee5a24;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    /*淡淡的白*/
    transition: background-color 5000s ease-in-out 0s;
    /*透明*/
}

.check-item-time {
    overflow: hidden;
}

.check-item-time label {
    height: 3vw;
    line-height: 3vw;
    cursor: pointer;
    font-size: 1.65vw;
    display: block;
    float: left;
}

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

.check-item-time label input[type="radio"]:checked {
    background: url("../img/checked.png") no-repeat top center;
    background-size: 1.25vw 1.25vw;
}

.clock {
    width: 99%;
    position: relative;
    margin: 0;
    height: 3vw;
    line-height: 3vw;
    z-index: 1;
    font-size: 1.65vw;
    text-align: right;
    margin-bottom: 1vw;
    box-sizing: border-box;
    border: none;
}

.input select {
    width: 100%;
    height: 3vw;
    line-height: 3vw;
    box-sizing: border-box;
    letter-spacing: 0.1vw;
    font-size: 1.65vw;
    border: none;
    background-color: transparent;
    font-family: 'Noto Sans JP', sans-serif;
    outline: none;
    color: #ee5a24;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 0 0 0 2%;
}

.input.clock,
.input.check-item-time {
    border: none;
}

.clock-txt {
    height: 3vw;
    line-height: 3vw;
    cursor: pointer;
    font-size: 1.65vw;
    float: left;
}

.clock-input {
    width: 5vw;
    line-height: 3vw;
    border-bottom: 1px solid #ee5a24;
    float: left;
    height: 3vw;
    box-sizing: border-box;
    border: none;
}

.clock input {
    width: 100%;
    height: 2.5vw;
    line-height: 2.5vw;
    box-sizing: border-box;
    font-size: 1.65vw;
    border: none;
    border-radius: 0;
    background-color: transparent;
    font-family: 'Noto Sans JP', sans-serif;
    outline: none;
    letter-spacing: 0.1vw;
    color: #ee5a24;
    text-align: center;
    border-bottom: 1px solid #ee5a24;
}


.check-item {
    position: relative;
    margin: 0 auto;
    color: #ee5a24;
    font-size: 1.65vw;
    cursor: pointer;
    overflow: hidden;
    letter-spacing: 0.1vw;
    font-family: 'Noto Sans JP', sans-serif;
}

.check-label {
    white-space: nowrap;
    cursor: pointer;
}

.check-item-txt {
    cursor: pointer;
    float: left;
    padding-left: 0vw;
}

.openTxtBtn {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.65vw;
    line-height: 3vw;
    color: #ee5a24;
    /*border-bottom: #ee5a24 solid 1px;*/
    float: left;
    margin-left: 0.2vw;
}

.check-item label {
    height: 3vw;
    line-height: 3vw;
    cursor: pointer;
    font-size: 1.65vw;
    display: block;
    float: left;
}

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

.check-item label input[type="checkbox"]:checked {
    background: url("../img/checked.png") no-repeat top center;
    background-size: 1.25vw 1.25vw;
}



.infor {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.8vw;
    letter-spacing: 0.4vw;
    line-height: 5.5vw;
    text-indent: 0.4vw;
    font-weight: normal;
    text-align: center;
    transform: scale(0.85);
}

/*main7*/
.main7 {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 0vw;
    background-color: #000;
}

.main7-txt {
    width: 68vw;
    height: 4vw;
    position: absolute;
    left: 15.5vw;
    bottom: 0vw;
    top: auto;
}



.OKBlack {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 99999;
}

.OKContainer {
    width: 20vw;
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    transform: translateY(-50%);
    cursor: pointer;
}

.OKContainer img {
    width: 100%;
}

.text-input select {
    position: relative;
    top: 0;
    width: 67%;
    height: 3vw;
    line-height: 3vw;
    font-size: 1.65vw;
    border: none;
    background-color: transparent;
    color: #ee5a24;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-appearance: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    border-bottom: #ee5a24 solid 1px;
}

.text-input select option {
    color: #ee5a24;
    background-color: #000;
    position: relative;
    width: 100%;
    font-size: inherit;
    /* 继承 select 的字体大小 */
    color: inherit;
}

.select::before {
    content: "▼";
    position: absolute;
    right: 0vw;
    top: 0%;
    transform: translateY(0%);
    pointer-events: none;
    font-size: 1.3vw;
    color: #ee5a24;
    z-index: 99;
}




/*同意書照片預覽*/

.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";
}

.closeBtn {
    width: 30px;
    position: absolute;
    right: 5%;
    top: 4%;
    cursor: pointer;
}

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

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

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

.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% - 20vw);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    color: #fff;
    text-align: left;
}

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

.infoBox h4 {
    font-size: 1vw;
    line-height: 180%;
    margin-bottom: 1vw;
}

.infoBox h5 {
    font-size: 1.2vw;
    line-height: 180%;
    margin-bottom: 1vw;
}

.infoBox p {
    font-size: 1vw;
    line-height: 180%;
}