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

:root {
  /* Navy - Primary */
  --navy: #1b2a4a;
  --navy-dark: #0f1b33;
  --navy-light: #253d6b;

  /* Blue */
  --blue: #4361ee;
  --blue-soft: #eef2ff;
  --blue-border: #c7d2fe;

  /* Orange - CTA */
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-soft: #fff7ed;

  /* Marker Yellow */
  --yellow: #fef08a;
  --yellow-strong: #facc15;

  /* Success */
  --green: #10b981;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Font */
  --font: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

strong {
  color: var(--gray-900);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

small {
  font-size: 0.82em;
  color: var(--gray-500);
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Marker highlight ===== */
.marker-yellow {
  background: linear-gradient(transparent 65%, var(--yellow) 65%, var(--yellow) 92%, transparent 92%);
  padding: 0 4px;
  font-weight: 800;
}

/* ===== Section ===== */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--gray-50);
}

.section-navy {
  background: linear-gradient(170deg, var(--navy-dark), var(--navy) 50%, var(--navy-light));
  color: #fff;
}

.section-badge {
  display: block;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 7px 22px;
  border-radius: 4px;
  margin: 0 auto 20px;
  text-align: center;
  width: fit-content;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--gray-900);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.section-title.white {
  color: #fff;
}

.section-sub {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

/* ===== Button ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 800;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 1rem;
  padding: 16px 40px;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}

.btn-orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.45);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.1rem;
  border-radius: var(--r-md);
}

.btn-full {
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(170deg, #f0f4ff 0%, #e8ecf8 40%, #dce3f3 100%);
  padding: 80px 0 88px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.6;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 32px;
}

/* Hero Points (replaces price box) */
.hero-points {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.hp-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.hero .btn {
  margin-bottom: 14px;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--r-lg);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background: var(--navy);
  padding: 24px 0;
}

.sp-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sp-item {
  text-align: center;
  color: #fff;
}

.sp-num {
  font-size: 1.6rem;
  font-weight: 900;
  display: block;
  line-height: 1.3;
}

.sp-num small {
  font-size: 0.6em;
  font-weight: 600;
  opacity: 0.8;
}

.sp-label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

.sp-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ===== PAIN ===== */
.pain-flex {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 56px;
}

.pain-image {
  flex-shrink: 0;
  width: 260px;
}

.pain-image img {
  border-radius: var(--r-lg);
}

.pain-bubbles {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bubble {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  font-size: 0.95rem;
  color: var(--gray-700);
  position: relative;
  box-shadow: var(--shadow-sm);
  line-height: 1.75;
}

.bubble::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid var(--gray-200);
}

.bubble::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid var(--white);
}

.pain-bridge {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.85;
  padding: 24px 0;
}

/* ===== SOLUTION (Navy Section) ===== */
.solution-pre {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow-strong);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.solution-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-4px);
}

.sol-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 16px;
}

.sol-img {
  margin: 0 auto 16px;
  width: 140px;
  height: auto;
}

.solution-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.6;
}

.solution-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===== COMPARE TABLE ===== */
.compare-wrapper {
  max-width: 820px;
  margin: 0 auto;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  font-size: 0.92rem;
}

.ct-label {
  background: var(--gray-50);
  font-weight: 700;
  color: var(--gray-700);
  white-space: nowrap;
  text-align: left;
  width: 120px;
}

thead .ct-label {
  background: var(--gray-50);
}

.ct-old {
  text-align: center;
  background: var(--white);
  color: var(--gray-500);
}

thead .ct-old {
  background: var(--gray-100);
  font-weight: 700;
  color: var(--gray-600);
}

.ct-new {
  text-align: center;
  background: var(--blue-soft);
  color: var(--navy);
}

thead .ct-new {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}

tbody tr {
  border-bottom: 1px solid var(--gray-200);
}

tbody tr:last-child td {
  border-bottom: none;
}

.ct-new strong {
  color: var(--navy);
  font-weight: 800;
}

/* ===== REPORT CARDS ===== */
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.report-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.report-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.rc-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 20px;
}

.report-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.rc-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.rc-list {
  list-style: none;
  padding: 16px 18px;
  background: var(--gray-50);
  border-radius: var(--r-sm);
  margin-top: auto;
}

.rc-list li {
  font-size: 0.92rem;
  color: var(--gray-600);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.7;
}

.rc-list li:last-child {
  border-bottom: none;
}

/* ===== PRICING ===== */
.pricing-box {
  max-width: 520px;
  margin: 0 auto;
  border: 3px solid var(--navy);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-head {
  background: var(--navy);
  padding: 36px 32px;
  text-align: center;
  color: #fff;
}

.pricing-head h3 {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 12px;
}

.pa-yen {
  font-size: 1.5rem;
  font-weight: 700;
}

.pa-num {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.pa-tax {
  font-size: 0.95rem;
  opacity: 0.75;
}

.pricing-body {
  background: var(--white);
  padding: 28px 32px;
}

.pb-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
  gap: 16px;
}

.pb-row:last-child {
  border-bottom: none;
}

.pb-key {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--gray-800);
  min-width: 90px;
}

