:root{
  --bg: #EAF2DA;          /* 背景：薄い黄緑（Canvaに寄せ） */
  --paper: #F7FAEF;       /* セクションの白っぽい背景 */
  --green: #2F5A2E;       /* 見出しグリーン */
  --green-2:#4E7B43;      /* 罫線・アクセント */
  --navy: #1F2A44;        /* ボタン用（任意） */
  --text: #1d1d1d;
  --muted:#5e6b57;

  --radius: 18px;
  --line: rgba(47,90,46,.22);
  --shadow: 0 10px 22px rgba(0,0,0,.06);

  --container: 980px;
  --headerH: 64px;
}

*{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--headerH) + 10px);
}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}



img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

/* ===== Header ===== */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--headerH);
  background: rgba(234,242,218,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  letter-spacing:.04em;
  color: var(--green);
}
.brand__logo{
  width:34px; height:34px;
  border-radius: 10px;
  object-fit: cover;
}
.brand__name{ font-size: 16px; }

.nav--pc{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav--pc a{
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 700;
  color: rgba(47,90,46,.9);
}
.nav--pc a:hover{
  background: rgba(47,90,46,.08);
}
.nav__cta{
  background: var(--green);
  color:#fff !important;
  padding: 9px 12px !important;
  box-shadow: 0 10px 18px rgba(47,90,46,.18);
}

/* burger */
.burger{
  display:none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  border-radius: 12px;
  padding: 10px 12px;
}
.burger span{
  display:block;
  width: 18px;
  height: 2px;
  background: var(--green);
  margin: 4px 0;
  border-radius: 2px;
}

/* mobile nav */
.nav--sp{
  display:none;
  border-top: 1px solid var(--line);
  background: rgba(234,242,218,.96);
}
.nav--sp a{
  display:block;
  padding: 12px 16px;
  font-weight: 700;
  color: rgba(47,90,46,.92);
}
.nav--sp a:hover{ background: rgba(47,90,46,.08); }
.nav--sp.is-open{ display:block; }

/* ===== Hero ===== */
.hero{
  position: relative;
  padding: 28px 0 10px;
  text-align:center;
}
.hero__inner{ padding-top: 10px; }
.hero__kicker{
  margin: 10px 0 6px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(47,90,46,.8);
}
.hero__title{
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--green);
}
.hero__sub{
  margin: 8px 0 18px;
  color: rgba(47,90,46,.78);
  font-weight: 700;
  font-size: 12px;
  display:flex;
  flex-direction: column;
  gap: 2px;
}
.hero__figure{
  width: min(260px, 68vw);
  margin: 0 auto;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.08));
}

/* うねうね線 */
.hero__wave{
  width: 100%;
  height: 64px;
  margin-top: -10px;
  background:
    radial-gradient(circle at 10% 55%, transparent 18px, rgba(255,255,255,.0) 18px),
    radial-gradient(circle at 50% 55%, transparent 18px, rgba(255,255,255,.0) 18px);
  position: relative;
}
.hero__wave::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 3px;
  background: rgba(255,255,255,.8);
  border-radius: 999px;
  opacity: .9;
}

/* ===== Sections ===== */
.section{
  padding: 34px 0;
}
.section--tight{ padding-top: 18px; }
.section__title{
  font-family: 'Noto Serif JP', serif;
  margin: 0 0 16px;
  text-align:center;
  color: var(--green);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .02em;
}

/* ===== Cards (サービス3つ) ===== */
.cards{
  display:grid;
  gap: 14px;
}
.cards--3{
  grid-template-columns: repeat(3, 1fr);
}
.card{
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 14px;
  text-align:center;
}
.card__icon{
  width: 200px;
  height: 200px;
  margin: 0 auto 10px;
  border-radius: 18px;
  /* background: rgba(234,242,218,.7); */
  /* border: 1px solid rgba(47,90,46,.15); */
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.card__icon img{
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.card__title{
  margin: 0 0 6px;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}
.card__text{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
}

/* 中央だけ強調（Canvaの枠っぽい） */
.card--active{
  /* outline: 3px solid rgba(132, 107, 255, .55); */
  outline-offset: -3px;
}

/* ===== Note ===== */
.note{
  margin-top: 14px;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.note__title{
  margin: 0 0 6px;
  font-weight: 900;
  color: rgba(47,90,46,.9);
  text-align:center;
}
.note__text{
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align:center;
  font-weight: 650;
}

/* ===== Persona grid (4つ) ===== */
.persona{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 14px;
  align-items: start;
  justify-items: center;
}
.persona__item{
  width: 100%;
  display:flex;
  align-items:center;
  gap: 12px;
  justify-content:center;
}
.persona__icon{
  width: 200px;
  height: 200px;
  border-radius: 16px;
  /* background: rgba(255,255,255,.65); */
  /* border: 1px solid var(--line); */
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.persona__icon img{
  width: 200px; height: 200px;
  object-fit: contain;
}
.persona__text{
  margin:0;
  color: rgba(47,90,46,.92);
  font-weight: 900;
  font-size: 20px;
}
.persona__item--active{
  /* outline: 3px solid rgba(132, 107, 255, .55); */
  outline-offset: 6px;
  border-radius: 20px;
  padding: 6px 8px;
}

/* ===== Plans Table ===== */
.muted{
  margin: -6px 0 10px;
  text-align:center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}
.table-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.plan-table{
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}
.plan-table th,
.plan-table td{
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  font-size: 16px;
  vertical-align: top;
  text-align: center;
}
.plan-table th, .plan-table td:first-child {
  width: 30px;
}
.plan-table th:last-child,
.plan-table td:last-child{ border-right: none; }
.plan-table thead th{
  background: rgba(47,90,46,.10);
  color: rgba(31,42,68,.95);
  font-weight: 900;
}
.plan-table .th-sub{
  text-align: left;
  line-height: 1.55;
}
.plan-table small{
  color: rgba(0,0,0,.62);
  font-weight: 650;
}

/* ===== Policy ===== */
.section--policy .policy{
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow);
  font-size: 12px;
  color: rgba(0,0,0,.72);
}
.policy p{ 
  font-size: 15px;
  padding: 10px 30px;
  margin: 0 0 10px; 
}
.policy p:last-child{ margin-bottom: 0; }

/* ===== CTA ===== */
.section--cta .cta{
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align:center;
  box-shadow: var(--shadow);
}
.cta__title{
  margin: 0 0 6px;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}
.cta__text{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}
.cta__buttons{
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(47,90,46,.35);
  background: rgba(255,255,255,.85);
  color: rgba(47,90,46,.95);
}
.btn--primary{
  background: var(--green);
  color:#fff;
  border-color: transparent;
}
.cta__small{
  margin: 10px 0 0;
  font-size: 11px;
  color: rgba(0,0,0,.55);
}

/* ===== Footer ===== */
.footer{
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(234,242,218,.88);
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
}
.footer__brand{
  margin:0;
  font-weight: 900;
  color: var(--green);
}
.footer__copy{
  margin:0;
  font-size: 12px;
  color: rgba(0,0,0,.55);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .cards--3{ grid-template-columns: 1fr; }
  .card__icon{ width: 84px; height: 84px; }
}

@media (max-width: 860px){
  .nav--pc{ display:none; }
  .burger{ display:inline-block; }
}

@media (max-width: 420px){
  .hero__title{ font-size: 30px; }
  .persona__text{ font-size: 13px; }
}