/* ================================
   CSS Custom Properties
   ================================ */
:root {
  --accent: #059669;
  --accent-light: #10b981;
  --accent-bg: #ecfdf5;
  --accent-border: #a7f3d0;
  --bg: #ffffff;
  --bg-gray: #f9fafb;
  --text: #111827;
  --text-sub: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --border-dark: #d1d5db;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --ease: cubic-bezier(0, 0.7, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font: inherit;
}

.sp-only { display: none; }
.pc-only { display: inline; }

/* ================================
   Container
   ================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-heading {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
}

.section-lead {
  margin-top: 20px;
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.9;
}

.section-closing {
  text-align: center;
  margin-top: 56px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-sub);
}

/* ================================
   Section Label (English tag)
   ================================ */
.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ================================
   About Cards
   ================================ */
.about-intro {
  max-width: 720px;
  margin: 32px auto 0;
  text-align: center;
}
.about-intro-text {
  font-size: 17px;
  line-height: 2;
  color: var(--text);
}
.about-intro-text strong {
  color: var(--accent);
  font-weight: 700;
}

.about-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 8px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.about-card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}
.about-card-icon svg {
  width: 24px;
  height: 24px;
}
.about-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.about-card-text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* ================================
   Section CTA (shared across sections)
   ================================ */
.section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  text-align: center;
}

.section-cta--large {
  margin-top: 48px;
}

/* ================================
   Buttons
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 9999px;
  padding: 14px 32px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn .arrow {
  transition: transform 0.25s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: #065f46;
  border-color: #065f46;
  box-shadow: 0 4px 14px rgba(4,120,87,0.25);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent-bg);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 18px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ================================
   Header
   ================================ */
.header {
  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 var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--accent);
}

.header-cta {
  display: flex;
  gap: 12px;
}

.hamburger {
  display: none;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 24px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.mobile-menu-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-cta .btn {
  justify-content: center;
}

/* ================================
   Side Navigation
   ================================ */
.side-nav {
  display: none !important;
  position: fixed;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: none;
}

.side-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-nav a {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  padding: 6px 12px;
  border-left: 2px solid transparent;
  transition: all 0.25s var(--ease);
}

.side-nav a:hover {
  color: var(--text-sub);
}

.side-nav a.active {
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 700;
}

/* ================================
   Hero / First View (1 column centered)
   ================================ */
.hero {
  padding-top: 120px;
  padding-bottom: 0;
}

.hero-single {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.track-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.track-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.track-item--accent .track-number {
  color: var(--accent);
}

.track-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
}

.track-item--accent .track-label {
  color: var(--accent);
  font-weight: 700;
}

.track-arrow {
  color: var(--text-light);
}

.track-arrow svg {
  width: 20px;
  height: 20px;
}

.text-accent {
  color: var(--accent);
}

.hero-heading {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 16px;
}

.hero-supplement {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 9999px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  justify-content: center;
}

.hero-note {
  font-size: 13px;
  color: var(--text-light);
}

/* Trust Bar */
.trust-bar {
  margin-top: 80px;
  padding: 48px 0;
  border-top: none;
  border-bottom: none;
  background: var(--accent-bg);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-value {
  font-size: 34px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.trust-label {
  font-size: 14px;
  color: var(--text-sub);
  font-weight: 500;
}

/* ================================
   Pain Points
   ================================ */
.pain-statements {
  text-align: center;
  margin-bottom: 40px;
}

.pain-line {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.8;
  letter-spacing: -0.01em;
}

/* ================================
   Gap (Visual Flow)
   ================================ */
.gap-flow-visual {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 32px;
  background: var(--bg-gray);
  border-radius: var(--radius);
  margin-bottom: 80px;
  overflow-x: auto;
}

.gap-endpoint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 100px;
}

.gap-endpoint-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}

.gap-endpoint--start .gap-endpoint-icon {
  background: var(--text-light);
}

.gap-endpoint--end .gap-endpoint-icon {
  background: var(--accent);
}

.gap-endpoint-icon svg {
  width: 32px;
  height: 32px;
}

.gap-endpoint-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.gap-endpoint-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  white-space: nowrap;
}

