/* 基本設定 */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    background-color: #fcfaf5; /* 柔らかい白 */
}

.container_sdgs {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ヘッダー */
header {
    background-color: #ff8c00; /* 企業イメージカラー */
    color: white;
    text-align: center;
    padding: 60px 0;
}

/* 商品紹介（フレックスボックスで横並び） */
.flex-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap; /* スマホで縦に並ぶように */
}

.image-box {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
}

.text-box {
    flex: 1;
    min-width: 300px;
}

/* レシピカード */
.recipe-card {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 20px;
}

.recipe-card img {
    width: 50%;
    height: 200px;
    object-fit: cover;
}

.recipe-content {
    padding: 20px;
}

h2 {
    border-bottom: 2px solid #5d6d3e;
    display: inline-block;
    margin-bottom: 30px;
}

footer {
    text-align: center;
    padding: 40px;
    background: #333;
    color: white;
}