@media screen and (min-width: 501px) {
    .banner {
        width: 100%;
        height: 500px;
        background: url(../../img/business/background.png) no-repeat top;
        background-size: cover;
    }

    .banner .body {
        width: 80%;
        height: 100%;
        max-width: 75rem;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .banner .body .title {
        font-size: 50px;
        font-weight: bold;
        color: #333333;
    }

    .banner .body .title .description{
        display: flex;
        align-items: center;
    }

    .banner .body .title .description img{
        height: 60px;
        width: auto;
    }

    .banner .body .image{
        height: 350px;
        width: auto;
    }


    .content_1 {
        width: 100%;
        padding-top: 66px;
        padding-bottom: 40px;
    }

    .content_1 .title {
        text-align: center;
        font-size: 30px;
        color: #343437;
    }

    .content_1 .description {
        text-align: center;
        font-size: 18px;
        color: #737C8B;
        margin-top: 20px;
    }

    .content_1 .body_1 {
        margin: 53px auto;
        width: 80%;
        max-width: 75rem;
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 40px;
    }

    .content_1 .body_1 .top_1 {
        background: #F0F4FF;
        padding: 20px;
    }

    .content_1 .body_1 .top_1 .label {
        font-size: 24px;
        color: #336DF4;
    }

    .content_1 .body_1 .top_1 .label_sub {
        font-size: 18px;
        color: #336DF4;
        margin-top: 11px;
    }

    .content_1 .body_1 .top_1 .bg_pc {
        width: 100%;
        height: auto;
        margin-top: 30px;
    }

    .content_1 .body_1 .top_1 .bg_m {
        display: none;
    }

    .content_1 .body_1 .top_2 {
        background: #F1FAFD;
        padding: 20px;
    }

    .content_1 .body_1 .top_2 .label {
        font-size: 24px;
        color: #108576;
    }

    .content_1 .body_1 .top_2 .label_sub {
        font-size: 18px;
        color: #108576;
        margin-top: 11px;
    }

    .content_1 .body_1 .top_2 .bg_pc {
        width: 100%;
        height: auto;
        margin-top: 30px;
    }

    .content_1 .body_1 .top_2 .bg_m {
        display: none;
    }

    .content_1 .body_1 .top_3 {
        background: #F6F6FF;
        padding: 20px;
    }

    .content_1 .body_1 .top_3 .label {
        font-size: 24px;
        color: #7D39F0;
    }

    .content_1 .body_1 .top_3 .label_sub {
        font-size: 18px;
        color: #7D39F0;
        margin-top: 11px;
    }

    .content_1 .body_1 .top_3 .bg_pc {
        width: 100%;
        height: auto;
        margin-top: 30px;
    }

    .content_1 .body_1 .top_3 .bg_m {
       display: none;
    }
}


@media screen and (max-width: 500px) {
    .banner {
        width: 100%;
        padding: 30px 0;
        background: #F5F9FF;
    }

    .banner .body {
        width: 90%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .banner .body .title {
        font-size: 20px;
        font-weight: bold;
        color: #333333;
    }

    .banner .body .top-left{
        font-size: 16px;
    }

    .banner .body .title .description img{
        display: none;
    }

    .banner .body .image{
        height: 105px;
        width: auto;
    }


    .content_1 {
        width: 100%;
        padding-top: 25px;
        padding-bottom: 14px;
    }

    .content_1 .title {
        text-align: center;
        font-size: 18px;
        color: #343437;
    }

    .content_1 .description {
        display: none;
    }

    .content_1 .body_1 {
        margin: 20px auto;
        width: 90%;
        display: grid;
        grid-template-rows: repeat(3,1fr);
        gap: 15px;
    }

    .content_1 .body_1 .top_1 {
        width: 100%;
        height: 140px;
        background: #F0F4FF;
        padding: 0 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .content_1 .body_1 .top_1 .label {
        font-size: 18px;
        color: #336DF4;
    }

    .content_1 .body_1 .top_1 .label_sub {
        font-size: 14px;
        color: #336DF4;
        margin-top: 11px;
    }

    .content_1 .body_1 .top_1 .bg_pc {
        display: none;
    }

    .content_1 .body_1 .top_1 .bg_m {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 120px;
        height: auto;
    }

    .content_1 .body_1 .top_2 {
        width: 100%;
        height: 140px;
        background: #F1FAFD;
        padding: 0 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .content_1 .body_1 .top_2 .label {
        font-size: 18px;
        color: #108576;
    }

    .content_1 .body_1 .top_2 .label_sub {
        font-size: 14px;
        color: #108576;
        margin-top: 11px;
    }

    .content_1 .body_1 .top_2 .bg_pc {
        display: none;
    }

    .content_1 .body_1 .top_2 .bg_m {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 120px;
        height: auto;
    }

    .content_1 .body_1 .top_3 {
        width: 100%;
        height: 140px;
        background: #F6F6FF;
        padding: 0 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .content_1 .body_1 .top_3 .label {
        font-size: 18px;
        color: #7D39F0;
    }

    .content_1 .body_1 .top_3 .label_sub {
        font-size: 14px;
        color: #7D39F0;
        margin-top: 11px;
    }

    .content_1 .body_1 .top_3 .bg_pc {
        display: none;
    }

    .content_1 .body_1 .top_3 .bg_m {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 120px;
        height: auto;
    }
}




