/* ============================================
   茂原市 移住相談LP - メインスタイルシート
   カラーテーマ: カラフル＆ナチュラル
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green-primary: #4CAF50;
  --green-dark: #388E3C;
  --green-light: #C8E6C9;
  --green-pale: #E8F5E9;
  --orange-primary: #FF7043;
  --orange-dark: #E64A19;
  --orange-light: #FFCCBC;
  --blue-primary: #42A5F5;
  --blue-dark: #1565C0;
  --sakura-pink: #F48FB1;
  --sakura-pale: #FCE4EC;
  --text-dark: #1a2e1a;
  --text-body: #3d5a3e;
  --text-muted: #6b8e6c;
  --bg-white: #ffffff;
  --bg-light: #f8fdf8;
  --bg-section: #f0f7f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.3s ease;
  --font-main: 'Noto Sans JP', sans-serif;
  --font-serif: 'Zen Old Mincho', serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-primary); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---------- Utility ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding { padding: 100px 0; }
.bg-light { background: var(--bg-light); }
.sp-only { display: none; }
.pc-only { display: inline; }

/* ---------- Typography Helpers ---------- */
.highlight-green { color: var(--green-dark); }
.highlight-orange { color: var(--orange-primary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.5);
  color: white;
}
.btn-ghost {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.35);
  color: white;
  transform: translateY(-2px);
}
.btn-nav {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
  color: white;
  font-size: 0.85rem;
  padding: 10px 20px;
  box-shadow: 0 3px 12px rgba(255,112,67,0.35);
}
.btn-nav:hover { transform: translateY(-1px); color: white; box-shadow: 0 5px 18px rgba(255,112,67,0.5); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
  transition: all var(--transition);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(76, 175, 80, 0.55); }

/* Pulse Animation */
.pulse-animation { animation: pulse 2.5s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(76, 175, 80, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(76, 175, 80, 0.7), 0 0 0 8px rgba(76, 175, 80, 0.1); }
}

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-primary);
  background: var(--green-pale);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.eyebrow-white { color: white; background: rgba(255,255,255,0.2); }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(76,175,80,0.1);
  transition: all var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.98);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-leaf { font-size: 1.4rem; }
.logo-text {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1rem;
}
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid var(--green-light);
  background: white;
}
.navbar-mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--green-pale);
  color: var(--text-dark);
  font-weight: 500;
}
.navbar-mobile-menu a:last-child {
  color: var(--orange-primary);
  font-weight: 700;
  border-bottom: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #1b5e20 0%,
    #2e7d32 20%,
    #388e3c 40%,
    #1565c0 70%,
    #0d47a1 100%
  );
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.shape-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, #FFE082, transparent);
  animation: float1 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, #81D4FA, transparent);
  animation: float2 10s ease-in-out infinite;
}
.shape-3 {
  width: 300px; height: 300px;
  top: 30%; left: 20%;
  background: radial-gradient(circle, #F48FB1, transparent);
  animation: float3 7s ease-in-out infinite;
}
.shape-4 {
  width: 200px; height: 200px;
  top: 60%; right: 30%;
  background: radial-gradient(circle, #A5D6A7, transparent);
  animation: float1 9s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(15px, -20px); }
}

/* 桜の花びら */
.sakura-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sakura-petal {
  position: absolute;
  top: -20px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #FFB3C1, #F48FB1);
  border-radius: 50% 0 50% 0;
  opacity: 0.7;
  animation: sakuraFall linear infinite;
}
@keyframes sakuraFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0.7; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: white;
}
/* Override highlight colors inside hero */
.hero .highlight-green { color: #69F0AE; }
.hero .highlight-orange { color: #FFD54F; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #69F0AE;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-catchcopy {
  font-family: var(--font-serif);
  font-size: 1.2em;
  color: #FFD54F;
  border-bottom: 2px solid rgba(255,213,79,0.5);
}
.hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.9);
}
.hero-sub strong { color: #69F0AE; font-weight: 700; }
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}
.stat-accent {
  font-size: 1.3em;
  color: #69F0AE;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Hero Images */
.hero-images {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 32px;
  width: 300px;
}
.img-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,255,255,0.3);
}
.img-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.img-card:hover img { transform: scale(1.05); }
.img-card-1 { transform: rotate(-1.2deg); }
.img-card-2 { transform: rotate(1.2deg); margin-left: 20px; }
.img-card-3 { transform: rotate(-0.8deg); margin-left: 10px; }
.img-card-4 { transform: rotate(1deg); margin-left: 16px; }
.img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white;
  font-size: 0.7rem;
  padding: 16px 10px 8px;
  font-weight: 500;
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ============================================
   EMPATHY
   ============================================ */
