.title_box {
    padding: 40px 0;
    background-color: #ededed;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}
.title_box .title{
    display: block;
    width: 1200px;
    margin: 0 auto;    
    font-size: 22px;
    font-weight: 600;
    font-family: "MB" !important;
}
.content1 {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 80px;
}
.section_A1 .content1 .box,.section_B1 .content1 .box ,.section_C1 .content1 .box  {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border: none;
    justify-content: center;
}
.section_A1 .content1 .box a {
    flex: 1 1 calc(25% - 20px);

}
.section_A1 .content1 .box a img{
    width: 100%;
}


.sub_title {
    padding: 10px 25px;
    background-color: #1d80ff;
    display: inline-block;border-radius: 30px;
    color: #fff;
    font-size: 20px;
}
.box {
    padding: 30px 20px;
    border: 1px solid  #b9b5b3;
    margin-top: 20px;
    border-radius: 20px;
}
.box .con{
    font-size: 18px;
    line-height: 1.3;
}
.box .con .point3{
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
}
.list {
    text-align: right;
}
.list a{
    border: 1px solid #7a7a7a;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 40px;
    gap: 15px;
    font-size: 16PX;
}
.top_button_wrap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.top_button {
    display: inline-block;
}
.top_button img{
    width: 60%;
}
.btn_wrap1 {
    text-align: center;
    width: 1200px;
    margin: 0 auto;
    gap: 25px;
    display: flex;
    flex-direction: column;
}
.btn_wrap2 {
    text-align: center;
    width: 1200px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    width: 1200px;
}
.btn_wrap1 .next {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    color: #fff;
    align-items: center;
    padding: 20px;
    width: 100%;
    margin: 40px 0;
    border-radius: 20px;
    font-size: 16px;
    border: 1px solid #b9b5b3;
}
.btn_wrap2 .next {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    color: #fff;
    align-items: center;
    padding: 20px;
    width: 100%;
    margin: 10px 0;
    border-radius: 20px;
    font-size: 16px;
    border: 1px solid #b9b5b3;
}
.btn_wrap1 .back5 {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    color: #fff;
    align-items: center;
    padding: 20px;
    width: 100%;
    margin: 40px 0;
    border-radius: 20px;
    font-size: 16px;
    border: 1px solid #b9b5b3;
}
.btn_wrap2 .back5 {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    color: #fff;
    align-items: center;
    padding: 20px;
    width: 100%;
    margin: 10px 0;
    border-radius: 20px;
    font-size: 16px;
    border: 1px solid #b9b5b3;
}

.next .btn_left .s1, .back5 .btn_left .s1{
    padding-right: 15px;
    font-weight: 600;
}

.btn_left {
    display: flex;
    align-items: center;
}
.s1, .s2 {
    font-size: 18px;
    line-height: 1.3;
}
.s1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.s1 img {
    width: 25%;
}
@media screen and (max-width: 767px) {
    .title_box {
        padding: 20px 15PX;
        background-color: #ededed;
        border-top: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
    }
    .title_box .title {
        width: 100%;
        font-size: 20px;
    }
    .content1 {
        width: 90%;
        max-width: 100%;
        margin: 30px auto 80px;
    }
    .section_A1 .box, .section_B1 .box {
        padding: 0;
    }
    .section_A1 .content1 .box a {
        flex: 1 1 calc(40% - 15px);
    }
    .btn_wrap1 {
        width: 100%;
    }
    .btn_wrap2 {
        width: 100%;
    }
    .section_B1 .content1 .box {
        display: flex;
        flex-wrap: wrap;
        gap: 20px; /* 아이템 간의 간격 조정 */
    }
    
    .section_B1 .content1 .box a {
        flex: 1 1 calc(50% - 10px); /* 기본적으로 두 개씩 한 줄에 배치 */
    }
    
    .section_B1 .content1 .box a:nth-last-child(1) {
        flex: 0 1 calc(50% - 10px); /* 마지막 버튼도 50% 너비로 설정 */
    }
    
    .section_B1 .content1 .box a:nth-last-child(2) {
        flex: 1 1 calc(50% - 10px); /* 두 번째 마지막 버튼도 50% 너비로 설정 */
    }
    
    .section_B1 .content1 .box a:nth-last-child(3) {
        flex:1 1 calc(50% - 10px) !important; /* 세 번째 마지막 버튼도 50% 너비로 설정 */
    }
    
    .section_B1 .content1 .box a img {
        width: 100%; /* 이미지가 컨테이너에 맞게 조정 */
    }
    
    
    .section_C1 .content1 .box a {
        flex: 1 1 calc(50% - 10px); /* 기본적으로 두 개씩 한 줄에 배치 */
    }
    
    .section_C1 .content1 .box a:nth-last-child(1) {
        flex: 0 1 calc(50% - 10px); /* 마지막 버튼도 50% 너비로 설정 */
    }
    
    .section_C1 .content1 .box a:nth-last-child(2) {
        flex: 1 1 calc(50% - 10px); /* 두 번째 마지막 버튼도 50% 너비로 설정 */
    }
    
    .section_C1 .content1 .box a:nth-last-child(3) {
        flex:1 1 calc(50% - 10px) !important; /* 세 번째 마지막 버튼도 50% 너비로 설정 */
    }
    
    .section_C1 .content1 .box a img {
        width: 100%; /* 이미지가 컨테이너에 맞게 조정 */
    }
   .section_C1 .content1 .box {
        padding: 0;
    }
    .s1, .s2 {
        font-size: 14px;
        line-height: 1.3;
    }
}