@charset "UTF-8";

/* =========================================================
   スマート貸し農園 LP
   糸島自然栽培農学校
   ========================================================= */

/* ---------- tokens ---------- */
:root {
  --green-900: #0d5236;
  --green-800: #14603f;
  --green-700: #1c7350;
  --green-500: #2f8a63;
  --green-100: #d7e3d2;
  --green-050: #cfe2de;
  --leaf:      #8cb544;

  --beige:     #e5e8d4;
  --gray-50:   #f6f6f4;
  --gray-100:  #eeeeea;
  --line:      #c9cfc0;

  --text:      #333333;
  --text-weak: #6b6b6b;
  --white:     #ffffff;

  --font: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
          "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Sans",
          "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  /* 見出し専用。手書き風にする場合はここを "Yomogi" または "Klee One" に変え、
     index.html の Google Fonts の読み込みも合わせて変更する */
  --font-display: "Zen Old Mincho", "游明朝体", YuMincho, "Hiragino Mincho ProN",
                  "Noto Serif JP", serif;

  --wrap: 1120px;
  --pad: 24px;

  --header-h: 72px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

@media (max-width: 767px) {
  :root { --header-h: 60px; --pad: 20px; }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  /* Windowsの游ゴシックはRegularが細く潰れるため500で運用 */
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  line-height: 1.9;
  letter-spacing: .04em;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; border-spacing: 0; width: 100%; }

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.wrap--narrow { max-width: 900px; }

.section { padding-block: 96px; }
.section--gray { background: var(--gray-50); }
.section--beige { background: var(--beige); }

@media (max-width: 767px) {
  .section { padding-block: 56px; }
}

/* ---------- headings ---------- */
.heading {
  text-align: center;
  margin-bottom: 56px;
}
.heading__ja {
  display: block;
  font-size: clamp(21px, 3.4vw, 30px);
  font-weight: 700;
  color: var(--green-800);
  line-height: 1.6;
  letter-spacing: .08em;
}
.heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--green-800);
}
@media (max-width: 767px) {
  .heading { margin-bottom: 36px; }
}

.subheading {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: .08em;
}

/* ---------- ふきだし ---------- */
.balloon {
  position: relative;
  display: inline-block;
  padding: 14px 40px;
  background: var(--green-800);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .08em;
  line-height: 1.5;
}
.balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--green-800);
  border-bottom: 0;
}
.balloon--left::after { left: 22%; }

@media (max-width: 767px) {
  .balloon { padding: 12px 26px; font-size: 14px; }
}

/* ---------- button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 16px 40px;
  border: 1px solid var(--green-800);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-800);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  transition: background .25s, color .25s;
}
.btn:hover { background: var(--green-800); color: var(--white); }

.btn--fill { background: var(--green-800); color: var(--white); }
.btn--fill:hover { background: var(--green-700); color: var(--white); }

.btn--onGreen {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}
.btn--onGreen:hover { background: transparent; color: var(--white); }

@media (max-width: 767px) {
  .btn { min-width: 220px; padding: 14px 28px; font-size: 15px; }
}

/* =========================================================
   header
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px);
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: 0 1px 12px rgba(0,0,0,.08); }

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo img { width: 78px; }

.gnav__list { display: flex; align-items: center; gap: 26px; }
.gnav__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: .06em;
  white-space: nowrap;
  transition: opacity .2s;
}
.gnav__link:hover { opacity: .6; }

.hamburger { display: none; }

@media (max-width: 1023px) {
  .hamburger {
    display: block;
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green-800);
    flex-shrink: 0;
  }
  .hamburger span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--white);
    transform: translateX(-50%);
    transition: transform .3s, opacity .3s;
  }
  .hamburger span:nth-child(1) { top: 16px; }
  .hamburger span:nth-child(2) { top: 22px; }
  .hamburger span:nth-child(3) { top: 28px; }
  .hamburger.is-open span:nth-child(1) { transform: translateX(-50%) translateY(6px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

  .gnav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    height: calc(100dvh - var(--header-h));
    background: var(--white);
    padding: 32px var(--pad) 64px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
  }
  .gnav.is-open { opacity: 1; visibility: visible; }
  .gnav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav__item { border-bottom: 1px solid var(--gray-100); }
  .gnav__link { display: block; padding: 18px 4px; font-size: 15px; }
}

@media (max-width: 767px) {
  .header__logo img { width: auto; height: 34px; }
}

/* =========================================================
   FV  ─ 非対称エディトリアル（2026-07-27 リデザイン）
   ========================================================= */
