// HerbGardenSection.jsx — ハーブ園・花畑セクション const HerbGardenSection = ({ onNavigate }) => { const [ref, setRef] = React.useState(null); const [isVisible, setIsVisible] = React.useState(false); React.useEffect(() => { if (!ref) return; const observer = new IntersectionObserver( ([entry]) => { if (entry.isIntersecting) setIsVisible(true); }, { threshold: 0.2 } ); observer.observe(ref); return () => observer.disconnect(); }, [ref]); const gardens = [ { title: 'ハーブ園', titleEn: 'Herb Garden', desc: '摘みたてハーブの香りを楽しみながら、料理やティー作りに使えるハーブを収穫できます。', herbs: ['バジル', 'ローズマリー', 'ミント', 'ラベンダー', 'タイム', 'オレガノ'], bgColor: '#E4F0E2', textColor: '#2C4A28', accentColor: '#5E9252', }, { title: '花畑', titleEn: 'Flower Garden', desc: '季節の花々が咲き誇る花畑。摘み取った花はブーケにしてお持ち帰りいただけます。', herbs: ['ひまわり', 'コスモス', '菜の花', 'チューリップ', 'ラベンダー', 'マリーゴールド'], bgColor: '#FFF3C4', textColor: '#6B4804', accentColor: '#F5C518', }, ]; return (
{/* Section header */}
Herb & Flower

ハーブと花に包まれて。

ブルーベリーだけでなく、ハーブ園や季節の花畑も併設。
摘み取り体験やワークショップで、自然の恵みを五感で楽しめます。

{/* Garden cards */}
{gardens.map((garden, idx) => (
{garden.titleEn}

{garden.title}

{garden.desc}

{/* Herb/flower tags */}
{garden.herbs.map(herb => ( {herb} ))}
))}
{/* Activity cards */}

こんな体験ができます

{[ { icon: '✂️', title: 'ハーブ摘み取り', desc: '好きなハーブを摘んでお持ち帰り' }, { icon: '💐', title: '花束作り', desc: '摘んだ花でオリジナルブーケ' }, { icon: '🫖', title: 'ハーブティー体験', desc: 'フレッシュハーブティーの試飲' }, { icon: '🧴', title: 'アロマワークショップ', desc: 'ハーブを使った手作りアロマ' }, ].map(activity => (
{activity.icon}
{activity.title}
{activity.desc}
))}
{/* Family-friendly note */}
👨‍👩‍👧‍👦 お子様も安心 — 低農薬・有機栽培のハーブと花。小さなお子様でも安全に摘み取り体験を楽しめます。
); }; Object.assign(window, { HerbGardenSection });