/* ============================================================
   G2 Field — Front-end stylesheet
   ============================================================ */

:root {
  --green-deep:   #0F3A1F;
  --green-dark:   #1F5D34;
  --green-main:   #2E7D32;
  --green-fresh:  #4CAF50;
  --green-light:  #A5D6A7;
  --green-mint:   #DCEDC8;
  --green-paper:  #E4EFD0;
  --green-wash:   #F1F6E4;

  --pink-main:    #EC6B9C;
  --pink-hot:     #FF4081;
  --pink-soft:    #FFE0EC;
  --pink-paper:   #FFF1F6;

  --cream:        #F2F4E2;
  --cream-warm:   #FFF1DA;
  --paper:        #F5F7EA;

  --ink:          #1A2A1F;
  --ink-soft:     #4A5A4F;
  --ink-faint:    #8A9A8F;

  --yellow:       #FFD93D;
  --yellow-soft:  #FFF3B0;

  /* =========================================================================
     見出し用フォント（--font-poster）
     使いたいフォントの行だけ「有効（コメント解除）」にし、ほかはコメントのまま残す。
     有効な行が複数あると最後の行が優先されます。1行だけ有効にしてください。
     ※候補はすべて enqueue.php で読み込み済みなので、ここを切り替えるだけで反映されます。
     ========================================================================= */
  /* --- 細身〜標準（スッキリ系） --- */
  --font-poster:  'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;       /* ① 細身でモダンなゴシック（現在） */
  /* --font-poster: 'Noto Sans JP', 'Hiragino Sans', sans-serif; */          /* ② 細身・標準的で読みやすい */
  /* --font-poster: 'BIZ UDPGothic', 'Hiragino Sans', sans-serif; */         /* ③ UD（ユニバーサルデザイン）ゴシック・視認性重視 */
  /* --- 太め・インパクト系 --- */
  /* --font-poster: 'Zen Maru Gothic', 'Hiragino Sans', sans-serif; */       /* ④ 角丸ゴシック・親しみやすい（家族向けにおすすめ） */
  /* --font-poster: 'M PLUS Rounded 1c', 'Hiragino Sans', sans-serif; */     /* ⑤ 丸ゴシック・やわらかい印象 */
  /* --font-poster: 'Dela Gothic One', 'Hiragino Sans', sans-serif; */       /* ⑥ 極太・インパクト最強（旧デフォルト） */
  /* --font-poster: 'Reggae One', 'Hiragino Sans', sans-serif; */            /* ⑦ 力強い極太見出し・個性的 */
  --font-display: 'Zen Kaku Gothic New', 'Yu Gothic', 'Hiragino Sans', sans-serif;
  --font-body:    'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --font-en:      'Fraunces', 'Times New Roman', serif;
  --font-hand:    'Caveat', cursive;
  --font-yusei:   'Yusei Magic', sans-serif;

  --shadow-pop:   4px 4px 0 var(--green-deep);
  --shadow-pop-pink: 4px 4px 0 var(--pink-main);
  --radius-sq:    20px;
  --radius-pill:  999px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.85;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(46,125,50,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(46,125,50,.04) 1px, transparent 1px);
  background-size: 22px 22px, 100% 6px;
  background-position: 0 0, 0 0;
  z-index: 1;
  mix-blend-mode: multiply;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--green-main);
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--green-main);
}
.eyebrow.green { color: var(--green-main); }
.eyebrow.green::before { background: var(--green-main); }
.eyebrow.pink { color: var(--pink-main); }
.eyebrow.pink::before { background: var(--pink-main); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: 0.01em;
  /* Prevent awkward Japanese mid-phrase breaks like "か / ら" */
  line-break: strict;
}

.section-title {
  font-family: var(--font-poster);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.3;
  margin: 16px 0 24px;
}
.section-title .accent { color: var(--green-main); position: relative; display: inline-block; }
.section-title .pink { color: var(--pink-main); }
.section-lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  text-align: center;
}
.btn-pink { background: var(--pink-main); color: #fff; box-shadow: var(--shadow-pop); }
.btn-pink:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--green-deep); }
.btn-pink:active { transform: translate(0,0); box-shadow: 2px 2px 0 var(--green-deep); }

.btn-outline { background: transparent; color: var(--green-deep); border: 2px solid var(--green-deep); }
.btn-outline:hover { background: var(--green-deep); color: var(--cream); }

.btn-green { background: var(--green-main); color: #fff; box-shadow: 4px 4px 0 var(--pink-main); }
.btn-green:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--pink-main); }

.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--pink-soft);
  color: var(--pink-hot);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.chip .dot { width: 6px; height: 6px; background: var(--pink-main); border-radius: 50%; }
.chip.green { background: var(--green-mint); color: var(--green-dark); }
.chip.green .dot { background: var(--green-main); }
.chip.green-deep { background: var(--green-deep); color: #fff; }
.chip.green-deep .dot { background: var(--green-fresh); }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: var(--green-deep);
  color: var(--cream);
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid var(--pink-main);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  padding: 11px 0;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.marquee-track .pip { color: var(--pink-main); font-size: 14px; }
.marquee-track .ja {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 12.5px;
  text-transform: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(22,53,34,.08);
}
/* Blur lives on a pseudo-element so .header has no backdrop-filter and the
   mobile nav drawer (position:fixed) stays anchored to the viewport. */
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(252, 246, 232, .88);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.logo-text {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1;
}
.logo-text .ja {
  font-size: 19px;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  white-space: nowrap;
}
.logo-text .en {
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .32em;
  color: var(--ink-soft);
  margin-top: 5px;
}
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav a:hover { color: var(--pink-main); }
.nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -4px;
  width: 0; height: 2px;
  background: var(--pink-main);
  transition: width .25s, left .25s;
}
.nav a:hover::after { width: 100%; left: 0; }
.nav a.ext::after { content: ''; }
.nav a.ext .ext-mark {
  display: inline-block;
  font-size: 10px;
  vertical-align: super;
  margin-left: 2px;
  color: var(--pink-main);
}
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--green-deep);
  flex-shrink: 0;
  transition: color .2s, background .2s, transform .2s;
}
.header-insta:hover { color: var(--pink-main); background: var(--green-wash); transform: translateY(-2px); }
.header-insta svg { width: 24px; height: 24px; }
.tel { text-align: right; font-family: var(--font-en); line-height: 1.2; }
.tel small {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.tel .num {
  font-weight: 900;
  font-size: 18px;
  color: var(--green-deep);
  letter-spacing: -.01em;
}
.header .btn { padding: 11px 22px; font-size: 13.5px; }

/* ---- Hamburger toggle (mobile only) ---- */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 97;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle-box { display: block; width: 26px; height: 18px; margin: 0 auto; position: relative; }
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--green-deep);
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.nav-toggle-bar { top: 50%; transform: translateY(-50%); }
.nav-toggle-bar::before { top: -8px; }
.nav-toggle-bar::after  { top: 8px; }
body.is-nav-open .nav-toggle-bar { background: transparent; }
body.is-nav-open .nav-toggle-bar::before { top: 0; transform: rotate(45deg); background: var(--green-deep); }
body.is-nav-open .nav-toggle-bar::after  { top: 0; transform: rotate(-45deg); background: var(--green-deep); }

/* ---- In-drawer footer (links + CTA), shown only inside the mobile drawer ---- */
.nav-foot { display: none; }