.fv { padding-top: var(--header-h); background: var(--white); }

.fv__grid {
  display: grid;
  /* 2カラム。FVは全画面フルブリード扱い（メニューバーの中央寄せとは別軸）。左は最小限のガター、写真は右端まで */
  grid-template-columns: minmax(0, calc(var(--wrap) * .42)) minmax(0, 1fr);
  align-items: center;
  min-height: min(78vh, 720px);
  padding-left: clamp(var(--pad), 4vw, 72px);
}
.fv__copy {
  grid-column: 1;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 3.5vw, 56px) clamp(40px, 5vw, 72px) 0;
}

.fv__lead {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-700);
  letter-spacing: .1em;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s .18s ease, transform .8s .18s var(--ease-out);
}
.fv.is-ready .fv__lead { opacity: 1; transform: none; }

.fv__catch {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  color: var(--green-800);
  line-height: 1.5;
  letter-spacing: .04em;
}
/* 行単位のマスク送り */
.fv__catch .line { display: block; overflow: hidden; white-space: nowrap; }
.fv__catch .line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.fv.is-ready .fv__catch .line > span { transform: none; }
.fv.is-ready .fv__catch .line:nth-child(1) > span { transition-delay: .30s; }
.fv.is-ready .fv__catch .line:nth-child(2) > span { transition-delay: .42s; }
.fv.is-ready .fv__catch .line:nth-child(3) > span { transition-delay: .54s; }

/* 縦組みの英字ラベル。中央揃え一辺倒を崩すための要素 */
.fv__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .32em;
  color: var(--green-500);
  padding-bottom: 22px;
  opacity: 0;
  transition: opacity .8s .1s ease;
}
.fv.is-ready .fv__tag { opacity: 1; }

/* --- 右カラム：写真をビューポート右端まで裁ち落とす --- */
.fv__photo {
  grid-column: 2;
  position: relative;
  align-self: stretch;
  min-height: min(78vh, 720px);
  overflow: hidden;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1.3s var(--ease-out);
}
.fv.is-ready .fv__photo { clip-path: inset(0 0 0 0); }

.fv__photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.1);
  transition: transform 2.6s var(--ease-out);
}
.fv.is-ready .fv__photo > img { transform: none; }

/* --- 土壌センサーの表示。境目に重ねて商品価値を先に見せる --- */
.fv__sensors {
  position: absolute;
  /* 写真の右下に配置（集合写真の顔にかぶらないよう。※表示イメージ注記の上に収める） */
  right: clamp(16px, 2vw, 32px);
  bottom: clamp(36px, 4.5vw, 52px);
  transform: none;
  display: grid;
  grid-auto-flow: column;   /* 2枚を横並びに */
  gap: 12px;
  z-index: 2;
}
.sensor {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(4px);
  padding: 14px 20px 15px;
  min-width: 168px;
  box-shadow: 0 10px 30px rgba(13,82,54,.16);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s var(--ease-out);
}
.fv.is-ready .sensor { opacity: 1; transform: none; }
.fv.is-ready .sensor:nth-child(1) { transition-delay: 1.00s; }
.fv.is-ready .sensor:nth-child(2) { transition-delay: 1.12s; }

.sensor__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--green-500);
}
.sensor__value {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: var(--green-800);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 2px;
}
.sensor__value b { font-size: 30px; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.sensor__value i { font-size: 14px; font-style: normal; }
.sensor__state { display: block; font-size: 11px; color: var(--text-weak); margin-top: 2px; }

.fv__sensors-note {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
}

.fv__shelf {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s .8s ease, transform .8s .8s var(--ease-out);
}
.fv.is-ready .fv__shelf { opacity: 1; transform: none; }

.fv__shelf-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--green-500);
  margin-bottom: 6px;
}
.fv__shelf-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--green-800);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}
.fv__shelf-price .num { font-size: clamp(42px, 4.6vw, 60px); letter-spacing: -.01em; }
.fv__shelf-price .unit { font-size: 16px; }