.gap-connector-line {
  display: flex;
  align-items: center;
  color: var(--text-light);
  flex-shrink: 0;
}

.gap-connector-line svg {
  width: 28px;
  height: 28px;
}

.gap-steps-container {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.gap-step-card {
  flex: 1;
  min-width: 80px;
  padding: 16px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--accent-border);
  transition: transform 0.3s var(--ease);
  /* gradient from light to dark based on step index */
  background: linear-gradient(
    135deg,
    hsl(160, 84%, calc(97% - var(--step-index) * 3%)),
    hsl(160, 84%, calc(94% - var(--step-index) * 3%))
  );
}

.gap-step-card:hover {
  transform: translateY(-2px);
}

.gap-step-num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.gap-step-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* Wall Cards */
.wall-section {
  margin-bottom: 64px;
}

.wall-heading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.wall-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wall-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.wall-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.wall-card-icon {
  margin-bottom: 16px;
  color: var(--accent);
}

.wall-card-icon svg {
  width: 32px;
  height: 32px;
}

.wall-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wall-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* Gap Conclusion */
.gap-conclusion {
  text-align: center;
}

.gap-conclusion-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ================================
   Compare
   ================================ */
.compare-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.compare-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s var(--ease);
}

.compare-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.compare-card-icon {
  margin-bottom: 16px;
  color: var(--text-sub);
}

.compare-card-icon svg {
  width: 28px;
  height: 28px;
}

.compare-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.compare-card-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}

.compare-card p:last-child {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* Compare Table */
.compare-table-wrap {
  margin-bottom: 56px;
}

.compare-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  font-weight: 700;
  font-size: 15px;
  background: var(--bg-gray);
  border-bottom: 2px solid var(--border);
}

.compare-row-label {
  text-align: left !important;
  font-weight: 600;
  color: var(--text);
}

.compare-highlight {
  background: var(--accent-bg) !important;
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

thead .compare-highlight {
  border-top: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 800;
}

tbody tr:last-child .compare-highlight {
  border-bottom: 2px solid var(--accent);
}

.mark {
  font-weight: 700;
}

.mark--yes {
  color: var(--accent);
}

.mark--no {
  color: #ef4444;
}

.mark--mid {
  color: #f59e0b;
}

.mark--na {
  color: var(--text-light);
}

/* Compare Conclusion */
.compare-conclusion {
  text-align: center;
}

.compare-conclusion-problem {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 28px;
}

.compare-declaration {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
}

.compare-declaration p:first-child {
  font-size: 20px;
  margin-bottom: 12px;
}

.compare-declaration p:last-child {
  font-size: 15px;
  color: var(--text-sub);
}

/* ================================
   Pillars
   ================================ */
.pillars-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
}

.pillar {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.pillar:first-child {
  border-top: 1px solid var(--border);
}

.pillar:hover {
  background: var(--bg-gray);
}

.pillar--even {
  grid-template-columns: 200px 1fr;
}

.pillar-number {
  display: block;
  font-size: 64px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.pillar:hover .pillar-number {
  color: var(--accent-border);
}

.pillar-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}

.pillar-dash {
  color: var(--text-light);
}

.pillar-text p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* Pillar Visual (icon + bg number) */
.pillar-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}

.pillar-bg-number {
  position: absolute;
  font-size: 120px;
  font-weight: 800;
  color: var(--bg-gray);
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.pillar:hover .pillar-bg-number {
  color: var(--accent-bg);
}

.pillar-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-bg);
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
  z-index: 1;
}

.pillar-icon svg {
  width: 64px;
  height: 64px;
}

/* Pillars Supplement */
.pillars-supplement {
  text-align: center;
  padding: 48px;
  background: var(--bg-gray);
  border-radius: var(--radius);
}

.pillars-supplement p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 0;
}

/* ================================
   Profile
   ================================ */
.profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.profile-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.profile-name {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.profile-ruby {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-sub);
  margin-left: 8px;
}

.profile-title {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 24px;
}

.profile-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.profile-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-stat-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.profile-stat-label {
  font-size: 12px;
  color: var(--text-sub);
}

.profile-bio p {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 16px;
  line-height: 1.9;
}

