/* ========================================
   IKIGAI TOWN — 写真中心・生き生きデザイン
   Photo-first, Vibrant & Human-centered
   ======================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #4a9e5c;
  --green-deep: #2d7a3e;
  --green-vivid: #5CB85C;
  --green-light: #e8f5e9;
  --green-pale: #f0f7f0;
  --sky: #4da6d9;
  --warm: #e8a44a;
  --warm-light: #fff3e0;
  --earth: #6d5c4d;
  --danger: #e05d44;
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f5f5f5;
  --gray-100: #eeeeee;
  --gray-200: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --ink: #1a1a1a;
  --ink-light: #333333;
  --ink-muted: #666666;

  --font-hand: 'Klee One', cursive;
  --font-accent: 'Caveat', cursive;
  --font-body: 'Zen Maru Gothic', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
  .container { padding: 0 20px; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-hand); font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer; transition: all 0.3s var(--ease);
  text-decoration: none; letter-spacing: 0.04em; border-radius: 60px;
}
.btn-primary {
  background: var(--green); color: var(--white);
  padding: 16px 40px; box-shadow: 0 4px 16px rgba(74,158,92,0.3);
}
.btn-primary:hover {
  background: var(--green-deep); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74,158,92,0.4);
}
.btn-lg { padding: 20px 52px; font-size: 1.05rem; }
.btn-header {
  background: var(--green); color: var(--white);
  padding: 10px 24px; font-size: 0.85rem; border-radius: 60px;
}
.btn-header:hover { background: var(--green-deep); }

/* ========== HEADER ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); transition: all 0.4s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: baseline; gap: 6px; }
.logo-mark { font-family: var(--font-accent); font-size: 2rem; font-weight: 700; color: var(--green); }
.logo-sub { font-family: var(--font-accent); font-size: 1.1rem; font-weight: 400; color: var(--earth); }
.header-nav { display: flex; gap: 32px; }
.header-nav a {
  font-family: var(--font-hand); font-size: 0.88rem; color: var(--gray-600);
  transition: color 0.3s var(--ease); position: relative;
}
.header-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--green); transition: width 0.3s var(--ease); border-radius: 2px;
}
.header-nav a:hover { color: var(--green); }
.header-nav a:hover::after { width: 100%; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }

/* ========== HERO (全面写真) ========== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo-img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.35) 100%);
}
.hero-inner {
  position: relative; z-index: 2; max-width: 780px; padding-top: 72px;
}
.hero-eyebrow {
  font-family: var(--font-accent); font-size: 1.4rem; font-weight: 500;
  color: rgba(255,255,255,0.8); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero-title {
  margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}
.hero-title-main {
  display: block; font-family: var(--font-hand); font-size: 2rem;
  font-weight: 600; line-height: 1.7; color: var(--white); letter-spacing: 0.06em;
}
.hero-title-accent {
  display: inline-block; font-family: var(--font-accent); font-size: 5.5rem;
  font-weight: 700; color: var(--white); line-height: 1.1; margin: 4px 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.hero-title-sub {
  display: block; font-family: var(--font-hand); font-size: 2rem;
  font-weight: 600; line-height: 1.7; color: var(--white); letter-spacing: 0.06em;
}
.hero-cta {
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}
.hero-cta-note {
  display: block; margin-top: 14px; font-family: var(--font-body);
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.hero-scroll {
  position: absolute; bottom: 40px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.hero-scroll span { font-family: var(--font-accent); font-size: 0.85rem; color: rgba(255,255,255,0.5); writing-mode: vertical-rl; }
.hero-scroll-line { width: 2px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); border-radius: 2px; animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--green); color: var(--white); padding: 28px 0;
}
.stats-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 40px;
}
.stat-item { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-accent); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.stat-num small { font-size: 1rem; font-weight: 400; }
.stat-label { font-size: 0.78rem; width: 100%; margin-top: 4px; opacity: 0.75; }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.25); flex-shrink: 0; }

/* ========== SECTIONS COMMON ========== */
.section { padding: 100px 0; }
.section-eyebrow {
  display: inline-block; font-family: var(--font-accent); font-size: 1.3rem;
  font-weight: 600; color: var(--green); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-hand); font-size: 2rem; font-weight: 600;
  line-height: 1.7; color: var(--ink);
}
.section-header-center { text-align: center; margin-bottom: 56px; }
.section-lead {
  font-size: 0.92rem; line-height: 2.1; color: var(--ink-muted);
  margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.section-lead-left {
  font-size: 0.92rem; line-height: 2.1; color: var(--ink-muted); margin-top: 16px;
}

/* ========== CONCEPT (写真+テキスト) ========== */
.section-concept { background: var(--white); }
.concept-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.concept-photo { position: relative; border-radius: 20px; overflow: hidden; }
.concept-photo-img {
  width: 100%; height: 480px; object-fit: cover; border-radius: 20px;
  transition: transform 0.6s var(--ease);
}
.concept-photo:hover .concept-photo-img { transform: scale(1.03); }
.concept-photo-deco {
  position: absolute; top: -20px; right: -20px; pointer-events: none;
  animation: floatGentle 6s ease-in-out infinite;
}
.concept-content .section-eyebrow { display: block; }
.concept-content .section-title { margin-bottom: 24px; }
.concept-text p { font-size: 0.92rem; line-height: 2.2; color: var(--ink-light); margin-bottom: 16px; }
.concept-features { margin-top: 32px; display: flex; flex-direction: column; gap: 8px; }
.concept-feature {
  display: flex; align-items: center; gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.concept-feature-num { font-family: var(--font-accent); font-size: 1.6rem; font-weight: 600; color: var(--green); min-width: 32px; }
.concept-feature span:last-child { font-size: 0.88rem; color: var(--ink-light); }

/* ========== PHOTO BANNER ========== */
.photo-banner {
  position: relative; height: 420px; overflow: hidden;
}
.photo-banner-img {
  width: 100%; height: 100%; object-fit: cover;
}
.photo-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}
.photo-banner-text {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-hand); font-size: 1.8rem; font-weight: 600;
  color: var(--white); text-align: center; line-height: 1.8; letter-spacing: 0.06em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3); z-index: 2;
}