/* CTA：申込ボタン。ブランドグリーン */
.fv__shelf-cta {
  min-width: 268px;
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--white);
}
.fv__shelf-cta:hover { background: var(--green-700); border-color: var(--green-700); color: var(--white); }

/* --- 下辺のフィルムストリップ。未使用だった素材をここで使い切る --- */
.fv__film {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--white);
}
.fv__film li {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s var(--ease-out);
}
.fv.is-ready .fv__film li { opacity: 1; transform: none; }
.fv.is-ready .fv__film li:nth-child(1) { transition-delay: 1.25s; }
.fv.is-ready .fv__film li:nth-child(2) { transition-delay: 1.33s; }
.fv.is-ready .fv__film li:nth-child(3) { transition-delay: 1.41s; }
.fv.is-ready .fv__film li:nth-child(4) { transition-delay: 1.49s; }
.fv.is-ready .fv__film li:nth-child(5) { transition-delay: 1.57s; }
.fv__film img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1023px) {
  /* 旧3カラム(空ガター1fr含む)の上書きを撤去。ベースの2カラムをそのまま使う */
  .fv__sensors { transform: none; }
  .sensor { min-width: 148px; padding: 12px 16px 13px; }
  .sensor__value b { font-size: 26px; }
}

@media (max-width: 899px) {
  .fv__grid { display: block; min-height: 0; }
  .fv__copy { padding: clamp(32px, 7vw, 48px) var(--pad) clamp(28px, 6vw, 40px); }
  .fv__photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
    clip-path: inset(0 0 100% 0);
  }
  .fv.is-ready .fv__photo { clip-path: inset(0 0 0 0); }
  .fv__sensors {
    left: var(--pad);
    top: auto;
    bottom: 14px;
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - var(--pad) * 2);
  }
  .sensor { min-width: 0; }
  .fv__shelf-cta { width: 100%; min-width: 0; }
  .fv__film { gap: 1px; }
  .fv__film li { aspect-ratio: 1; }
}

/* =========================================================
   about（スマート貸し農園って？）
   ========================================================= */
.about__body {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.about__phone { text-align: center; }
.about__phone .balloon { margin-bottom: 28px; }
.about__phone img { max-width: 300px; margin-inline: auto; }
.about__text p + p { margin-top: 1.8em; }
.about__text { font-size: 15px; }

@media (max-width: 899px) {
  .about__body { grid-template-columns: 1fr; gap: 36px; }
  .about__phone img { max-width: 240px; }
}

/* =========================================================
   difference
   ========================================================= */
.diff + .diff { margin-top: 64px; }

.diff__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.diff__cards--smart { grid-template-columns: repeat(3, 1fr); }

.card {
  border: 1px solid var(--green-800);
  background: var(--white);
  padding: 28px 24px;
  min-height: 200px;
}
.card--muted { border-color: #a58f6a; }
.card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1.6;
  margin-bottom: 18px;
}
.card--muted .card__title { color: #6b5a3e; }
.card__text { font-size: 13px; color: var(--text-weak); padding-left: 12%; }

.diff__row2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 8px; }

@media (max-width: 767px) {
  .diff__cards, .diff__cards--smart, .diff__row2 { grid-template-columns: 1fr; }
  .card { min-height: 0; padding: 22px 20px; }
  .card__title { font-size: 17px; margin-bottom: 12px; }
  .card__text { padding-left: 0; }
}

/* =========================================================
   CTAバンド
   ========================================================= */
.ctaband { text-align: center; padding-block: 72px; }
.ctaband .balloon { margin-bottom: 32px; }
@media (max-width: 767px) { .ctaband { padding-block: 44px; } }

/* =========================================================
   features（できること）
   ========================================================= */
.feat { display: grid; grid-template-columns: 300px repeat(2, 1fr); gap: 32px; align-items: stretch; }
.feat + .feat { margin-top: 72px; }

.feat__lead h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1.7;
  padding-bottom: 4px;
  margin-bottom: 20px;
}
.feat__lead h3::after {
  content: ""; display: block; width: 64px; height: 2px;
  background: var(--green-800); margin-top: 12px;
}
.feat__lead p { font-size: 13px; color: var(--text-weak); }

