:root {
    --bg-color: #fcfbfa;       /* 温かみのあるごく薄いベージュ */
    --text-color: #2c3e29;     /* 深い濃緑（黒の代わり） */
    --accent-color: #4a6b42;   /* 落ち着いたフォレストグリーン */
    --border-color: #e0dbd5;   /* 境界線用の薄いグレー */
}

body {
    font-family: 'Noto Serif JP', "Helvetica Neue", Arial, serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

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

/* ヘッダー */
header {
    margin-bottom: 60px;
    text-align: center;
}

h1 {
    font-size: 1.65rem;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.05em;
}

/* セクション共通 */
section {
    margin-bottom: 60px;
}

h2 {
    font-size: 1.15rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

p {
    font-size: 0.95rem;
    white-space: pre-wrap; /* 改行をそのまま反映 */
}

/* 栽培品目（グリッド配置） */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
}

.item {
    font-size: 0.9rem;
}

.item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    background: #eee; /* 画像がない時のグレープレースホルダー */
}

.item-name {
    font-weight: bold;
    margin-top: 8px;
}

/* お問い合わせフォーム */
form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

label {
    font-size: 0.85rem;
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: #fff;
    box-sizing: border-box;
    font-size: 1rem;
    color: var(--text-color);
    font-family: sans-serif; /* 入力欄は読みやすさ重視でゴシック */
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: opacity 0.2s ease;
}

button:hover {
    opacity: 0.9;
}

/* フッター */
footer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 80px;
}