/* ------------- */

/* PC共通 */

/* ------------- */

p.under_yellow {
    text-align: center;
    font-size: 40px;
    margin-bottom: 0;
    position: relative;
    z-index: 99;
    width: 85%;
    margin: 50px auto 35px;
}

p.under_yellow::after {
    content: '';
    position: absolute;
    top: 40px;
    display: inline-block;
    width: 96%;
    height: 20px;
    left: 0;
    background-color: #FFF066;
    opacity: 0.9;
    z-index: -99;
}

.text_center {
    text-align: center;
    margin: 60px 0;
}

.qa_wrap {
    width: 94%;
    margin: 100px auto 30px;
}

.qa_list-ttl {
    position: relative;
    padding: 0.5em 1em;
    background-color: #F97D0F;
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.qa_list-ttl::after {
    content: '';
    position: absolute;
    top: 98%;
    left: 30px;
    width: 0;
    height: 0;
    border: 11px solid transparent;
    border-top: 11px solid #F97D0F;
}

.qa-007 {
    margin: 0 auto;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgb(0 0 0 / 5%);
    background-color: #fff;
}

.qa-007 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    list-style-type: none;
    font-size: 16px;
}

.qa-007 summary::before,
.qa-007 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-007 summary::before {
    color: #F97D0F;
    content: "Q";
}

.qa-007 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 12px;
    height: 12px;
    margin-left: 11px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
    position: absolute;
    right: 30px;
}

.qa-007[open] summary::after {
    transform: rotate(225deg);
}

.qa-007 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-007[open] p {
    transform: none;
    opacity: 1;
    font-size: 17px;
    padding-left: 2.5em;
    padding-top: 13px;
}

.qa-007 p::before {
    color: #fd5858;
    line-height: 1.2;
    content: "A";
}

details summary {
    cursor: pointer;
}

details summary::-webkit-details-marker {
    display: none;
}


/* ------------- */

/* SP */

/* ------------- */
@media only screen and (max-width: 750px) {
    p.under_yellow {
        text-align: center;
        font-size: 25px;
        margin-bottom: 0;
        position: relative;
        z-index: 99;
    }

    p.under_yellow::before {
        content: '';
        position: absolute;
        bottom: 5px;
        display: inline-block;
        width: 76%;
        height: 10px;
        left: 43px;
        background-color: #FFF066;
        opacity: 0.9;
        z-index: -99;
    }

    p.under_yellow::after {
        content: '';
        position: absolute;
        top: 23px;
        display: inline-block;
        width: 29%;
        height: 10px;
        left: 130px;
        background-color: #FFF066;
        opacity: 0.9;
        z-index: -99;
    }

    .inner_text {
        text-align: center;
        margin-bottom: 25px;
    }

    .text_center {
        text-align: center;
        margin: 40px 0;
        width: 96%;
        margin: 0 auto;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .qa_wrap {
        width: 95%;
        margin: 45px auto;
    }

    .qa-007 summary {
        padding: 1em 3em 1em 2.5em;
        list-style: none;
    }

    details summary::-webkit-details-marker {
        display: none;
    }

    .qa-007 summary::before,
    .qa-007 p::before {
        position: absolute;
        left: 0.5em;
        top: 11px;
        font-weight: 600;
    }

    .qa-007 summary::after {
        position: absolute;
        right: 15px;
    }
}