/* ---- Drawer overlay ---- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(15, 58, 31, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
body.is-nav-open .nav-overlay { opacity: 1; visibility: visible; }

/* ---- Fixed mobile CTA bar (mobile only) ---- */
.mobile-cta-bar { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 200px;
  background:
    radial-gradient(ellipse 100% 70% at 15% 0%, rgba(165,214,167,.7), transparent 60%),
    radial-gradient(ellipse 80% 60% at 95% 30%, rgba(220,237,200,.85), transparent 65%),
    radial-gradient(ellipse 60% 50% at 90% 90%, rgba(255,224,236,.3), transparent 60%),
    linear-gradient(180deg, var(--green-wash) 0%, var(--green-paper) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(46,125,50,.15) 1px, transparent 0),
    linear-gradient(0deg, rgba(46,125,50,.05) 1px, transparent 2px);
  background-size: 18px 18px, 100% 8px;
  opacity: .55;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 65%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 65%, transparent);
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80' preserveAspectRatio='none'%3E%3Cpath d='M0 80 L4 50 L7 75 L10 35 L13 78 L16 45 L20 70 L23 30 L26 75 L29 48 L33 65 L36 25 L40 76 L43 50 L46 68 L49 32 L52 78 L56 45 L60 70 L63 28 L66 76 L69 50 L73 65 L76 35 L80 78 L83 48 L86 70 L89 25 L92 78 L96 45 L100 68 L103 30 L106 76 L109 50 L113 65 L116 32 L120 78 L123 48 L126 70 L129 28 L132 76 L136 45 L140 68 L143 35 L146 78 L149 48 L153 65 L156 25 L160 78 L163 50 L166 70 L169 30 L172 76 L176 48 L180 65 L183 35 L186 78 L189 45 L193 70 L196 28 L200 76 L203 50 L206 68 L209 32 L213 78 L216 48 L220 65 L223 25 L226 78 L229 50 L233 70 L236 30 L240 76 L243 48 L246 68 L249 35 L253 78 L256 45 L260 65 L263 28 L266 76 L269 50 L273 70 L276 32 L280 78 L283 48 L286 65 L289 25 L293 78 L296 50 L300 68 L303 30 L306 76 L309 48 L313 70 L316 35 L320 78 L323 45 L326 65 L329 28 L333 76 L336 50 L340 68 L343 32 L346 78 L349 48 L353 70 L356 25 L360 78 L363 50 L366 65 L369 30 L373 76 L376 48 L380 68 L383 35 L386 78 L389 45 L393 70 L396 28 L400 76 L400 80 Z' fill='%232E7D32'/%3E%3C/svg%3E") repeat-x bottom / 400px 80px,
    linear-gradient(180deg, transparent 0%, rgba(46,125,50,.15) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 3;
}
.hero-copy { position: relative; min-width: 0; }

