body {
    font-family: 'Noto Sans TC', sans-serif, Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    color: var(--fontColor);
}

* {
    box-sizing: border-box;
    outline: none;
}

:root {
    --deepBlue: #11a2ec;
    --mainBlue: #3fd9ff;
    --deepGreen: #12d392;
    --mainGreen: #2affc9;
    --fontColor: #646464;
}

.lazyLoad{
	position: relative;
	top: 50px;
	opacity: 0;
	transition: .3s;
}

.lazyLoad.show{
	top: 0px;
	opacity: 1;
}






h1 {
    font-size: 28px;
    font-weight: 700;
}

.main_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    font-size: 23px;
    font-weight: 700;
}

.main_title >  * + * {
    margin-top: 10px;
}

.main_title h2 {
    padding: 15px 50px;
    border-radius: 50px;
    color: white;
}

.title--green {
    background: var(--deepGreen);
}

.title--blue {
    background: var(--deepBlue);
}



.mark_text,
.mark_text_s {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    color: white;
}

.mark_text .mark {
    font-size: 150px;
    line-height: 110px;
    font-weight: 900;
}

.mark_text .mark_content {
    margin-left: 15px;
    font-size: 25px;
    font-weight: 700;
}

.mark_text .mark_content .focus {
    margin-bottom: 10px;
    font-size: 55px;
    line-height: 60px;
    font-weight: 900;
}

.mark_text_s .mark {
    font-size: 110px;
    line-height: 80px;
    font-weight: 900;
}

.mark_text_s .mark_content {
    margin-left: 15px;
    font-size: 20px;
    font-weight: 700;
}

.mark_text_s .mark_content .focus {
    margin-bottom: 10px;
    font-size: 35px;
    line-height: 45px;
    font-weight: 900;
}

.mark_content p + * {
    margin-top: 15px;
}




.en {
    font-size: 75px;
    font-weight: 900;
}



.button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 200px;
    line-height: 50px;
    border-radius: 50px;
    border: 5px solid white;
    font-size: 20px;
    font-weight: 700;
    color: white;
    background: var(--deepBlue);
    transition: .3s;
    cursor: pointer;
}

.button:hover {
    transform: scale(1.05);
}

.button--white {
    border: 0;
    color: var(--fontColor);
    background: white;
}

.button_area {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.close_back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/close.svg') calc( 100% - 25px) 25px no-repeat;
    background-size: 25px;
    background-color: rgba(63,217,255,0.95);
}

@media screen and (max-width: 1023px) {

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 18px;
    }

    .main_title {
        font-size: 16px;
        padding: 10px 0;
    }

    .main_title h2 {
        padding: 15px 25px;
        border-radius: 50px;
        color: white;
    }
    

    .button {
        font-size: 16px;
    }

    
    .mark_text .mark {
        font-size: 90px;
        line-height: 75px;
    }

    .mark_text .mark_content {
        margin-left: 10px;
        font-size: 16px;
    }

    .mark_text .mark_content .focus {
        font-size: 35px;
        line-height: 40px;
    }

    .mark_text_s .mark {
        font-size: 70px;
        line-height: 40px;
    }

    .mark_text_s .mark_content {
        margin-left: 10px;
        font-size: 14px;
    }

    .mark_text_s .mark_content .focus {
        font-size: 25px;
        line-height: 25px;
    }

    .en {
        font-size: 50px;
    }

    
    .close_back {
        background: url('../images/close.svg') calc( 100% - 15px) 15px no-repeat;
        background-size: 20px;
        background-color: rgba(63,217,255,0.95);
    }
    

}