
.sectionTitle {
    margin-top: 30px;
}


.faqContainer {
    width: 100%;
    background: var(--Main) url(../img/p2.png) repeat center center;
    border-radius: 30px 30px 0 0;
    padding: 100px 0 300px 0;
    font-family: var(--Sans);
}

.faqContainer h1 {
    font-weight: 400;
    line-height: 1.2em;
}

.accordion {
    width: 100%;
    height: 131px;
    /*需要計算動態高度*/
    overflow: hidden;

    border-top: 1px solid var(--Border);

    transition: .5s;
}

.accordion.active {
    height: 198px;
    /*需要計算動態高度*/
    transition: .5s;
}

.accordion .fa-square-plus {
    display: block;
}

.accordion .fa-square-minus {
    display: none;
}

.accordion.active .fa-square-plus {
    display: none;
}

.accordion.active .fa-square-minus {
    display: block;
}

.accordion:last-child {
    border-bottom: 1px solid var(--Border);
}

.accordionHeader {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 50px 20px 25px 20px;
}

.accordion h2 {
    width: calc(100% - 30px);
    font-weight: 400;
    line-height: 1.2em;
    transition: .3s;
}

.accordion i {
    font-size: 30px;
    transition: .3s;
}

.accordion:hover h2,
.accordion:hover i {
    color: var(--Gold);
    transition: .3s;
}

.accordion p {
    width: 100%;
    line-height: 1.5em;
    font-weight: 400;
    padding: 25px 20px 50px 20px;
}


/*////RWD////*/

@media screen and (min-width:1660px) {}

@media screen and (max-width:1280px) {}

@media screen and (max-width:1180px) {}

@media screen and (max-width:1024px) {}

@media (orientation:portrait) and (max-height: 1180px) {

    .faqContainer {

        padding: 100px 0 200px 0;
    }


}

@media (orientation:portrait) and (max-height: 1024px) {}

@media screen and (max-width:640px) {
     .faqContainer {

        padding: 100px 0;
    }
}

@media screen and (max-width:414px) {}

@media screen and (max-width:375px) {}

/*Iphone 10*/
@media (orientation: portrait) and (max-height: 812px) {}

@media (orientation: portrait) and (max-height: 736px) {}

@media (orientation: portrait) and (max-height: 667px) {}

@media screen and (max-width: 360px) {}

@media screen and (max-width: 320px) {}