/* FV 最新お知らせバナー */
.hero-news {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 7px 16px 7px 7px;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px -12px rgba(22,53,34,.3);
  transition: transform .2s, box-shadow .2s;
}
.hero-news:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(22,53,34,.38); }
.hero-news-label {
  flex-shrink: 0;
  background: var(--pink-main);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
}
.hero-news-date { flex-shrink: 0; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--pink-hot); letter-spacing: .03em; }
.hero-news-cat { flex-shrink: 0; background: var(--green-mint); color: var(--green-dark); font-family: var(--font-display); font-weight: 700; font-size: 10.5px; letter-spacing: .04em; padding: 3px 9px; border-radius: var(--radius-pill); }
.hero-news-title { min-width: 0; font-size: 13.5px; font-weight: 700; color: var(--green-deep); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-news:hover .hero-news-title { color: var(--pink-main); }
.hero-news-arrow { flex-shrink: 0; color: var(--pink-hot); font-weight: 700; transition: transform .2s; }
.hero-news:hover .hero-news-arrow { transform: translateX(3px); }

.hero-chips { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-title {
  font-family: var(--font-poster);
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.22;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  font-weight: 600;
  color: var(--green-deep);
}
.hero-title .line { display: block; position: relative; }
.hero-title .pop {
  display: inline-block;
  color: var(--pink-hot);
  position: relative;
  transform: rotate(-2deg);
  font-family: var(--font-yusei);
  padding: 0 4px;
}
.hero-title .pop::before {
  content: '';
  position: absolute;
  left: -6px; right: -6px;
  top: 12%; bottom: 12%;
  background: var(--yellow-soft);
  z-index: -1;
  border-radius: 6px;
  transform: rotate(-1deg);
}
.hero-title .shiba {
  color: var(--green-main);
  position: relative;
  display: inline-block;
  padding: 0 6px;
}
.hero-title .shiba::before {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  top: 18%; bottom: 14%;
  background: var(--green-mint);
  z-index: -1;
  border-radius: 8px;
  transform: rotate(-1deg);
  opacity: .85;
}
.hero-title .shiba::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q15 0 30 6 T60 6 T90 6 L100 6' stroke='%232E7D32' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

@keyframes sway {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(8deg); }
}
.hero-sub {
  font-size: 17px;
  line-height: 2.05;
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-sub b {
  background: linear-gradient(transparent 60%, var(--green-mint) 60%);
  font-weight: 700;
  padding: 0 2px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px dashed rgba(22,53,34,.25);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat .num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 36px;
  color: var(--green-deep);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat .num sup { font-size: 16px; color: var(--green-main); }
.stat .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--ink-soft);
  margin-top: 8px;
}

.hero-visual { position: relative; height: 640px; z-index: 3; }
.h-photo { position: absolute; overflow: hidden; background: var(--green-mint); box-shadow: 0 30px 60px -20px rgba(15,58,31,.45); }
.h-photo img { width: 100%; height: 100%; object-fit: cover; }
.h-photo.p1 { width: 360px; height: 360px; border-radius: 50%; top: 30px; left: 40px; border: 8px solid #fff; z-index: 3; animation: floaty 6s ease-in-out infinite; outline: 4px solid var(--green-main); outline-offset: -4px; }
.h-photo.p2 { width: 260px; height: 260px; border-radius: 50%; top: 360px; left: 280px; border: 8px solid var(--green-mint); z-index: 4; animation: floaty 5s ease-in-out infinite -2s; }
.h-photo.p3 { width: 200px; height: 240px; border-radius: 100px; top: 60px; right: 0; border: 6px solid var(--pink-main); z-index: 2; animation: floaty-rot 7s ease-in-out infinite -3s; transform: rotate(6deg); }
.h-photo.p4 { width: 180px; height: 180px; border-radius: 50%; bottom: 30px; right: 20px; border: 6px solid var(--green-deep); z-index: 5; animation: floaty 8s ease-in-out infinite -1s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floaty-rot { 0%, 100% { transform: translateY(0) rotate(6deg); } 50% { transform: translateY(-12px) rotate(2deg); } }

.hero-badge {
  position: absolute;
  width: 120px; height: 120px;
  background: var(--green-main);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
  z-index: 6;
  box-shadow: 0 8px 20px -4px rgba(15,58,31,.35);
  transform: rotate(-12deg);
  top: 280px; right: 80px;
  animation: spin 18s linear infinite;
}
.hero-badge::before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 2px dashed var(--green-deep);
  border-radius: 50%;
  opacity: .55;
}
.hero-badge::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  background: var(--yellow);
  border-radius: 50%;
  top: -6px; right: 10px;
  border: 2px solid #fff;
}
@keyframes spin { to { transform: rotate(348deg); } }

.hero-handnote {
  position: absolute;
  top: -10px; right: 40px;
  font-family: var(--font-hand);
  font-size: 38px;
  color: var(--pink-hot);
  transform: rotate(-8deg);
  z-index: 7;
  line-height: 1;
}

.grass-blade { position: absolute; pointer-events: none; z-index: 2; opacity: .85; animation: sway 5s ease-in-out infinite; transform-origin: bottom center; }
.gb1 { width: 56px; height: 90px; top: 10%; left: 5%; }
.gb2 { width: 44px; height: 70px; top: 55%; left: 1%; animation-delay: -1s; }
.gb3 { width: 80px; height: 110px; bottom: 70px; left: 35%; animation-delay: -2s; opacity: .7; }
.gb4 { width: 66px; height: 100px; top: 15%; right: 7%; animation-delay: -3s; }
.gb5 { width: 50px; height: 80px; bottom: 70px; right: 12%; animation-delay: -1.5s; opacity: .7; }
.gb6 { width: 38px; height: 60px; top: 40%; right: 2%; animation-delay: -2.5s; opacity: .65; }

/* ============================================================
   Empathy
   ============================================================ */
.empathy { padding: 140px 0; background: var(--green-wash); position: relative; overflow: hidden; }
.empathy::before { content: ''; position: absolute; inset: 0; background:
  radial-gradient(ellipse at center, rgba(46,125,50,.10), transparent 60%),
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath d='M30 58 Q30 38 24 22 Q20 10 30 2' stroke='%232E7D32' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='.08'/%3E%3Cpath d='M30 58 Q30 38 36 22 Q40 10 30 2' stroke='%232E7D32' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='.08'/%3E%3C/svg%3E");
  background-size: auto, 60px 60px;
}
.empathy-bubble {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 30px;
  padding: 80px 64px;
  box-shadow: 0 30px 70px -30px rgba(22,53,34,.25), inset 0 0 0 1px rgba(46,125,50,.1);
}
.empathy-tag {
  display: inline-block;
  margin: 28px auto 8px;
  transform: rotate(-3deg);
  background: var(--pink-main);
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  box-shadow: 3px 3px 0 var(--green-deep);
  white-space: nowrap;
}
.empathy-bubble { text-align: center; }
.empathy-q-small { margin-top: 8px; }
.empathy-q-small .small { margin-top: 0 !important; }
.empathy-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 2.1;
  text-align: center;
  color: var(--ink);
}
.empathy-q .hl { background: linear-gradient(transparent 65%, var(--yellow-soft) 65%); font-weight: 900; padding: 0 4px; color: var(--green-deep); }
.empathy-q .pinkhl { color: var(--pink-hot); font-weight: 900; }
.empathy-q .small { font-size: 1em; color: var(--ink-soft); display: block; margin-top: 14px; }
.empathy-answer { margin: 56px auto 0; max-width: 780px; text-align: center; }
.empathy-answer h3 { font-size: clamp(28px, 4vw, 44px); line-height: 1.4; margin-bottom: 16px; }
.empathy-answer h3 .ok { color: var(--green-main); position: relative; display: inline-block; }
.empathy-answer h3 .ok::after {
  content: '';
  position: absolute;
  left: -8%; right: -8%;
  bottom: -6px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q10 0 20 5 T40 5 T60 5 T80 5 T100 5' stroke='%23EC6B9C' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.empathy-answer p { color: var(--ink-soft); font-size: 16px; }

/* ============================================================
   Strengths
   ============================================================ */
.strengths { padding: 140px 0; background: var(--cream); position: relative; overflow: hidden; }
.strengths::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--green-paper) 0%, transparent 30%);
  pointer-events: none;
}
.strengths .container { position: relative; z-index: 2; }
.strengths-grass-1 { width: 70px; height: 100px; top: 30%; left: 3%; opacity: .5; }
.strengths-grass-2 { width: 80px; height: 110px; top: 50%; right: 4%; opacity: .5; animation-delay: -2s; }
.strengths-head { text-align: center; margin-bottom: 80px; }
.strengths-head .section-lead { margin: 0 auto; }
.strength-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.strength-card {
  position: relative;
  background: white;
  padding: 56px 32px 40px;
  border-radius: var(--radius-sq);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 4px 20px -8px rgba(22,53,34,.18);
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}
.strength-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px -12px rgba(22,53,34,.28); }
.strength-card .num {
  position: absolute;
  top: 24px; left: 28px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 110px;
  line-height: 1;
  color: var(--green-mint);
  letter-spacing: -.05em;
  z-index: 0;
}
.strength-card .badge {
  position: absolute;
  top: 28px; right: 24px;
  width: 64px; height: 64px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pink-hot);
}
.strength-card .badge svg { width: 30px; height: 30px; }
.strength-card h3 { position: relative; font-size: 22px; line-height: 1.55; margin-bottom: 16px; color: var(--green-deep); margin-top: 110px; z-index: 1; }
.strength-card p { position: relative; font-size: 14.5px; color: var(--ink-soft); line-height: 2; z-index: 1; }
.strength-card::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 140px; height: 140px; background: radial-gradient(circle, var(--green-mint), transparent 70%); opacity: .6; }

/* ============================================================
   Tifton Features
   ============================================================ */
