.md_faq {
    .aFaq_list & {
        padding-left: 2em;
    }
    .block {
        padding-bottom: 1.5em;
        border-bottom: 1px solid #ddd;
        margin-bottom: 1.5em;
        @media screen and (max-width : 660px){
            padding-bottom: 1em;
            margin-bottom: 1em;
        }
        dt {
            cursor: pointer;
        }
        dd {
            display: none;
            padding-left: 2em;
            @media screen and (max-width : 660px){
                padding-left: 0;
            }
        }
    }
}
.md_faq__question {
    position: relative;
    padding-left: 1.75em;
    line-height: 1.65;
    padding-right: 2.5em;
     font-weight: bold;
     color: red;
    &::before {
        content: 'Q';
        position: absolute;
        top: 0;
        left: 0;
        font-size: 1.5em;
        font-weight: bold;
        line-height: 1;
        color: base.$c1;
        @media screen and (max-width : 660px){
            font-size: 1.2em;
            top: .2em;
        }
    }
    &::after {
        position: absolute;
        top: .25em;
        right: 1em;
        font-family: "Font Awesome 5 Free";
        content: "\f078";
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        z-index: 2;
        color: base.$c1;
        transition :all .1s ease;
    }
    .active & {
        &::after {
            transform: rotate(180deg);
        }
    }
}
.md_faq__answer {
    position: relative;
    margin-top: 2em;
    padding-left: 1.75em;
    line-height: 1.65;
    @media screen and (max-width : 660px){
        margin-top: 1.5em;
    }
    &::before {
        content: 'A';
        position: absolute;
        top: 0;
        left: 0;
        font-size: 1.5em;
        font-weight: normal;
        line-height: 1;
        color: base.$c1;
        @media screen and (max-width : 660px){
            font-size: 1.2em;
            top: .2em;
        }
    }
}