.feat__card { border: 1px solid var(--line); background: var(--white); }
.feat__card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feat__card .body { padding: 22px 20px 26px; }
.feat__card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1.6;
  margin-bottom: 14px;
}
.feat__card p { font-size: 13px; color: var(--text-weak); }
.feat__note { display: block; margin-top: 10px; font-size: 11px; text-align: right; }

@media (max-width: 1023px) {
  .feat { grid-template-columns: 1fr 1fr; }
  .feat__lead { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .feat { grid-template-columns: 1fr; gap: 20px; }
  .feat + .feat { margin-top: 48px; }
}

/* =========================================================
   voice
   ========================================================= */
.voice__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.voice__item { border: 1px solid var(--line); background: var(--white); padding: 32px 26px 40px; }
.voice__icon {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--green-800);
  display: grid; place-content: center;
  margin-bottom: 28px;
  overflow: hidden;
}
.voice__icon img { width: 100%; }
.voice__item h3 { font-size: 16px; font-weight: 700; color: var(--green-800); margin-bottom: 14px; }
.voice__item p { font-size: 13px; color: var(--text-weak); }

@media (max-width: 767px) { .voice__list { grid-template-columns: 1fr; } }

/* =========================================================
   spec
   ========================================================= */
.spec__table { max-width: 620px; margin-inline: auto; }
.spec__table th, .spec__table td {
  border: 2px solid var(--white);
  padding: 16px 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}
.spec__table thead th { background: var(--green-050); color: var(--green-800); }
.spec__table thead th:first-child { background: transparent; border-color: transparent; }
.spec__table tbody th { background: var(--green-800); color: var(--white); width: 30%; }
.spec__table tbody td { background: var(--white); border: 1px solid var(--green-800); color: var(--green-900); }
.spec__note { max-width: 620px; margin: 14px auto 0; font-size: 11px; color: var(--text-weak); font-weight: 500; }
.spec__table sup { font-size: 9px; }

@media (max-width: 767px) {
  .spec__table th, .spec__table td { padding: 12px 4px; font-size: 13px; }
}

/* =========================================================
   price  ─ プラン2枚＋アドオン帯（2026-07-27 リデザイン）
   ========================================================= */
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
  margin-inline: auto;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--green-800);
  color: var(--white);
  padding: 34px 32px 36px;
  border: 1px solid var(--green-800);
}
.plan--rec { background: var(--white); color: var(--green-800); }

.plan__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  opacity: .78;
}
.plan__name { font-size: 22px; font-weight: 700; margin-top: 10px; line-height: 1.4; }

.plan__fee {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 18px;
  padding-bottom: 24px;
  font-weight: 700;
  line-height: 1;
}
.plan__fee .pre { font-size: 15px; }
.plan__fee .num { font-size: 52px; letter-spacing: -.01em; }
.plan__fee .unit { font-size: 16px; }

.plan__spec { border-top: 1px solid rgba(255,255,255,.28); padding-top: 20px; }
.plan--rec .plan__spec { border-top-color: var(--line); }
.plan__spec li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 2;
}
.plan__spec li::before {
  content: "";
  position: absolute;
  left: 2px; top: .82em;
  width: 12px; height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.plan__spec li.is-off { opacity: .5; }
.plan__spec li.is-off::before {
  width: 11px; height: 11px; top: .74em;
  border: 0;
  background:
    linear-gradient(currentColor, currentColor) center/100% 2px no-repeat;
  transform: none;
}

.plan__badge {
  position: absolute;
  top: 0; right: 32px;
  transform: translateY(-50%);
  background: var(--leaf);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 5px 18px;
  border-radius: 999px;
}

/* --- アドオン（3つ目のプランではない） --- */
.addon {
  max-width: 760px;
  margin: 16px auto 0;
  background: var(--green-050);
  padding: 30px 32px 32px;
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 28px 40px;
  align-items: center;
}
.addon__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--green-500);
}
.addon__name { font-size: 20px; font-weight: 700; color: var(--green-800); margin-top: 6px; }
.addon__fee {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 12px;
  color: var(--green-800);
  font-weight: 700;
  line-height: 1;
}
.addon__fee .pre { font-size: 14px; }
.addon__fee .num { font-size: 34px; letter-spacing: -.01em; }
.addon__fee .unit { font-size: 15px; }