.tifton { padding: 140px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--green-paper) 100%); position: relative; overflow: hidden; }
.tifton-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.tifton-head h2 { font-size: clamp(32px,4.5vw,52px); line-height: 1.25; }
.tifton-head .image-block {
  position: relative;
  height: 280px;
  border-radius: var(--radius-sq);
  overflow: hidden;
  background: var(--green-mint);
  border: 8px solid white;
  box-shadow: 0 20px 40px -12px rgba(22,53,34,.25);
  transform: rotate(2deg);
}
.tifton-head .image-block img { width: 100%; height: 100%; object-fit: cover; }
.tifton-head .image-block .tag { position: absolute; top: 16px; left: 16px; background: var(--green-deep); color: var(--cream); padding: 6px 14px; border-radius: var(--radius-pill); font-family: var(--font-display); font-weight: 700; font-size: 12px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-item {
  background: white;
  border-radius: 18px;
  padding: 32px 24px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  border: 2px solid transparent;
}
.feature-item:nth-child(even) { transform: translateY(20px); }
.feature-item:hover { transform: translateY(-6px); border-color: var(--pink-main); box-shadow: 0 12px 24px -8px rgba(22,53,34,.2); }
.feature-item:nth-child(even):hover { transform: translateY(14px); }
.feature-item .icon { width: 56px; height: 56px; background: var(--green-mint); border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; color: var(--green-dark); transition: background .2s, color .2s; }
.feature-item:hover .icon { background: var(--pink-soft); color: var(--pink-hot); }
.feature-item .icon svg { width: 28px; height: 28px; }
.feature-item h4 { font-size: 15.5px; line-height: 1.55; color: var(--green-deep); margin-bottom: 10px; }
.feature-item p { font-size: 13px; color: var(--ink-soft); line-height: 1.85; }
.feature-item .no { position: absolute; top: 16px; right: 18px; font-family: var(--font-en); font-weight: 700; font-size: 12px; color: var(--ink-faint); letter-spacing: .1em; }

/* ============================================================
   Flow
   ============================================================ */
.flow { padding: 140px 0; background: var(--paper); position: relative; overflow: hidden; }
.flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(165,214,167,.25), transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(165,214,167,.18), transparent 50%);
  pointer-events: none;
}
.flow .container { position: relative; z-index: 2; }
.flow-head { text-align: center; margin-bottom: 80px; }
.flow-head .section-lead { margin: 0 auto; }
.flow-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 24px; align-items: start; position: relative; }
.flow-step { text-align: center; position: relative; }
.flow-step .circle {
  width: 240px; height: 240px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--green-main);
  position: relative;
  transition: transform .3s;
  box-shadow: 0 12px 24px -8px rgba(15,58,31,.25);
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-mint) 100%);
}
.flow-step:nth-child(3) .circle { border-color: var(--green-fresh); }
.flow-step:nth-child(5) .circle { border-color: var(--pink-main); }
.flow-step:hover .circle { transform: scale(1.05); }
.flow-step .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0; /* hide alt text on broken images */
  color: transparent;
}
.flow-step .flow-coming-soon {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: repeating-linear-gradient(-45deg, var(--green-light) 0, var(--green-light) 14px, var(--green-mint) 14px, var(--green-mint) 28px);
  color: var(--green-deep);
  text-align: center;
}
.flow-step .flow-coming-soon svg { width: 44px; height: 44px; opacity: .5; }
.flow-step .flow-coming-soon span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .14em;
  opacity: .8;
}
.flow-step .date { font-family: var(--font-en); font-weight: 900; font-size: 22px; color: var(--green-deep); letter-spacing: -.01em; margin-bottom: 6px; }
.flow-step .label { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--pink-hot); letter-spacing: .08em; }
.flow-step .step-num {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 64px;
  background: var(--green-main);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .05em;
  box-shadow: 0 4px 0 var(--pink-main), 0 8px 16px -4px rgba(15,58,31,.25);
  z-index: 2;
  border: 3px solid var(--cream);
}
.flow-step .step-num small { font-size: 9px; display: block; opacity: .85; margin-top: 1px; }
.flow-arrow { width: 100px; height: 50px; animation: arrow-wave 1.8s ease-in-out infinite; margin-top: 95px; }
@keyframes arrow-wave { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@keyframes arrow-wave-vertical { 0%, 100% { transform: rotate(90deg) translateX(0); } 50% { transform: rotate(90deg) translateX(6px); } }
.flow-foot { margin-top: 56px; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--green-deep); }
.flow-foot strong { color: var(--pink-hot); font-size: 1.2em; }

/* ============================================================
   Works
   ============================================================ */
.works { padding: 140px 0; background: var(--green-paper); }
.works-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 56px; gap: 40px; flex-wrap: wrap; }
.works-head .h-left h2 { font-size: clamp(32px,4vw,48px); line-height: 1.25; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.work-card { background: white; border-radius: var(--radius-sq); overflow: hidden; transition: transform .3s, box-shadow .3s; cursor: pointer; }
.work-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -12px rgba(22,53,34,.25); }
.work-card .photo { height: 240px; overflow: hidden; position: relative; }
.work-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.work-card:hover .photo img { transform: scale(1.08); }
.work-card .photo .tag { position: absolute; top: 16px; left: 16px; background: var(--pink-main); color: white; padding: 5px 12px; border-radius: var(--radius-pill); font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .08em; z-index: 2; }
.work-card .body { padding: 28px 28px 32px; }
.work-card .meta { display: flex; gap: 12px; font-size: 12px; color: var(--ink-soft); font-family: var(--font-display); font-weight: 700; margin-bottom: 12px; letter-spacing: .05em; }
.work-card .meta .date { color: var(--pink-hot); }
.work-card h4 { font-size: 18px; line-height: 1.55; color: var(--green-deep); margin-bottom: 10px; }
.work-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.9; }
.work-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--pink-hot); transition: gap .2s; }
.work-card:hover .more { gap: 12px; }

/* Works archive pagination */
.pagination-wrap { margin-top: 64px; text-align: center; }
.pagination-wrap .page-numbers {
  display: inline-block; padding: 10px 16px; margin: 0 4px;
  border-radius: 999px; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  background: white; color: var(--ink); border: 2px solid transparent; transition: all .2s;
}
.pagination-wrap .page-numbers.current { background: var(--green-main); color: white; }
.pagination-wrap .page-numbers:hover { border-color: var(--pink-main); color: var(--pink-main); }

/* ============================================================
   News (お知らせ)
   ============================================================ */
.news-archive { padding: 80px 0 140px; background: var(--cream); }
.news-archive .container { max-width: 920px; }

.news-list { list-style: none; margin: 0; padding: 0; background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 30px -16px rgba(22,53,34,.18); }
.news-item + .news-item { border-top: 1px dashed rgba(46,125,50,.2); }
.news-link { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 26px 32px; color: inherit; transition: background .2s; }
.news-link:hover { background: var(--green-wash); }

.news-meta { display: flex; flex-direction: column; gap: 8px; min-width: 96px; }
.news-date { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--pink-hot); letter-spacing: .04em; }
.news-cat { display: inline-flex; align-items: center; justify-content: center; align-self: start; background: var(--green-mint); color: var(--green-dark); font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .06em; padding: 4px 12px; border-radius: var(--radius-pill); }

.news-title { font-size: 16px; line-height: 1.7; color: var(--green-deep); font-weight: 700; margin: 0; }
.news-link:hover .news-title { color: var(--pink-main); }
.news-arrow { font-family: var(--font-display); font-weight: 700; color: var(--pink-hot); transition: transform .2s; }
.news-link:hover .news-arrow { transform: translateX(4px); }

.news-empty { text-align: center; padding: 60px 0; color: var(--ink-soft); }

/* Blog — coming soon (準備中) */
.blog-coming-soon {
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 72px 32px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 30px -16px rgba(22,53,34,.18);
}
.blog-coming-soon-icon {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--green-deep);
  background: repeating-linear-gradient(-45deg, var(--green-light) 0, var(--green-light) 12px, var(--green-mint) 12px, var(--green-mint) 24px);
}
.blog-coming-soon-icon svg { width: 44px; height: 44px; opacity: .65; }
.blog-coming-soon-title { font-family: var(--font-display); font-weight: 900; font-size: 26px; letter-spacing: .12em; color: var(--green-deep); margin: 0 0 14px; }
.blog-coming-soon-text { color: var(--ink-soft); font-size: 15px; line-height: 1.9; margin: 0 auto 28px; max-width: 460px; }

/* Single news */
.page-hero-news .news-single-meta { display: inline-flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 8px; }
.page-hero-news .news-single-meta .news-date { font-size: 14px; }
.news-single-title { margin-top: 12px; }

.single-news { padding: 60px 0 140px; background: var(--cream); }
.single-news .container { max-width: 760px; }
.news-main-photo { margin-bottom: 48px; border-radius: 16px; overflow: hidden; }
.news-main-photo img { width: 100%; height: auto; display: block; }
.news-content { font-size: 16px; line-height: 2.1; color: var(--ink); margin-bottom: 64px; }
.news-content p { margin-bottom: 1.5em; }
.news-content h2, .news-content h3 { color: var(--green-deep); margin: 1.5em 0 .8em; }
.news-content a { color: var(--pink-hot); text-decoration: underline; }
.news-content ul, .news-content ol { margin: 0 0 1.5em 1.5em; line-height: 2; }
.news-content img { border-radius: 14px; margin: 24px 0; max-width: 100%; height: auto; }

