@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: "Lato-Light";
    src: url(../fonts/Lato-Light.ttf);
}

@font-face {
    font-family: "Lato-Regular";
    src: url(../fonts/Lato-Regular.ttf);
}

@font-face {
    font-family: "Lato-Bold";
    src: url(../fonts/Lato-Bold.ttf);
}

[data-aos="opacity-heightdown"] {
    opacity: 1;
    clip-path: inset(0% 0 100% 0);
    /* 初始状态下完全隐藏 */
}

[data-aos="opacity-heightdown"].aos-animate {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    /* 显示全部图片 */
}

[data-aos="opacity-left"] {
    opacity: 1;
    clip-path: inset(0% 100% 0 0);
    /* 初始状态下完全隐藏 */
}

[data-aos="opacity-left"].aos-animate {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    /* 显示全部图片 */
}

[data-aos="opacity-right"] {
    opacity: 1;
    clip-path: inset(0% 0 0 100%);
    /* 初始状态下完全隐藏 */
}

[data-aos="opacity-right"].aos-animate {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    /* 显示全部图片 */
}

[data-aos="opacity-x"] {
    opacity: 1;
    clip-path: inset(0% 100% 0 100%);
    /* 初始状态下完全隐藏 */
}

[data-aos="opacity-x"].aos-animate {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    /* 显示全部图片 */
}

.opacity {
    animation: opacity 2s ease 0s forwards;

}

@keyframes opacity-left {

    from {
        opacity: 0;
        clip-path: inset(0% 100% 0 0);
    }

    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.opacity-left {
    animation: opacity-left 2s ease 0s forwards;
    animation-delay: 1s;
}

:root {}

body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    --vw-base: calc(100vw / 1920);
    display: flex;
    flex-direction: column;
}

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%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container {
    width: 100%;
    position: relative;
    /* overflow: hidden; */
    background-image: url(../img/02/page-bg.jpg);

    background-size: 100% auto;
    /* 寬度固定為 1920px, 高度自適應 */
    background-repeat: no-repeat;
    background-position: center top;
}

.main1 {
    width: 100%;
    height: calc(950* var(--vw-base));
    position: relative;
    filter: brightness(0.5);
    animation: filterDark 3s ease 0.4s forwards;
}

@keyframes filterDark {
    from {
        filter: brightness(0.5);
        /* 一開始加深，變暗 */
        opacity: 1;
    }

    to {
        filter: brightness(1);
        /* 回到原色 */
        opacity: 1;
    }
}


.main1 .swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.main1 .swiepr-btn {
    position: absolute;
    left: calc(24* var(--vw-base));
    bottom: calc(40* var(--vw-base));
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    z-index: 10;
}

.main1 .sw-btns {
    position: relative;
    display: flex;
    gap: calc(10* var(--vw-base));
}

.main1 .sw-prev {
    position: relative;
    width: calc(20* var(--vw-base));
    height: calc(20* var(--vw-base));
    cursor: pointer;
    background-color: #fff;
    mask-image: url(../img/index/main2-prev.png);
    mask-repeat: no-repeat;
    mask-size: 80% 100%;
    mask-position: center;
}

.main1 .sw-next {
    position: relative;
    width: calc(20* var(--vw-base));
    height: calc(20* var(--vw-base));
    cursor: pointer;
    background-color: #fff;
    mask-image: url(../img/index/main2-next.png);
    mask-repeat: no-repeat;
    mask-size: 80% 100%;
    mask-position: center;
}

.main1 .sw-prev:active,
.main1 .sw-next:active {
    background-color: #74912f;
}

.main1 .sw-num {
    position: relative;
    left: calc(10* var(--vw-base));
    margin-top: calc(20* var(--vw-base));
    display: flex;
    align-items: end;
}