.addon__list { display: grid; gap: 10px; }
.addon__list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  font-size: 16px;
  color: var(--green-800);
}
.addon__list b {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 3px 0;
  background: var(--white);
  border-radius: 999px;
  line-height: 1.6;
}

/* --- 契約条件：定義リストに変更 --- */
.terms {
  max-width: 960px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;
}
.terms__row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-100);
}
.terms dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--green-500);
}
.terms dd { font-size: 15px; color: var(--green-800); }

@media (max-width: 767px) {
  .plans { grid-template-columns: 1fr; gap: 32px; }
  .plan { padding: 30px 24px 32px; }
  .plan__fee .num { font-size: 46px; }
  .plan__badge { right: 24px; }
  .addon { grid-template-columns: 1fr; padding: 26px 24px 28px; gap: 20px; }
  .addon__list li { grid-template-columns: 80px minmax(0, 1fr); gap: 10px; font-size: 15px; }
  .terms { grid-template-columns: 1fr; gap: 0; margin-top: 36px; }
  .terms__row { grid-template-columns: 1fr; gap: 2px; padding: 13px 0; }
}

/* =========================================================
   月別グリッド（植える月 / 収穫月）
   ========================================================= */
.months { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px 20px; }
.month { text-align: center; }
.month__label { font-size: 13px; color: var(--text-weak); margin-bottom: 10px; }
.month__thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-100);
}
.month__thumb img { width: 100%; height: 100%; object-fit: cover; }
.month__name { margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.6; }
.months__note { margin-top: 20px; text-align: right; font-size: 11px; color: var(--text-weak); }

@media (max-width: 767px) {
  .months { grid-template-columns: repeat(3, 1fr); gap: 20px 12px; }
  .month__label, .month__name { font-size: 11px; }
}

/* =========================================================
   event carousel
   ========================================================= */
.event__viewport { overflow: hidden; background: var(--white); padding: 48px 0; }
.event__track { display: flex; transition: transform .45s ease; }
.event__slide {
  flex: 0 0 calc(100% / 3);
  display: flex;
  align-items: center;
  gap: 18px;
  padding-inline: 16px;
}
.event__month { font-size: 26px; font-weight: 700; color: var(--green-800); white-space: nowrap; }
.event__body { text-align: center; }
.event__thumb { width: 116px; height: 116px; border-radius: 50%; overflow: hidden; margin-inline: auto; }
.event__thumb img { width: 100%; height: 100%; object-fit: cover; }
.event__name { margin-top: 10px; font-size: 12px; color: var(--green-800); font-weight: 700; line-height: 1.6; }

.event__ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 190px;
  margin-top: 24px;
  padding: 6px 16px;
  border: 1px solid var(--green-500);
  border-radius: 999px;
}
.event__ctrl button { color: var(--green-800); font-size: 14px; padding: 0 6px; }
.event__ctrl button:disabled { opacity: .3; cursor: default; }

@media (max-width: 767px) {
  .event__slide { flex: 0 0 100%; flex-direction: column; }
  .event__viewport { padding: 32px 0; }
  .event__ctrl { margin-inline: auto; }
}

/* =========================================================
   about school
   ========================================================= */
.school { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; }
.school__title {
  font-size: 21px;
  font-weight: 700;
  color: var(--green-800);
  padding-bottom: 4px;
  margin-bottom: 24px;
}
.school__title::after {
  content: ""; display: block; width: 64px; height: 2px;
  background: var(--green-800); margin-top: 12px;
}
.school__text { font-size: 15px; margin-bottom: 32px; color: var(--green-700); }
.school__photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.school__photos img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.school__photos img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.school__photos img:nth-child(2) { position: relative; z-index: 1; transform: translate(-16px, -18px); }
.school__photos img:nth-child(3) { transform: translateY(16px); }

