/* 字體 */

@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: "GOTHIC";
    src: url(../fonts/GothicA1-ExtraLight.ttf);
}

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

@font-face {
    font-family: "TrajanPro";
    src: url(../fonts/TrajanPro-Regular.otf);
}

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

body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

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

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

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

.opacity1 {
    opacity: 1;
}

.top-logo {
    width: 8vw;
    position: absolute;
    left: 3vw;
    top: 3vw;
}

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

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


/*footer-nav*/

.footer-nav {
    width: 2.9vw;
    position: fixed;
    height: auto;
    bottom: 3.5vw;
    right: 0;
    z-index: 998;
    box-sizing: border-box;
    background-color: rgba(248, 246, 246, 0.7);
    border-radius: 6px 0 0 6px;
    cursor: pointer;
    transition: all 0.5s linear;
    display: none;
}

.footer-nav-all {
    width: 100%;
    margin: 0 auto;
}

.footer-nav-li {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    transition: all 0.5s linear;
    border-radius: 5px;
}

.map-icon {
    width: 36%;
    height: auto;
    display: block;
    padding: 37% 0 0 0;
    margin: 0 auto 1vw auto;
}

.map-icon::after {
    content: "";
    width: 1vw;
    height: 1px;
    background-color: #40715e;
    position: absolute;
    left: 1vw;
    bottom: -1vw;
}

.fb-icon {
    width: 26%;
    height: auto;
    display: block;
    padding: 39% 0 0 0;
    margin: 0 auto 0 auto;
}

.fb-icon::after {
    content: "";
    width: 1vw;
    height: 1px;
    background-color: #40715e;
    position: absolute;
    left: 1vw;
    bottom: -1.1vw;
}

.book {
    -ms-writing-mode: tb-lr !important;
    -webkit-writing-mode: vertical-lr !important;
    -moz-writing-mode: vertical-lr !important;
    -ms-writing-mode: vertical-lr !important;
    writing-mode: vertical-lr !important;
    font-size: 1.2vw;
    letter-spacing: 0.5vw;
    font-weight: 600;
    font-family: 'Noto Serif TC', serif;
    color: #40715e;
    width: 100%;
    line-height: 2.9vw;
    margin: 2.3vw 0 1vw 0;
}


/*頁面1*/

.main1 {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.fixed {
    position: fixed;
    left: 0;
    top: 0;
}

.bg1 {
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

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

.bg1>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transform: scale(1.2); */
}

.bg1-img-ani {
    animation: main1 6s ease;
    animation-fill-mode: forwards;
}

.main1>video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    animation: main1 6s ease;
    animation-fill-mode: forwards;
}