.pb-val {
  color: var(--gray-600);
}

.pricing-foot {
  background: var(--white);
  padding: 0 32px 28px;
}

/* ===== REASON (Navy bg) ===== */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.reason-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reason-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 16px;
}

.reason-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.6;
}

.reason-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===== RESULTS ===== */
.results-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 28px;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}

.tab:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.results-panel {
  display: none;
  max-width: 880px;
  margin: 0 auto;
}

.results-panel.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.result-card:hover {
  transform: translateY(-3px);
}

.rc-industry {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.rc-metric {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.rc-metric strong {
  color: var(--orange);
  font-weight: 900;
}

.rc-detail {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ===== TARGET ===== */
.target-grid {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.target-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 20px 24px;
  font-size: 0.95rem;
  transition: transform 0.2s;
}

.target-card:hover {
  transform: translateX(6px);
}

.tc-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 2px;
}

/* ===== FLOW ===== */
.flow-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.flow-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.flow-card:hover {
  transform: translateY(-3px);
}

.fc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 18px;
}

.flow-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.flow-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.fc-note {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 0.75rem !important;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gray-300);
  font-weight: 700;
  padding: 8px 0;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  text-align: left;
  gap: 14px;
  font-family: var(--font);
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--gray-50);
}

.faq-q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  display: flex;
  gap: 14px;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.faq-a-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== FAQ STATIC (UTAGE用・常時表示) ===== */
.faq-list-static {
  max-width: 720px;
  margin: 0 auto;
}

.faq-static-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  padding: 24px 28px;
}

.faq-static-q {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 14px;
}

.faq-static-a {
  display: flex;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.8;
  padding-left: 2px;
}

/* ===== RESULTS ALL (タブなし全件表示) ===== */
.results-category {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 36px;
  padding-left: 14px;
  border-left: 4px solid var(--navy);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.results-category:first-of-type {
  margin-top: 0;
}

.results-all {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 24px;
}

/* ===== PROFILE ===== */
.profile-img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--r-md);
}

.profile-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 40px 36px;
}

.pf-body h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pf-tags span {
  background: var(--navy);
  color: #fff;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
}

.pf-list {
  list-style: none;
  padding: 0;
}

.pf-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  border-bottom: 1px solid var(--gray-200);
}

.pf-list li:last-child {
  border-bottom: none;
}

/* ===== CTA ===== */
.cta-section {
  padding: 88px 0;
}

.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.5;
}

.cta-section p {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* --- 最終CTAボタン --- */
.btn-cta-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
  padding: 20px 52px;
  border-radius: var(--r-md);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: cta-pulse 2.5s ease-in-out infinite;
  text-decoration: none;
}

.btn-cta-final:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.45);
  transform: translateY(-3px) scale(1.03);
}

@keyframes cta-pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.25);
  }

  50% {
    box-shadow: 0 6px 32px rgba(255, 255, 255, 0.45), 0 0 0 8px rgba(255, 255, 255, 0.08);
  }
}

.cta-note {
  font-size: 0.8rem !important;
  color: #64748b !important;
  margin-top: 14px;
  margin-bottom: 0 !important;
}

/* ===== FOOTER ===== */
.footer {
  padding: 24px 0;
  text-align: center;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--navy);
}