@media (max-width: 600px) {
  .hero-news-cat { display: none; }
  .hero-news { gap: 8px; }
  .news-link { grid-template-columns: 1fr auto; gap: 8px 16px; padding: 22px 20px; }
  .news-meta { flex-direction: row; align-items: center; gap: 12px; grid-column: 1 / -1; min-width: 0; }
  .news-title { grid-column: 1 / -1; font-size: 15px; }
  .news-arrow { display: none; }
}

/* ============================================================
   Price
   ============================================================ */
.price { padding: 140px 0; background: var(--cream); position: relative; }
.price-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.price-text h2 { font-size: clamp(30px,4vw,46px); line-height: 1.25; margin-bottom: 24px; }
.price-text .price-note { background: var(--green-paper); padding: 24px 28px; border-radius: 14px; font-size: 14px; color: var(--green-deep); line-height: 1.9; margin: 28px 0; border-left: 4px solid var(--green-main); }
.price-table {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 30px 60px -25px rgba(22,53,34,.25);
  position: relative;
  overflow: hidden;
}
.price-table::before { content: 'TIFTON'; position: absolute; top: 20px; right: -20px; font-family: var(--font-en); font-weight: 900; font-size: 90px; color: var(--green-paper); z-index: 0; letter-spacing: -.04em; }
.price-table-head { position: relative; font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--green-deep); padding-bottom: 20px; border-bottom: 2px dashed rgba(46,125,50,.25); margin-bottom: 16px; }
.price-table-head small { display: block; font-size: 12px; font-weight: 700; color: var(--pink-hot); letter-spacing: .15em; margin-bottom: 6px; }
.price-row { display: grid; grid-template-columns: 1fr auto; align-items: baseline; padding: 18px 0; border-bottom: 1px dashed rgba(46,125,50,.15); position: relative; z-index: 1; gap: 16px; }
.price-row:last-of-type { border-bottom: none; }
.price-row .label { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.price-row .label small { display: block; font-weight: 500; font-size: 12px; color: var(--ink-soft); margin-top: 4px; }
.price-row .value { font-family: var(--font-en); font-weight: 900; font-size: 28px; color: var(--pink-hot); letter-spacing: -.01em; }
.price-row .value sup { font-size: 13px; color: var(--ink); margin-right: 2px; }
.price-row .value sub { font-size: 12px; color: var(--ink-soft); vertical-align: baseline; margin-left: 4px; font-weight: 500; font-family: var(--font-body); }
.price-row .value sub .unit-tilde { font-size: 20px; font-weight: 900; color: var(--pink-hot); font-family: var(--font-en); margin-left: 1px; vertical-align: baseline; }
.price-row.deal { background: var(--pink-paper); margin: 8px -16px; padding: 18px 16px; border-radius: 14px; border-bottom: none; }
.price-row.deal .label::before { content: 'お得！'; display: inline-block; background: var(--pink-main); color: white; font-size: 10px; padding: 2px 8px; border-radius: 999px; margin-right: 8px; vertical-align: middle; font-family: var(--font-display); font-weight: 700; }
.price-foot { margin-top: 24px; padding-top: 20px; border-top: 2px solid var(--green-deep); font-size: 12px; color: var(--ink-soft); position: relative; z-index: 1; line-height: 1.85; }

/* ============================================================
   Records (dark section)
   ============================================================ */
.records { padding: 140px 0; background: var(--green-deep); color: var(--cream); position: relative; overflow: hidden; }
.records::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0); background-size: 22px 22px; }
.records::after { content: 'TRACK RECORD'; position: absolute; top: 60px; right: -40px; font-family: var(--font-en); font-weight: 900; font-size: 160px; color: rgba(255,255,255,.04); letter-spacing: -.05em; }
.records-head { text-align: left; margin-bottom: 64px; position: relative; z-index: 2;}
.records-head .eyebrow { color: var(--pink-soft); }
.records-head .eyebrow::before { background: var(--pink-main); }
.records-head h2 { color: var(--cream); font-size: clamp(32px,4.5vw,52px); }
.records-head p { color: rgba(252,246,232,.7); max-width: 580px; margin-top: 16px; }
.record-list { display: flex; flex-direction: column; gap: 28px; position: relative; z-index: 2; }
.record-item { display: grid; grid-template-columns: 220px 1.4fr 1fr; gap: 32px; align-items: center; padding: 32px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-sq); transition: background .3s; }
.record-item:hover { background: rgba(255,255,255,.08); }
.record-item .year { font-family: var(--font-en); font-weight: 900; font-size: 64px; color: var(--pink-soft); line-height: 1; letter-spacing: -.04em; position: relative; }
.record-item .year sub { font-size: 13px; color: var(--pink-main); font-family: var(--font-display); font-weight: 700; display: block; margin-top: 12px; letter-spacing: .15em; }
.record-item .text h3 { font-size: 22px; color: var(--cream); margin-bottom: 8px; }
.record-item .text p { font-size: 14px; color: rgba(252,246,232,.65); line-height: 1.9; }
.record-item .photo { width: 100%; height: 140px; border-radius: 14px; overflow: hidden; border: 4px solid rgba(255,255,255,.1); }
.record-item .photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 140px 0; background: var(--cream); position: relative; overflow: hidden; }
.faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: var(--green-paper);
}
.faq .container { position: relative; z-index: 2; }
.faq-grass { width: 90px; height: 130px; bottom: 80px; left: 4%; opacity: .45; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq-side h2 { font-size: clamp(30px,4vw,44px); line-height: 1.25; margin-bottom: 20px; }
.faq-side p { color: var(--ink-soft); font-size: 15px; }
.faq-side .help-card { margin-top: 40px; background: var(--green-mint); padding: 28px; border-radius: var(--radius-sq); font-size: 14px; color: var(--green-deep); line-height: 1.9; position: relative; }
.faq-side .help-card::before { content: '?'; position: absolute; top: -20px; right: 20px; width: 48px; height: 48px; background: var(--pink-main); color: white; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-en); font-weight: 900; font-size: 24px; box-shadow: 2px 2px 0 var(--green-deep); transform: rotate(-8deg); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border-radius: 16px; padding: 0; overflow: hidden; border: 2px solid transparent; transition: border-color .3s; }
.faq-item[open] { border-color: var(--green-main); }
.faq-item summary { cursor: pointer; padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; list-style: none; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); transition: color .2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-main); }
.faq-item summary .q-mark { flex-shrink: 0; width: 36px; height: 36px; background: var(--green-mint); color: var(--green-dark); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-en); font-weight: 900; font-size: 14px; }
.faq-item summary .q-text { flex: 1; }
.faq-item summary .q-toggle { flex-shrink: 0; width: 36px; height: 36px; background: var(--pink-soft); border-radius: 50%; position: relative; transition: background .2s, transform .3s; }
.faq-item summary .q-toggle::before,
.faq-item summary .q-toggle::after { content: ''; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--pink-hot); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .3s; }
.faq-item summary .q-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] summary .q-toggle::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-item .answer { padding: 0 28px 26px 80px; font-size: 14.5px; color: var(--ink-soft); line-height: 2; }

/* ============================================================
   CTA Banner
   ============================================================ */
