@charset "utf-8";
/*------------ faq ------------*/
.faq-list{
    padding: 0 15px;
}
.faq-item{
    border-bottom: 1px solid #ddd;
    list-style-type: none;
}
.faq-question{
    position: relative;
    color: #231815;
    font-size: 17px;
    letter-spacing: 2px;
    min-height: 27px;
    padding: 32px 5px 32px 75px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Serif TC', serif;
}
.faq-question h3{
    margin: 0;
    font-weight: 600;
    font-size: 22px;
}
.faq-question i{
    display: none;
}
.faq-question:before{
    content: '';
    display: block;
    background: #231815;
    width: 53px;
    height: 53px;
    border-radius: 50px;
    position: absolute;
    top: 20px;
    left: 5px;
    transition: all .3s ease;
}
.faq-question::after {
    content: '';
    position: absolute;
    top: 33px;
    left: 23px;
    border: 1px solid #fff;
    border-width: 1px 1px 0 0;
    width: 15px;
    height: 15px;
    transform: rotate(135deg);
    transition: all 0s ease;
}
.faq-question:hover:before{
    opacity: 0.7;
}
.faq-item.active .faq-question::after{
    transform: rotate(315deg);
    top: 41px;
}
.faq-item:hover .faq-question,
.faq-item.active .faq-question{
    color: #222;
}
.faq-answer{
    margin: 0 0 20px 75px;
    background: #fff;
    border-radius: 0;
    padding: 15px 20px;
    display: none;
}
.faq-answer .title{
    font-size: 45px;
    font-weight: bold;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1000px){
    .faq-list .item:before{
        margin:0 8px;
    }
    .faq-answer:before{
        display: none;
    }
    .faq-question:before{
        width: 30px;
        height: 30px;
        left: 0;
        top: 25px;
    }
    .faq-question::after {
        top: 33px;
        left: 10px;
        width: 8px;
        height: 8px;
    }
    .faq-item.active .faq-question::after {
        transform: rotate(315deg);
        top: 38px;
    }
    .faq-question h3 {
        font-size: 18px;
    }
    .faq-question{
        padding: 23px 0 23px 40px;
    }
    .faq-answer{
        margin: 0 0 20px;
    }
}