.bandphoto img { width: 100%; height: clamp(240px, 34vw, 420px); object-fit: cover; }

@media (max-width: 899px) { .school { grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================
   access
   ========================================================= */
.access__body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.access__map { aspect-ratio: 4 / 3; }
.access__map iframe { width: 100%; height: 100%; border: 0; }
.access__dl dt { font-size: 13px; font-weight: 700; color: var(--green-800); margin-top: 20px; }
.access__dl dt:first-child { margin-top: 0; }
.access__dl dd { font-size: 16px; margin-top: 4px; }
.access__note {
  margin-top: 28px;
  padding: 16px 18px;
  background: var(--gray-50);
  font-size: 12px;
  color: var(--text-weak);
}
.access__btn { margin-top: 24px; }

@media (max-width: 899px) { .access__body { grid-template-columns: 1fr; } }

/* =========================================================
   faq
   ========================================================= */
.faq__list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; align-content: start; }
.faq__item { border: 1px solid var(--green-500); background: var(--white); height: auto; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-800);
}
.faq__q .mark { font-size: 20px; flex-shrink: 0; }
.faq__q .arrow {
  margin-left: auto;
  width: 9px; height: 9px;
  border-right: 2px solid var(--green-800);
  border-bottom: 2px solid var(--green-800);
  transform: rotate(45deg);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq__item.is-open .faq__q .arrow { transform: rotate(-135deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 24px 24px 62px; font-size: 16px; color: #14603F; font-weight: 700; }

@media (max-width: 767px) {
  .faq__list { grid-template-columns: 1fr; }
  .faq__q { padding: 18px; font-size: 14px; }
  .faq__a p { padding: 0 18px 20px 48px; }
}

/* =========================================================
   final cta
   ========================================================= */
.finalcta { background: var(--green-800); color: var(--white); padding-block: 88px; }
.finalcta__box {
  border: 1px solid rgba(255,255,255,.55);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.finalcta__title { font-size: clamp(20px, 2.6vw, 27px); font-weight: 700; line-height: 1.6; margin-bottom: 20px; }
.finalcta__text { font-size: 16px; margin-bottom: 26px; }
.finalcta__name { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.finalcta__price { display: flex; align-items: baseline; gap: 12px; font-size: 13px; }
.finalcta__price .num { font-size: 38px; font-weight: 700; letter-spacing: 0; }
.finalcta__right { text-align: center; }
.finalcta__off { font-size: 17px; font-weight: 700; line-height: 1.7; margin-bottom: 24px; }

@media (max-width: 899px) {
  .finalcta { padding-block: 56px; }
  .finalcta__box { grid-template-columns: 1fr; padding: 28px 22px; }
}

/* =========================================================
   footer
   ========================================================= */
.footer { background: var(--white); padding: 72px 0 40px; text-align: center; }
.footer__logo img { width: 168px; margin-inline: auto; }
.footer__name { margin-top: 16px; font-size: 16px; font-weight: 700; color: var(--green-800); }
.footer__addr { margin-top: 18px; font-size: 16px; color: var(--text); }
.footer__nav { margin-top: 26px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; }
.footer__nav a { position: relative; padding-left: 16px; font-size: 13px; }
.footer__nav a::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--green-800);
  border-right: 0;
}
.footer__nav a:hover { text-decoration: underline; }
.footer__copy { margin-top: 40px; font-size: 11px; color: var(--text-weak); }

.pagetop { display: block; width: 120px; margin: 48px auto 0; text-align: center; }
.pagetop svg { display: block; margin-inline: auto; }
.pagetop span { display: block; margin-top: 6px; font-size: 11px; color: var(--green-800); letter-spacing: .1em; }

@media (max-width: 767px) {
  .footer { padding-top: 48px; }
  .footer__nav { flex-direction: column; align-items: center; gap: 14px; }
}

/* =========================================================
   QAスタッフ指摘の色・太さ調整（2026-07-26 分を統合）
   ========================================================= */
#about .about__text { color: var(--green-700); font-size: 16px; }
#about .about__text p { font-weight: 700; }
#difference .heading__ja { color: var(--green-700); }
#difference .diff:nth-of-type(1) .subheading { color: #6b5a3e; }
#difference .card--muted .card__text { color: #6b5a3e; }
#difference .card:not(.card--muted) .card__text { color: var(--green-700); }
#features .feat h3,
#features .feat h4,
#features .feat p { color: #6b5a3e; }
#voice .voice__item p { color: #14603F; }
#about-school .school__text { color: var(--green-700); }

/* 本文コピー系の最小サイズ 16px（注釈・UI系は対象外） */
.card__text,
.feat__lead p,
.feat__card p,
.voice__item p,
.month__name { font-size: 16px; }

/* =========================================================
   スクロールアニメーション
   ========================================================= */
.fade,
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.fade.is-visible,
[data-reveal].is-visible { opacity: 1; transform: none; }

/* 子要素を順送りする（月別グリッド・カード群） */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-stagger].is-visible > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade, [data-reveal], [data-stagger] > * { opacity: 1; transform: none; transition: none; }
  .event__track { transition: none; }
  .fv__catch .line > span,
  .fv__photo, .fv__photo > img, .fv__shelf, .fv__lead, .fv__tag,
  .fv__film li, .sensor {
    transform: none; opacity: 1; clip-path: none; transition: none;
  }
}

/* =========================================================
   Sasshi QA #1 料金プラン リデザイン (2026-07-29)
   帯ヘッダー＋緑枠ボックス（名前+価格 / アイコン+申込ボタン）＋凡例
   ========================================================= */
.plan__sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.plans { align-items: start; }
#price .plan {
  background: transparent;
  color: var(--text);
  padding: 0;
  border-radius: 0;
  overflow: visible;
  position: relative;
}
.plan__band {
  background: var(--green-800);
  color: var(--white);
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px 10px 0 0;
}
#price .plan__tag { font-size: 15px; font-weight: 700; letter-spacing: .1em; opacity: 1; }
.plan__box {
  border: 2px solid var(--green-500);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: var(--white);
  padding: 22px 22px 24px;
}
.plan__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
#price .plan__name { margin: 0; color: var(--green-800); font-size: 19px; white-space: nowrap; }
#price .plan__fee { margin: 0; padding: 0; color: var(--green-800); display: flex; align-items: baseline; gap: 4px; }
#price .plan__fee .num { font-size: 40px; }
#price .plan__fee .unit { font-size: 15px; }
.plan__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}
.plan__icons { display: flex; align-items: center; gap: 14px; }
.plan__icons li { line-height: 0; }
.plan__icons li.is-off { opacity: .28; }
.plan__ico { width: 26px; height: 26px; color: var(--green-700); }
.plan__cta { margin: 0; min-width: 0; padding: 12px 26px; white-space: nowrap; }
.plan__legend {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 760px;
  margin: 14px auto 0;
}
.plan__legend li { display: flex; align-items: center; gap: 7px; padding: 4px 16px; font-size: 13px; color: var(--text); }
.plan__legend li + li { border-left: 1px solid var(--line); }
.plan__legend .plan__ico { width: 20px; height: 20px; }

