.business-content-item-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2em;
    margin-bottom: 2em;

    & img {
        max-width: 600px;
        min-width: 400px;
        margin-left: -2rem;
        border-radius: 15px;
    }
}

.business-content-item-text {
    width: 50%;
}

.business-description-container {
    display: flex;
    flex-direction: column;
    padding: 0 0.5em;
}

.business-content-item-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2em;
    margin-bottom: 2em;

    & img {
        max-width: 800px;
        min-width: 500px;
        margin-right: -2rem;
        border-radius: 15px;
    }

    & .business-content-item-text {
        max-width: 400px;
    }
}

.welfare-content-message {
    font-size: 2.375rem;
    margin-top: 20px;
    text-align: center;
}

.welfare-content {
    display: flex;
    flex-direction: row;
    gap: 100px;
    margin-top: 50px;
    padding: 0 500px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.welfare-content-item {
    background-color: #e0edff;
    /* background: linear-gradient(180deg, #ffffff 0%, #e0edff 100%); */
    min-width: 500px;
    padding: 0;
    scroll-snap-align: center;
    border-radius: 15px;

    & img {
        /* margin-bottom: 1rem; */
        width: 100%;
        border-radius: 15px 15px 0 0;
    }
}

.welfare-content-item-text {
    padding: 1rem;
}

.welfare-content-item-text h4 {
    font-size: 1.5rem;
    color: #217AC5;
    margin-bottom: 1rem;
}

.welfare-content-scroll {
    width: 500px;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .welfare-content {
        padding: 0 200px;
        /* gap: 50px; */
    }
}

@media screen and (max-width: 820px) {

    .business-content-item-left,
    .business-content-item-right {
        flex-direction: column;
        gap: 1em;
        /* text-align: center; */
    }

    .business-content-item-left img,
    .business-content-item-right img {
        max-width: 100%;
        min-width: auto;
        margin: 0;
    }

    .business-content-item-text {
        width: 100%;
    }

    .welfare-content-message {
        font-size: 2rem;
        margin-top: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {

    .business-content-item-left,
    .business-content-item-right {
        margin-bottom: 50px;

        & h3 {
            margin: 10px 0;
        }
    }

    .welfare-content {
        padding: 0 50px;
        gap: 15px;
    }

    .welfare-content-message {
        font-size: 1.5rem;
    }

    .welfare-content-item {
        min-width: 300px;
    }

    .welfare-content-scroll {
        width: 300px;
    }
}