@keyframes main1 {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

video {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.main1-logo {
    width: 27vw;
    position: absolute;
    left: 36.5vw;
    top: 11.5vw;
}

.main1-pic1 {
    width: 18vw;
    height: auto;
    position: absolute;
    left: 41vw;
    top: 2.8vw;
}

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

.main1-1 {
    width: 0;
    height: 8.5vw;
    position: absolute;
    left: 34vw;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

.main1-1-ani {
    animation: main1-1 1.5s linear;
    animation-fill-mode: forwards;
    animation-delay: 1s;
}

.main1-1 img {
    width: 6.8vw;
    position: absolute;
    left: 0;
    top: 0;
}

@keyframes main1-1 {
    0% {
        width: 0;
    }
    100% {
        width: 6.8vw;
    }
}

.main1-txt {
    font-family: 'Noto Serif TC', serif;
    color: #fff;
    font-size: 2.55vw;
    letter-spacing: 0.5vw;
    position: absolute;
    left: 42vw;
    top: 50%;
    font-weight: normal;
    opacity: 0;
}

.main1-txt-ani {
    animation: main1-txt 1.5s linear;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}

@keyframes main1-txt {
    0% {
        transform: translateY(2vw);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.main1-txt2 {
    width: 1.9vw;
    position: absolute;
    right: 4vw;
    bottom: 3vw;
    opacity: 0;
}

.main1-txt2-ani {
    animation: main1-txt2 1.5s linear;
    animation-fill-mode: forwards;
    animation-delay: 3s;
}

@keyframes main1-txt2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.main1-line {
    width: 0;
    height: 0.5px;
    bottom: 3vw;
    left: 0;
    position: absolute;
    background-color: #fff;
}

.main1-line-ani {
    animation: main1-line 1.5s linear;
    animation-fill-mode: forwards;
    animation-delay: 2.5s;
}

@keyframes main1-line {
    0% {
        width: 0;
    }
    100% {
        width: 93vw;
    }
}

.main1-en {
    width: 23.9vw;
    position: absolute;
    right: 7vw;
    bottom: 3vw;
    opacity: 0;
}

.main1-en-ani {
    animation: main1-en 1s linear;
    animation-fill-mode: forwards;
    animation-delay: 3.5s;
}

@keyframes main1-en {
    0% {
        opacity: 0;
        transform: translateY(-2vw);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/*頁面2*/

.main2 {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

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

.main2-pic1 {
    width: 12vw;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
}

.main2-pic2 {
    width: 12vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
}

.main2-txt {
    width: 100vw;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
    text-shadow: 0 0 2vw rgba(0, 0, 0, 0.9);
}

.main2-txt h2 {
    font-size: 2.2vw;
    letter-spacing: 0.35vw;
    line-height: 3vw;
    font-family: 'Noto Serif TC', serif;
    font-weight: 600;
    margin: 0 0 2vw 0;
}

.main2-txt h4 {
    font-size: 1.4vw;
    letter-spacing: 0.2vw;
    line-height: 2.4vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: lighter;
    margin: 0;
}


/*頁面3*/

.main3 {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

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

.main3-pic {
    width: 12vw;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
}

.main3-txt {
    width: 100vw;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
    text-shadow: 0 0 2vw rgba(0, 0, 0, 0.9);
}

.main3-txt h2 {
    font-size: 2.2vw;
    letter-spacing: 0.35vw;
    line-height: 3vw;
    font-family: 'Noto Serif TC', serif;
    font-weight: 600;
    margin: 0 0 2vw 0;
}

.main3-txt h4 {
    font-size: 1.4vw;
    letter-spacing: 0.15vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: lighter;
    line-height: 2.4vw;
    margin: 0;
}

.h2-9 {
    display: inline-block;
    font-size: 3vw;
    margin: 0 0 0.5vw 0;
}


/*頁面4*/

.main4 {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

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

.main4-txt {
    width: 100vw;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
    text-shadow: 0 0 2vw rgba(0, 0, 0, 0.9);
}

.main4-txt h2 {
    font-size: 2.2vw;
    letter-spacing: 0.35vw;
    line-height: 3.4vw;
    font-family: 'Noto Serif TC', serif;
    font-weight: 600;
    margin: 0 0 2vw 0;
}

.main4-txt h4 {
    font-size: 1.4vw;
    letter-spacing: 0.15vw;
    line-height: 2.4vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: lighter;
    margin: 0;
}

.main4-pic {
    width: 31vw;
    position: absolute;
    bottom: 0vw;
    right: -1.5vw;
}


/*頁面5*/

.main5 {
    width: 100%;
    height: 69vw;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 2;
}

.main5-txt {
    position: absolute;
    left: 7vw;
    top: 33.5vw;
    color: #fff;
    z-index: 2;
}

.main5-txt2 {
    left: 33.7vw;
    top: 11vw;
    color: #060606;
}

.main5-txt3 {
    left: 40vw;
    top: 33.5vw;
}

.main5-txt h2 {
    font-size: 1.8vw;
    letter-spacing: 0.3vw;
    line-height: 2.4vw;
    font-family: 'Noto Serif TC', serif;
    font-weight: 600;
    margin: 0 0 0.3vw 0;
}

.main5-txt2 h2 {
    font-size: 2.2vw;
    letter-spacing: 0.4vw;
    line-height: 3vw;
    margin: 0 0 0.1vw 0;
}

.main5-txt h4 {
    font-size: 1.4vw;
    letter-spacing: 0.15vw;
    line-height: 2.4vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: lighter;
    margin: 0;
}

.main5-txt2 h4 {
    margin: 0 0.3vw 0 0;
}


/*頁面6*/

.main6 {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.main6-pic1 {
    width: 19vw;
    position: absolute;
    left: 19vw;
    top: 72vw;
}

.main6-pic2 {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.main6-pic3 {
    width: 100vw;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
}

.main6-pic3-ani {
    animation: main6-pic3 8s ease;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}

.main6-pic3 img {
    width: 100vw;
    position: absolute;
    left: 0;
    top: 0;
}

@keyframes main6-pic3 {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 113vw;
        opacity: 1;
    }
}

.main6-logo {
    width: 32vw;
    position: absolute;
    left: 12vw;
    top: 88vw;
}

.main6-txt {
    width: 64.5vw;
    position: absolute;
    right: 0;
    top: 81vw;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 1vw rgba(0, 0, 0, 0.7)
}

.main6-txt h2 {
    font-size: 1.6vw;
    letter-spacing: 0.7vw;
    font-family: 'Noto Serif TC', serif;
    font-weight: 600;
    margin: 0 0 1vw 0;
}

.main6-txt h3 {
    font-size: 1.9vw;
    letter-spacing: 0.1vw;
    line-height: 2.5vw;
    font-family: 'Noto Serif TC', serif;
    font-weight: 600;
    margin: 0 0 2vw 0;
}

.main6-txt h4 {
    font-size: 1.25vw;
    line-height: 2.6vw;
    letter-spacing: 0.05vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: lighter;
    margin: 0 0 3vw 0;
}

.main6-txt h5 {
    font-size: 1.4vw;
    line-height: 2.4vw;
    letter-spacing: 0.05vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: lighter;
    margin: 0;
}

.form {
    width: 26vw;
    position: absolute;
    height: auto;
    right: 19vw;
    top: 118vw;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    text-shadow: 0 0 1vw rgba(0, 0, 0, 0.7)
}

.form-title {
    width: 100%;
    margin: 0 0 3vw 0;
    text-align: center;
    color: #fff;
    position: relative;
    text-shadow: 0 0 1vw rgba(0, 0, 0, 0.7)
}

.form-title h2 {
    font-size: 1.3vw;
    letter-spacing: 0.9vw;
    text-indent: 0.9vw;
    margin: 0 0 0 0;
    font-family: "TrajanPro";
    font-weight: normal;
    position: absolute;
    left: -42vw;
    top: 12vw;
}

.form-title h2::before {
    content: "";
    width: 0.5px;
    height: 2.5vw;
    position: absolute;
    left: 0vw;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
}

.form-title h2::after {
    content: "";
    width: 0.5px;
    height: 2.5vw;
    position: absolute;
    right: 0vw;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
}

.form-title h4 {
    font-size: 1.4vw;
    letter-spacing: 0.3vw;
    line-height: 3vw;
    margin: 0;
    font-family: 'Noto Serif TC', serif;
    font-weight: normal;
    position: relative;
}

.form-title h4::after {
    content: "";
    width: 15vw;
    height: 0.5px;
    position: absolute;
    left: 50%;
    top: 3vw;
    transform: translateX(-50%);
    background-color: #fff;
}

.input {
    width: 100%;
    position: relative;
    height: 2.2vw;
    line-height: 2.2vw;
    margin-bottom: 2.5vw;
    font-weight: normal;
}

.form select {
    width: 75%;
    margin: 0 0 0 25%;
    box-sizing: border-box;
    height: 2.2vw;
    line-height: 2.2vw;
    letter-spacing: 0.1vw;
    font-size: 1.3vw;
    font-family: 'Noto Sans JP', sans-serif;
    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: 3.5%;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    box-sizing: border-box;
    border-radius: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    outline: none;
    position: relative;
    display: block;
    border-bottom: 0.5px solid #fff;
    font-weight: normal;
}

.form select option {
    color: #000;
}

.select {
    width: 100%;
    position: relative;
    height: 2.2vw;
    line-height: 2.2vw;
    margin-bottom: 2.5vw;
    font-weight: normal;
}

.check-item-sex {
    position: absolute;
    right: -1.2vw;
    top: 50%;
    transform: translateY(-50%);
    height: 2.2vw;
    line-height: 2.2vw;
    letter-spacing: 0.1vw;
    font-size: 1.3vw;
    font-family: 'Noto Sans JP', sans-serif;
    display: block;
    color: #fff;
    z-index: 1;
    font-weight: normal;
}

.check-item-sex label {
    width: 5.5vw;
    height: 2.2vw;
    line-height: 2.2vw;
    cursor: pointer;
    display: block;
    float: left;
}

.check-item-sex label input[type="radio"] {
    width: 1vw;
    height: 1vw;
    margin: 0% 7% -0.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: 1vw 1vw;
    border: none;
    cursor: pointer;
}

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

.input-title {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2.2vw;
    line-height: 2.2vw;
    letter-spacing: 0.1vw;
    font-size: 1.3vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    z-index: 1;
    color: #fff;
}

.form input[type="text"] {
    width: 75%;
    margin: 0 0 0 25%;
    height: 2.2vw;
    line-height: 2.2vw;
    letter-spacing: 0.1vw;
    font-size: 1.3vw;
    border: none;
    background-color: transparent;
    color: #fff;
    box-sizing: border-box;
    border-radius: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    outline: none;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    box-sizing: border-box;
    display: block;
    font-weight: normal;
    border-bottom: 0.5px solid #fff;
}

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

.check-item {
    width: 72%;
    height: 2.2vw;
    line-height: 2.2vw;
    letter-spacing: 0.1vw;
    font-size: 1.3vw;
    color: #fff;
    margin: 0vw auto 0 auto;
    vertical-align: middle;
    font-weight: normal;
    position: relative;
    text-align: center;
}

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

.check-label {
    width: 36%;
    height: 2.2vw;
    line-height: 2.2vw;
    float: left;
}

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

.check-item label input {
    width: 1vw;
    height: 1vw;
    margin: 0% 1% -1.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: 1vw 1vw;
    border: none;
}

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

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

.openTxtBtn {
    display: inline-block;
    height: 2.2vw;
    line-height: 2.2vw !important;
    border-bottom: 0.5px solid #fff;
    cursor: pointer;
}

.form input[type="submit"],
.form input[type="button"] {
    width: 100%;
    height: 2.8vw;
    letter-spacing: 0.3vw;
    text-indent: 0.8vw;
    border: none;
    font-size: 1.3vw;
    font-weight: normal;
    color: #fff;
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 2px;
    outline: none;
    font-family: 'Noto Sans JP', sans-serif;
    display: block;
    padding: 0;
    margin: 2vw auto 0 auto;
    cursor: pointer;
    background: url(../img/btn.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border: 0.5px solid #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff;
    -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";
}

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