/* =========================================================
   Sasshi QA #2 オプション リデザイン (2026-07-29)
   緑枠ボックス＋左ラベル列（縦線）＋料金（横線）＋箇条書き
   ========================================================= */
#price .addon {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border: 2px solid var(--green-500);
  border-radius: 10px;
  padding: 0;
  max-width: 760px;
  margin: 40px auto 0;
}
#price .addon__tag {
  display: flex; align-items: center;
  padding: 20px; margin: 0;
  font-size: 15px; font-weight: 700; color: var(--green-800);
  border-right: 1px solid var(--line);
  line-height: 1.5; letter-spacing: 0;
}
.addon__body { padding: 20px 24px 22px; }
#price .addon__fee {
  display: flex; align-items: baseline; gap: 12px;
  margin: 0; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--green-800); font-weight: 700;
}
.addon__fee .addon__name { font-size: 16px; }
#price .addon__fee .num { font-size: 30px; letter-spacing: -.01em; }
#price .addon__fee .unit { font-size: 14px; }
#price .addon__list { display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 14px; }
#price .addon__list li {
  display: flex; align-items: baseline; gap: 8px;
  position: relative; padding-left: 16px; font-size: 15px;
}
#price .addon__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-500);
}
#price .addon__list b { color: var(--green-800); }

