@charset "utf-8";

/* ---------------------sub_mv-------------------- */
.sub_mv{
    background: url(/assets/img/business/sub_mv.jpg) no-repeat center center/cover;
}

/* ---------------------works-------------------- */
.works{
    padding: 293px 0 128px;
}

.works li{
    display: flex;
    width: 1280px;
    margin: 0 auto;
    padding: 83px 0;
    justify-content: center;
    align-items: center;
    column-gap: 88px;
    border-bottom: 1px solid var(--main);
}

.works li:last-child{
    border-bottom: none;
}

.works .photo{
    width: 513px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}

.works .photo img{
    width: 513px;
    aspect-ratio: 513/342;
    object-fit: cover;
}

.works .texts{
    width: 570px;
}

.works h3{
    margin-bottom: 32px;
    padding-left: 61px;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--main);
    position: relative;
}

.works h3::before{
    content: '';
    display: block;
    width: 45px;
    aspect-ratio: 45/65;
    background: url(/assets/img/business/h3_img.svg) no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width:750px) {
    /* ---------------------sub_mv-------------------- */
    .sub_mv{
        background: url(/assets/img/business/sub_mv_sp.jpg) no-repeat center center/cover;
    }

    /* ---------------------works-------------------- */
    .works{
        padding: calc((100 / 390) * 146 * 1vw) 0 calc((100 / 390) * 48 * 1vw);
    }

    .works li{
        display: block;
        width: 100%;
        padding: calc((100 / 390) * 48 * 1vw) 0;
        border-bottom: calc((100 / 390) * 1 * 1vw) solid var(--main);
    }

    .works .photo{
        width: calc((100 / 390) * 294 * 1vw);
        margin: 0 auto calc((100 / 390) * 32 * 1vw);
        box-shadow: 0 calc((100 / 390) * 8 * 1vw) calc((100 / 390) * 30 * 1vw) rgba(0, 0, 0, .1);
    }

    .works .photo img{
        width: calc((100 / 390) * 294 * 1vw);
        aspect-ratio: 294/196;
    }

    .works .texts{
        width: 100%;
    }

    .works h3{
        margin-bottom: calc((100 / 390) * 16 * 1vw);
        padding-left: calc((100 / 390) * 38 * 1vw);
        font-size: calc((100 / 390) * 24 * 1vw);
    }

    .works h3::before{
        width: calc((100 / 390) * 30 * 1vw);
        aspect-ratio: 30/43;
    }



}