.schedule {
    position: relative;
    padding-bottom: 5rem;
}

.schedule::after {
    content: '';
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 180%;
    background: #FFECC6;
    height: 50%;
    z-index: 1;
}

.schedule .section__title {
    margin-bottom: 2.5rem;
}

.schedule__content {
    position: relative;
    padding: 0 10rem 3rem;
    background-color: #fff;
    border-radius: 4rem;
    z-index: 2;
}

.schedule__content::before {
    content: '';
    background-image: url(../img/schedule_cat.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: -2rem;
    transform: translate(-50%, -50%);
    display: block;
    width: 17.5rem;
    height: 13rem;
    z-index: 3;
}

.schedule__content::after {
    content: '';
    background-image: url(../img/schedule_dog.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -25%;
    right: -24%;
    transform: translate(-50%, -50%);
    display: block;
    width: 19.8rem;
    height: 13rem;
    z-index: 3;
}

@media (min-width: 768px) and (max-width: 1280px) {
    .schedule__content::before {
        top: 5%;
        left: 10rem;
        width: 15rem;
    }

    .schedule__content::after {
        bottom: -25%;
        right: -5%;
        width: 15rem;
    }
}

@media screen and (max-width: 767px) {
    .schedule__content {
        padding: 0 1rem 1rem;
        border-radius: 1.5rem;
    }

    .schedule__content::after {
        bottom: -30%;
        right: -15%;
        width: 8.8rem;
        height: 5rem;
    }

    .schedule__content::before {
        top: 5%;
        left: 3rem;
        width: 7.5rem;
        height: 7rem;
    }
}