@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@400;500&family=Noto+Sans+JP:wght@400;700&display=swap');
:root { --c-main: #f0fdf4; --c-green: #16a34a; --c-orange: #f97316; --c-text: #4b5563; }
body { font-family: 'Noto Sans JP', sans-serif; background-color: var(--c-main); color: var(--c-text); margin: 0; line-height: 1.8; font-size: 18px; }
a { color: inherit; text-decoration: none; }
.header { background: #fff; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 20px rgba(22,163,74,0.05); position: sticky; top: 0; z-index: 100; border-bottom: 4px solid var(--c-green); }
.logo { font-family: 'Kiwi Maru', serif; font-size: 1.8rem; color: var(--c-green); font-weight: 500; display:flex; align-items:center; gap:10px; }
.logo::before { content:'🍀'; font-size:2rem; }
.nav { display: flex; gap: 20px; }
.nav a { background: #f0fdf4; color: var(--c-green); padding: 10px 20px; border-radius: 50px; font-weight: 700; transition: 0.3s; }
.nav a:hover { background: var(--c-green); color: #fff; }
.hero { display: flex; align-items: center; justify-content: space-between; padding: 60px 10%; background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%); }
.hero-text { flex: 1; padding-right: 40px; }
.hero-title { font-family: 'Kiwi Maru', serif; font-size: 3rem; color: var(--c-green); line-height: 1.4; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 40px; }
.hero-img-wrap { flex: 1; position: relative; }
.hero-img { width: 100%; border-radius: 40px 120px 40px 120px; box-shadow: 0 20px 40px rgba(22,163,74,0.15); object-fit: cover; height: 500px; }
.btn-warm { display: inline-block; background: var(--c-orange); color: #fff; padding: 15px 40px; border-radius: 50px; font-weight: 700; font-size: 1.2rem; box-shadow: 0 10px 20px rgba(249,115,22,0.3); transition: 0.3s; }
.btn-warm:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(249,115,22,0.4); }
.wave { position: relative; background: #fff; width: 100%; overflow: hidden; line-height: 0; }
.wave svg { display: block; width: 100%; height: 60px; }
.section { background: #fff; padding: 80px 10%; text-align: center; }
.section-title { font-family: 'Kiwi Maru', serif; font-size: 2.5rem; color: var(--c-green); margin-bottom: 20px; }