.service_sect {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.digital_wrap .border_title_wrap {
    margin-bottom: 24px;
}

.digital_service_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.digital_service_list>li {
    width: calc((100% - 20px)/2);
}

.digital_service_list .service_item {
    width: 100%;
    aspect-ratio: 1/0.755;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    border-radius: 50px;
}

.digital_service_list .service_item.main {
    padding: 20px 0;
}

.service_item .text_box .subtitle {
    color: #5E5E5E;
    font-size: 20px;
    margin-bottom: 16px;
}

.service_item .text_box .item_text {
    font-size: 20px;
    font-weight: 600;
}

.service_item.main .text_box .item_text {
    font-size: 24px;
    font-weight: 700;
}

.service_item .img_content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.service_item .img_content .icon_box {
    width: 24px;
    aspect-ratio: 1/1;
    background: url("/static/app_www/base/img/icon_arrow_tail_right.png") center / cover no-repeat;
}

.service_item .img_box {
    display: flex;
    width: 180px;
}

.service_item .img_box.digital_img03 {
    width: 235px;
}

.service_item .img_box.digital_img04,
.service_item .img_box.digital_img05 {
    width: 164px;
}

.service_item .img_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service_item .img_group {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.service_item .img_group .img_box {
    width: 37px;
    aspect-ratio: 1/1;
}

.service_item .img_group.pg {
    gap: 0;
}

.service_item .img_group.pg .img_box {
    width: 92px;
}

.service_item .img_group.pg .img_box:first-child {
    margin-right: -12px;
}

.service_item .img_group.pg .img_box:last-child {
    margin-left: -12px;
}

.scope_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.scope_list .scope_item {
    width: calc((100% - 20px)/2);
    padding: 20px;
    border-radius: 20px;
    display: block;
}

.scope_item .item_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.scope_item .item_head .item_title {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.scope_item .item_head .icon_box {
    display: flex;
    width: 24px;
    aspect-ratio: 1/1;
}

.scope_item .item_head .item_title::before {
    content: "";
    display: block;
    width: 16px;
    aspect-ratio: 1/1;
    background: url("/static/app_www/base/img/icon_check_gradient.png") center / cover no-repeat;
}

.scope_item .item_text {
    color: #5E5E5E;
    font-size: 14px;
}

@media screen and (max-width:1023px) {
    .service_sect {
        gap: 24px;
    }

    .digital_wrap .border_title_wrap {
        margin-bottom: 16px;
    }

    .digital_service_list {
        gap: 10px;
    }

    .digital_service_list>li {
        width: calc((100% - 10px)/2);
    }

    .digital_service_list .service_item {
        padding: 24px;
    }

    .service_item .text_box .subtitle {
        font-size: 14px;
    }

    .service_item .text_box .item_text {
        font-size: 16px;
    }

    .service_item.main .text_box .item_text {
        font-size: 18px;
    }

    .service_item .img_box {
        width: 140px;
    }

    .service_item .img_box.digital_img03 {
        width: 195px;
    }

    .service_item .img_box.digital_img04,
    .service_item .img_box.digital_img05 {
        width: 124px;
    }

    .service_item .img_list {
        gap: 8px;
    }

    .service_item .img_group .img_box {
        width: 24px;
    }

    .service_item .img_group.pg .img_box {
        width: 72px;
    }

    .scope_list {
        gap: 10px;
    }

    .scope_list .scope_item {
        width: calc((100% - 10px)/2);
    }


    /* .scope_item .item_text {
        font-size: 12px;
    } */
}

@media screen and (max-width:767px) {
    .digital_service_list>li {
        width: 100%;
    }

    .digital_service_list .service_item.main {
        aspect-ratio: initial;
    }

    .scope_list .scope_item {
        width: 100%;
    }
}