.profile-sns {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.sns-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
  flex: 1;
  min-width: 220px;
  position: relative;
}

.sns-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.sns-link__icon svg {
  width: 20px;
  height: 20px;
}

.sns-link__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sns-link__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sns-link__desc {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 400;
}

.sns-link__arrow {
  display: flex;
  align-items: center;
  margin-left: auto;
  opacity: 0.6;
  transition: all 0.25s ease;
}

.sns-link__arrow svg {
  width: 16px;
  height: 16px;
}

.sns-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sns-link:hover .sns-link__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* X (Twitter) */
.sns-link--x {
  background: #000;
}

.sns-link--x:hover {
  background: #1a1a1a;
}

/* note */
.sns-link--note {
  background: #41C9B4;
}

.sns-link--note:hover {
  background: #35b8a3;
}

.sns-link svg {
  width: 20px;
  height: 20px;
}

.profile-stance {
  margin-top: 28px;
  padding: 24px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
}

.profile-stance h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}

.profile-stance p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 12px;
}

.profile-stance p:last-child {
  margin-bottom: 0;
}

/* Career */
.career-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.career-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.career-item {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.career-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.career-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.career-item p {
  font-size: 13px;
  color: var(--text-sub);
}

/* ================================
   Results
   ================================ */
.results-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.result-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}

.result-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.result-industry {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 14px;
}

.result-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.result-row {
  margin-bottom: 14px;
}

.result-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
  padding: 2px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 6px;
}

.result-label--accent {
  color: var(--accent);
  border-color: var(--accent-border);
  background: var(--accent-bg);
}

.result-row p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

.result-outcome {
  font-weight: 600;
  color: var(--text) !important;
}

/* Testimonials */
.testimonials-heading {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.testimonial-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.testimonial-icon svg {
  width: 24px;
  height: 24px;
}

.testimonial-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 13px;
  color: var(--text-sub);
}

/* ================================
   Fit
   ================================ */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.fit-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.fit-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.fit-header h3 {
  font-size: 20px;
  font-weight: 700;
}

.fit-header--good {
  color: var(--accent);
}

.fit-header--good svg {
  width: 28px;
  height: 28px;
}

.fit-header--bad {
  color: #ef4444;
}

.fit-header--bad svg {
  width: 28px;
  height: 28px;
}

.fit-list li {
  font-size: 15px;
  color: var(--text-sub);
  padding: 10px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid var(--bg-gray);
}

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

.fit-col--good .fit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.fit-col--bad .fit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fca5a5;
}

/* ================================
   Pricing
   ================================ */
.pricing-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 40px;
}

.pricing-arrow {
  display: flex;
  align-items: center;
  padding-top: 120px;
  color: var(--text-light);
}

.pricing-arrow svg {
  width: 28px;
  height: 28px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-2px);
}

.pricing-card--regular {
  border: 2px solid var(--accent);
  position: relative;
}

.pricing-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.pricing-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-price {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pricing-currency {
  font-size: 16px;
  color: var(--text-sub);
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.pricing-unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.pricing-tax {
  font-size: 13px;
  color: var(--text-sub);
  margin-left: 4px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 16px;
}

.pricing-note {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

.pricing-contract {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

.pricing-bridge {
  text-align: center;
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 32px;
}

.pricing-compare {
  text-align: center;
  padding: 32px;
  background: var(--bg-gray);
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.pricing-compare p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.9;
}

/* ================================
   Timeline (First Month)
   ================================ */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--border);
  z-index: 1;
}

.timeline-marker--accent {
  border-color: var(--accent);
  background: var(--accent);
}

.timeline-week {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-content ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-content li {
  font-size: 15px;
  color: var(--text-sub);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}

.timeline-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
}

.timeline-item--result .timeline-content {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.timeline-item--result .timeline-week {
  color: var(--accent);
}

/* ================================
   Flow
   ================================ */
.flow-steps {
  display: flex;
  align-items: start;
  gap: 0;
  justify-content: center;
}

.flow-step {
  flex: 1;
  max-width: 200px;
  text-align: center;
}

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

.flow-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
}

.flow-connector {
  display: flex;
  align-items: center;
  padding-top: 12px;
  color: var(--text-light);
  flex-shrink: 0;
}

.flow-connector svg {
  width: 20px;
  height: 20px;
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--text-sub);
  flex-shrink: 0;
}

.faq-icon--close {
  display: none;
}

.faq-item.active .faq-icon--open {
  display: none;
}

.faq-item.active .faq-icon--close {
  display: block;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  padding-bottom: 24px;
}

/* ================================
   Hero Kicker
   ================================ */
.hero-kicker {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  padding: 6px 20px;
  border-radius: 9999px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

/* ================================
   Contact Selector (Radio Cards)
   ================================ */
.contact-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-selector-item {
  flex: 1;
  position: relative;
  cursor: pointer;
}
.contact-selector-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-selector-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sub);
  background: #fff;
  transition: all 0.2s;
  text-align: center;
}
.contact-selector-item:hover .contact-selector-label {
  border-color: var(--accent-border);
  color: var(--text);
}
.contact-selector-item input[type="radio"]:checked + .contact-selector-label {
  border-color: var(--accent);
  background: var(--accent-bg);
  color: var(--accent);
}
.contact-tab-content {
  display: none;
}
.contact-tab-content.active {
  display: block;
}

