:root{
  /* 🎨 Color Palette */
  --bg-main:#f7fbf9;          /* 全体背景（ほぼ白） */
  --bg-section:#eef6f2;       /* セクション背景 */
  --card:#ffffff;             /* カード背景 */
  --text:#2b3a36;             /* メイン文字 */
  --muted:#6f8a80;            /* 補足文字 */
  --line:#dbe8e2;             /* 枠線 */
  --accent:#7fcfb3;           /* モリンガグリーン */
  --accent-soft:#dff3ea;      /* 薄いアクセント */
}

/* ===== Base ===== */
*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  font-family:
    system-ui,
    -apple-system,
    "Hiragino Kaku Gothic ProN",
    "Noto Sans JP",
    sans-serif;
  background:var(--bg-main);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{width:min(1100px,92%);margin:0 auto}

/* ===== Header ===== */
.header{
  position:sticky;
  top:0;
  background:rgba(247,251,249,.85);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
  z-index:20;
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand__name{
  font-weight:800;
  letter-spacing:.03em;
}

.brand__sub{
  display:block;
  font-size:12px;
  color:var(--muted);
}

.nav{
  display:flex;
  gap:16px;
  align-items:center;
}

.nav a{
  font-size:14px;
  color:var(--muted);
}

.nav a:hover{
  color:var(--text);
}

/* ===== Language ===== */
.lang{
  display:flex;
  gap:6px;
}

.lang__btn{
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  padding:6px 10px;
  border-radius:10px;
  cursor:pointer;
  font-size:12px;
}

.lang__btn[aria-pressed="true"]{
  background:var(--accent-soft);
  border-color:var(--accent);
  color:#1f3b33;
}

/* ===== Buttons ===== */
.btn{
  display:inline-block;
  border:1px solid var(--accent);
  background:var(--accent);
  color:#ffffff;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  transition:.2s;
}

.btn:hover{
  opacity:.9;
}

.btn--ghost{
  background:#ffffff;
  color:var(--accent);
}

.btn--sm{
  padding:8px 14px;
  font-size:13px;
}

/* ===== Hero ===== */
.hero{
  padding:72px 0 56px;
}

.hero__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:center;
}

h1{
  font-size:42px;
  line-height:1.25;
  margin:0 0 16px;
}

.lead{
  color:var(--muted);
  font-size:16px;
  line-height:1.9;
  margin:0 0 22px;
}

.cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.badges{
  list-style:none;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding:0;
  margin:0;
}

.badges li{
  background:var(--accent-soft);
  color:#1f3b33;
  padding:6px 14px;
  border-radius:999px;
  font-size:12px;
}

/* ===== Images ===== */
.media-card{
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:16px;
}

.hero-img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:18px;
}

.media-caption{
  color:var(--muted);
  margin-top:10px;
  font-size:13px;
  line-height:1.7;
}

/* ===== Sections ===== */
.section{
  padding:72px 0;
}

.section--alt{
  background:var(--bg-section);
}

h2{
  font-size:30px;
  margin:0 0 16px;
}

/* ===== Cards ===== */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
}

.card h3{
  margin:0 0 10px;
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

/* ===== Split ===== */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  margin-top:28px;
}

.list{
  margin-top:14px;
  padding-left:18px;
  color:var(--muted);
  line-height:1.9;
}

.mini-note{
  margin-top:16px;
  background:var(--accent-soft);
  color:#1f3b33;
  padding:14px 18px;
  border-radius:18px;
  line-height:1.8;
}

/* ===== Flow ===== */
.steps{
  margin-top:18px;
  padding-left:18px;
  color:var(--muted);
  line-height:2;
}

/* ===== Story ===== */
.story{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
  margin-top:28px;
}

.story-img{
  width:100%;
  height:340px;
  object-fit:cover;
  border-radius:22px;
}

.note{
  color:var(--muted);
  margin-top:12px;
  line-height:1.8;
}

/* ===== Contact ===== */
.contact-box{
  margin-top:28px;
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  max-width:720px;
}

.footer{
  margin-top:32px;
  border-top:1px solid var(--line);
  padding-top:16px;
  color:var(--muted);
  font-size:13px;
}

/* ===== Responsive ===== */
@media (max-width:900px){
  .hero__grid,
  .cards,
  .split,
  .story{
    grid-template-columns:1fr;
  }

  h1{font-size:34px}
  .hero-img{height:220px}
  .story-img{height:240px}
  .nav{display:none}
}