/* ========== DATA INSIGHTS ========== */
.section-data { background: var(--gray-900); color: var(--white); }
.section-data .section-eyebrow { color: var(--green-vivid); }
.section-data .section-title { color: var(--white); }
.section-data .section-lead { color: rgba(255,255,255,0.55); }
.data-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.data-card-large { grid-column: span 3; }
.data-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; transition: all 0.4s var(--ease); overflow: hidden;
}
.data-card:hover { border-color: rgba(92,184,92,0.3); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.data-card-inner { padding: 28px; }
.data-label { display: block; font-family: var(--font-hand); font-size: 0.82rem; color: var(--green-vivid); margin-bottom: 14px; }
.data-number-group { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.data-num-large { font-family: var(--font-accent); font-size: 3.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.data-card-large .data-num-large { font-size: 4rem; }
.data-num-unit { font-family: var(--font-hand); font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.data-num-danger { color: var(--danger); }
.data-num-arrow, .data-num-arrow-small { color: rgba(255,255,255,0.3); display: flex; align-items: center; margin: 0 8px; }
.data-desc { font-size: 0.82rem; line-height: 2; color: rgba(255,255,255,0.45); }

/* ========== 6 RISKS ========== */
.section-risks { background: var(--green-pale); }
.risks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.risk-card {
  background: var(--white); border-radius: 16px; padding: 32px 26px;
  transition: all 0.4s var(--ease); border: 1px solid var(--gray-100);
  position: relative; overflow: hidden;
}
.risk-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.risk-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.risk-card:hover::before { transform: scaleX(1); }
.risk-num { font-family: var(--font-accent); font-size: 2rem; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.risk-title { font-family: var(--font-hand); font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.risk-desc { font-size: 0.85rem; line-height: 2; color: var(--ink-muted); }

/* ========== PROGRAM ========== */
.section-program { background: var(--white); }
.program-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.program-text-side .section-eyebrow { display: block; }
.program-text-side .section-title { margin-bottom: 16px; }
.program-steps { position: relative; }
.program-steps::before {
  content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px;
  background: var(--green-light); border-radius: 2px;
}
.program-step { display: flex; gap: 24px; margin-bottom: 36px; position: relative; }
.program-step:last-child { margin-bottom: 0; }
.program-step-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-accent); font-size: 1.2rem; font-weight: 600;
  color: var(--green); position: relative; z-index: 1;
}
.program-step-content h3 { font-family: var(--font-hand); font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; padding-top: 10px; }
.program-step-content p { font-size: 0.88rem; line-height: 2; color: var(--ink-muted); }
.program-step-badge {
  display: inline-block; margin-top: 8px; padding: 5px 14px;
  background: var(--green); color: var(--white);
  font-family: var(--font-hand); font-size: 0.78rem; font-weight: 600;
  border-radius: 60px;
}
.program-note { margin-top: 40px; text-align: center; }
.program-note p { font-size: 0.82rem; color: var(--gray-600); }

/* ========== BENEFITS ========== */
.section-benefits { background: var(--off-white); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-card {
  background: var(--white); border-radius: 16px; padding: 32px 22px;
  text-align: center; transition: all 0.4s var(--ease); border: 1px solid var(--gray-100);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.benefit-icon { color: var(--green); margin-bottom: 18px; display: flex; justify-content: center; }
.benefit-card h3 { font-family: var(--font-hand); font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; }
.benefit-card p { font-size: 0.82rem; line-height: 2; color: var(--ink-muted); }

/* ========== VOICES ========== */
.section-voices { background: var(--white); }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voice-card {
  background: var(--off-white); border-radius: 16px; padding: 32px 26px;
  transition: all 0.4s var(--ease); border: 1px solid var(--gray-100);
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.voice-text {
  font-family: var(--font-hand); font-size: 0.95rem; line-height: 2.1;
  color: var(--ink-light); margin-bottom: 20px;
}
.voice-author { display: flex; align-items: center; gap: 12px; }
.voice-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: transparent; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.voice-avatar svg { width: 100%; height: 100%; display: block; }
.voice-avatar-1 { background: transparent; }
.voice-avatar-2 { background: transparent; }
.voice-avatar-3 { background: transparent; }
.voice-name { display: block; font-family: var(--font-hand); font-size: 0.88rem; font-weight: 600; }
.voice-role { display: block; font-size: 0.75rem; color: var(--gray-600); }

/* ========== TRUST ========== */
.section-trust { padding: 72px 0; background: var(--white); }
.trust-banner {
  display: flex; align-items: flex-start; gap: 24px; padding: 28px 36px;
  background: var(--green-pale); border-radius: 16px; border-left: 4px solid var(--green);
}
.trust-icon { flex-shrink: 0; color: var(--green); padding-top: 2px; }
.trust-content h3 { font-family: var(--font-hand); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.trust-content p { font-size: 0.85rem; line-height: 2.1; color: var(--ink-muted); }

/* ========== CTA (全面写真) ========== */
.section-cta { position: relative; padding: 120px 0; overflow: hidden; color: var(--white); }
.cta-photo { position: absolute; inset: 0; z-index: 0; }
.cta-photo-img { width: 100%; height: 100%; object-fit: cover; }
.cta-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,122,62,0.8) 0%, rgba(0,0,0,0.5) 100%);
}
.cta-box { text-align: center; max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.cta-eyebrow { display: inline-block; font-family: var(--font-accent); font-size: 1.4rem; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.cta-title { font-family: var(--font-hand); font-size: 2.4rem; font-weight: 600; line-height: 1.6; margin-bottom: 18px; }
.cta-lead { font-size: 0.88rem; line-height: 2.1; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.cta-actions { margin-bottom: 48px; }
.cta-actions .btn-primary { background: var(--white); color: var(--green-deep); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.cta-actions .btn-primary:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.cta-sub { margin-top: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.cta-reward { display: flex; align-items: center; justify-content: center; gap: 18px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.15); }
.cta-reward-item { text-align: center; }
.cta-reward-num { display: block; font-family: var(--font-accent); font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.cta-reward-label { font-size: 0.68rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.cta-reward-plus, .cta-reward-eq { font-family: var(--font-accent); font-size: 1.4rem; color: rgba(255,255,255,0.3); }
.cta-reward-total .cta-reward-num { font-size: 2.8rem; color: var(--warm); }

/* ========== FOOTER ========== */
.site-footer { background: var(--gray-900); color: var(--white); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1fr; }
.footer-brand { margin-bottom: 36px; }
.footer-logo .logo-mark { color: var(--white); }
.footer-logo .logo-sub { color: var(--green-vivid); }
.footer-tagline { margin-top: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.35); font-family: var(--font-hand); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-col h4 { font-family: var(--font-accent); font-size: 0.92rem; font-weight: 600; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55); padding: 3px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--green-vivid); }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ========== ANIMATIONS ========== */
@keyframes floatGentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .concept-grid { grid-template-columns: 1fr; gap: 44px; }
  .concept-photo { order: -1; }
  .concept-photo-img { height: 340px; }
  .program-layout { grid-template-columns: 1fr; gap: 40px; }
  .risks-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
  .data-card-large { grid-column: span 2; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .btn-header { display: none; }
  .mobile-toggle { display: flex; }
  .header-nav.is-open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 24px 32px; gap: 16px; box-shadow: var(--shadow-md);
  }
  .hero { min-height: 85vh; }
  .hero-title-main, .hero-title-sub { font-size: 1.4rem; }
  .hero-title-accent { font-size: 3.6rem; }
  .hero-scroll { display: none; }
  .stats-bar-inner { flex-direction: column; gap: 16px; text-align: center; }
  .stat-divider { width: 40px; height: 1px; }
  .stat-label { text-align: center; }
  .section { padding: 72px 0; }
  .section-title { font-size: 1.5rem; }
  .photo-banner { height: 300px; }
  .photo-banner-text { font-size: 1.3rem; padding: 0 20px; }
  .data-grid { grid-template-columns: 1fr; }
  .data-card-large { grid-column: span 1; }
  .data-card-large .data-num-large { font-size: 3.2rem; }
  .risks-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .voices-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .trust-banner { flex-direction: column; padding: 22px; }
  .cta-title { font-size: 1.7rem; }
  .cta-reward { flex-wrap: wrap; gap: 14px; }
  .footer-links { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 480px) {
  .hero-title-main, .hero-title-sub { font-size: 1.2rem; }
  .hero-title-accent { font-size: 2.8rem; }
  .stat-num { font-size: 1.8rem; }
  .section-title { font-size: 1.3rem; }
  .data-num-large { font-size: 2.4rem; }
  .btn-lg { padding: 16px 32px; font-size: 0.92rem; }
  .cta-title { font-size: 1.4rem; }
  .cta-reward-total .cta-reward-num { font-size: 2.2rem; }
}

/* ========================================
   REPORT PREVIEW SECTION
   ======================================== */
.section-report-preview {
  background: var(--ink);
  color: #fff;
}
.section-report-preview .section-eyebrow { color: var(--green-vivid); }
.section-report-preview .section-title { color: #fff; }
.section-report-preview .section-lead { color: rgba(255,255,255,0.7); }
.report-slides {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.report-slide {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  transition: transform 0.3s var(--ease);
}
.report-slide:hover {
  transform: translateY(-4px);
}

/* 表紙スライド */
.report-slide-cover {
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.report-slide-deco-circle {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--green-light);
  opacity: 0.5;
}
.report-slide-cover-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.report-slide-cover-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.report-slide-cover-sub {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.report-slide-cover-line {
  width: 60px;
  height: 3px;
  background: var(--green);
  margin-bottom: 16px;
}
.report-slide-cover-for {
  font-size: 0.75rem;
  color: var(--ink-light);
}
.report-slide-cover-date {
  font-size: 0.7rem;
  color: var(--ink-muted);
  margin-top: 4px;
}
.report-slide-copyright {
  font-size: 0.6rem;
  color: var(--gray-400);
  padding: 6px 16px;
  text-align: left;
  margin-top: auto;
}

/* データスライド */
.report-slide-data {
  display: flex;
  flex-direction: column;
}
.report-slide-header {
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
}
.report-slide-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  gap: 12px;
  position: relative;
}

/* チャート部分 */
.report-slide-chart-area {
  flex: 1.2;
  position: relative;
}
.report-chart-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.report-chart-row {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  gap: 6px;
}
.report-chart-label {
  font-size: 0.55rem;
  color: var(--ink-light);
  width: 140px;
  flex-shrink: 0;
  line-height: 1.3;
  word-break: keep-all;
}
.report-chart-bar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.report-chart-bar {
  height: 12px;
  background: var(--gray-400);
  border-radius: 3px;
  min-width: 6px;
}
.report-chart-bar-you {
  background: var(--warm);
}
.report-chart-pct {
  font-size: 0.5rem;
  color: var(--gray-400);
}
.report-chart-you {
  font-size: 0.5rem;
  color: var(--warm);
  font-weight: 600;
  white-space: nowrap;
}

/* サンプルn表記 */
.report-chart-n {
  font-size: 0.55rem;
  font-weight: 400;
  color: var(--gray-600);
  margin-left: 8px;
}

/* コメント部分 */
.report-slide-comment-area {
  flex: 0.7;
  background: var(--green-pale);
  border-radius: 6px;
  padding: 10px;
  border-left: 3px solid var(--green);
}
.report-comment-title {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 4px;
  white-space: nowrap;
}
.report-comment-body {
  font-size: 0.5rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* グラフぼかし（無効化） */
.report-chart-blurred {
  user-select: none;
  pointer-events: none;
}
.report-comment-blurred {
  user-select: none;
  pointer-events: none;
}

/* SAMPLEバッジ */
.report-slide-sample-badge {
  position: absolute;
  top: 14px;
  right: -28px;
  background: var(--warm);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 32px;
  transform: rotate(35deg);
  letter-spacing: 2px;
  opacity: 0.85;
}

/* アクションスライド */
.report-slide-action {
  display: flex;
  flex-direction: column;
}
.report-slide-action .report-slide-body {
  flex-direction: column;
  gap: 0;
}
.report-action-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}
.report-action-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.report-action-content {
  flex: 1;
}
.report-action-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.report-action-desc {
  font-size: 0.5rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.report-preview-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 32px;
}

/* レスポンシブ */
@media (max-width: 1100px) {
  .report-slides {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .report-slides {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .report-slide {
    aspect-ratio: auto;
    min-height: 280px;
  }
  .report-slide-cover-title { font-size: 1.5rem; }
  .report-slide-cover-sub { font-size: 0.85rem; }
  .report-chart-label { font-size: 0.6rem; width: 150px; }
  .report-chart-bar { height: 12px; }
  .report-slide-header { font-size: 0.85rem; }
}
