/* 字體 */
@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-Heavy";
    src: url(../fonts/Futura-Std-Heavy.OTF);
}

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

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

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

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

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

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

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






body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    --vw-base: calc(100vw / 1920);
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: 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: #fff;
}

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

.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;
    pointer-events: none;
    transition: opacity .6s ease;
}

.all.visible {
    opacity: 1;
    pointer-events: auto;
}


/* ✅ 自訂 AOS：上→下揭開 */
[data-aos="mask-ttb"] {
    /* 避免被 AOS 預設 opacity/transform 干擾 */
    opacity: 1 !important;
    transform: none !important;

    clip-path: inset(0 0 100% 0) !important;
    -webkit-clip-path: inset(0 0 100% 0) !important;

    /* ✅ 關鍵：transition-property 一定要包含 clip-path */
    transition-property: clip-path, -webkit-clip-path !important;
    transition-duration: 2.8s !important;
    transition-timing-function: cubic-bezier(.2, .8, .2, 1) !important;
    transition-delay: 0.5s !important;
    /* 你 HTML data-aos-delay=500 也行，但先用這個保證 */
}

[data-aos="mask-ttb"].aos-animate {
    clip-path: inset(0 0 0 0) !important;
    -webkit-clip-path: inset(0 0 0 0) !important;
}


/*頁面1*/
.main1 {
    width: 100%;
    height: calc(1635*var(--vw-base));
    position: relative;
    overflow: hidden;
    margin: 0;
}

.main1 .m1-video {
    width: 100%;
    height: calc(950*var(--vw-base));
    overflow: hidden;
    position: relative;
}

.main1 .m1-video>video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.voice {
    width: 2vw;
    height: 2vw;
    z-index: 10;
    color: #fff;
    position: absolute;
    right: 2.5vw;
    top: 120vw;
    cursor: pointer;
}

.haveVoice,
.noVoice {
    width: 100%;
    position: relative;
}

.main1-txt,
.main1-txt-bt,
.main1-txt-eng {
    width: 100%;
    position: relative;
    color: #5d9299;
    text-align: center;
    margin: 0 auto;
}

.main1-txt {
    margin: 6vw auto 2vw auto;
}

.main1-txt-bt {
    width: 15vw;
}

.main1-txt-eng {
    margin-top: 9vw;
}

.main1-txt h3 {
    letter-spacing: 0.2vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: calc(25 * var(--vw-base));
    line-height: calc(45 * var(--vw-base));
    font-weight: 300;
    padding: 0;
    margin: 0;
}

.main1-txt-bt h3 {
    letter-spacing: 0vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: calc(25 * var(--vw-base));
    line-height: calc(45 * var(--vw-base));
    font-weight: 400;
    padding: 0;
    margin: 0;
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;
}

.main1-txt-eng h2 {
    font-size: calc(36*var(--vw-base));
    line-height: calc(45*var(--vw-base));
    letter-spacing: 0.25vw;
    margin: 0;
}

.main1-txt-eng h2>div {
    display: inline-block;
}




/*頁面2*/
.main2 {
    width: 100%;
    height: calc(965*var(--vw-base));
    position: relative;
    overflow: hidden;
    margin: 0;
}

/* main2-pic 本體 */
.main2-pic {
    width: calc(1026*var(--vw-base));
    height: calc(755*var(--vw-base));
    position: absolute;
    left: 39vw;
    top: 0;
    overflow: hidden;
    /* 必要 */
}

/* img 填滿 */
.main2-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main2-txt,
.main2-txt-tp {
    width: 100%;
    position: absolute;
    color: #5f5f5f;
    text-align: left;
}

.main2-txt-tp {
    left: 8vw;
    top: 15vw;
}

.main2-txt {
    left: 8vw;
    top: 19.5vw;
}

