/* 基本設定：年配者向けに文字を大きく、読みやすく */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #4a573e; /* 濃いめのグリーンで視認性アップ */
    --accent-color: #b37840;
    --bg-color: #faf8f5;
    --text-color: #222; /* 文字を濃くしてコントラストを強調 */
    --white: #ffffff;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 2.0; /* 行間を広く */
    font-size: 18px; /* 基本サイズを大きく */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 2px solid #eee;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 24px;
    color: var(--main-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
}

/* メイン画像 */
.hero {
    padding: 80px 0;
    background-color: #f0ede9;
    text-align: center;
}

h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.badge {
    color: var(--accent-color);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 50px;
    background: var(--main-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
}

/* セクションタイトル */
.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    margin-bottom: 40px;
    border-left: 8px solid var(--main-color);
    padding-left: 20px;
}

.section-title span {
    display: block;
    font-size: 16px;
    color: #888;
    margin-top: 5px;
}

.section-title.center {
    border-left: none;
    padding-left: 0;
    text-align: center;
}

/* コンセプト */
.concept { padding: 80px 0; }
.concept-inner { display: flex; gap: 50px; align-items: center; }
.concept-text { flex: 1; }
.concept-image { flex: 1; }
.img-box { 
    background: #e0e0e0; 
    height: 300px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 15px;
    text-align: center;
    color: #777;
}

/* レシピ */
.recipes { background: #fff; padding: 80px 0; }
.recipe-grid { display: flex; gap: 20px; }
.recipe-card { flex: 1; border: 1px solid #eee; border-radius: 10px; overflow: hidden; }
.card-img {
    width: 100%;       /* 横幅をカードいっぱいに広げる */
    height: 250px;      /* 高さを固定する（お好みで調整してください） */
    object-fit: cover;  /* 重要：縦横比を維持したまま、枠に合わせて切り抜く */
    display: block;     /* 画像の下に隙間ができるのを防ぐ */
}
.card-body { padding: 20px; }
.card-body h3 { margin-bottom: 10px; font-size: 22px; }

/* コツ */
.tips { padding: 80px 0; }
.tips-card { background: var(--main-color); color: var(--white); padding: 50px; border-radius: 20px; }
.tip-item { display: flex; margin-top: 30px; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 20px; }
.num { font-size: 40px; font-weight: bold; color: var(--accent-color); }

/* フッター */
footer { text-align: center; padding: 40px 0; font-size: 16px; color: #666; }

/* スマホ対応 */
@media (max-width: 768px) {
    .concept-inner, .recipe-grid { flex-direction: column; }
    h1 { font-size: 30px; }
}

/* レシピ2段目の上部余白 */
.mt-40 {
    margin-top: 40px;
}

/* モバイル（スマホ）で見た時にカードが詰まりすぎないよう調整 */
@media (max-width: 768px) {
    .mt-40 {
        margin-top: 20px;
    }
    .recipe-card {
        margin-bottom: 20px;
    }
}