/* 字體 */

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

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

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

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


/* 隱藏滾動調但可以滾動 */

html {
    overflow: -moz-hidden-unscrollable;
    height: 100%;
}


/* 隱藏滾動調但可以滾動 */


/* Chrome Safari */

body::-webkit-scrollbar {
    display: none;
}


/* 隱藏滾動調但可以滾動 */

body {
    -ms-overflow-style: none;
    height: 100%;
    overflow: auto;
}

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


/*header*/

.header {
    width: 100%;
    height: 3.5vw;
    line-height: 3.5vw;
    background-image: url(../img/nav.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}

.header-logo {
    width: 7vw;
    position: absolute;
    left: 4vw;
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon {
    width: 47vw;
    height: 100%;
    position: absolute;
    /* right: -0.5vw; */
    right: -12.5vw;
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon-li {
    width: 25%;
    height: 100%;
    float: left;
    display: block;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}

.menu-icon-li::after {
    content: "";
    width: 1px;
    height: 1.7vw;
    background-color: #adce5d;
    right: 1.1vw;
    top: 0.95vw;
    position: absolute;
}

.menu-icon-li:last-child:after {
    background-color: transparent;
}

.menu-icon-li img {
    display: block;
}

.fb {
    padding: 2.1% 19% 0 4.8%;
}

.phone {
    padding: 2.3% 18.3% 0 3.5%;
}

.locate {
    padding: 2.3% 18% 0 5.2%;
}

.ig {
    padding: 2.7% 14% 0 9%;
}

.locate::after {
    background-color: none;
}

.menu-txt {
    font-family: "Futura-Std-Book";
    color: #fff;
    font-size: 0.7vw;
    font-weight: 600;
    letter-spacing: 0.05vw;
    margin: 0;
    position: absolute;
    left: 5.5vw;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    text-transform: uppercase;
}

.fb .menu-txt {
    left: 3.2vw;
}

.phone .menu-txt {
    left: 3.5vw;
}

.locate .menu-txt {
    left: 3.6vw;
}

.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 .img1 {
    width: 100vw;
    height: 53.2vw;
    overflow: hidden;
    background-color: #fff;
}

.main1 .img1>img {
    animation: img1 7s linear;
    animation-fill-mode: forwards;
    transform: scale(1.08) translateY(-11vw);
}

@keyframes img1 {
    0% {
        transform: scale(1.08) translateY(-11vw);
    }
    100% {
        transform: scale(1) translateY(-11vw);
    }
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.5);
    animation: img 7s ease;
    animation-fill-mode: forwards;
}

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

.main1-logo {
    width: 4vw;
    position: absolute;
    left: 56.5vw;
    top: 6.2vw;
}

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

.scroll {
    width: 1.7vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

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

.scroll {
    animation: scroll 0.6s infinite alternate;
    transition-timing-function: ease-out;
}

@keyframes scroll {
    0% {
        bottom: 7vw;
    }
    100% {
        bottom: 6vw;
    }
}

.scroll1 {
    animation: scroll1 0.6s ease;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes scroll1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.scroll2 {
    animation: scroll2 0.6s ease;
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes scroll2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.pic-txt {
    position: absolute;
    right: 1vw;
    bottom: 0.5vw;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    font-size: 0.8vw;
    letter-spacing: 0.1vw;
    text-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.9);
}


/*頁面2*/

.main2 {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 0 4vw 0;
}

.main2::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.banner {
    width: 100%;
    position: relative;
    margin: 0;
}

.swiper-container {
    overflow: visible;
}

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

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

.img-b {
    width: 58%;
    height: auto;
    position: relative;
    margin: 0;
}

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

.main2-img-1 {
    display: none;
}

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

.swiper-slide-active .main2-img img {
    animation: img 6s linear;
    animation-fill-mode: forwards;
    transform: scale(1.2);
}

.img-ani {
    animation: img 6s linear;
    animation-fill-mode: forwards;
    transform: scale(1.2);
}

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

.main2-txt {
    width: 28%;
    height: auto;
    color: #231815;
    font-family: 'Noto Sans JP', sans-serif;
    position: absolute;
    left: 64.5vw;
    top: 16vw;
}

.main2-txt h2 {
    font-size: 2.3vw;
    letter-spacing: 0.1vw;
    font-weight: 600;
    margin: 0 auto 1.8vw auto;
    position: relative;
}

.main2-txt h3 {
    font-size: 1.2vw;
    letter-spacing: 0.02vw;
    font-weight: normal;
    line-height: 2.4vw;
    margin: 0 auto 1.9vw auto;
    position: relative;
}

.main2-txt h4 {
    position: relative;
    font-size: 1.2vw;
    letter-spacing: 0vw;
    line-height: 2.4vw;
    font-weight: normal;
    margin: 0 0 1vw 0;
    text-align: justify;
    text-justify: inter-ideograph;
}

.main2-line-1 {
    width: 0;
    height: 1px;
    position: absolute;
    left: -15vw;
    top: -5vw;
    background-color: #9fa0a0;
}

.main2-line {
    width: 42.8vw;
    height: 1px;
    position: absolute;
    left: -15vw;
    top: -5vw;
    background-color: #9fa0a0;
}

.line-w {
    width: 8.5vw;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.main2-line-ani {
    animation: main2-line 1.5s ease;
    animation-fill-mode: forwards;
    animation-delay: 1s;
}

@keyframes main2-line {
    0% {
        width: 0;
    }
    100% {
        width: 42.8vw;
    }
}

.dot {
    display: inline-block;
    margin: 0 -0.2vw;
}

.dot2 {
    display: inline-block;
    margin: 0 -0.7vw 0 -0.7vw;
}

.dot3 {
    display: inline-block;
    margin: 0 -0.3vw;
}


/*頁面3*/

.main3 {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 0 4vw 0;
}

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

.main3 .img-b {
    margin: 0 0 0 42%;
}

.main3-img-1 {
    display: none;
}

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

.swiper-slide-active .main3-img img {
    animation: img 6s linear;
    animation-fill-mode: forwards;
    transform: scale(1.2);
}

.main3-txt {
    width: 28%;
    height: auto;
    color: #231815;
    font-family: 'Noto Sans JP', sans-serif;
    position: absolute;
    right: 64.5vw;
    top: 16vw;
    text-align: right;
}

.main3-txt h2 {
    font-size: 2.3vw;
    letter-spacing: 0.1vw;
    font-weight: 600;
    margin: 0 auto 1.8vw auto;
    position: relative;
}

.main3-txt h3 {
    font-size: 1.2vw;
    letter-spacing: 0.02vw;
    font-weight: normal;
    line-height: 2.4vw;
    margin: 0 auto 1.9vw auto;
    position: relative;
}

.main3-txt h4 {
    position: relative;
    font-size: 1.2vw;
    letter-spacing: 0vw;
    line-height: 2.4vw;
    font-weight: normal;
    margin: 0 0 1vw 0;
    text-align: justify;
    text-justify: inter-ideograph;
}

.main3 .pic-txt {
    right: auto;
    left: 1vw;
}

.main3-txt .dot,
.main3-txt .dot2,
.main3-txt .dot3 {
    text-indent: 0;
}

.main3-line-1 {
    width: 0;
    height: 1px;
    position: absolute;
    right: -15vw;
    top: -5vw;
    background-color: #9fa0a0;
}

.main3-line {
    width: 42.8vw;
    height: 1px;
    position: absolute;
    right: -15vw;
    top: -5vw;
    background-color: #9fa0a0;
}

.main3-line-ani {
    animation: main3-line 1.5s ease;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

@keyframes main3-line {
    0% {
        width: 0;
    }
    100% {
        width: 42.8vw;
    }
}

.main3 .line-w {
    left: auto;
    right: 0;
}


/*頁面4*/

.main4 {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 0 9vw 0;
}

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

.main4-img-1 {
    display: none;
}

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

.swiper-slide-active .main4-img img {
    animation: img 6s linear;
    animation-fill-mode: forwards;
    transform: scale(1.2);
}

.main4-txt {
    width: 28%;
    height: auto;
    color: #231815;
    font-family: 'Noto Sans JP', sans-serif;
    position: absolute;
    left: 64.5vw;
    top: 16vw;
}

.main4-txt h2 {
    font-size: 2.3vw;
    letter-spacing: 0.1vw;
    font-weight: 600;
    margin: 0 auto 1.8vw auto;
    position: relative;
}

.main4-txt h3 {
    font-size: 3.55vw;
    letter-spacing: 0.02vw;
    font-weight: 600;
    line-height: 6.7vw;
    margin: 0 auto 3vw auto;
    position: relative;
}

.main4-txt h4 {
    position: relative;
    font-size: 1.2vw;
    letter-spacing: 0vw;
    line-height: 2.4vw;
    font-weight: normal;
    margin: 0 0 1vw 0;
    text-align: justify;
    text-justify: inter-ideograph;
}

.main4-line-1 {
    width: 0;
    height: 1px;
    position: absolute;
    left: -15vw;
    top: -5vw;
    background-color: #9fa0a0;
}

.main4-line {
    width: 42.8vw;
    height: 1px;
    position: absolute;
    left: -15vw;
    top: -5vw;
    background-color: #9fa0a0;
}

.main4-line-ani {
    animation: main4-line 1.5s ease;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

@keyframes main4-line {
    0% {
        width: 0;
    }
    100% {
        width: 42.8vw;
    }
}


/*頁面5*/

.main5 {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 0 6vw 0;
}

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

.main5 .img-b {
    margin: 0 0 0 42%;
}

.main5-img-1 {
    display: none;
}

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

.swiper-slide-active .main5-img img {
    animation: img 6s linear;
    animation-fill-mode: forwards;
    transform: scale(1.2);
}

.main5-txt {
    width: 28.6%;
    height: auto;
    color: #231815;
    font-family: 'Noto Sans JP', sans-serif;
    position: absolute;
    right: 64.5vw;
    top: 14vw;
    text-align: right;
}

.main5-txt h2 {
    font-size: 2.3vw;
    letter-spacing: 0.1vw;
    font-weight: 600;
    margin: 0 auto 1.8vw auto;
    position: relative;
}

.main5-txt h3 {
    font-size: 1.2vw;
    letter-spacing: 0.02vw;
    font-weight: normal;
    line-height: 2.4vw;
    margin: 0 auto 1.9vw auto;
    position: relative;
}

.main5-txt h4 {
    position: relative;
    font-size: 1.2vw;
    letter-spacing: 0vw;
    line-height: 2.4vw;
    font-weight: normal;
    margin: 0 0 1vw 0;
    text-align: justify;
    text-justify: inter-ideograph;
}

.main5 .pic-txt {
    right: auto;
    left: 1vw;
}

.main5-line-1 {
    width: 0;
    height: 1px;
    position: absolute;
    right: -15vw;
    top: -5vw;
    background-color: #9fa0a0;
}

.main5-line {
    width: 43.4vw;
    height: 1px;
    position: absolute;
    right: -15vw;
    top: -5vw;
    background-color: #9fa0a0;
}

.main5-line-ani {
    animation: main5-line 1.5s ease;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

@keyframes main5-line {
    0% {
        width: 0;
    }
    100% {
        width: 43.4vw;
    }
}

.main5 .line-w {
    left: auto;
    right: 0;
}


/*頁面6*/

.main6 {
    width: 100%;
    height: auto;
    position: relative;
}

.main6-title {
    width: 42vw;
    position: absolute;
    left: 11.2vw;
    top: 12.2vw;
}

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

.main6-txt-top {
    width: 52%;
    height: auto;
    position: absolute;
    right: 0;
    top: 19vw;
    text-align: center;
    color: #fff;
}

.main6-txt-top h1 {
    font-size: 4vw;
    letter-spacing: 0.1vw;
    font-weight: normal;
    margin: 0;
    position: relative;
    font-family: "Futura-Std-light";
}

.main6-txt-top h2 {
    font-size: 2.2vw;
    letter-spacing: 0.1vw;
    font-weight: normal;
    margin: 0;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
}

.main6 .img-b {
    width: 46%;
    margin: 6vw 0 0 8vw;
}

.main6-banner2 .img-b {
    margin: 6vw 0 0 46vw;
}

.main6-banner4 .img-b {
    margin: 6vw 0 0 46vw;
}

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

.main6-img-1 {
    width: 100vw;
    display: none;
}

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

.swiper-slide-active .main6-img img {
    animation: img 6s linear;
    animation-fill-mode: forwards;
    transform: scale(1.2);
}

.main6-txt {
    width: 36%;
    height: auto;
    font-family: 'Noto Sans JP', sans-serif;
    position: absolute;
    left: 57.5vw;
    top: 10.5vw;
}

.main6-txt .dot,
.main6-txt .dot3 {
    text-indent: 0;
}

.main6-banner2 .main6-txt {
    left: 7.5vw;
}

.main6-banner4 .main6-txt {
    width: 32vw;
    left: 10.5vw;
}

.main6-banner3 .main6-txt {
    top: 8vw;
    left: 58vw;
}

.main6-txt h1 {
    font-size: 2vw;
    letter-spacing: 0.05vw;
    font-weight: lighter;
    margin: 0;
    position: absolute;
    left: -42vw;
    top: 20vw;
    color: #fff;
}

.main6-banner3 .main6-txt h1 {
    top: 23.5vw;
}

.main6-txt h2 {
    font-size: 2.3vw;
    letter-spacing: 0.1vw;
    font-weight: 600;
    margin: 0;
    position: absolute;
    left: -42vw;
    top: 23vw;
    color: #fff;
}

.main6-banner2 .main6-txt h1 {
    text-align: right;
    left: auto;
    top: 0.5vw;
    right: -31vw;
}

.main6-banner4 .main6-txt h1 {
    text-align: right;
    left: auto;
    top: 0.5vw;
    right: -28vw;
}

.main6-banner3 .main6-txt h2 {
    top: 26.5vw;
}

.main6-banner2 .main6-txt h2 {
    text-align: right;
    left: auto;
    top: 3.5vw;
    right: -31vw;
}

.main6-banner4 .main6-txt h2 {
    text-align: right;
    left: auto;
    top: 3.5vw;
    right: -22.5vw;
}

.main6-txt h4 {
    position: relative;
    font-size: 1.2vw;
    letter-spacing: 0vw;
    line-height: 2.4vw;
    font-weight: normal;
    margin: 0 0 1.5vw 0;
    text-align: justify;
    text-justify: inter-ideograph;
    color: #231815;
}

.main6-txt h5 {
    position: relative;
    font-size: 1.2vw;
    letter-spacing: 0vw;
    line-height: 2.4vw;
    font-weight: 600;
    margin: 0 0 0.8vw 0;
    color: #231815;
}

.main6-txt h6 {
    position: relative;
    font-size: 1.2vw;
    letter-spacing: 0vw;
    line-height: 2.4vw;
    font-weight: normal;
    margin: 0 0 1vw 0;
    color: #231815;
    white-space: nowrap;
}

.main6-line {
    width: 76.5vw;
    height: 1px;
    position: absolute;
    left: -42vw;
    bottom: -2vw;
    background-color: #9fa0a0;
}

.main6 .line-w {
    width: 38.5vw;
}

.main6-banner2 .main6-line {
    width: 66vw;
    left: 0;
    bottom: auto;
    top: -1.2vw;
}

.main6-banner4 .main6-line {
    width: 60vw;
    left: 0;
    bottom: auto;
    top: -1.2vw;
}

.main6-banner3 .main6-line {
    bottom: -1vw;
}

.main6-banner2 .line-w {
    width: 27.5vw;
    left: auto;
    right: 0;
}

.main6-banner4 .line-w {
    width: 24.5vw;
    left: auto;
    right: 0;
}


/*頁面7*/

.main7 {
    width: 100%;
    height: auto;
    position: relative;
}

.main7-map {
    width: 38vw;
    position: relative;
    margin: 9vw auto 6vw 49vw;
    display: block;
}

.main7-logo {
    width: 14vw;
    position: absolute;
    left: 17vw;
    top: 1vw;
}

.main7-txt {
    width: 43%;
    height: auto;
    color: #595757;
    font-family: 'Noto Sans JP', sans-serif;
    position: absolute;
    left: 3vw;
    top: 22vw;
}

.main7-txt h1 {
    font-size: 2vw;
    letter-spacing: 0.0 .5vw;
    font-weight: normal;
    margin: 0 auto 0.5vw auto;
    position: relative;
    text-align: center;
    white-space: nowrap;
}

.main7-txt h2 {
    font-size: 1.6vw;
    letter-spacing: 0.05vw;
    font-weight: 600;
    margin: 0 auto 20.8vw auto;
    position: relative;
    text-align: center;
    white-space: nowrap;
}

.main7-txt h4 {
    position: relative;
    font-size: 1.2vw;
    letter-spacing: 0vw;
    line-height: 2.9vw;
    font-weight: normal;
    margin: 0 0 0 10vw;
    white-space: nowrap;
}

.main7-txt a {
    color: #595757;
}


/*頁面8*/

.main8 {
    width: 100%;
    height: auto;
    position: relative;
    margin: 17vw 0 15vw 0;
}

.form {
    width: 27vw;
    position: relative;
    margin: 0 auto 0 57vw;
    height: auto;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
}

.form select {
    width: 100%;
    box-sizing: border-box;
    height: 2.3vw;
    line-height: 2.3vw;
    font-size: 1.15vw;
    color: #333333;
    padding-left: 2%;
    font-family: 'Noto Sans JP', 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: 99%;
    background-position-y: 62%;
    background-repeat: no-repeat;
    background-size: 1.6%;
    outline: none;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    letter-spacing: 0.2vw;
    position: relative;
    padding: 0 0 0 7vw;
    display: block;
}

.select {
    width: 100%;
    position: relative;
    height: 2.3vw;
    line-height: 2.3vw;
    margin-bottom: 1.5vw;
}

.input {
    width: 100%;
    position: relative;
    height: 2.3vw;
    line-height: 2.3vw;
    margin-bottom: 1.5vw;
}

.input::before,
.select::before {
    content: "";
    width: 100%;
    height: 0.5px;
    position: absolute;
    left: 0;
    bottom: -0.7vw;
    background-color: #231815;
}

.input-title {
    position: absolute;
    left: 0;
    top: 0;
    height: 2.3vw;
    line-height: 2.3vw;
    letter-spacing: 0.1vw;
    font-size: 1.15vw;
    font-family: 'Noto Sans JP', sans-serif;
    z-index: 1;
}

.form input[type="text"] {
    width: 100%;
    height: 2.3vw;
    line-height: 2.3vw;
    font-size: 1.15vw;
    border: none;
    background-color: transparent;
    color: #333333;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-appearance: none;
    outline: none;
    letter-spacing: 0.1vw;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 0 0 0 7vw;
    position: relative;
    box-sizing: border-box;
    display: block;
}

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

.check-item {
    width: 100%;
    height: 2.3vw;
    line-height: 2.3vw;
    font-size: 1.15vw;
    color: #333333;
    margin: 0vw auto 0 auto;
    vertical-align: middle;
    letter-spacing: 0.1vw;
    position: relative;
}

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

.check-label {
    width: 25.5%;
    height: 2.3vw;
    line-height: 2.3vw;
    float: left;
}

.check-item label {
    height: 2.3vw;
    line-height: 2.3vw;
    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.3vw;
    float: left;
}

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

.form input[type="submit"],
.form input[type="button"] {
    height: 2.2vw;
    letter-spacing: 0.1vw;
    border: none;
    background-color: transparent;
    font-size: 1.15vw;
    font-weight: normal;
    color: #fff;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    outline: none;
    position: absolute;
    right: 0;
    bottom: -3.7vw;
    font-family: 'Noto Sans JP', sans-serif;
    display: block;
    padding: 0 1.3vw;
    cursor: pointer;
    background-image: url(../img/submit-btn.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.infor {
    width: 100vw;
    position: absolute;
    height: auto;
    left: 0;
    top: 164vw;
    letter-spacing: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #040000;
    font-size: 1.8vw;
    text-align: center;
}

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