.cta {
  padding: 120px 0;
  background: radial-gradient(ellipse at 20% 20%, rgba(255,224,236,.5), transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(165,214,167,.5), transparent 50%), var(--green-main);
  position: relative;
  overflow: hidden;
}
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0); background-size: 24px 24px; }
.cta-inner { text-align: center; position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-poster); font-weight: 600; font-size: clamp(34px,5vw,60px); color: white; line-height: 1.3; margin: 16px 0 24px; }
.cta-inner h2 .pop { color: var(--yellow); position: relative; display: inline-block; font-family: var(--font-yusei); transform: rotate(-2deg); }
.cta-inner h2 .pink-mark { background: var(--pink-main); padding: 0 10px; border-radius: 8px; transform: rotate(-1deg); display: inline-block; color: white; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-pink { box-shadow: 4px 4px 0 var(--green-deep); }
.cta-actions .btn-white { background: white; color: var(--green-deep); box-shadow: 4px 4px 0 var(--pink-main); }
.cta-actions .btn-white:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--pink-main); }
.cta-tel { margin-top: 36px; color: white; font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.cta-tel .num { display: block; font-family: var(--font-en); font-weight: 900; font-size: 38px; color: white; letter-spacing: -.01em; margin-top: 4px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--green-deep); color: var(--cream); padding: 100px 0 32px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer .logo-text .ja { color: var(--cream); }
.footer .logo-text .en { color: rgba(252,246,232,.5); }
.footer .logo-mark {
  background: var(--cream);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.4);
}
.footer-info { margin-top: 28px; font-size: 13.5px; line-height: 2.1; color: rgba(252,246,232,.75); }
.footer-info b { color: var(--cream); font-weight: 700; }
.footer-info a { color: inherit; transition: color .2s; }
.footer-info a:hover { color: var(--pink-soft); }
.footer h5 { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .15em; color: var(--pink-soft); margin-bottom: 20px; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: rgba(252,246,232,.7); transition: color .2s; display: inline-flex; align-items: center; gap: 6px; }
.footer-col li a:hover { color: var(--pink-soft); }
.footer-col .ext::after { content: '↗'; font-size: 10px; color: var(--pink-main); margin-left: 4px; }
.footer-insta-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 9px 16px;
  border: 1px solid rgba(252,246,232,.25);
  border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: .02em;
  color: rgba(252,246,232,.85);
  transition: color .2s, border-color .2s, background .2s;
}
.footer-insta-link:hover { color: var(--green-deep); background: var(--pink-soft); border-color: var(--pink-soft); }
.footer-insta-link svg { flex-shrink: 0; }
.footer-insta-link .arrow { transition: transform .2s; }
.footer-insta-link:hover .arrow { transform: translateX(3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-en); font-weight: 500; font-size: 11.5px; color: rgba(252,246,232,.5); letter-spacing: .12em; }

/* ============================================================
   Page Hero (sub pages)
   ============================================================ */
.page-hero {
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 90% 60% at 20% 10%, rgba(165,214,167,.4), transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(255,224,236,.5), transparent 60%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 1px 1px, rgba(46,125,50,.08) 1px, transparent 0);
  background-size: 18px 18px; opacity: .5; pointer-events: none;
}
.page-hero .container { text-align: center; }
.page-hero .chip, .page-hero .eyebrow { margin-bottom: 16px; }
.page-hero .eyebrow { justify-content: center; display: inline-flex; }
.page-hero-title { font-family: var(--font-poster); font-weight: 600; font-size: clamp(36px, 5vw, 64px); line-height: 1.3; color: var(--green-deep); margin: 16px 0 24px; }
.page-hero-title .accent { color: var(--green-main); }
.page-hero-title .pink { color: var(--pink-hot); }
.page-hero-lead { font-size: 16px; color: var(--ink-soft); line-height: 2; max-width: 640px; margin: 0 auto; }

.back-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; transition: color .2s; }
.back-link:hover { color: var(--pink-main); }

/* ============================================================
   Contact form
   ============================================================ */
.contact-section { padding: 80px 0 140px; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 24px; color: var(--green-deep); line-height: 1.5; margin-bottom: 32px; }
.info-block { padding: 24px 0; border-bottom: 1px dashed rgba(46,125,50,.2); }
.info-block:last-of-type { border-bottom: none; }
.info-label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--pink-hot); letter-spacing: .15em; margin-bottom: 8px; }
.info-tel { display: block; font-family: var(--font-en); font-weight: 900; font-size: 28px; color: var(--green-deep); letter-spacing: -.01em; margin-bottom: 4px; }
.info-tel + small { display: block; font-size: 12px; color: var(--ink-soft); }
.info-email { display: block; font-family: var(--font-en); font-weight: 700; font-size: 18px; color: var(--green-deep); word-break: break-all; }
.info-card { background: var(--green-mint); padding: 24px; border-radius: var(--radius-sq); font-size: 14px; line-height: 1.9; color: var(--green-deep); margin-top: 32px; position: relative; }
.info-card::before { content: ''; position: absolute; left: -8px; top: 24px; width: 16px; height: 16px; background: var(--green-mint); transform: rotate(45deg); }

.contact-form { background: white; padding: 48px; border-radius: var(--radius-sq); box-shadow: 0 30px 60px -25px rgba(22,53,34,.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-field { display: block; margin-bottom: 24px; }
.form-label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 8px; }
.form-label em { color: var(--pink-hot); font-style: normal; margin-left: 4px; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(46,125,50,.15);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: none; border-color: var(--green-main); background: white; }
.form-field textarea { resize: vertical; min-height: 160px; line-height: 1.85; }
.form-error { display: block; color: var(--pink-hot); font-size: 12.5px; margin-top: 6px; font-weight: 700; }
.form-error-banner { background: var(--pink-paper); border: 2px solid var(--pink-main); padding: 16px 20px; border-radius: 12px; color: var(--pink-hot); font-size: 14px; margin-bottom: 24px; line-height: 1.7; }
.form-note { font-size: 12px; color: var(--ink-soft); margin: 8px 0 24px; line-height: 1.8; }
.form-submit { width: 100%; justify-content: center; padding: 20px 28px; font-size: 16px; }
.g2field-hp { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }

/* ============================================================
   Thanks page
   ============================================================ */
.thanks-section { padding: 120px 0; background: var(--cream); }
.thanks-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.thanks-icon { width: 120px; height: 120px; margin: 0 auto 32px; }
.thanks-icon svg { width: 100%; height: 100%; }
.thanks-title { font-size: clamp(28px, 4vw, 40px); color: var(--green-deep); margin-bottom: 32px; line-height: 1.4; }
.thanks-body { font-size: 16px; color: var(--ink); line-height: 2; margin-bottom: 48px; }
.thanks-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.thanks-tel { padding-top: 40px; border-top: 1px dashed rgba(46,125,50,.3); font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink-soft); }
.thanks-tel .tel-large { display: block; font-family: var(--font-en); font-weight: 900; font-size: 32px; color: var(--green-deep); margin: 8px 0; }
.thanks-tel small { display: block; font-size: 12px; }

/* ============================================================
   Single work
   ============================================================ */