.main2-txt-tp h3 {
    letter-spacing: 0.2vw;
    font-size: calc(27.5 * var(--vw-base));
    line-height: calc(40 * var(--vw-base));
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.main2-txt h3 {
    letter-spacing: 0.15vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: calc(25 * var(--vw-base));
    line-height: calc(40 * var(--vw-base));
    font-weight: 300;
    padding: 0;
    margin: 0;
}




/*頁面3*/
.main3 {
    width: 100%;
    height: calc(965*var(--vw-base));
    position: relative;
    overflow: hidden;
    margin: 0;
}

.main3-pic {
    width: calc(1026*var(--vw-base));
    height: calc(755*var(--vw-base));
    position: absolute;
    left: 8vw;
    top: 0;
    overflow: hidden;
    /* 必要 */
}

/* img 填滿 */
.main3-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main3-txt,
.main3-txt-tp {
    width: 100%;
    position: absolute;
    color: #5f5f5f;
    text-align: right;
}

.main3-txt-tp {
    right: 7.8vw;
    top: 15vw;
}

.main3-txt {
    right: 7.8vw;
    top: 19.5vw;
}

.main3-txt-tp h3 {
    letter-spacing: 0.2vw;
    font-size: calc(27.5 * var(--vw-base));
    line-height: calc(40 * var(--vw-base));
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.main3-txt h3 {
    letter-spacing: 0.15vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: calc(25 * var(--vw-base));
    line-height: calc(40 * var(--vw-base));
    font-weight: 300;
    padding: 0;
    margin: 0;
}



/*頁面4*/
.main4 {
    width: 100%;
    height: calc(755*var(--vw-base));
    position: relative;
    overflow: hidden;
    margin: 0;
    z-index: 1;
}

.main4-pic {
    width: calc(1026*var(--vw-base));
    height: calc(755*var(--vw-base));
    position: absolute;
    left: 39vw;
    top: 0;
    overflow: hidden;
    /* 必要 */
}

/* img 填滿 */
.main4-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main4-txt,
.main4-txt-tp {
    width: 100%;
    position: absolute;
    color: #5f5f5f;
    text-align: left;
}

.main4-txt-tp {
    left: 8vw;
    top: 15vw;
}

.main4-txt {
    left: 8vw;
    top: 19.5vw;
}

.main4-txt-tp h3 {
    letter-spacing: 0.2vw;
    font-size: calc(27.5 * var(--vw-base));
    line-height: calc(40 * var(--vw-base));
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.main4-txt-tp h2 {
    letter-spacing: 0.2vw;
    font-size: calc(29.5 * var(--vw-base));
    line-height: calc(40 * var(--vw-base));
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.main4-txt h3 {
    letter-spacing: 0.15vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: calc(25 * var(--vw-base));
    line-height: calc(40 * var(--vw-base));
    font-weight: 300;
    padding: 0;
    margin: 0;
}




/*頁面5*/
.main5 {
    width: 100%;
    height: calc(1400*var(--vw-base));
    position: relative;
    overflow: visible;
    /* pointer-events: none; */
}

.bg5 {
    width: 100%;
    height: calc(1915*var(--vw-base));
    position: absolute;
    left: 0;
    top: -15.5vw;
    z-index: 0;
    pointer-events: none;
}

.bg5>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.bg5>video {
    width: 100%;
    height: calc(1915*var(--vw-base));
    object-fit: cover;
    object-position: 50% 50%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.bg5 .m5light {
    width: 100%;
    height: calc(1915*var(--vw-base));
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.bg5 .m5mask {
    width: 100%;
    height: calc(1915*var(--vw-base));
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.main5-txt,
.main5-txt-bt,
.main5-txt-slog,
.main5-txt-eng,
.main5-txt-eng2 {
    width: 100%;
    position: relative;
    color: #5f5f5f;
    text-align: center;
    margin: 0 auto;
}

.main5-txt-eng {
    width: 16vw;
}

.main5-txt-bt,
.main5-txt-slog,
.main5-txt-eng,
.main5-txt-eng2 {
    color: #007178;
}

.main5-txt {
    padding-top: 12vw;
}

.main5-txt-bt {
    padding: 21vw 0 3vw 0;
}

.main5-txt-eng2 {
    padding-top: 1vw;
}

.main5-txt h3 {
    letter-spacing: 0.15vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: calc(25 * var(--vw-base));
    line-height: calc(40 * var(--vw-base));
    font-weight: 300;
    padding: 0;
    margin: 0;
}

.main5-txt-bt h2 {
    letter-spacing: 0.3vw;
    font-size: calc(34 * var(--vw-base));
    line-height: calc(55 * var(--vw-base));
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.main5-txt-bt h2.bol {
    font-weight: 500;
}

.main5-txt-slog .main5-txt-slog-cent {
    display: inline-block;
    letter-spacing: 0.28vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: calc(40.5888 * var(--vw-base));
    line-height: calc(55 * var(--vw-base));
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.main5-txt-slog .main5-txt-slog-cent.bol {
    font-weight: 500;
}

.main5-txt-eng .en {
    letter-spacing: 0.1vw;
    line-height: calc(55 * var(--vw-base));
}

.main5-txt-eng .en1 {
    font-size: calc(14.5*var(--vw-base));
}

.main5-txt-eng .en2 {
    font-size: calc(21.15*var(--vw-base));
    padding-right: 6.5vw;
}

.main5-txt-eng .en3 {
    font-size: calc(25.47*var(--vw-base));
}

.main5-txt-eng-line {
    position: absolute;
    left: 6.85vw;
    top: 1.5vw;
    width: 6vw;
    height: 1px;
    background-color: #007178;
    opacity: 0.3;
}

.main5-txt-eng2 h2 {
    font-size: calc(31.34*var(--vw-base));
    line-height: calc(60*var(--vw-base));
    letter-spacing: 0.15vw;
    margin: 0;
}

.main5-txt-eng2 h2>div {
    display: inline-block;
}

.main5-txt-phone-box {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main5-txt-phone {
    position: relative;
    color: #007178;
    font-family: "Noto Sans TC", sans-serif;
    font-size: calc(34*var(--vw-base));
    line-height: calc(48*var(--vw-base));
    font-weight: 400;
    padding: 0;
    margin: 0;
    letter-spacing: 0.1vw;
}

.main5-icon-box {
    position: relative;
    margin-top: calc(157*var(--vw-base));
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(40*var(--vw-base));
}

.main5-icon {
    width: calc(65*var(--vw-base));
    height: calc(75*var(--vw-base));
}

/*頁面6*/
.main6 {
    width: 100%;
    /*height: calc(900*var(--vw-base));*/
    height: auto;
    position: relative;
    overflow: visible;
    padding-top: 3.5vw;
}

.form {
    width: 28vw;
    height: auto;
    position: relative;
    margin: 0 auto 16vw auto;
    color: #007178;
    font-family: 'Noto Sans TC', sans-serif;
}

.form form {
    position: relative;
}

.form-title {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 auto 1.5vw auto;
    white-space: nowrap;
}

.form-title h4 {
    margin: 0;
    letter-spacing: 0vw;
    font-size: calc(31.34*var(--vw-base));
    line-height: calc(50*var(--vw-base));
    font-weight: 300;
    font-family: 'Noto Sans TC', sans-serif;
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;
}

.text-input {
    width: 100%;
    height: 4vw;
    line-height: 4vw;
    margin-bottom: 1vw;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

.input-title {
    width: 29%;
    height: 4vw;
    line-height: 4vw;
    float: left;
    letter-spacing: 0.2vw;
    font-size: calc(31.34*var(--vw-base));
}

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

.input input {
    width: 100%;
    height: 4vw;
    line-height: 4vw;
    padding: 0 1vw;
    box-sizing: border-box;
    border: none;
    font-size: calc(31.34*var(--vw-base));
    background-color: rgba(93, 146, 153, 0.3);
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 300;
    outline: none;
    letter-spacing: 0.2vw;
    color: #007178;
    border-radius: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}

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

.check-item {
    width: 100%;
    height: 6.2vw;
    line-height: 6.2vw;
    margin: 0 0 4% 0;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
}

.check-item label {
    height: 6.2vw;
    line-height: 6.2vw;
    cursor: pointer;
    letter-spacing: 0.2vw;
    font-size: 3.3vw;
}

.check-item label input {
    width: 4vw;
    height: 4vw;
    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: 4vw 4vw;
    border: none;
    cursor: pointer;
}

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

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

.form input[type="button"],
.form input[type="submit"],
.form input[type="reset"] {
    width: 12vw;
    color: #fff;
    background-color: rgba(93, 146, 153, 1);
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: normal;
    outline: none;
    font-size: calc(35.26 * var(--vw-base));
    box-sizing: border-box;
    letter-spacing: 0.35vw;
    /* height: 10vw; */
    line-height: 4.5vw;
    border: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-appearance: none;
    appearance: none;
    border-radius: 3px;
    text-indent: 0.3vw;
    position: absolute;
    left: 8.1vw;
    top: 0;
    cursor: pointer;
    z-index: 99;
}

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

.input select {
    width: 100%;
    height: 4vw;
    line-height: 4vw;
    padding: 0 1vw;
    box-sizing: border-box;
    border: none;

    font-size: calc(31.34 * var(--vw-base));
    background-color: rgba(93, 146, 153, 0.3);
    color: #007178;

    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    font-family: "Futura-Std-Book";
    background-image: url(../img/select.svg);
    background-position: right 1vw center;
    background-repeat: no-repeat;
    background-size: 1.2vw;
}

select option {
    background-color: rgba(93, 146, 153, 0.3);
    font-size: calc(32 * var(--vw-base));
    line-height: 4vw;
    font-size: inherit;
    /* 继承 select 的字体大小 */
    color: inherit;
    padding: 0 2vw;
    margin: 0;
    font-family: "Futura-Std-Book";
}

/* ================================
   移除 input / select / button focus 外框
   ================================ */
input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}

/* Chrome / Edge / Safari */
input:focus-visible,
select:focus-visible,
button:focus-visible,
textarea:focus-visible {
    outline: none;
    box-shadow: none;
}

/* iOS Safari 特有藍框 */
input,
select,
textarea,
button {
    -webkit-tap-highlight-color: transparent;
}

.infor {
    width: 100%;
    margin: 0 auto;
    font-size: calc(20 * var(--vw-base));
    font-family: 'Noto Sans TC', sans-serif;
    line-height: calc(40 * var(--vw-base));
    outline: none;
    letter-spacing: 0.1vw;
    text-indent: 0vw;
    font-weight: 300;
    color: #007178;
    position: relative;
    padding: 0vw 0 2vw 0;
    text-align: center;
}


/*同意書照片預覽*/
.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%;
}

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

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

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

.OKContainer img {
    width: 100%;
}