﻿.about-box{
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    min-height: calc(100vh - 130px);
    margin-top: 130px;
}
.about-all-box{
    width: 1800px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 0;
    box-sizing: border-box;
    padding: 150px 0;
}
.about-banner-box{
    width: 100%;
    height: calc((800 / 1800) * 1800px);
    display: block;
}
.about-banner-box .main-bg{
    background-size: contain;
}
.about-text-box{
    width: 1200px;
    max-width: 100%;
    display: block;
    margin-left: auto;
    position: relative;
    top: -60px;
    background-color: #fff;
    padding: 60px 0;
}
.about-title{
    width: 500px;
    display: inline-block;
    vertical-align: middle;
    font-size: 36px;
    color: #000;
    letter-spacing: 0.06em;
    line-height: 60px;
    font-family: 'Noto Sans TC';
    font-weight: 700;
    text-align: center;
}
.about-text{
    width: calc(100% - 500px);
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    padding: 0 40px;
}
.about-text p{
    font-size: 20px;
    color: #000;
    letter-spacing: 0.06em;
    line-height: 60px;
    font-family: 'Noto Sans TC';
    font-weight: 300;
}
.about-en-box{
    width: 100%;
    display: block;
    text-align: right;
    margin-top: 40px;
    font-size: 100px;
    color: #371268;
    letter-spacing: 0.06em;
    line-height: 1;
    font-family: 'Roboto';
    font-weight: 100;
}



@media only screen and (max-width: 1800px){
    .about-all-box{
        width: 1600px;
    }
    .about-banner-box{
        height: calc((800 / 1800) * 1600px);
    }
}
@media only screen and (max-width: 1600px){
    .about-all-box{
        width: 1400px;
    }
    .about-banner-box{
        height: calc((800 / 1800) * 1400px);
    }
}
@media only screen and (max-width: 1400px){
    .about-all-box{
        width: 1200px;
        padding: 100px 0;
    }
    .about-banner-box{
        height: calc((800 / 1800) * 1200px);
    }
    .about-text-box{
        width: 1000px;
    }
    .about-title {
        width: 300px;
    }
    .about-text {
        width: calc(100% - 300px);
    }
}
@media only screen and (max-width: 1200px){
    .about-all-box{
        width: 1000px;
        padding: 80px 0;
    }
    .about-banner-box{
        height: calc((800 / 1800) * 1000px);
    }
    .about-text-box{
        width: 800px;
    }
    .about-title {
        width: 250px;
    }
    .about-text {
        width: calc(100% - 250px);
        padding: 0 20px;
    }
}
@media only screen and (max-width: 1000px){
    .about-box{
        min-height: calc(100vh - 80px);
        margin-top: 80px;
    }
    .about-all-box{
        width: 100%;
        padding: 0;
        padding-bottom: 60px;
    }
    .about-banner-box{
        height: calc((800 / 1800) * 100vw);
    }
    .about-text-box{
        width: 95vw;
        margin: 0 auto;
        top: 0;
        padding: 40px 0;
    }
    .about-title {
        font-size: 26px;
        line-height: 40px;
    }
    .about-en-box{
        font-size: 60px;
        line-height: 40px;
    }
    .about-text p{
        font-size: 16px;
        line-height: 40px;
    }
}
@media only screen and (max-width: 768px){
    .about-all-box{
        padding-bottom: 40px;
    }
    .about-text-box{
        padding: 20px 0;
    }
    .about-title {
        width: 100%;
        font-size: 22px;
        line-height: 30px;
        display: block;
        text-align: left;
    }
    .about-en-box{
        font-size: 40px;
        line-height: 26px;
    }
    .about-text{
        width: 100%;
        display: block;
        padding: 20px 0;
    }
    .about-text p{
        line-height: 30px;
    }
}
@media only screen and (max-width: 550px){
    .about-box{
        min-height: calc(100vh - 60px);
        margin-top: 60px;
    }
    .about-all-box{
        padding-bottom: 20px;
    }
    .about-title {
        font-size: 18px;
        line-height: 24px;
    }
    .about-en-box{
        font-size: 30px;
        line-height: 20px;
        margin-top: 25px;
    }
    .about-text{
        padding: 10px 0;
    }
    .about-text p{
        font-size: 14px;
        line-height: 24px;
    }
}



@media only screen and (min-width: 1001px){
    .about-banner-box,
    .about-text-box,
    .about-title,
    .about-text,
    .about-en-box{
        /* opacity: 0; */
    }
    .about-banner-box.anima{
        animation: fade 1s ease 0s 1 both;
    }
    .about-text-box.anima{
        animation: fadeInRight 1s ease 0s 1 both;
    }
    .about-text-box.anima .about-title{
        animation: fadeInDown 1s ease .3s 1 both;
    }
    .about-text-box.anima .about-text{
        animation: fade 1s ease .4s 1 both;
    }
    .about-en-box.anima{
        animation: fadeInLeft 1s ease 0s 1 both;
    }
    
}