.empathy { background: var(--bg-white); }
.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.pain-card {
  background: white;
  border: 1px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: all var(--transition);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--orange-primary));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-primary);
}
.pain-card:hover::before { opacity: 1; }
.pain-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.pain-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}
.pain-card strong { color: var(--text-dark); }
.empathy-answer {
  background: linear-gradient(135deg, var(--green-pale), #e8f5e9);
  border: 2px solid var(--green-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.answer-inner { max-width: 640px; margin: 0 auto; }
.answer-emoji { font-size: 2.5rem; margin-bottom: 16px; }
.answer-inner p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-body);
}
.answer-inner strong { color: var(--green-dark); font-size: 1.15em; }

/* ============================================
   LIFESTYLE
   ============================================ */
.lifestyle-block {
  position: relative;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px dashed var(--green-light);
}
.lifestyle-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.lifestyle-number {
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 7rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  font-family: var(--font-main);
}
.lifestyle-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lifestyle-block.reverse .lifestyle-content {
  direction: rtl;
}
.lifestyle-block.reverse .lifestyle-content > * {
  direction: ltr;
}
.lifestyle-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.tag-blue { background: #E3F2FD; color: var(--blue-dark); }
.tag-orange { background: #FFF3E0; color: var(--orange-dark); }
.tag-green { background: var(--green-pale); color: var(--green-dark); }
.lifestyle-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.lifestyle-desc {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.lifestyle-desc strong { color: var(--green-dark); font-weight: 700; }
.lifestyle-list {
  margin-bottom: 24px;
}
.lifestyle-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px solid var(--green-pale);
}
.lifestyle-list li:last-child { border-bottom: none; }
.lifestyle-list .fa-check-circle { color: var(--green-primary); margin-top: 3px; flex-shrink: 0; }
.lifestyle-link-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--green-dark);
}
.lifestyle-link-box .fa-external-link-alt { font-size: 0.75rem; }
.lifestyle-link-box a { font-weight: 600; color: var(--green-dark); }
.lifestyle-link-box a:hover { color: var(--orange-primary); }

/* Access Map */
.access-map {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--green-light);
}
.access-card {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.access-card i { font-size: 1.5rem; }
.access-tokyo i { color: var(--blue-dark); }
.access-mobara i { color: var(--green-dark); }
.access-card strong { font-size: 1rem; font-weight: 700; color: var(--text-dark); display: block; }
.access-card span { font-size: 0.75rem; color: var(--text-muted); }
.access-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.arrow-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-dark), var(--green-primary));
  position: relative;
}
.arrow-line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--green-primary);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.arrow-time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--green-dark);
  font-weight: 700;
}
.arrow-time strong { font-size: 1.3em; color: var(--orange-primary); }
.arrow-time i { font-size: 0.7rem; }
.coworking-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-light);
}
.cw-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.cw-header i { color: var(--blue-primary); }
.cw-header strong { font-size: 1rem; color: var(--text-dark); }
.cw-badge {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: auto;
}
.cw-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cw-features li {
  font-size: 0.85rem;
  color: var(--text-body);
  background: var(--bg-light);
  padding: 6px 10px;
  border-radius: 6px;
}