.main1 .pjtindex {
    position: relative;
    margin-right: calc(20* var(--vw-base));
    color: #fff;
    font-family: "Lato-Light";
    font-size: calc(20* var(--vw-base));
    letter-spacing: 0.05em;
    line-height: calc(20* var(--vw-base));
}


.main1 .btn-line {
    position: relative;
    width: calc(160* var(--vw-base));
    height: calc(2* var(--vw-base));
    background-color: #fff;
}

.main1 .btn-line .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #74912f;
    width: 50%;
    transition: width 0.6s ease-in-out;
}

.main1 .pic-txt {
    position: absolute;
    bottom: calc(10* var(--vw-base));
    right: calc(10* var(--vw-base));
    color: #fff;
    font-size: calc(20* var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(20* var(--vw-base));
    z-index: 10;
}

.main1 .swiper-slide img {
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    animation: transformScale 6s ease 0.4s forwards;
}

@keyframes transformScale {
    from {
        transform: scale(1.2);
        opacity: 1;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.main2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main2 .content {
    position: relative;
    width: calc(1550* var(--vw-base));
    min-height: calc(530* var(--vw-base));
    display: flex;
    justify-content: start;
    box-sizing: border-box;
}

.main2 .txt1 {
    position: relative;
    padding-top: calc(212* var(--vw-base));
    width: calc(647* var(--vw-base));
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main2 .txt2 {
    position: relative;
    margin-bottom: calc(50* var(--vw-base));
}

.main2 h1 {
    color: #000;
    font-size: calc(25* var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: calc(50* var(--vw-base));
}

.main2 h2 {
    color: #000;
    font-size: calc(20* var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    letter-spacing: 0.05em;
}

.main2 h3 {
    color: #b3b3b3;
    font-size: calc(20* var(--vw-base));
    font-family: "Lato-Bold";
    letter-spacing: 0.05em;
    padding: calc(138* var(--vw-base)) 0 calc(50* var(--vw-base)) 0;
}

.main2 h4 {
    position: relative;
    display: flex;
    width: calc(678* var(--vw-base));
    align-items: flex-start;
    color: #313131;
    margin-bottom: calc(10* var(--vw-base));
    font-size: calc(20* var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    letter-spacing: 0.2em;
}

.main2 h4 .infoname {
    position: relative;
    min-width: calc(100* var(--vw-base));
    display: inline-block;
    /* 固定名稱寬度，不會被擠壓 */
    flex-shrink: 0;
    text-align: justify;
    text-align-last: justify;
}

.main2 h4 .infoline {
    position: relative;
    top: calc(-2* var(--vw-base));
    display: inline-block;
    margin: 0 calc(5* var(--vw-base));
}

.main2 h4 .infocontent {
    position: relative;
    display: block;
}

.main2-border {
    position: absolute;
    bottom: calc(0* var(--vw-base));
    left: calc(0* var(--vw-base));
    width: 100%;
    height: calc(1* var(--vw-base));
    background-color: #b3b3b3;
}

.main2-year {
    position: absolute;
    bottom: calc(0* var(--vw-base));
    right: calc(0* var(--vw-base));
    color: #b3b3b3;
    font-size: calc(50* var(--vw-base));
    font-family: "Lato-Light";
    letter-spacing: 0.05em;
    line-height: calc(38* var(--vw-base));
}

.main3 {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: calc(110* var(--vw-base)) 0;
    gap: calc(140* var(--vw-base));
}

.main3 .swiper {
    margin: 0;
    width: calc(862* var(--vw-base));
    height: calc(530* var(--vw-base));
    display: flex;
    flex-direction: column;
}

.main3 .swiper-wrapper {}

.main3 .swiper-slide {
    width: calc(862* var(--vw-base));
    height: calc(485* var(--vw-base));
}

.main3 .sw-txt {
    box-sizing: border-box;
    padding-top: calc(145* var(--vw-base));
    width: calc(604* var(--vw-base));
}

.main3 .sw-txt h1 {
    color: #000;
    font-size: calc(25* var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: calc(25* var(--vw-base));
    margin-bottom: calc(25* var(--vw-base));
}

.main3 .sw-txt h2 {
    width: calc(568* var(--vw-base));
    color: #313131;
    font-size: calc(20* var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: calc(37* var(--vw-base));
    text-align: justify;
}

.main3 .swiper-jacket {
    width: calc(1550* var(--vw-base));
    display: flex;
    justify-content: space-between;
}

.main3 .sw-img {
    position: relative;
    width: calc(862* var(--vw-base));
    height: calc(485* var(--vw-base));
    background-color: #737373;
    overflow: hidden;
}

.main3 .sw-img img {
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    animation: transformScale 6s ease 0.4s forwards;
}

.main3 .swiepr-btn {
    position: relative;
    width: 100%;
    height: calc(38* var(--vw-base));
    display: flex;
    justify-content: end;
    align-items: end;
}

.main3 .btn-line {
    position: relative;
    margin-right: calc(20* var(--vw-base));
    width: calc(345* var(--vw-base));
    height: calc(2* var(--vw-base));
    background-color: #313131;
}

.main3 .btn-line .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #74912f;
    width: 50%;
    transition: width 0.6s ease-in-out;
}

.main3 .pic-txt {
    position: absolute;
    bottom: calc(-42* var(--vw-base));
    left: calc(5* var(--vw-base));
    color: #313131;
    font-size: calc(16* var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(20* var(--vw-base));
}

.main3 .pjtindex {
    position: relative;
    margin-right: calc(20* var(--vw-base));
    top: calc(2* var(--vw-base));
    color: #000000;
    font-family: "Lato-Light";
    font-size: calc(20* var(--vw-base));
    letter-spacing: 0.05em;
    line-height: calc(20* var(--vw-base));
}

.main3 .sw-prev {
    position: relative;
    margin-right: calc(38* var(--vw-base));
    width: calc(20* var(--vw-base));
    height: calc(20* var(--vw-base));
    cursor: pointer;
    background-color: #000;
    mask-image: url(../img/index/main2-prev.png);
    mask-repeat: no-repeat;
    mask-size: 80% 100%;
    mask-position: center;
}

.main3 .sw-next {
    position: relative;
    width: calc(20* var(--vw-base));
    height: calc(20* var(--vw-base));
    cursor: pointer;
    background-color: #000;
    mask-image: url(../img/index/main2-next.png);
    mask-repeat: no-repeat;
    mask-size: 80% 100%;
    mask-position: center;
}

.sw-prev:active,
.sw-next:active {
    background-color: #74912f;
}

.main4 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;

}

.main4-title {
    position: relative;
    color: #313131;
    font-size: calc(30* var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    letter-spacing: 0.05em;
}


.main4-title .en {
    position: relative;
    display: inline-block;
    top: calc(3.5* var(--vw-base));
    color: #ff4200;
    font-size: calc(40* var(--vw-base));
    font-family: "Lato-Bold";
    letter-spacing: 0.2em;
}

.main4-title .redline {
    position: absolute;
    bottom: calc(-30* var(--vw-base));
    left: calc(50% - calc(200* var(--vw-base)) / 2);
    width: calc(200* var(--vw-base));
    height: 1px;
    background-color: #ff4200;
}


.main4 .forminfo {
    position: relative;
    margin-top: calc(160*var(--vw-base));
    width: calc(1083 * var(--vw-base));
}

.main4 .forminfo .input {
    position: relative;
    width: 100%;
    display: flex;
    padding-bottom: calc(10 * var(--vw-base));
    margin-bottom: calc(30 * var(--vw-base));
    border-bottom: 1px solid #313131;

}

.main4 .forminfo .input.input-textarea {
    flex-direction: column;
}

.main4 .forminfo .input .input-title {
    position: relative;
    width: calc(120 * var(--vw-base));
    color: #1a1a1a;
    font-size: calc(22 * var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: calc(30 * var(--vw-base));
    display: flex;


    text-align: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #1a1a1a;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    /*淡淡的白*/
    transition: background-color 5000s ease-in-out 0s;
    /*透明*/
}


.main4 form input[type="text"] {
    position: relative;
    flex-grow: 1;
    font-size: calc(22* var(--vw-base));
    border: none;
    background-color: transparent;
    color: #1a1a1a;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-appearance: none;
    outline: none;
    letter-spacing: 0.05em;
    font-family: 'Noto Sans TC';
    font-weight: 300;
    line-height: calc(30 * var(--vw-base));
    padding-bottom: calc(3 * var(--vw-base));
    margin-left: calc(24 * var(--vw-base));
    padding-left: calc(5 * var(--vw-base));

}

.main4 form textarea {
    position: relative;
    flex-grow: 1;
    font-size: calc(22 * var(--vw-base));
    border: none;
    background-color: transparent;
    color: #1a1a1a;
    box-sizing: border-box;
    outline: none;
    letter-spacing: 0.05em;
    font-family: 'Noto Sans TC';
    font-weight: 300;
    line-height: calc(30 * var(--vw-base));
    padding-bottom: calc(3 * var(--vw-base));
    padding-top: calc(10 * var(--vw-base));
    /* 为 textarea 增加顶部的 padding */
    resize: none;
    /* 禁止調整大小 */
    overflow: hidden;
    /* 允许用户调整 textarea 高度 */
    height: calc(60 * var(--vw-base));
    max-height: calc(90 * var(--vw-base));
}

.main4 .input .w3 {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 calc(2 * var(--vw-base)) 0 calc(2 * var(--vw-base));
}


.main4 .check-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: self-end;
    justify-content: center;
    color: #1a1a1a;
    font-size: calc(18 * var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: calc(30 * var(--vw-base));
    cursor: pointer;
    padding: calc(10 * var(--vw-base)) 0 calc(10 * var(--vw-base)) 0;
}

.main4 .check-label {
    cursor: pointer;
}

.main4 .verify {
    position: absolute;
    right: 0;
    top: calc(-5* var(--vw-base));
    background-color: #3d4343;
    width: calc(90 * var(--vw-base));
    height: calc(35* var(--vw-base));
    color: #fff;
    font-size: calc(22 * var(--vw-base));
    font-family: "Futura Std Light";
    letter-spacing: 0.2em;
    line-height: calc(40 * var(--vw-base));
    text-align: center;
    cursor: pointer;
    /* padding: calc(3 * var(--vw-base)) 0 calc(3 * var(--vw-base)) 0; */
}

.main4 .check-item label input {
    position: relative;
    top: calc(5 * var(--vw-base));
    width: 1.2vw;
    height: 1.2vw;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-appearance: none;
    appearance: none;
    background: url(../img/02/check.png) no-repeat top center;
    /* filter: brightness(0) invert(1); */
    background-size: 1.2vw 1.2vw;
    border: none;
    position: relative;
    cursor: pointer;
    margin-right: calc(4* var(--vw-base));
}

.main4 .checktxt {
    display: inline-block;
    cursor: pointer;

}

.main4 .check-item label input:checked {
    background: url(../img/02/checked.png) no-repeat top center;
    /* filter: brightness(0) invert(1); */
    background-size: 1.2vw 1.2vw;
}

.main4 .agreeBtn {
    position: relative;
    border-bottom: #1a1a1a calc(1 * var(--vw-base)) solid;
}

.main4 .formbtn {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(20 * var(--vw-base));
    margin-top: calc(28 * var(--vw-base));
    box-sizing: border-box;
}

.main4 .formbtn button {
    appearance: none;
    /* 移除預設樣式 */
    -webkit-appearance: none;
    /* 對 Safari 特別設定 */
    border-radius: 0;
    /* 將圓角設為 0 */
    height: calc(37 * var(--vw-base));
    width: calc(160 * var(--vw-base));
    background-color: transparent;
    color: #313131;
    font-size: calc(20 * var(--vw-base));
    font-family: "Noto Sans TC";
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: calc(34.53 * var(--vw-base));
    cursor: pointer;
    border: none;
    border: #313131 calc(1 * var(--vw-base)) solid;
    transition: all 0.4s ease, color 0.4s ease;
}

.main4 .formbtn button:hover {
    border: none;
    color: #74912f;
    border: #74912f calc(1 * var(--vw-base)) solid;
}

.main4 .check-item-sex {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    color: #1a1a1a;
    font-size: calc(20 * var(--vw-base));
    letter-spacing: 0.3em;
    font-family: "Noto Sans TC";
    font-weight: 300;
}

.main4 .check-item-sex label {
    cursor: pointer;
    width: calc(100* var(--vw-base));
    text-align: end;


}

.check-item-sex label input[type="radio"] {
    position: relative;
    top: calc(3.2 * var(--vw-base));
    width: 1.2vw;
    height: 1.2vw;
    margin: 0% calc(7 * var(--vw-base)) 0 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0px;
    background: url(../img/02/check-o.png) no-repeat top center;
    background-size: 1.2vw 1.2vw;
    border: none;
    cursor: pointer;
}

.check-item-sex label input:checked {
    background: url("../img/02/checked-o.png") no-repeat top center;
    background-size: 1.2vw 1.2vw;
}

.back-jacket {
    z-index: 5;
}

.main4 .back {
    position: relative;
    margin: calc(133* var(--vw-base)) 0 calc(50* var(--vw-base)) 0;
    color: #313131;
    width: calc(160* var(--vw-base));
    height: calc(37* var(--vw-base));
    font-size: calc(20 * var(--vw-base));
    font-family: "Lato-Regular";
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: calc(30 * var(--vw-base));
    text-align: start;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 calc(8* var(--vw-base));
    border: #313131 calc(1 * var(--vw-base)) solid;
    z-index: 5;
    transition: all 0.4s ease, color 0.4s ease;
}

.main4 .back .arrow {
    font-size: calc(30 * var(--vw-base));
}

.main4 .back:hover {
    color: #74912f;
    border: #74912f calc(1 * var(--vw-base)) solid;
}

.scroll-top {
    position: fixed;
    bottom: calc(100* var(--vw-base));
    right: calc(36* var(--vw-base));
    width: calc(50* var(--vw-base));
    height: calc(50* var(--vw-base));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #313131;
    font-size: calc(16 * var(--vw-base));
    font-family: "Lato-Regular";
    letter-spacing: 0.15em;
    line-height: calc(15 * var(--vw-base));
    text-align: center;
    cursor: pointer;
    /* background-color: #faf7f4; */
    border: #313131 calc(1 * var(--vw-base)) solid;
    z-index: 99;
}

.top-up {
    position: relative;
    left: calc(1* var(--vw-base));
    font-family: " Lato-Light";
    font-size: calc(30* var(--vw-base));
}

.top-txt {
    position: relative;
    left: calc(2* var(--vw-base));
}

.nav {
    position: fixed;
    right: calc(36* var(--vw-base));
    bottom: calc(308* var(--vw-base));
    display: flex;
    flex-direction: column;
    gap: calc(22* var(--vw-base));
    z-index: 99;
}

.nav-item {
    position: relative;
    width: calc(38* var(--vw-base));
    height: calc(40* var(--vw-base));
    border-radius: calc(16*var(--vw-base));
    background-color: #737373;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    transition: all .4s ease;
}

.nav-item:hover {
    background-color: #74912f;
}

.nav-pic {
    width: calc(30* var(--vw-base));
    height: calc(22* var(--vw-base));
}

.nav-pic img {
    object-fit: contain;
}

.bottom-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}


/*同意書照片預覽*/

.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%;
}