.qaContent_block {
    margin-bottom: 20px;
    padding-right: 0px;
    border: 3px solid #222;
    box-sizing: border-box;
}

.qaContent_block:last-child {
    margin-bottom: 0px;
}

section#qa {
    background: linear-gradient(#e7af02 0%, #e18903 100%);
}

section#qa .titleBox h2 {
    position: relative;
}

section#qa .titleBox h2::before {
    content: "";
    background: url(../../img/png/h2_qa.png) no-repeat;
    background-position: center;
    background-size: 100%;
    width: 298px;
    height: 138px;
    position: absolute;
    bottom: -15px;
    right: 0;
    left: 0;
    margin: auto;
}

section#qa .titleBox h2 span {
    position: relative;
}

.qaContent {
    padding: 0 9rem;
}

.qaContent_block dl {
    width: 100%;
    display: flex;
}

.qaContent_block dl dt {
    border-right: 3px solid #222;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qaContent_block dl dt {
    width: 81px;
}

.qaContent_block dl dd {
    padding: 25px 0;
    padding-left: 20px;
    width: 95%;
}

.qaContent_block .answer dl dt {
    width: 83px;
}

.qaContent_block .answer dl dd {
    padding-right: 30px;
}

@media (max-width: 1099px) {
    .qaContent {
        padding: 0 5rem;
    }
}


/*-- アコーディオン --*/

.qaContent_block .toggle {
    display: none;
}

.qaContent_block .Label {
    /*タイトル*/
    display: block;
}

.qaContent_block .Label::after {
    /*タイトル横の矢印*/
    content: "";
    width: 28px;
    height: 28px;
    background: url(../../img/png/plus.png) no-repeat;
    background-size: 100%;
    position: absolute;
    top: 32%;
    right: 30px;
}

.qaContent_block .Label,
.qaContent_block .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.qaContent_block .content {
    /*本文*/
    height: 0;
    overflow: hidden;
}

.qaContent_block .toggle:checked+.Label+.content {
    /*開閉時*/
    border-top: 3px solid #222;
    height: auto;
    padding-bottom: 0px;
    transition: all .3s;
}

.qaContent_block .toggle:checked+.Label {
    padding-bottom: 0px;
}

.qaContent_block .toggle:checked+.Label::after {
    background: url(../../img/png/minus.png) no-repeat;
    background-size: 100%;
    width: 28px;
    height: 4px;
    top: 48%;
}


/*********************************/


/*        SP Responsive          */


/*********************************/

@media screen and (max-width: 768px) {
    section#qa .titleBox h2::before {
        width: 36%;
        height: 120px;
    }
    .qaContent_block dl dt img {
        width: 50%;
    }
    .qaContent {
        padding: 0px;
    }
    .qaContent_block {
        margin-bottom: 10px;
        padding: 0px;
    }
    .qaContent_block .Label {
        padding-right: 40px;
    }
    .qaContent_block .Label::after {
        top: 0;
        bottom: 0;
        right: 10px;
        margin: auto;
    }
    .qaContent_block .toggle:checked+.Label::after {
        top: 0;
    }
    .qaContent_block .Label,
    .qaContent_block .content {
        align-items: flex-start;
    }
    .qaContent_block .toggle:checked+.Label+.content {
        padding-left: 0px;
    }
    .qaContent_block .Label p {
        width: 90%;
    }
    .qaContent_block .answer dl dt {
        width: 87px;
    }
    .qaContent_block dl dd {
        padding-left: 15px;
        padding-right: 5px;
        line-height: 2.2rem;
    }
}

@media screen and (max-width: 450px) {
    section#qa .titleBox h2::before {
        width: 50%;
        height: 100px;
    }
}