@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: "SweiSpringCJKsc-SemiBold";
    src: url(../fonts/SweiSpringSugarCJKsc-SemiBold.ttf);
}

@font-face {
    font-family: "Futura-Std-Medium";
    src: url(../fonts/Futura\ Std\ Medium.otf);
}

.SweiSpringCJKsc-SemiBold {
    font-family: "SweiSpringCJKsc-SemiBold";
}

.Futura-Std-Medium {
    font-family: "Futura-Std-Medium";
}

.Noto-Serif-TC {
    font-family: "Noto Serif TC";
    letter-spacing: -5px;
    margin-left: -5px;
}


[data-aos="opacity-up"] {
    opacity: 1;
    clip-path: inset(100% 0 0% 0);
    /* 初始状态下完全隐藏 */
}

[data-aos="opacity-up"].aos-animate {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    /* 显示全部图片 */
}

@keyframes opacity-y {
    0% {
        opacity: 0;
        clip-path: inset(50% 0 50% 0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

body,
html {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    --vw-base: calc(100vw / 1920);
}

body>* {}

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;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*nav*/

.nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(56*var(--vw-base));
    background-color: #6d6c6c;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    z-index: 999;
    box-shadow: #c0c0c077 0px 0px 2px 1px;
}

.nav.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    z-index: 999;
}

.nav-item {
    position: relative;
    height: 100%;
    width: calc(341*var(--vw-base));
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(5*var(--vw-base));
    color: #efefef;
    font-size: calc(25*var(--vw-base));
    letter-spacing: 0.075em;
    transition: background-color 0.4s ease;
}

.nav-item:hover {}

.nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 60%;
    background-color: #efefef;
}

.nav-txt {
    font-family: "KozGoPr6N-R";
    letter-spacing: 0.075em;
    transition: all 0.3s ease;
}

.nav-txt .en {
    display: inline-block;
    position: relative;
    top: 0.1vw;
    font-family: "Futura-Std-Medium";
}

.nav-icon {
    position: relative;
    top: 0.1vw;
    width: calc(23*var(--vw-base));
    height: calc(23*var(--vw-base));
    background-color: #fff;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    transition: all 0.3s ease;
    padding-right: 0.5vw;
}

.nav-pen {
    mask-image: url(../img/nav-pen.svg);
    -webkit-mask-image: url(../img/nav-pen.svg);
}

.nav-ig {
    mask-image: url(../img/nav-ig.svg);
    -webkit-mask-image: url(../img/nav-ig.svg);
}

.nav-phone {
    mask-image: url(../img/nav-phone.svg);
    -webkit-mask-image: url(../img/nav-phone.svg);
}

.nav-fb {
    mask-image: url(../img/nav-fb.svg);
    -webkit-mask-image: url(../img/nav-fb.svg);
}

.nav-msg {
    mask-image: url(../img/nav-msg.svg);
    -webkit-mask-image: url(../img/nav-msg.svg);
}

.nav-map {
    mask-image: url(../img/nav-map.svg);
    -webkit-mask-image: url(../img/nav-map.svg);
}

.nav-item:hover {
    color: #efefef;
}

.nav-item:hover .nav-icon {
    background-color: #efefef;
}

.nav-icon img {
    object-fit: contain;
}


/*內容*/
.container {
    width: 100%;
    position: relative;
}

.m1 {
    position: relative;
    width: 100%;
    height: calc(2000*var(--vw-base));
    /* background-image: url(../img/main-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    background-color: #73aee7;
}

.m1-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(2000*var(--vw-base));
}

.m1-bg video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m1-txt-box {
    width: 80vw;
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.m1-txt1 {
    font-family: "SweiSpringCJKsc-SemiBold";
    letter-spacing: 0.18em;
    font-size: calc(67.2 * var(--vw-base));
    line-height: calc(150 * var(--vw-base));
    color: #fff;
    text-align: center;
    padding-top: 12vw;
}

.m1-txt2 {
    font-family: "SweiSpringCJKsc-SemiBold";
    letter-spacing: 0.15em;
    font-size: calc(43.05 * var(--vw-base));
    line-height: calc(100 * var(--vw-base));
    color: #fff;
    text-align: center;
}

.m1-txt3 {
    font-family: "SweiSpringCJKsc-SemiBold";
    letter-spacing: 0.18vw;
    font-size: calc(32.55 * var(--vw-base));
    line-height: calc(60 * var(--vw-base));
    color: #fff;
    text-align: center;
}




.form {
    width: 100%;
    position: relative;
    margin: 0 auto;
    background-color: #eeece6;

}

.form-table {
    width: 80vw;
    margin: 0 auto;
    position: relative;
    padding-bottom: 4vw;
}

.form-title {
    position: relative;
    width: calc(1050*var(--vw-base));
    height: calc(48*var(--vw-base));
    margin: 0 auto;
    padding-top: 7.5vw;

}

.form-title img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.form-title-2 {
    position: absolute;
    left: 10.5vw;
    top: 8vw;
    width: 58vw;
    height: calc(150*var(--vw-base));
}



.form-container {
    position: relative;
    margin: 5vw auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container-left {
    width: 49%;
    height: 32vw;
    display: inline-block;
    vertical-align: top;
}

.form-container-right {
    width: 45%;
    display: inline-block;
    /* margin-left: 5%; */
    border-top: 1px solid #fff;
    vertical-align: top;
}