/* House Card */
.house-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-light);
  margin-bottom: 16px;
}
.house-image { background: #e8f5e9; }
.house-image svg { width: 100%; height: 160px; }
.house-info { padding: 16px 20px; }
.house-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.house-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.house-price span { font-size: 1.3em; color: var(--orange-primary); }
.house-note { font-size: 0.8rem; color: var(--text-muted); }
.gas-info {
  background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
  border: 1px solid #FFE082;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gas-icon { font-size: 1.8rem; }
.gas-text { display: flex; flex-direction: column; gap: 4px; }
.gas-text strong { font-size: 0.92rem; color: #E65100; }
.gas-text span { font-size: 0.8rem; color: #BF360C; }

/* Cost Compare */
.cost-compare {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--green-light);
}
.cost-item { margin-bottom: 12px; }
.cost-item:last-child { margin-bottom: 0; }
.cost-label { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); margin-bottom: 4px; }
.cost-price { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.cost-price span { color: var(--text-muted); }
.price-accent { color: var(--orange-primary) !important; font-size: 1.1em; }
.cost-bar { background: #e0e0e0; border-radius: 4px; height: 8px; overflow: hidden; }
.bar { height: 100%; border-radius: 4px; transition: width 1s ease; }
.bar-tokyo { background: linear-gradient(90deg, #ef9a9a, #e53935); }
.bar-mobara { background: linear-gradient(90deg, var(--green-primary), var(--green-dark)); }

/* Nature Grid */
.nature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 12px;
  height: 320px;
}
.nature-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.nature-sakura { grid-row: 1; }
.nature-sea { grid-row: 1; }
.nature-child {
  grid-column: 1 / -1;
  height: auto;
}
.nature-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.nature-item:hover img { transform: scale(1.05); }
.nature-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 20px 10px 8px;
}
.child-support {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--sakura-pale), #FCE4EC);
  border: 1px solid var(--sakura-pink);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  height: 100%;
}
.cs-icon { font-size: 2rem; }
.cs-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cs-text strong { font-size: 1.05rem; color: #880E4F; font-weight: 700; }
.cs-text span { font-size: 0.82rem; color: #AD1457; }

/* ============================================
   SUPPORT
   ============================================ */
.support { background: var(--bg-white); }
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.support-card {
  background: white;
  border: 1px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.support-card.highlight-card {
  border-color: var(--orange-primary);
  box-shadow: 0 4px 24px rgba(255,112,67,0.15);
}
.support-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange-primary);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.support-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.support-icon-wrap i {
  font-size: 1.4rem;
  color: white;
}
.support-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.support-amount {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.support-amount span {
  font-size: 1.4em;
  color: var(--orange-primary);
  font-weight: 900;
}
.support-card p {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.support-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.support-link-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--green-dark);
  border: 1px solid var(--green-light);
}
.support-link-box a { font-weight: 600; color: var(--green-dark); }
.support-link-box a:hover { color: var(--orange-primary); }

/* ============================================
   CONSULT
   ============================================ */
.consult { background: var(--bg-light); }
.consult-features {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.consult-feature {
  background: white;
  border: 1px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.consult-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.consult-feature.featured {
  border-color: var(--green-primary);
  box-shadow: 0 4px 24px rgba(76,175,80,0.15);
  transform: scale(1.02);
}
.consult-feature.featured:hover {
  transform: scale(1.02) translateY(-4px);
}
.cf-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.cf-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-pale), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.cf-icon i { font-size: 1.4rem; color: var(--green-dark); }
.consult-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.consult-feature p {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.7;
}
.consult-feature p strong { color: var(--green-dark); }

/* Flow Steps */
.consult-flow { margin-bottom: 64px; }
.flow-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 32px;
}
.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  width: 180px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.flow-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon i { color: var(--green-dark); font-size: 1rem; }
.step-text strong { font-size: 0.9rem; font-weight: 700; display: block; color: var(--text-dark); }
.step-text span { font-size: 0.75rem; color: var(--text-muted); }
.flow-arrow { color: var(--green-primary); font-size: 1.2rem; flex-shrink: 0; }

/* Voice Section */
.voice-title {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-dark);
}
.voices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.voice-card {
  background: white;
  border: 1px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
}
.voice-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 5rem;
  color: var(--green-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.voice-avatar i { font-size: 3rem; color: var(--green-light); }
.voice-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.voice-meta strong { font-size: 0.9rem; color: var(--text-dark); display: block; }
.voice-meta span { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   CONTACT / CTA
   ============================================ */
.contact {
  position: relative;
  background: linear-gradient(135deg, #1b5e20, #2e7d32, #1565c0);
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact-shapes { position: absolute; inset: 0; overflow: hidden; }
.cshape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.cshape-1 {
  width: 500px; height: 500px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, white, transparent);
}
.cshape-2 {
  width: 300px; height: 300px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, #FFE082, transparent);
}
.cshape-3 {
  width: 200px; height: 200px;
  top: 50%; left: 40%;
  background: radial-gradient(circle, #F48FB1, transparent);
}
.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.3;
  margin-bottom: 16px;
}
.contact-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 24px;
}
.contact-points {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-points span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #69F0AE;
  font-size: 0.88rem;
  font-weight: 600;
}
.contact-points .fa-check {
  background: rgba(105,240,174,0.2);
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Form */
.contact-form-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  margin-bottom: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}
.required { color: var(--orange-primary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: white;
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-privacy { margin-bottom: 24px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--green-primary);
}
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon i {
  font-size: 4rem;
  color: var(--green-primary);
  margin-bottom: 20px;
}
.form-success h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--text-body);
  line-height: 1.8;
}

/* Contact Alt */
.contact-alt {
  text-align: center;
  color: rgba(255,255,255,0.8);
}
.contact-alt p { font-size: 0.88rem; margin-bottom: 12px; }
.contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-tel i { color: #69F0AE; }
.contact-tel span { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.contact-tel a {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
}
.contact-tel small { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ============================================
   INSTAGRAM CTA CARD
   ============================================ */
.insta-cta-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  margin-bottom: 32px;
  text-align: center;
}
.insta-card-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.insta-icon-wrap {
  flex-shrink: 0;
}
.insta-avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
}
.insta-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid white;
  box-shadow: 0 4px 20px rgba(220,39,67,0.25), 0 0 0 3px rgba(240,148,51,0.35);
  display: block;
}
.insta-badge-icon {
  position: absolute;
  bottom: 2px;
  right: 2px;
  line-height: 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.insta-badge-icon svg {
  display: block;
  border-radius: 6px;
}
.insta-account-info {
  text-align: left;
}
.insta-handle {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.insta-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  margin-top: 4px;
}
.insta-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}
.insta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}
.insta-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  text-align: center;
}
.if-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.insta-feature strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.insta-feature span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.btn-insta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.35);
  transition: all var(--transition);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.btn-insta-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(220, 39, 67, 0.5);
  color: white;
}
.insta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1a2e1a;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-logo span:last-child {
  font-weight: 700;
  color: white;
  font-size: 1rem;
}
.footer-tagline { font-size: 0.88rem; margin-bottom: 8px; }
.footer-address { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #69F0AE;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }
.footer-bottom { text-align: center; }
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-note { font-size: 0.72rem !important; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(76,175,80,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--transition);
  font-size: 0.9rem;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(76,175,80,0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding: 120px 24px 60px; }
  .hero-content { max-width: 100%; }
  .hero-images {
    position: static;
    transform: none;
    width: 100%;
    flex-direction: row;
    padding: 0;
    margin-top: 40px;
    overflow-x: auto;
  }
  .hero-images .img-card { min-width: 200px; transform: none !important; }
  .lifestyle-content { grid-template-columns: 1fr; gap: 32px; }
  .lifestyle-block.reverse .lifestyle-content { direction: ltr; }
  .nature-grid { height: 250px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 72px 0; }
  .sp-only { display: inline; }
  .pc-only { display: none; }

  /* Navbar */
  .navbar-cta { display: none; }
  .navbar-hamburger { display: flex; }
  .navbar-mobile-menu.open { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 100px 20px 60px; }
  .hero-title { font-size: 1.8rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 12px; text-align: center; }
  .stat-divider { width: 60%; height: 1px; }
  .hero-images { flex-direction: column; gap: 8px; margin-top: 32px; }
  .hero-images .img-card { min-width: unset; width: 100%; }
  .hero-scroll-hint { display: none; }

  /* Empathy */
  .pain-cards { grid-template-columns: 1fr 1fr; }

  /* Lifestyle */
  .lifestyle-number { font-size: 5rem; }
  .access-map { flex-direction: column; gap: 12px; text-align: center; }
  .access-arrow { flex-direction: row; }
  .arrow-line { height: 2px; }
  .nature-grid { height: auto; grid-template-columns: 1fr; }
  .nature-sakura, .nature-sea { height: 180px; }

  /* Support */
  .support-cards { grid-template-columns: 1fr; }

  /* Consult */
  .consult-features { grid-template-columns: 1fr; }
  .consult-feature.featured { transform: none; }
  .flow-steps { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
  .voices { grid-template-columns: 1fr; }

  /* Contact */
  .insta-cta-card { padding: 28px 20px; }
  .insta-card-inner { gap: 16px; }
  .insta-handle { font-size: 1.4rem; }
  .insta-features { grid-template-columns: 1fr; gap: 8px; padding: 16px; }
  .insta-feature { flex-direction: row; text-align: left; gap: 12px; padding: 12px; }
  .if-icon { font-size: 1.4rem; flex-shrink: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: auto; }
  .contact-points { gap: 12px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .pain-cards { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .cw-features { grid-template-columns: 1fr; }
}
