@charset "UTF-8";
/* CSS Document */
.section-recipe__items {
    justify-content: center;
    gap: 30px 30px;
    padding-top: 40px;
    flex-wrap: wrap;
    list-style: none;
    align-items: baseline;
}
.section-recipe h3 {
    font-size: 2.0rem;
}
.recipe-img {
    max-width: 300px;
    max-height: 300px;
    aspect-ratio: 1 / 1;
    padding-bottom: 10px;
    margin: 0 auto;
}
.recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px 0 0 0;
    margin: 0 auto;
}
.section-recipe__items-wrap {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .section-recipe__items:after {
        content: "";
        width: calc((100% - 30px) / 2);
    }
    .recipe-item {
        width: calc((100% - 30px) / 2);
    }
    .section-recipe h3 {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}

