@charset "utf-8";
/*------------ faq ------------*/
.faq-list{
    padding: 0;
}
.faq-item{
    position: relative;
    box-sizing: border-box;
    margin: 0 0 20px;
    list-style-type: none;  
}
.ic-angle-down{
    font-size: 0;
}
.ic-angle-down:before{
    content: '';
    position: absolute;
    right: 15px;
    top: 22px;
    width: 10px;
    height: 14px;
    -webkit-mask: url(../../../images/layout04/common/index/arr_ic.png) no-repeat center center / contain;
    mask: url(../../../images/layout04/common/index/arr_ic.png) no-repeat center center / contain;
    background: #ccc;
    transform: rotate(270deg);
    transition: all 0.3s ease;
}
.faq-item.active .ic-angle-down:before,
.faq-item:hover .ic-angle-down:before {
    transform: rotate(-90deg);
    -webkit-mask: url(../../../images/layout04/common/index/arr_ic_hover.png) no-repeat center center / contain;
    mask: url(../../../images/layout04/common/index/arr_ic_hover.png) no-repeat center center / contain;
    background: #202020;
}
.faq-question{
    position: relative;
    box-sizing: border-box;
    color: #fff;
    background: #202020;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 18px;
    min-height: 27px;
    padding: 11px 40px 11px 35px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 60;
}
.faq-question h3{
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}
.faq-question:before{
    content: '';
    width: 14px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #252525;
    z-index: 10;
}
.faq-item:hover .faq-question,
.faq-item.active .faq-question {
    color: #202020;
    background: #fff;
    text-decoration: underline;
}
.faq-answer{
    padding: 5px 20px 25px 35px;
    color: #ccc;
    background: #202020;
    display: none;
}
.faq-item:hover .faq-answer:before,
.faq-item.active .faq-answer:before {
    font-family: 'icon-font2' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
    content: "\e1030";
    font-size: 45px;
    color: #fff;
}
.faq-answer .title{
    font-size: 45px;
    font-weight: bold;
}
/*------------ /faq ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1000px){
    .faq-list .item:before{
        margin:0 8px;
    }
    .faq-answer:before{
        display: none;
    }
    .faq-question:before{
        display: none;
    }
    .faq-question{
        font-size: 15px;
    }
    .faq-answer{
        margin: 0 0 20px;
        padding: 10px 15px;
    }
    .faq-question h3 {
        font-size: 16px;
    }
    .faq-question {
        font-size: 16px;
        padding: 10px 40px 10px 15px;
    }
}