/* =============================================================================================== */
/* Common Design : Customize                                                                       */
/* =============================================================================================== */
#cmd_page_headline {
    background-image: url('../../images/troubleshooting/headline_bg@2x.jpg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: relative;
}
@media screen and (max-width: 640px) {
    #cmd_page_headline {
        background-size: 120% auto;
    }
}
/* =============================================================================================== */
/* FAQ LIST                                                                                        */
/* =============================================================================================== */
#faq_list {
    width: 980px;
    margin: 0 auto 50px;
}
#faq_list .faq_item {
    margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
    #faq_list {
        width: 92vw;
        margin: 0 auto 9vw;
        padding-top: 5vw;
    }
    #faq_list .faq_item {
        margin-bottom: 3vw;
    }
}
/* =============================================================================================== */
/* FAQ LSIT : QUESTION                                                                             */
/* =============================================================================================== */
#faq_list .faq_item .question {
    padding-left: 15px;
    background: #e8e8e8;
    border: 1px solid #000000;
    font-size: 18px;
    line-height: 50px;
    cursor: pointer;
    position: relative;
}
#faq_list .faq_item .question:before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 100%;
    background: #ab0012;
    position: absolute;
    top:  0;
    left: 0;
}
#faq_list .faq_item .question:after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 100%;
    background-image: url('../../images/troubleshooting/arrow_open@2x.png');
    background-position: center center;
    background-size:  20px auto;
    background-repeat: no-repeat;
    position: absolute;
    top:  0;
    right: 0;
}
#faq_list .faq_item .question.open:after {
   background-image: url('../../images/troubleshooting/arrow_close@2x.png');
}
@media screen and (max-width: 640px) {
    #faq_list .faq_item .question {
        padding: 3vw 0 3vw 5vw;
        border: 1px solid #000000;
        font-size: 4vw;
        line-height: 1.4;
    }
    #faq_list .faq_item .question:before {
    }
    #faq_list .faq_item .question:after {
        width: 12vw;
        background-size: 5vw auto;
    }
    #faq_list .faq_item .question.open:after {
    }
}
/* =============================================================================================== */
/* FAQ LSIT : ANSWER                                                                               */
/* =============================================================================================== */
#faq_list .faq_item .answer:before {
    content: "";
    display: block;
    height: 15px;
}
#faq_list .faq_item .answer:after {
    content: "";
    display: block;
    height: 20px;
}
#faq_list .faq_item .answer {
    display: none;
    padding-left: 20px;
    font-size: 12.5px;
}
#faq_list .faq_item:first-child .answer {
    display: block;
}
#faq_list .faq_item .answer a {
    color: #0000ff;
    text-decoration: underline;
}
#faq_list .faq_item .answer a:hover {
    text-decoration: none;
}
#faq_list .faq_item .answer span.icon {
    display: inline-block;
    width:  25px;
    height: 25px;
    margin: 0 2px;
    background-position: center center;
    background-size:  contain;
    background-repeat: no-repeat;
    position: relative;
    top: 6px;
}
#faq_list .faq_item .answer span.icon.type_add_icon {
    background-image: url('../../images/troubleshooting/add_icon@2x.png');
}
#faq_list .faq_item .answer span.icon.type_dust_box {
    background-image: url('../../images/troubleshooting/dust_box@2x.png');
}
@media screen and (max-width: 640px) {
    #faq_list .faq_item .answer:before {
        height: 3vw;
    }
    #faq_list .faq_item .answer:after {
        height: 3vw;
    }
    #faq_list .faq_item .answer {
        padding-left: 3vw;
        font-size: 3.8vw;
    }
    #faq_list .faq_item:first-child .answer {
    }
    #faq_list .faq_item .answer a {
    }
    #faq_list .faq_item .answer a:hover {
    }
    #faq_list .faq_item .answer span.icon {
        width:  6vw;
        height: 6vw;
        margin: 0 0.3vw;
        top: 1.5vw;
    }
    #faq_list .faq_item .answer span.icon.type_add_icon {
    }
    #faq_list .faq_item .answer span.icon.type_dust_box {
    }
}
