@charset "UTF-8";
.faq_container{
    height: fit-content;
    margin: 1em auto;
}

.faq_box{
    background-color: rgb(72, 72, 72);
    color: white;
    height: auto;
    padding: 1em;
    display: flex;
    text-align: left;

}.faq_box::before{
    content: "Q";
    border: 1px solid white;
    width: 35px;
    height: 35px;
    margin: 3px 0 auto 0;
    text-align: center;
    min-width: 35px;
    min-height: 35px;
    font-family: Arial, sans-serif;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;      

}.faq_box > .status_icon{
    margin: auto 0 auto auto;
    font-weight: bold;
}

.faq_caption_block{
    margin: auto auto auto 0;
    font-weight: bold;
    padding: 0em 1em;
    font-size: 1.3em;
}

.faq_content_block{
    color: black;
    background-color: white;
    display: none;
    width: auto;
    padding: 1em;
}.faq_content_block > div{
    display: flex;
}.faq_content_block > div > div{
    margin: auto auto auto 0;
    padding: 0em 1em;
}.faq_content_block > div::before{
    content: "A";
    border: 1px solid rgb(0, 0, 0);
    width: 35px;
    height: 35px;
    margin: 3px 0 auto 0;
    text-align: center;
    min-width: 35px;
    min-height: 35px;
    font-family: Arial, sans-serif;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;      
}

.faq_button{
    user-select: none;
    cursor: pointer;
}.faq_button *{
    pointer-events: none;
}
/* ------------------- pc ------------------- */
@media (min-width: 768px) {
    .faq_ul_list > ul{
        width: 50%;
    }

    .faq_container{
        width: 60%;
    }

}
/* ------------------- sp ------------------- */
@media (max-width: 767px) {
    .faq_ul_list > ul{
        width: 100%;
    }

    .faq_container{
        width: 95%;
    }

}