#wrap {
    background-color: #f4f4f6;
    padding-bottom: 50px;
}
.content1 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 0;
}
.title_box {
    padding: 40px 0;
    border-top: 1px solid #ececec;
    border-bottom: 2px solid #ececec;
    text-align: center;
    margin-bottom: 50px;
}
.title_box .title{
    display: flex;
    align-items: center;
    margin: 0 auto;    
    font-size: 22px;
    font-weight: 600;
    justify-content: center;
}
.title_box .title img {
    width: 2%;
    margin-right: 5px;
}
.qna {
    border-radius: 10px;
    margin-bottom: 30px;
}
.qna .q{ 
    font-size: 18px;
    font-weight: 700;
    padding: 2rem;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 1.3;
    padding-right: 3rem;
    background-color: #fff;
    border-radius: 10px;
}
.qna.on .q{ 
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


.qna  img{ 
    width: 2%;
    margin-right: 10px;
}

.qna .q::after{ 
    content: '';
    background-image: url('../img/arrow-6.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    right: 2rem;
    top: 55%;
    transform: translateY(-50%);


}
.qna.on .q::after{ 
    background-image: url('../img/arrow-5.png');
}

.qna.on .a { 
    font-size: 18px;
    display: block;
    padding: 0 2rem 2rem 4rem;
    align-items: flex-start;
    display: flex;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #7f7f7f;
}
.qna .a { 
    display: none;
    line-height: 1.5;
}
.btn_group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px;
}
.list {
    text-align: right;
}
.list a, .top_button{
    border: 1px solid #7a83f5;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 40px;
    gap: 15px;
    font-size: 16PX;
    color: #424ef0;
}
@media screen and (max-width: 767px) {
    .title_box {
        background-color: #f4f4f6;
        border-bottom: 0;
        text-align: left;
        margin-bottom: 0;
        padding: 30px 0;
        border-top: 0;
    }

    .title_box .title {
        display: flex;
        align-items: center;
        margin: 0 auto;
        font-size: 20px;
        font-weight: 600;
        justify-content: flex-start;
    }
    .title_box .title img {
        width: 6%;
    }
    .content1 {
        width: 90%;
        max-width: 100%;
        margin: 0 auto 80px;
    }
    .qna img {
        width:6%;
        margin-right: 10px;
        margin-bottom: 5px;
        height: 25px;
    }
    .qna .q {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        font-size: 16px;
    }
    .qna.on .a {
        font-size: 16px;
        display: block;
        padding: 0 2rem 2rem;
        align-items: flex-start;
        display: flex;
        background-color: #fff;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        color: #7f7f7f;
    }
    .list a, .top_button {
        border: 1px solid #7a83f5;
        display: inline-flex;
        align-items: center;
        padding: 5px 10px;
        border-radius: 30px;
        margin-top: 40px;
        gap: 0px;
        font-size: 16PX;
        color: #424ef0;
        justify-content: space-between;
    }
    .section_A1 .top_button, .section_B1 .top_button, .section_C1 .top_button , .section_D1 .top_button {
        margin-top: 0;
        margin-bottom: 40px;
    }
    .btn_group img{
        width: 25%;
    }
}