@charset "utf-8";
/* CSS Document */
/*主視覺背景動態*/
.area{
    background: white;
    width:100%;
    height:100%;
}
.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    border-radius: 99;
    background: #c9ebe9;
    animation: animate 25s linear infinite;
    bottom: -150px;
}
.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}
.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}
.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}
.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}
.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}
.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}
.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}
.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}
.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}
.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}
@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 25%;
    }
    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 100%;
    }
}


/*end主視覺背景動態*/
.P5-bg{
    background: url("images/P5/P5_pc.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    max-width: 100%;
    padding: 0;
    margin: 0;
    height: 600px;
    position: relative;
}
.P5-mbbg{
    background: url("images/P5/P5_mb.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    max-width: 100%;
    padding: 0;
    margin: 0;
    height: 500px;
    position: relative;
}
.P5-title{
    position: relative;
    top:10vw;
}
@media (max-width:990px){
    .P5-title{
        top:20vw;
        margin: 0 10px;
    }   
}
.section_APP{
    background-image: url("images/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    max-width: inherit;
    padding: 0;
    min-height: 720px;
}
.method{
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center !important;
}
.step{
    width: 800px;
    height: auto;
    position: relative;
    margin: 0 auto;
    padding: 0;
}
.st-way{
    display: flex !important;
    position: relative;
    flex-direction: row;
    justify-content: space-evenly;
}
.st-way-img{
    width: 50%;
    position: relative;
}
.st-way-wd{
    margin: auto 0;
    width: 50%;
    padding: 0 20px;
    text-align: left;
}
.st-way-wd p:first-child:after{
    content: "";
    background-color:#00a2a3;
    width: 100px;
    height: 1.5px;
    display: block;
    margin-top:1.8rem;
}
.section_download{
    background-color:white;
    padding: 0;
    width: 100%;
    height: auto;
    position: relative;
    margin: 0;
}
.download:before{
    content: "";
    width: 2px;
    height: 50px;
    background-color:#00a2a3; 
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
}
.download:after{
    content: "";
    width: 2px;
    height: 50px;
    background-color:#00a2a3; 
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
}
@media (max-width: 992px) and (min-width:576px){
    .step{
        width: 50vw;
    }
    .st-way{
       flex-direction: column; 
    }
    .st-way-img,.st-way-wd{
        width: 100%;
    }
}
@media (max-width: 575px){
    .step{
        width: 70vw;
    }
    .st-way{
       flex-direction: column; 
    }
    .st-way-img,.st-way-wd{
        width: 100%;
    }
    
}