.single-work { padding: 80px 0 140px; background: var(--cream); }
.single-work .container { max-width: 920px; }
.work-main-photo { margin-bottom: 48px; border-radius: var(--radius-sq); overflow: hidden; box-shadow: 0 30px 60px -25px rgba(22,53,34,.25); }
.work-main-photo img { width: 100%; height: auto; display: block; }
.work-meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; margin-bottom: 48px; background: white; border-radius: 16px; padding: 24px; box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 4px 20px -12px rgba(22,53,34,.15); }
.meta-cell { padding: 12px 24px; border-right: 1px dashed rgba(46,125,50,.15); }
.meta-cell:last-child { border-right: none; }
.meta-label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 11px; color: var(--pink-hot); letter-spacing: .12em; margin-bottom: 4px; }
.meta-value { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--green-deep); }
.work-content { font-size: 16px; line-height: 2.1; color: var(--ink); margin-bottom: 64px; }
.work-content p { margin-bottom: 1.5em; }
.work-content h2, .work-content h3 { color: var(--green-deep); margin: 1.5em 0 .8em; }
.work-content img { border-radius: 14px; margin: 24px 0; }
.work-nav { display: flex; justify-content: space-between; padding-top: 40px; border-top: 1px dashed rgba(46,125,50,.25); font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.work-nav a { color: var(--green-deep); transition: color .2s; }
.work-nav a:hover { color: var(--pink-main); }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .7s, transform .7s; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .65s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .75s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  /* SP: 申し込みボタンは隠し、Instagram アイコンだけ残してハンバーガーの左に寄せる */
  .header-cta { display: flex; margin-left: auto; gap: 8px; }
  .header-cta .btn { display: none; }
  .header-inner { padding: 14px 20px; }

  /* Slide-in nav drawer */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 28px 32px;
    background: var(--cream);
    box-shadow: -24px 0 60px -24px rgba(15,58,31,.5);
    transform: translateX(105%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    z-index: 96;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  body.is-nav-open .nav { transform: translateX(0); }
  .nav a {
    font-size: 17px;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(22,53,34,.1);
  }
  .nav a::after { content: none; }
  .nav-foot { display: block; margin-top: 28px; }
  .nav-tel {
    display: block;
    text-align: center;
    margin-bottom: 16px;
    font-family: var(--font-en);
  }
  .nav-tel small {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .15em;
    color: var(--ink-soft);
    margin-bottom: 2px;
  }
  .nav-tel .num { font-weight: 900; font-size: 24px; color: var(--green-deep); }
  .nav-foot .btn { width: 100%; justify-content: center; }
  body.is-nav-open { overflow: hidden; }

  /* Fixed mobile CTA bar */
  .mobile-cta-bar {
    display: flex;
    align-items: stretch;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(252,246,232,.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(22,53,34,.1);
  }
  .mcb-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 88px;
    flex-shrink: 0;
    border: 2px solid var(--green-deep);
    border-radius: var(--radius-pill);
    color: var(--green-deep);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
  }
  .mcb-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--pink-main);
    color: #fff;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--shadow-pop);
  }
  .footer { padding-bottom: 96px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 2; }
  .hero-visual { height: 400px; order: 1; margin-bottom: 32px; }
  .strength-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(even) { transform: translateY(0); }
  .feature-item:nth-child(even):hover { transform: translateY(-6px); }
  .flow-grid { grid-template-columns: 1fr; gap: 40px; }
  .flow-step .step-num {
    top: -28px;
    width: 56px; height: 56px;
    font-size: 13px;
    border-width: 2px;
  }
  .flow-arrow {
    width: 80px;
    height: 80px;
    margin: 4px auto;
    animation: arrow-wave-vertical 1.8s ease-in-out infinite;
  }
  .works-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; gap: 48px; }
  .record-item { grid-template-columns: 1fr; gap: 16px; }
  .record-item .photo { height: 200px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tifton-head { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .strengths, .tifton, .flow, .works, .price, .records, .faq { padding: 80px 0; }
  .empathy { padding: 80px 0; }
  .empathy-bubble { padding: 56px 28px; }
  /* SP: 画面幅に収まるコラージュ配置（左右端に寄せて見切れ防止） */
  .h-photo.p1 { width: 200px; height: 200px; top: 0; left: 0; right: auto; bottom: auto; }
  .h-photo.p2 { width: 150px; height: 150px; top: 40px; left: auto; right: 0; bottom: auto; }
  .h-photo.p3 { width: 110px; height: 140px; top: 210px; left: auto; right: 16px; bottom: auto; }
  .h-photo.p4 { width: 150px; height: 150px; top: 220px; left: 0; right: auto; bottom: auto; }
  .hero-badge { width: 78px; height: 78px; font-size: 10px; top: auto; bottom: 6px; right: 24px; left: auto; }
  .hero-handnote { font-size: 24px; top: 4px; right: 14px; }
  .contact-form { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .container, .container-wide { padding: 0 20px; }
  .header-inner { padding: 12px 16px; gap: 12px; }
  .logo { gap: 10px; }
  .logo-mark { width: 44px; height: 44px; }
  .logo-text .ja { font-size: 15px; letter-spacing: .02em; }
  .logo-text .en { font-size: 9.5px; letter-spacing: .26em; }
  .header .btn { padding: 9px 14px; font-size: 12px; }
  .hero { padding: 40px 0 120px; }
  .hero-title { font-size: 36px; }
  .hero-stats { gap: 18px; }
  .stat .num { font-size: 28px; }

  /* Feature cards: single-column horizontal list on phones
     (icon left, title + description stacked on the right) */
  .feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
    padding: 18px 42px 18px 18px;
    border-radius: 16px;
  }
  .feature-item .icon {
    grid-row: 1 / 3;
    align-self: start;
    width: 50px; height: 50px;
    margin-bottom: 0;
  }
  .feature-item .icon svg { width: 25px; height: 25px; }
  .feature-item h4 {
    grid-column: 2; grid-row: 1;
    font-size: 16px; line-height: 1.45; margin-bottom: 5px;
  }
  .feature-item h4 br { display: none; }
  .feature-item p {
    grid-column: 2; grid-row: 2;
    font-size: 13.5px; line-height: 1.7;
  }
  .feature-item .no { top: 16px; right: 16px; font-size: 11px; }
  .empathy-q { font-size: 17px; line-height: 1.95; }
  .empathy-tag { font-size: 18px; padding: 10px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .strength-card { padding: 48px 24px 32px; }
  .strength-card h3 { margin-top: 80px; font-size: 19px; }
  .strength-card .num { font-size: 80px; }
  .price-row .value { font-size: 22px; }
  .record-item .year { font-size: 48px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .work-meta-grid { grid-template-columns: 1fr 1fr; }
  .meta-cell { border-right: none; border-bottom: 1px dashed rgba(46,125,50,.15); }

  /* ===== Japanese title wrapping on small screens =====
     Reduce font-size of long titles so they wrap on logical boundaries,
     not in the middle of phrases like "から、" */
  .section-title { font-size: 28px; line-height: 1.4; }
  .flow-head .section-title,
  .strengths-head .section-title,
  .works-head .section-title,
  .records-head .section-title,
  .faq-side .section-title,
  .tifton-head h2,
  .price-text h2 { font-size: 26px; line-height: 1.45; }
  .empathy-answer h3 { font-size: 22px; line-height: 1.55; }
  .cta-inner h2 { font-size: 28px; line-height: 1.4; }
  .page-hero-title { font-size: 32px; line-height: 1.35; }

  /* ===== Flow: vertical arrow on mobile ===== */
  .flow-step .circle { width: 220px; height: 220px; border-width: 6px; }
  .flow-step .step-num {
    top: -24px;
    width: 48px; height: 48px;
    font-size: 11px;
  }
  .flow-step .step-num small { font-size: 8px; }
  .flow-arrow {
    width: 80px;
    height: 80px;
    margin: 4px auto;
    animation: arrow-wave-vertical 1.8s ease-in-out infinite;
  }
  .flow-foot { font-size: 15px; line-height: 1.9; padding: 0 12px; }
}

/* ============================================================
   404 NOT FOUND
   ============================================================ */

.nf-page {
  position: relative;
  overflow: hidden;
  padding: 96px 0 120px;
  background:
    radial-gradient(1100px 700px at 85% 0%, rgba(220,237,200,.7), transparent 70%),
    radial-gradient(900px 600px at 0% 100%, rgba(255,224,236,.6), transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, var(--green-wash) 100%);
  isolation: isolate;
}
.nf-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(46,125,50,.10) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}

.nf-page .nf-g1 { width: 64px; height: 86px; top: 60px; left: 6%; transform: rotate(-6deg); animation-delay: -1s; }
.nf-page .nf-g2 { width: 52px; height: 70px; top: 38%; left: 3%; transform: rotate(8deg); animation-delay: -2.2s; }
.nf-page .nf-g3 { width: 72px; height: 96px; bottom: 80px; left: 12%; transform: rotate(-10deg); }
.nf-page .nf-g4 { width: 58px; height: 78px; top: 90px; right: 8%; transform: rotate(10deg); animation-delay: -.6s; }
.nf-page .nf-g5 { width: 46px; height: 60px; top: 45%; right: 4%; transform: rotate(-5deg); animation-delay: -1.8s; }
.nf-page .nf-g6 { width: 80px; height: 106px; bottom: 60px; right: 14%; transform: rotate(6deg); animation-delay: -3s; }

.nf-bug {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(.5px);
}
.nf-bug-1 { width: 14px; height: 14px; background: var(--pink-main); top: 18%; left: 22%; box-shadow: 0 0 0 6px rgba(236,107,156,.18); animation: nf-float 6s ease-in-out infinite; }
.nf-bug-2 { width: 10px; height: 10px; background: var(--yellow); top: 30%; right: 20%; box-shadow: 0 0 0 6px rgba(255,217,61,.25); animation: nf-float 7.2s ease-in-out infinite reverse; }
.nf-bug-3 { width: 16px; height: 16px; background: var(--green-fresh); bottom: 22%; left: 30%; box-shadow: 0 0 0 6px rgba(76,175,80,.2); animation: nf-float 5.4s ease-in-out infinite; }

@keyframes nf-float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(8px, -14px); }
}

