/* #全体 */
.contents {
    color: #000;
}


/* QA部分 */
.qa-detail-container {
    padding: 60px 0 80px;
}
.qa-detail-box {
    display: flex;
    align-items: center;
}
.qa-detail-box:not(:last-child){
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #CFD2D4;
}
.qa-detail-box__symbol {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: normal;
    margin-right: 20px;
}
.qa-detail-box__symbol--q {
    color: #047AD0;
}
.qa-detail-box__symbol--a {
    color: #E80F49;
}
.qa-detail-box__content h1 {
    font-size: 36px;
    font-weight: bold;
    line-height: 150%;
}
.qa-detail-box__content p {
    font-size: 16px;
    line-height: 170%;
}
@media (max-width: 768px) {
    .qa-detail-box {
        align-items: start;
    }
    .qa-detail-box:first-child {
        align-items: center;
    }
    .qa-detail-box__symbol {
        font-size: 40px;
        font-weight: 700;
    }
    .qa-detail-box__content h1 {
        font-size: 32px;
        font-weight: 700;
    }
}


/* 関連するご質問 */
.related-qa-container {
    background: #E8FAFF;
    padding: 80px 0;
}
.related-qa-container .h2{
    margin-bottom: 40px;
}
.back-to-list .btn--center {
    margin: 40px auto 0;
}