.faq__wrapper--list {
    background-color: #fff;
}

.qa_box .qa_q {
    background-color: #ffffff;
    border-bottom: 1px solid #D9D9D9;
    padding: 10px;
    position: relative;
    cursor: pointer;
    color: #7E7E7E;
    font-weight: 700;

    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: 100%;
}

.toggle_icon {
    /* position: absolute; */
    /* top: 65%; */
    /* right: 0.8rem; */
    width: 20px;
    height: 20px;
    /* margin-top: -15px; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.toggle_icon:before {
    display: inline-block;
    content: "";
    width: 20px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3csvg%20width='13'%20height='7'%20viewBox='0%200%2013%207'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_159_2529)'%3e%3cpath%20d='M6.09531%206.72885L0.65925%201.45606C0.448124%201.25128%200.448124%200.91892%200.65925%200.714135C0.870377%200.50935%201.21302%200.50935%201.42415%200.714135L6.86021%205.98692C7.07134%206.19171%207.07134%206.52406%206.86021%206.72885C6.64908%206.93363%206.30644%206.93363%206.09531%206.72885Z'%20fill='%238E8FFA'/%3e%3cpath%20d='M6.1407%206.6976C5.92957%206.49281%205.92957%206.16046%206.1407%205.95567L11.5768%200.682885C11.7879%200.478101%2012.1305%200.478101%2012.3417%200.682885C12.5528%200.88767%2012.5528%201.22003%2012.3417%201.42481L6.9056%206.6976C6.69447%206.90238%206.35182%206.90238%206.1407%206.6976Z'%20fill='%238E8FFA'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_159_2529'%3e%3crect%20width='6.35294'%20height='12'%20fill='white'%20transform='translate(12.5%200.529297)%20rotate(90)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: contain;
    margin: auto;

    -webkit-transition: 0.5s ease-in;
    transition: 0.3s ease-in;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.qa_q.open .toggle_icon:before {
    transform: scale(1, -1);
}

.qa_box .qa_a {
    display: none;
    padding: 16px;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    background: #fff;
    text-align: justify;
}

.q_txt {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
    font-size: 20px;
}

.q_txt::before {
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.a_txt {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
}

.a_txt::before {
    position: absolute;
    left: 0;
    content: "A．";
    color: #de0000;
    font-size: 20px;
    font-weight: bold;
}


.faq__wrapper--inner {
    width: auto;
    font-size: 15px;
}

h1.faq__wrapper--head {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 4%;
    background: #6859B2;
    color: #ffffff;
}

.faq__wrapper {
    padding: 4%;
}

p.q-txt {
    font-size: 16px;
    padding-bottom: 2px;
    font-feature-settings: "palt";
    text-align: justify;

    display: flex;
    gap: 10px;

    max-width: calc(100% - 30px);
}

span.purple {
    color: #B04DE0;
}

.bold {
    font-weight: bold;
}


.qa_a img {
    width: 100%;
    padding-top: 4%;
    padding-bottom: 4%;
}