.footer p {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ===== SCROLL ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PC/SP 出し分け ===== */
.arrow-sp {
  display: none;
}

.arrow-pc {
  display: inline;
}

.sp-hide {
  display: inline;
}

/* ===== RESPONSIVE ===== */

/* --- タブレット以下 (768px) --- */
@media (max-width: 768px) {

  /* コンテナ */
  .container {
    padding: 0 16px;
  }

  /* --- HERO --- */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .hero {
    padding: 36px 0 40px;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.8;
  }

  .hero-points {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-point {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .hero-label {
    font-size: 0.7rem;
    padding: 5px 16px;
    margin-bottom: 16px;
  }

  .sp-hide {
    display: none;
  }

  /* --- 共通セクション --- */
  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .section-sub {
    font-size: 0.88rem;
    margin-bottom: 28px;
    line-height: 1.8;
  }

  /* --- PAIN --- */
  .pain-flex {
    flex-direction: column;
  }

  .pain-image {
    width: 160px;
    margin: 0 auto;
  }

  .bubble::before,
  .bubble::after {
    display: none;
  }

  .bubble {
    font-size: 0.85rem;
    padding: 14px 18px;
  }

  .pain-bridge {
    font-size: 0.88rem;
    padding: 16px;
  }

  /* --- SOLUTIONカード → 縦1列 --- */
  .solution-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 24px auto 0;
    gap: 16px;
  }

  .solution-card {
    padding: 24px 20px;
  }

  .solution-card h3 {
    font-size: 1.05rem;
  }

  .solution-card p {
    font-size: 0.85rem;
  }

  /* --- REPORTカード → 縦1列 --- */
  .report-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .report-card {
    padding: 24px 20px;
  }

  .report-card h3 {
    font-size: 1.05rem;
  }

  .rc-desc {
    font-size: 0.85rem;
  }

  /* --- WHY CHEAPカード → 縦1列 --- */
  .reason-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 24px auto 0;
    gap: 16px;
  }

  .reason-card {
    padding: 24px 20px;
  }

  .reason-card h3 {
    font-size: 1.05rem;
  }

  .reason-card p {
    font-size: 0.85rem;
  }

  /* --- FLOW → 縦1列 + ↓矢印 --- */
  .flow-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
  }

  .arrow-pc {
    display: none;
  }

  .arrow-sp {
    display: inline;
  }

  .flow-arrow {
    padding: 6px 0;
  }

  .flow-card {
    padding: 20px 18px;
  }

  .flow-card h3 {
    font-size: 0.92rem;
  }

  .flow-card p {
    font-size: 0.8rem;
  }

  .fc-num {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  /* --- 比較テーブル --- */
  .compare-table th,
  .compare-table td {
    padding: 12px 10px;
    font-size: 0.78rem;
  }

  .ct-label {
    width: 70px;
    font-size: 0.72rem;
  }

  /* --- 実績 --- */
  .results-panel.active,
  .results-all {
    grid-template-columns: 1fr;
  }

  /* --- ターゲット --- */
  .target-card {
    padding: 14px 16px;
    font-size: 0.85rem;
  }

  /* --- FAQ --- */
  .faq-q {
    font-size: 0.85rem;
    padding: 14px 16px;
  }

  .faq-a-inner {
    font-size: 0.82rem;
    padding: 0 16px 14px;
  }

  .faq-static-item {
    padding: 18px 16px;
  }

  .faq-static-q {
    font-size: 0.85rem;
  }

  .faq-static-a {
    font-size: 0.82rem;
  }

  /* --- プロフィール画像 --- */
  .profile-img {
    width: 100%;
    max-width: 100%;
    border-radius: var(--r-sm);
  }

  .profile-box {
    padding: 24px 20px;
  }

  .pf-body h3 {
    font-size: 1.1rem;
  }

  /* --- CTA --- */
  .cta-section {
    padding: 48px 0;
  }

  .cta-section h2 {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .cta-section p {
    font-size: 0.85rem;
  }

  /* --- 料金 --- */
  .pricing-body,
  .pricing-foot {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pa-num {
    font-size: 2.4rem;
  }

  .pricing-card {
    border-radius: var(--r-md);
  }
}

/* --- スマホ小画面 (480px) --- */
@media (max-width: 480px) {

  html {
    font-size: 15px;
  }

  .container {
    padding: 0 12px;
  }

  .hero {
    padding: 28px 0 32px;
  }

  .hero h1 {
    font-size: 1.3rem;
    line-height: 1.7;
  }

  .hero-desc {
    font-size: 0.85rem;
  }

  .hero-label {
    font-size: 0.65rem;
    padding: 4px 14px;
  }

  .hero-point {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .section {
    padding: 36px 0;
  }

  .section-title {
    font-size: 1.15rem;
  }

  .section-sub {
    font-size: 0.82rem;
  }

  .bubble {
    font-size: 0.8rem;
    padding: 12px 14px;
  }

  .pain-image {
    width: 140px;
  }

  .solution-card,
  .reason-card,
  .report-card {
    padding: 20px 16px;
  }

  .solution-card h3,
  .reason-card h3,
  .report-card h3 {
    font-size: 0.95rem;
  }

  .solution-card p,
  .reason-card p,
  .rc-desc {
    font-size: 0.82rem;
  }

  .flow-card {
    padding: 16px 14px;
  }

  .flow-card h3 {
    font-size: 0.85rem;
  }

  .flow-card p {
    font-size: 0.75rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 8px;
    font-size: 0.72rem;
  }

  .ct-label {
    width: 60px;
    font-size: 0.68rem;
  }

  .target-card {
    font-size: 0.8rem;
    padding: 12px 14px;
  }

  .faq-q {
    font-size: 0.8rem;
    padding: 12px 14px;
  }

  .faq-a-inner {
    font-size: 0.78rem;
    padding: 0 14px 12px;
  }

  .cta-section h2 {
    font-size: 1.1rem;
  }

  .cta-section p {
    font-size: 0.82rem;
  }

  .pa-num {
    font-size: 2.2rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 16px 28px;
  }
}