/* リードテキスト */
.lead-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    line-height: 140%;
    text-align: center;
    margin: 20px auto 0;
}

/* スマホ */
@media (max-width: 768px) {
    .lead-text {
        font-size: 20px;
    }
}

/* お米マイスターの紹介テエリア */
.feature-box {
    background-color: #E6E8B7;
    ac border-radius: 20px;
    padding: 0 30px;
}

.feature-box p {
    font-size: 18px;
    margin: 0;
}

.feature-box span {
    font-weight: bold;
}

.feature-box-img {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.feature-box-img img {
    border: solid 10px #fff;
    background-color: #fff;
}

/* スマホ */
@media (max-width: 768px) {
    .feature-box-img img {
        max-width: 20%;
    }
}



/* お知らせエリア */
.osirase {
    padding: 0 50px;
}

.row.osirase h2 {
    background-color: #fff;
}


/* バナーエリア */
.bnr-area {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 50px;
}

/* スマホ */
@media (max-width: 768px) {
    .bnr-area {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .bnr-area img {
        width: 80%;
    }
}

/* 区切り線（※） */
.rice-line {
    margin: 50px auto;
    text-align: center;
    font-size: 30px;
    letter-spacing: 0.5em;
}

/* 商品画像 */
.unstyled img.show {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    width: 100%;
    object-fit: cover;
}