.benefits {
    width: 100%;
    background-color: #FFFBD2;
    position: relative;
    padding: 0 18px 88px;
}

.benefits::before {
    content: "";
    background-color: #FFFBD2;
    width: 100%;
    height: 60px;
    border-radius: 100px 0 0 0;

    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%)
}

.benefits__top {
    width: 120px;

    position: absolute;
    top: -80px;
    right: 0;
}

.benefits__title--image {
    display: block;
    width: 154px;
    margin: 0 auto;
}

.benefits__list {
    display: grid;
    gap: 36px;
    margin-top: 45px;
}

.benefits__item {
    width: 333px;
    margin: 0 auto;
}

.benefits__bottom {
    width: 110px;

    position: absolute;
    bottom: -50px;
    left: 0;
}


/* =========================
   PC
========================= */
@media (min-width: 980px) {
    .benefits {
        padding: 0 18px 80px;
    }

    .benefits::before {
        height: 240px;
        border-radius: 200px 0 0 0;
    }

    .benefits__top {
        width: 280px;
        top: -270px;
    }

    .benefits__title--image {
        width: 251px;
        position: absolute;
        top: -186px;
        left: 50%;
        transform: translateX(-50%);
    }

    .benefits__list {
        display: grid;
        grid-template-columns: repeat(2, 401px);
        justify-content: center;
        gap: 26px;
        margin-top: 43px;
    }

    .benefits__item {
        width: 401px;
    }

    .benefits__bottom {
        width: 170px;

        position: absolute;
        bottom: -90px;
        left: 0;
    }
}


@media (min-width: 1390px) {
    .benefits__top {
        width: 340px;
        top: -270px;
    }

    .benefits__bottom {
        width: 280px;

        position: absolute;
        bottom: -90px;
    }
}