/* ================================
   Unified Contact Form
   ================================ */
.unified-contact {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.unified-contact-heading {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.unified-contact-lead {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.contact-flow-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-sub);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 8px 16px;
}
.contact-flow-num {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.contact-flow-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}
.contact-flow-arrow {
  color: var(--text-sub);
  font-size: 14px;
}

.unified-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
}

.required {
  color: #ef4444;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: border-color 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
}

/* Radio Card Styles */
.radio-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-cards--row {
  flex-direction: row;
}

.radio-cards--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.radio-cards--4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.radio-card {
  display: block;
  cursor: pointer;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card-label {
  display: block;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s var(--ease);
  background: #fff;
}

.radio-card-label:hover {
  border-color: var(--accent-border);
  background: var(--accent-bg);
}

.radio-card input:checked + .radio-card-label {
  border-color: var(--accent);
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 600;
}

.form-success {
  text-align: center;
  padding: 48px 32px;
  background: var(--accent-bg);
  border-radius: var(--radius);
  margin-top: 20px;
}

.form-success p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-success-sig {
  font-size: 14px;
  color: var(--text-sub);
  font-weight: 400 !important;
}

/* ================================
   Footer
   ================================ */
.footer {
  background: var(--text);
  color: #fff;
  padding: 64px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ================================
   Mobile Fixed CTA
   ================================ */
.mobile-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}

.mobile-fixed-cta .btn {
  font-size: 15px;
  padding: 14px 24px;
}

/* ================================
   Animations
   ================================ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}

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

/* ================================
   Responsive: Desktop Large (1280px+)
   ================================ */
@media (min-width: 1280px) {
  .side-nav {
    display: block;
  }

  .container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ================================
   Responsive: Tablet (768px - 1024px)
   ================================ */
@media (max-width: 1024px) {
  .section-heading {
    font-size: 36px;
  }

  .hero-heading {
    font-size: 38px;
  }

  .pain-line {
    font-size: 28px;
  }

  .gap-flow-visual {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 24px;
  }

  .gap-endpoint {
    flex-direction: row;
    gap: 16px;
    min-width: auto;
  }

  .gap-connector-line {
    justify-content: center;
    transform: rotate(90deg);
  }

  .gap-steps-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gap-step-card {
    min-width: 100px;
    flex: 0 0 auto;
  }

  .wall-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .pillar--even {
    direction: ltr;
  }

  .pillar-visual {
    order: -1;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .profile-photo {
    max-width: 280px;
  }

  .results-cards {
    grid-template-columns: 1fr;
  }

  .pricing-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-arrow {
    padding-top: 0;
    justify-content: center;
    transform: rotate(90deg);
  }

  .flow-steps {
    flex-direction: column;
    align-items: center;
  }

  .flow-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .trust-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-value {
    font-size: 28px;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .radio-cards--row {
    flex-direction: column;
  }

  .radio-cards--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================
   Responsive: Mobile (~768px)
   ================================ */
@media (max-width: 768px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-lead {
    font-size: 15px;
  }

  .about-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-selector {
    flex-direction: column;
    gap: 8px;
  }

  .header-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-heading {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 15px;
  }

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

  .track-number {
    font-size: 22px;
  }

  .track-label {
    font-size: 11px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    justify-content: center;
  }

  .hero-tags {
    justify-content: center;
  }

  .trust-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .trust-value {
    font-size: 22px;
  }

  .pain-line {
    font-size: 22px;
  }

  .gap-flow-visual {
    padding: 20px 16px;
  }

  .gap-steps-container {
    flex-direction: column;
    gap: 8px;
  }

  .gap-step-card {
    min-width: auto;
    flex: auto;
  }

  .wall-cards {
    grid-template-columns: 1fr;
  }

  .compare-cards {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .pricing-steps {
    grid-template-columns: 1fr;
  }

  .pricing-amount {
    font-size: 40px;
  }

  .pillar-number {
    font-size: 48px;
  }

  .pillar {
    padding: 28px 24px;
  }

  .pillar-title {
    font-size: 19px;
  }

  .pillar-visual {
    width: 120px;
    height: 120px;
  }

  .pillar-bg-number {
    font-size: 80px;
  }

  .pillar-icon {
    width: 88px;
    height: 88px;
  }

  .pillar-icon svg {
    width: 44px;
    height: 44px;
  }

  .profile-stats {
    flex-direction: column;
    gap: 16px;
  }

  .unified-contact-heading {
    font-size: 22px;
  }

  .contact-flow {
    flex-direction: column;
    gap: 4px;
  }
  .contact-flow-arrow {
    transform: rotate(90deg);
  }

  /* 比較表：スマホではカード形式に変換 */
  .compare-table {
    min-width: 0;
  }
  .compare-table thead {
    display: none;
  }
  .compare-table tbody {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .compare-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    gap: 4px;
  }
  .compare-table td {
    border-bottom: none;
    padding: 8px 4px;
    font-size: 13px;
  }
  .compare-row-label {
    grid-column: 1 / -1;
    text-align: center !important;
    font-size: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
  }
  .compare-table td:nth-child(2)::before { content: "コンサル"; display: block; font-size: 10px; color: var(--text-sub); font-weight: 600; margin-bottom: 2px; }
  .compare-table td:nth-child(3)::before { content: "フリーランス"; display: block; font-size: 10px; color: var(--text-sub); font-weight: 600; margin-bottom: 2px; }
  .compare-table td:nth-child(4)::before { content: "正社員"; display: block; font-size: 10px; color: var(--text-sub); font-weight: 600; margin-bottom: 2px; }
  .compare-table td:nth-child(5)::before { content: "TSUGIME"; display: block; font-size: 10px; color: var(--accent); font-weight: 700; margin-bottom: 2px; }
  .compare-highlight {
    border-left: none;
    border-right: none;
    background: var(--accent-bg) !important;
    border-radius: 8px;
  }

  /* テキスト全体の改行改善 */
  .section-heading {
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .section-lead {
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .hero-sub {
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .pain-line {
    word-break: keep-all;
  }
  .compare-conclusion-problem {
    word-break: keep-all;
  }
  .pillar-title {
    word-break: keep-all;
  }

  .radio-cards--row {
    flex-direction: column;
  }

  .radio-cards--2col {
    grid-template-columns: 1fr;
  }

  .radio-cards--4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-cta {
    flex-direction: column;
    align-items: center;
  }

  .section-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .gap-conclusion-text,
  .compare-conclusion-problem {
    font-size: 17px;
  }

  .compare-declaration {
    padding: 24px;
  }

  .compare-declaration p:first-child {
    font-size: 17px;
  }

  .mobile-fixed-cta {
    display: block;
  }

  /* Add bottom padding for fixed CTA */
  body {
    padding-bottom: 72px;
  }

  .flow-step {
    max-width: 100%;
  }

  .btn-xl {
    padding: 16px 36px;
    font-size: 16px;
  }
}

/* ================================
   Print styles
   ================================ */
@media print {
  .header, .side-nav, .mobile-fixed-cta {
    display: none !important;
  }

  .section {
    padding: 40px 0;
  }
}