.form-in {
    width: 100%;
    font-family: "Noto Sans TC";
    color: #4c4948;
    z-index: 2;
}

.form-title-top {
    font-family: "Noto Sans TC";
    font-size: calc(35*var(--vw-base));
    font-weight: 500;
    text-align: center;
    color: #6d6c6c;
    line-height: calc(60 * var(--vw-base));
    padding: 4vw 0 1vw 0;
}

.input {
    width: 100%;
    position: relative;
    height: 2.7vw;
    line-height: 2.7vw;
    margin-bottom: 0.3vw;
    font-weight: 600;
    border: 0.5px solid #fff;
}

.input-li {
    width: 40%;
    position: absolute;
    height: 2.7vw;
    line-height: 2.7vw;
    left: 57%;
    top: 0;
}

.input-li2 {
    width: 50%;
    left: 0vw;
}

.input-li3 {
    width: 51%;
    left: 47%;
}

.check-item-sex {
    position: absolute;
    right: 0.3vw;
    top: 50%;
    transform: translateY(-50%);
    height: 2.7vw;
    line-height: 2.7vw;
    font-size: 1vw;
    letter-spacing: 0.2vw;
    font-family: 'Noto Sans TC', sans-serif;
    display: block;
    color: #4c4948;
    z-index: 1;
    font-weight: lighter;
}

.check-item-sex label {
    width: 4.5vw;
    height: 2.7vw;
    line-height: 2.7vw;
    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: 1vw;
    top: 50%;
    transform: translateY(-50%);
    height: 2.7vw;
    line-height: 2.7vw;
    font-size: 1vw;
    letter-spacing: 0.1vw;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: lighter;
    z-index: 1;
    color: #4c4948;
}

.form input[type="text"],
.form input[type="date"] {
    width: 84.5%;
    margin: 0 0 0 5.5vw;
    height: 2.7vw;
    line-height: 2.7vw;
    font-size: 1vw;
    letter-spacing: 0.1vw;
    border: none;
    background-color: transparent;
    color: #4c4948;
    box-sizing: border-box;
    border-radius: 3px;
    outline: none;
    font-family: 'Noto Sans TC', sans-serif;
    padding: 0 0 0 1vw;
    position: relative;
    box-sizing: border-box;
    display: block;
    font-weight: lighter;
}

.form input[type="date"] {
    width: 60%;
    /* margin: 0 0 0 28.5%; */
}

.input-li input[type="text"] {
    width: 48%;
    margin: 0 0 0 53%;
}

.input-li2 input[type="text"] {
    width: 51%;
    margin: 0 0 0 43%;
}

.input-li3 input[type="text"] {
    width: 57%;
    margin: 0 0 0 43%;
}

.form input::placeholder {
    color: #4c4948 !important;
}

.input select {
    position: relative;
    width: 100%;
    flex-grow: 1;
    height: 2.7vw;
    line-height: 2.7vw;
    font-size: 1vw;
    letter-spacing: 0.1vw;
    border: none;
    background-color: transparent;
    color: #4c4948;
    box-sizing: border-box;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: lighter;
    padding: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-appearance: none;
    background-image: url(../img/select.svg);
    background-position-x: 96%;
    background-position-y: 50%;
    background-repeat: no-repeat;
    background-size: 1vw;
    /* margin: 0 0 0 8vw; */
}

select option {
    color: #4c4948;
    background-color: #fff;
    position: relative;
    width: 100%;
    font-size: inherit;
    /* 继承 select 的字体大小 */
    color: inherit;
    /* font-family: "Futura-Std-Light"; */
}


.check-item {
    width: 61%;
    height: 2.7vw;
    line-height: 2.7vw;
    font-size: 1vw;
    letter-spacing: 0.1vw;
    color: #4c4948;
    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: #4c4948;
}

.check-label {
    width: 36%;
    height: 3vw;
    line-height: 3vw;
    float: left;
}

.check-item label {
    height: 2.7vw;
    line-height: 2.7vw;
    cursor: pointer;
}

.check-item label input {
    width: 1vw;
    height: 1vw;
    margin: 0% 1% -2.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.7vw;
    float: left;
}

.openTxtBtn {
    display: inline-block;
    height: 2.3vw;
    line-height: 3vw !important;
    border-bottom: 1px solid #4c4948;
    cursor: pointer;
}

.form input[type="submit"],
.form input[type="button"] {
    width: 100%;
    height: 2.7vw;
    letter-spacing: 0.2vw;
    border: none;
    background-color: #f094b4;
    font-size: 1vw;
    font-weight: normal;
    color: #fff;
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 0;
    outline: none;
    font-family: 'Noto Sans TC', sans-serif;
    display: block;
    padding: 0;
    margin: 0.5vw 0 0 0;
    cursor: pointer;
    border-radius: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}

.remind {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 0.75vw;
    letter-spacing: 0.1vw;
    text-indent: 0.3vw;
    text-align: center;
    width: 100%;
    position: relative;
    margin: 0.6vw 0 0 0;
    color: #4c4948;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #4c4948;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    /*淡淡的白*/
    transition: background-color 5000s ease-in-out 0s;
    /*透明*/
}


/*同意書照片預覽*/

.black {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 11111;
    font-family: 'Noto Sans TC', sans-serif;
}

.closeBtn {
    width: 30px;
    position: absolute;
    right: 5%;
    top: 4%;
    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%;
}