.qAndA {
    background-color: #131313;
    width: 100%;
    color: #ffffff;
}

.sectionQAndATitle{
    position: absolute;
    bottom: 0;
    /* left: -2.5vw; */
    left: 0;
    font-style: italic;
    color: rgba(45, 45, 45, 0.5);
    font-size: 10rem;
    font-weight: bold;
}

.sectionQAndA .sectionBody {
    position: relative;
    display: flex;
    height: 100%;
}

.qAndAGroup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qAndATitle {
    width: 50%;
    font-size: 2.0rem;
    letter-spacing: 0.5rem;
}

.qAndATitleEmphasized {
    color: #D93D93;
    /* color: #2AA8DA; */
    /* color: #CFDC28; */
    /* color: #05B900; */
    font-size: 3.0rem;
}

.qAndAText {
    /* color: #D93D93; */
    font-style: italic;
    width: 50%;
    font-size: 0.9rem;
    letter-spacing: 0.2rem;
    line-height: 2.0rem;
    color: #05B900;
}

.qAndATextSwitchArea{
    display: none;
}

.qAndATextSwitch{
    background-color: #444444;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    margin: 0 auto;
    border-radius: 50%;
}

.qAndATextBody {
    height: 90vh;
    overflow-y: auto;
    display: grid;
    place-items: center;
}

.qAndATextBody::-webkit-scrollbar {
    width: 0.5rem;
}

.qAndATextBody::-webkit-scrollbar-track {
    background-color: #dddddd;
    border-radius: 20px;
}

.qAndATextBody::-webkit-scrollbar-thumb {
    background-color: #D93D93;
    border-radius: 20px;
}

.qAndATextBody>div {
    background-color: #444444;
    border-radius: 5px;
    padding: 2rem;
}


.qAndATextEmphasized {
    /* color: #CFDC28; */
    /* background-color: #D93D93; */
    background-color: #05B900;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 2px;
    margin-left: 2px;
    margin-right: 2px;
}

.qAndACounter {
    position: absolute;
    top: 50px;
    left: 0;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    border-radius: 50%;
    font-size: 0.9rem;
    border: 2px solid #D93D93;
}

/* ============================================================

    SP対応

============================================================ */
@media screen and (max-width: 1279px){
/* @media screen and (max-width: 768px){ */
    .qAndAGroup {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
    }

    .qAndATitle {
        margin-top: 20vh;
        /* margin-bottom: 10vh; */
        margin-bottom: 3vh;
        width: 100%;
        font-size: 1.5rem;
        letter-spacing: 0.25rem;
    }

    .qAndAText {
        margin: 0;
        width: 100%;
        margin-bottom: 0;
    }

    .qAndATextSwitchArea{
        display: block;
        margin-bottom: 3vh;
    }

    .qAndATextBody{
        display: none;
        height: fit-content;
    }

    .qAndATitleEmphasized {
        font-size: 2.0rem;
    }
    
    .qAndA{
        padding-bottom: 5vh;
    }
}