/* Sasshi QA #3 詳細 リデザイン：緑枠＋左ラベル（縦線）＋箇条書き（横線区切り） */
.terms-box {
  display: grid; grid-template-columns: 148px 1fr;
  background: var(--white); border: 2px solid var(--green-500);
  border-radius: 10px; overflow: hidden;
  max-width: 760px; margin: 20px auto 0;
}
.terms__label {
  display: flex; align-items: center;
  padding: 20px; margin: 0;
  font-size: 15px; font-weight: 700; color: var(--green-800);
  border-right: 1px solid var(--line);
}
#price .terms { display: block; padding: 6px 24px; margin: 0; grid-template-columns: none; }
#price .terms__row {
  display: flex; gap: 12px; align-items: baseline;
  position: relative; padding: 12px 0 12px 16px;
  border-bottom: 1px solid var(--line);
}
#price .terms__row:last-child { border-bottom: 0; }
#price .terms__row::before {
  content: ""; position: absolute; left: 0; top: 1.15em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-500);
}
#price .terms__row dt { color: var(--green-800); font-weight: 700; font-size: 14px; white-space: nowrap; flex-shrink: 0; }
#price .terms__row dd { margin: 0; font-size: 14px; color: var(--text); }

/* Sasshi QA #4 最終CTA：緑背景のまま全部中央揃え */
.finalcta__box {
  display: block;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.finalcta__price {
  display: flex; justify-content: center; align-items: baseline; gap: 8px;
  margin-top: 22px; color: var(--white); font-weight: 700;
}
.finalcta__price .pre { font-size: 16px; }
.finalcta__price .num { font-size: 44px; letter-spacing: -.01em; }
.finalcta__price .unit { font-size: 22px; }
.finalcta__off { margin-top: 20px; }
.finalcta__box .btn { margin-top: 24px; }

/* Sasshi QA #5 FAQ：Q＝緑塗り＋白文字 / A＝緑枠白背景のまま */
.faq__q { background: var(--green-800); color: var(--white); }
.faq__q .mark { color: var(--white); }
.faq__q .arrow { border-right-color: var(--white); border-bottom-color: var(--white); }
#faq .faq__a p { text-align: center; }

@media (max-width: 767px) {
  #price .addon, .terms-box { grid-template-columns: 1fr; }
  #price .addon__tag, .terms__label {
    border-right: 0; border-bottom: 1px solid var(--line);
    padding: 13px 18px;
  }
  #price .addon__tag br { display: none; }
  #price .addon__list { gap: 6px 18px; }
}

/* =========================================================
   Sasshi QA 角丸なし（#1-4 プラン帯/ボックス・オプション・詳細）＋
   詳細の黒文字を #14603F に（#5）(2026-07-29)
   ========================================================= */
.plan__band,
.plan__box,
#price .addon,
.terms-box { border-radius: 0; }
#price .terms__row dd { color: #14603F; }

/* =========================================================
   Sasshi QA 微調整 (2026-07-29 追)
   FAQ回答の上下余白 / 管理オプションSP改行 / 円(税込)改行禁止
   ========================================================= */
#faq .faq__a p { padding: 20px 24px; }               /* #1 上に張り付き解消・上下均等 */
.sp-only { display: none; }                           /* #2 PCでは改行しない */
#price .addon__fee .unit { white-space: nowrap; }     /* #3 「円（税込）」を1かたまりで */
@media (max-width: 767px) {
  .sp-only { display: inline; }                       /* #2 スマホで「管理／オプション」2行に */
}