.nf-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
}

.nf-chips {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Big 404 numerals */
.nf-numeric {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.5vw, 18px);
  margin-bottom: 8px;
  line-height: 1;
}
.nf-num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(140px, 22vw, 260px);
  letter-spacing: -.05em;
  color: var(--green-deep);
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, #4CAF50 0%, #1F5D34 60%, #0F3A1F 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(6px 6px 0 rgba(15,58,31,.18));
  animation: nf-bob 4.2s ease-in-out infinite;
}
.nf-num-4   { transform-origin: bottom right; animation-delay: -.2s; }
.nf-num-0   {
  position: relative;
  -webkit-text-fill-color: transparent;
  animation-delay: -1.2s;
}
.nf-num-4b  { transform-origin: bottom left; animation-delay: -.6s; }

.nf-zero-mark {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56%;
  height: 56%;
  filter: drop-shadow(2px 4px 0 rgba(15,58,31,.25));
  animation: nf-spin 18s linear infinite;
}

@keyframes nf-bob {
  0%, 100% { transform: translateY(0) rotate(0); }
  25%      { transform: translateY(-10px) rotate(-1deg); }
  50%      { transform: translateY(0) rotate(0); }
  75%      { transform: translateY(-6px) rotate(1.5deg); }
}
@keyframes nf-spin {
  to { transform: rotate(360deg); }
}

.nf-handnote {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--pink-hot);
  transform: rotate(-6deg);
  margin: -8px 0 12px;
  text-shadow: 2px 2px 0 #fff;
}

.nf-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.5;
  color: var(--green-deep);
  letter-spacing: .01em;
  margin: 8px 0 20px;
}
.nf-title .line { display: block; }
.nf-title .pop {
  position: relative;
  z-index: 1;
  padding: 0 .1em;
  color: var(--pink-hot);
}
.nf-title .pop::before {
  content: '';
  position: absolute;
  inset: 18% -.05em;
  background: var(--yellow-soft);
  z-index: -1;
  transform: skewX(-6deg);
  border-radius: 4px;
}
.nf-title .shiba {
  position: relative;
  z-index: 1;
  color: var(--green-main);
}
.nf-title .shiba::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -.12em;
  height: 6px;
  background: var(--green-light);
  border-radius: 999px;
}

.nf-sub {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.95;
  margin: 0 auto 32px;
  max-width: 620px;
}

.nf-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Shortcut cards */
.nf-shortcuts {
  margin-bottom: 56px;
}
.nf-shortcuts-label {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--green-main);
  background: #fff;
  border: 1.5px solid var(--green-mint);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.nf-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.nf-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1.5px solid rgba(31,93,52,.16);
  border-radius: var(--radius-sq);
  box-shadow: 4px 4px 0 rgba(15,58,31,.10);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  color: var(--green-deep);
}
.nf-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--green-deep);
  border-color: var(--green-deep);
}
.nf-card-icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--green-mint);
  color: var(--green-deep);
  border-radius: 12px;
}
.nf-card-icon svg { width: 22px; height: 22px; }
.nf-card-text { flex: 1; display: flex; flex-direction: column; line-height: 1.4; }
.nf-card-title { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--green-deep); }
.nf-card-desc  { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.nf-card-arrow {
  font-family: var(--font-en);
  font-size: 22px;
  color: var(--green-main);
  transition: transform .18s ease;
}
.nf-card:hover .nf-card-arrow { transform: translateX(4px); color: var(--pink-hot); }

.nf-card-pink {
  background: var(--pink-paper);
  border-color: rgba(236,107,156,.35);
}
.nf-card-pink .nf-card-icon { background: var(--pink-soft); color: var(--pink-hot); }
.nf-card-pink .nf-card-arrow { color: var(--pink-hot); }
.nf-card-pink:hover { box-shadow: 6px 6px 0 var(--pink-main); border-color: var(--pink-main); }

/* Search form */
.nf-search {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid rgba(31,93,52,.18);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  box-shadow: 4px 4px 0 rgba(15,58,31,.08);
}
.nf-search-icon {
  flex: none;
  width: 18px; height: 18px;
  color: var(--green-main);
}
.nf-search input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  font: inherit;
  font-size: 14px;
  padding: 10px 6px;
  background: transparent;
  color: var(--ink);
  min-width: 0;
}
.nf-search input[type="search"]::placeholder { color: var(--ink-faint); }
.nf-search-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-deep);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 10px 18px;
  border-radius: 999px;
  transition: transform .18s ease, background .18s ease;
}
.nf-search-btn:hover { background: var(--pink-main); transform: translateX(2px); }
.nf-search-btn .arrow { font-family: var(--font-en); font-size: 16px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (max-width: 720px) {
  .nf-page { padding: 64px 0 96px; }
  .nf-num { font-size: clamp(110px, 30vw, 180px); }
  .nf-title { font-size: 22px; line-height: 1.6; }
  .nf-shortcuts-grid { grid-template-columns: 1fr; }
  .nf-search { flex-wrap: wrap; padding: 8px 12px; }
  .nf-search input[type="search"] { width: 100%; padding: 8px 4px; order: 2; }
  .nf-search-btn { order: 3; width: 100%; justify-content: center; }
  .nf-search-icon { order: 1; }
}

