@charset "utf-8";
/*------------ faq ------------*/

/*.content-top{
    display: none;
}*/

.faq-list {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px 50px 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style-type: none;
}

.faq-list:before {
    content: '\e929';
    display: block;
    font-family: 'icon-font-41' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 56px;
    color: #D5000F;
    text-align: center;
}

.faq-list .faq-item {
    position: relative;
    border: 1px dotted #636363;
    border-width: 1px 0;
    margin: 30px 0 0px;
}

.faq-list .faq-item:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 54px;
    background-image: url(../../../images/layout03/common/faq/icon_q.png);
}

.faq-question {
    position: relative;
    padding: 13px 40px 13px 60px;
    box-sizing: border-box;
    display: block;
    vertical-align: middle;
    transition: all .2s;
    cursor: pointer;
    font-size: 18px;
}

.faq-question h3 {
    margin: 0;
    color: #1B1B1B;
}

.faq-question i:before {
    content: '\e904';
    font-family: 'icon-font-41' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #aaa;
    font-size: 22px;
    position: absolute;
    right: 5px;
    top: 15px;
}

.faq-question:hover i:before {
    color: #D5000F;
}

.faq-answer {
    position: relative;
    padding: 15px 20px 15px 60px;
    background: #636363;
    color: #fff;
    display: none;
}

.faq-answer:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 54px;
    background-image: url(../../../images/layout03/common/faq/icon_a.png);
}

.faq-answer .title {
    font-size: 45px;
    font-weight: bold;
}

/*------------ rwd ------------*/

@media screen and (max-width: 1000px) {
    .faq-list {
        padding: 20px 15px 25px;
        margin: 0 -15px;
    }
    .faq-question h3 {
        font-size: 18px;
    }
}