/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  color: #1a1a2e;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
}
.header-logo a {
  display: flex; align-items: center; gap: 10px;
}
.header-logo a > div {
  display: flex; align-items: baseline; gap: 12px;
}
.logo-text {
  font-size: 22px; font-weight: 800; color: #0f1f3e;
  letter-spacing: -0.5px; line-height: 1; white-space: nowrap;
}
.logo-sub {
  font-size: 9.5px; color: #94a3b8; line-height: 1.3;
}
.header-nav {
  display: flex; gap: 28px;
}
.header-nav a {
  font-size: 14px; font-weight: 600; color: #334155;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.header-nav a:hover, .header-nav a.active {
  color: #1d4ed8; border-bottom-color: #1d4ed8;
}
.header-cta {
  display: flex; gap: 10px;
}
.btn-line {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 6px;
  border: 1.5px solid #06c755; color: #06c755;
  font-size: 13px; font-weight: 600;
  transition: all 0.2s;
}
.btn-line:hover { background: #06c755; color: #fff; }
.btn-primary-header {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 6px;
  background: #1d4ed8; color: #fff;
  font-size: 13px; font-weight: 600;
  transition: all 0.2s;
}
.btn-primary-header:hover { background: #1e40af; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 12px 0; font-size: 13px; color: #94a3b8;
}
.breadcrumb a { color: #64748b; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== Hero ===== */
.hero {
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
}
.hero-inner {
  display: flex; align-items: flex-start; gap: 48px;
}
.hero-text { flex: 1; padding-top: 20px; }
.hero-text h1 {
  font-size: 36px; font-weight: 800; line-height: 1.4;
  color: #0f1f3e; margin-bottom: 16px;
}
.hero-text p {
  font-size: 15px; color: #475569; margin-bottom: 24px;
}
.hero-badges {
  display: flex; gap: 24px;
}
.badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #334155; font-weight: 500;
}
.badge-icon { font-size: 18px; }
.hero-image { flex: 1.2; }

/* ===== Dashboard Mock ===== */
.dashboard-mock {
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  overflow: hidden; font-size: 11px;
  display: grid; grid-template-columns: 140px 1fr;
  grid-template-rows: auto 1fr;
}
.mock-header {
  grid-column: 1 / -1;
  background: #0f1f3e; color: #fff;
  padding: 10px 16px; font-weight: 700; font-size: 14px;
}
.mock-sidebar {
  background: #0f1f3e; color: #94a3b8;
  padding: 8px 0;
}
.sidebar-item {
  padding: 6px 16px; font-size: 11px; cursor: pointer;
}
.sidebar-item.active { color: #fff; background: rgba(255,255,255,0.1); }
.mock-content { padding: 16px; }
.mock-title { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: #0f1f3e; }
.mock-cards { display: flex; gap: 10px; margin-bottom: 16px; }
.mock-card {
  flex: 1; background: #f8fafc; border-radius: 8px; padding: 10px;
  border: 1px solid #e2e8f0;
}
.mock-card-label { font-size: 10px; color: #64748b; margin-bottom: 4px; }
.mock-card-value { font-size: 20px; font-weight: 800; color: #0f1f3e; }
.mock-unit { font-size: 12px; font-weight: 600; }
.mock-card-change { font-size: 9px; color: #22c55e; }
.mock-section-title { font-size: 11px; font-weight: 700; color: #0f1f3e; margin-bottom: 6px; }
.mock-table { width: 100%; border-collapse: collapse; font-size: 10px; }
.mock-table th { text-align: left; padding: 4px 6px; color: #64748b; border-bottom: 1px solid #e2e8f0; font-weight: 500; }
.mock-table td { padding: 4px 6px; border-bottom: 1px solid #f1f5f9; }

/* Status badges */
.status {
  display: inline-block; padding: 1px 8px; border-radius: 10px;
  font-size: 10px; font-weight: 600;
}
.status.new { background: #dbeafe; color: #1d4ed8; }
.status.progress { background: #fef3c7; color: #d97706; }
.status.done { background: #dcfce7; color: #16a34a; }

/* ===== Section Title ===== */
.section-title {
  text-align: center; font-size: 28px; font-weight: 800;
  color: #0f1f3e; margin-bottom: 48px; padding-top: 60px;
}

/* ===== Features Grid ===== */
.features-section { padding-bottom: 80px; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 16px; padding: 28px;
  transition: box-shadow 0.3s;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.feature-number span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: #1d4ed8; color: #fff;
  font-size: 14px; font-weight: 700;
}
.feature-card h3 {
  font-size: 18px; font-weight: 700; color: #0f1f3e;
  margin: 12px 0 8px;
}
.feature-icons { display: flex; gap: 8px; margin-bottom: 8px; }
.f-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f1f5f9; font-size: 16px;
}
.f-icon.line-g { background: #06c755; color: #fff; font-size: 10px; font-weight: 700; }
.feature-card p { font-size: 13px; color: #475569; margin-bottom: 16px; }

/* Mini table */
.mini-table-title {
  font-size: 12px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 6px; padding-bottom: 4px; border-bottom: 2px solid #1d4ed8;
}
.mini-table { width: 100%; border-collapse: collapse; font-size: 10px; }
.mini-table th { text-align: left; padding: 3px 4px; color: #64748b; border-bottom: 1px solid #e2e8f0; }
.mini-table td { padding: 3px 4px; border-bottom: 1px solid #f1f5f9; }

/* Kanban */
.kanban { display: flex; gap: 8px; }
.kanban-col { flex: 1; }
.kanban-col > div:first-child {
  text-align: center; font-size: 11px; font-weight: 700;
  padding: 4px; border-radius: 4px; margin-bottom: 6px;
  background: #f1f5f9; color: #334155;
}
.kanban-card-item {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 6px; padding: 8px; margin-bottom: 6px;
}
.kanban-card-item.highlight { border-color: #f59e0b; background: #fffbeb; }
.kanban-card-item.done-card { opacity: 0.7; }
.kanban-card-title { font-size: 11px; font-weight: 700; color: #0f1f3e; }
.kanban-card-info { font-size: 9px; color: #64748b; margin-top: 2px; }

/* Estimate mock */
.estimate-mock {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 8px; padding: 12px;
}
.estimate-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.estimate-title { font-size: 13px; font-weight: 700; color: #0f1f3e; }
.estimate-btn {
  display: inline-block; padding: 3px 12px; border-radius: 4px;
  background: #1d4ed8; color: #fff; font-size: 10px; font-weight: 600;
}
.estimate-info { font-size: 10px; color: #64748b; margin-bottom: 8px; line-height: 1.6; }
.estimate-table { width: 100%; border-collapse: collapse; font-size: 10px; }
.estimate-table th {
  text-align: left; padding: 4px 6px;
  background: #eef2ff; color: #334155; font-weight: 600;
}
.estimate-table td { padding: 4px 6px; border-bottom: 1px solid #f1f5f9; }
.estimate-total { text-align: right; font-size: 10px; color: #334155; margin-top: 8px; line-height: 1.8; }
.total-amount { font-size: 14px; font-weight: 800; color: #0f1f3e; }
.payment-status { margin-top: 8px; }
.status-badge {
  display: inline-block; padding: 3px 12px; border-radius: 4px;
  font-size: 10px; font-weight: 600;
}
.status-badge.unpaid { background: #fee2e2; color: #dc2626; }

/* Customer mock */
.customer-mock {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 8px; padding: 12px;
}
.customer-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.customer-name { font-size: 16px; font-weight: 700; color: #0f1f3e; }
.customer-info { font-size: 10px; color: #64748b; margin-bottom: 10px; line-height: 1.8; }
.customer-tabs { display: flex; gap: 4px; margin-bottom: 10px; border-bottom: 1px solid #e2e8f0; }
.customer-tabs .tab {
  padding: 4px 10px; font-size: 10px; font-weight: 600;
  color: #64748b; cursor: pointer; border-bottom: 2px solid transparent;
}
.customer-tabs .tab.active { color: #1d4ed8; border-bottom-color: #1d4ed8; }
.history-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; padding: 4px 0; border-bottom: 1px solid #f1f5f9;
}
.history-link { display: block; text-align: center; font-size: 10px; color: #1d4ed8; margin-top: 8px; }

/* LINE integration */
.line-integration { font-size: 11px; }
.line-flow { display: flex; align-items: center; gap: 12px; }
.line-source, .line-dest { flex: 1; }
.line-badge-green {
  display: inline-block; padding: 4px 12px; border-radius: 4px;
  background: #06c755; color: #fff; font-size: 10px; font-weight: 700;
  margin-bottom: 6px;
}
.line-badge-blue {
  display: inline-block; padding: 4px 12px; border-radius: 4px;
  background: #1d4ed8; color: #fff; font-size: 10px; font-weight: 700;
  margin-bottom: 6px;
}
.line-badge-web {
  display: inline-block; padding: 4px 12px; border-radius: 4px;
  background: #0f1f3e; color: #fff; font-size: 10px; font-weight: 700;
  margin-bottom: 6px;
}
.chat-bubble {
  background: #dcfce7; padding: 6px 10px; border-radius: 8px;
  font-size: 10px; color: #166534;
}
.flow-arrow { font-size: 20px; color: #94a3b8; }
.line-result { font-size: 10px; color: #1d4ed8; font-weight: 600; margin-bottom: 4px; }
.line-entries { font-size: 9px; color: #64748b; }
.line-entries div { padding: 2px 0; }
.web-form-mini { font-size: 10px; color: #475569; background: #f1f5f9; padding: 6px 8px; border-radius: 6px; }

/* ===== CTA Section ===== */
.cta-section {
  background: #0f1f3e; color: #fff;
  padding: 60px 0;
}
.cta-content { text-align: center; }
.cta-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.cta-content p { font-size: 14px; color: #94a3b8; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; }
.btn-primary-large {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; border-radius: 8px;
  background: #fff; color: #0f1f3e;
  font-size: 15px; font-weight: 700;
  transition: all 0.2s;
}
.btn-primary-large:hover { background: #e2e8f0; }
.btn-line-large {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; border-radius: 8px;
  background: #06c755; color: #fff;
  font-size: 15px; font-weight: 700;
  transition: all 0.2s;
}
.btn-line-large:hover { background: #05a847; }

/* ===== Footer ===== */
.footer {
  background: #f8fafc; border-top: 1px solid #e2e8f0;
  padding: 48px 0 0;
}
.footer-inner {
  display: flex; gap: 40px; padding-bottom: 32px;
}
.footer-brand { flex: 0 0 200px; }
.footer-logo { font-size: 22px; font-weight: 800; color: #0f1f3e; margin-bottom: 6px; }
.footer-desc { font-size: 11px; color: #64748b; margin-bottom: 12px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: #e2e8f0; color: #334155; font-size: 12px;
}
.footer-links { display: flex; gap: 48px; flex: 1; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #0f1f3e; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 12px; color: #64748b; padding: 3px 0; }
.footer-col a:hover { color: #1d4ed8; }
.footer-contact { text-align: right; }
.footer-contact-label { font-size: 12px; color: #64748b; margin-bottom: 6px; }
.footer-phone { font-size: 22px; font-weight: 800; color: #0f1f3e; margin-bottom: 4px; }
.footer-hours { font-size: 11px; color: #94a3b8; }
.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding: 16px 0; font-size: 12px; color: #94a3b8;
  text-align: center;
}

/* ===== Pricing Page ===== */
.pricing-hero {
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
}
.pricing-hero .hero-inner { display: flex; align-items: flex-start; gap: 48px; }
.pricing-hero .hero-text h1 { font-size: 34px; }

.pricing-cards {
  display: flex; gap: 16px; padding: 60px 0 24px;
  justify-content: center; flex-wrap: wrap;
}
.pricing-card {
  background: #fff; border: 1.5px solid #e2e8f0;
  border-radius: 16px; padding: 28px 24px;
  width: 200px; text-align: center;
  position: relative;
  transition: box-shadow 0.3s;
}
.pricing-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.pricing-card.recommended {
  border-color: #1d4ed8;
  box-shadow: 0 4px 20px rgba(29,78,216,0.15);
}
.pricing-card.recommended::before {
  content: 'おすすめ';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #1d4ed8; color: #fff;
  padding: 3px 16px; border-radius: 12px;
  font-size: 12px; font-weight: 700;
}
.pricing-card-name { font-size: 16px; font-weight: 700; color: #0f1f3e; margin-bottom: 12px; }
.pricing-card-price { font-size: 28px; font-weight: 800; color: #0f1f3e; }
.pricing-card-price .unit { font-size: 14px; font-weight: 600; }
.pricing-card-sub { font-size: 11px; color: #94a3b8; margin-bottom: 16px; }
.pricing-features { text-align: left; margin-bottom: 20px; }
.pricing-features li {
  list-style: none; font-size: 12px; color: #334155;
  padding: 3px 0; padding-left: 18px;
  position: relative;
}
.pricing-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: #1d4ed8; font-weight: 700;
}
.pricing-card .btn-plan {
  display: block; padding: 10px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  border: 1.5px solid #1d4ed8; color: #1d4ed8;
  transition: all 0.2s;
}
.pricing-card .btn-plan:hover { background: #1d4ed8; color: #fff; }
.pricing-card.recommended .btn-plan {
  background: #1d4ed8; color: #fff;
}
.pricing-card.recommended .btn-plan:hover { background: #1e40af; }
.pricing-note { text-align: center; font-size: 12px; color: #94a3b8; margin-bottom: 40px; }

/* Comparison Table */
.comparison-section { padding-bottom: 60px; }
.comparison-section h2 { text-align: center; font-size: 22px; font-weight: 700; color: #0f1f3e; margin-bottom: 24px; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.comparison-table th, .comparison-table td {
  padding: 10px 12px; text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.comparison-table th { background: #f8fafc; color: #334155; font-weight: 600; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table th.recommended-col { background: #eef2ff; color: #1d4ed8; }
.comparison-table td.recommended-col { background: #fafbff; }

/* Recommend section */
.recommend-section { padding: 60px 0; }
.recommend-section h2 { text-align: center; font-size: 22px; font-weight: 700; color: #0f1f3e; margin-bottom: 32px; }
.recommend-cards { display: flex; gap: 20px; justify-content: center; }
.recommend-card {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 24px; text-align: center;
  width: 220px;
}
.recommend-card h4 { font-size: 15px; font-weight: 700; color: #0f1f3e; margin: 8px 0; }
.recommend-card p { font-size: 12px; color: #64748b; }
.recommend-icon {
  width: 48px; height: 48px; background: #eef2ff;
  border-radius: 12px; display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 8px;
}

/* FAQ on pricing */
.faq-section-simple { padding: 40px 0 60px; }
.faq-section-simple h2 {
  text-align: center; font-size: 22px; font-weight: 700;
  color: #0f1f3e; margin-bottom: 24px;
}
.faq-item-simple {
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
}
.faq-item-simple summary {
  font-size: 14px; font-weight: 600; color: #0f1f3e;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 8px;
}
.faq-item-simple summary::before { content: 'Q.'; color: #1d4ed8; font-weight: 700; }
.faq-item-simple summary::after {
  content: '∨'; margin-left: auto; color: #94a3b8;
  transition: transform 0.2s;
}
.faq-item-simple[open] summary::after { transform: rotate(180deg); }
.faq-item-simple .faq-answer {
  padding: 10px 0 4px 24px; font-size: 13px; color: #475569;
}

/* ===== Flow Page ===== */
.flow-hero {
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
}

.steps-section { padding: 60px 0; }
.steps-section h2 {
  text-align: center; font-size: 24px; font-weight: 700;
  color: #0f1f3e; margin-bottom: 40px;
}
.steps {
  display: flex; gap: 16px; justify-content: center;
  margin-bottom: 48px; flex-wrap: wrap;
}
.step {
  text-align: center; width: 180px;
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: #1d4ed8; color: #fff;
  font-size: 20px; font-weight: 800;
  margin-bottom: 12px;
}
.step-icon {
  font-size: 32px; margin-bottom: 8px; color: #334155;
}
.step h4 { font-size: 15px; font-weight: 700; color: #0f1f3e; margin-bottom: 6px; }
.step p { font-size: 11px; color: #64748b; }
.step + .step::before {
  content: '>';
  position: absolute; left: -14px; top: 20px;
  font-size: 18px; color: #cbd5e1;
}
.step-note {
  text-align: center; font-size: 13px; color: #64748b;
  background: #f8fafc; padding: 16px; border-radius: 8px;
  margin-top: 24px;
}
.step-note::before { content: '💡 '; }

/* Check items */
.check-section { padding: 40px 0; }
.check-section h2 {
  text-align: center; font-size: 22px; font-weight: 700;
  color: #0f1f3e; margin-bottom: 32px;
}
.check-cards { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.check-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 20px; width: 190px;
  text-align: center;
}
.check-card-icon { font-size: 28px; margin-bottom: 8px; }
.check-card h4 { font-size: 13px; font-weight: 700; color: #0f1f3e; margin-bottom: 8px; }
.check-card ul { list-style: none; text-align: left; font-size: 11px; color: #475569; }
.check-card ul li { padding: 2px 0; }
.check-card ul li::before { content: '✓ '; color: #1d4ed8; font-weight: 700; }

/* Schedule */
.schedule-section { padding: 40px 0; }
.schedule-section h2 {
  text-align: center; font-size: 20px; font-weight: 700;
  color: #0f1f3e; margin-bottom: 28px;
}
.schedule-timeline {
  display: flex; gap: 24px; justify-content: center;
  margin-bottom: 16px;
}
.schedule-item { text-align: center; width: 200px; }
.schedule-item .step-num { width: 36px; height: 36px; font-size: 16px; }
.schedule-item h4 { font-size: 14px; font-weight: 700; color: #0f1f3e; margin: 6px 0 4px; }
.schedule-item p { font-size: 11px; color: #64748b; }
.schedule-note { text-align: center; font-size: 12px; color: #94a3b8; margin-top: 12px; }

/* Pattern section */
.pattern-section { padding: 40px 0 60px; }
.pattern-section h2 {
  text-align: center; font-size: 22px; font-weight: 700;
  color: #0f1f3e; margin-bottom: 32px;
}
.pattern-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.pattern-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 24px; width: 300px;
}
.pattern-tag {
  display: inline-block; padding: 2px 10px; border-radius: 4px;
  background: #eef2ff; color: #1d4ed8;
  font-size: 11px; font-weight: 600; margin-bottom: 8px;
}
.pattern-card h4 { font-size: 15px; font-weight: 700; color: #0f1f3e; margin-bottom: 8px; }
.pattern-card ul { list-style: none; font-size: 12px; color: #475569; margin-bottom: 8px; }
.pattern-card ul li { padding: 2px 0; }
.pattern-card ul li::before { content: '✓ '; color: #1d4ed8; font-weight: 700; }
.pattern-card .pattern-start { font-size: 11px; color: #64748b; }

/* ===== Voice Page ===== */
.voice-hero {
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
}
.voice-hero .hero-text h1 { font-size: 34px; }
.voice-hero .hero-text .highlight-red { color: #1d4ed8; }

.voice-cards-section { padding: 60px 0; }
.voice-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voice-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 16px; padding: 28px;
  transition: box-shadow 0.3s;
}
.voice-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.voice-card-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.voice-card-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: #eef2ff; display: flex;
  align-items: center; justify-content: center;
  font-size: 10px; color: #1d4ed8; font-weight: 700;
  border: 2px solid #e2e8f0;
}
.voice-card-company { font-size: 14px; font-weight: 700; color: #0f1f3e; }
.voice-card-info { font-size: 12px; color: #64748b; }
.voice-card h3 { font-size: 16px; font-weight: 800; color: #0f1f3e; margin-bottom: 10px; line-height: 1.5; }
.voice-card p { font-size: 13px; color: #475569; line-height: 1.7; }

.stats-badge {
  background: #eef2ff; border: 2px solid #1d4ed8;
  border-radius: 16px; padding: 28px; text-align: center;
  display: flex; flex-direction: column;
  justify-content: center;
}
.stats-badge .big-num { font-size: 42px; font-weight: 800; color: #1d4ed8; }
.stats-badge .big-label { font-size: 14px; font-weight: 600; color: #0f1f3e; }
.stats-badge .stats-sub { font-size: 11px; color: #64748b; margin-top: 12px; text-align: left; }

/* Case study */
.case-study { padding: 40px 0; }
.case-study-card {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 16px; padding: 32px;
}
.case-label {
  display: inline-block; background: #1d4ed8; color: #fff;
  padding: 3px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 700; margin-bottom: 8px;
}
.case-title { font-size: 18px; font-weight: 700; color: #0f1f3e; margin-bottom: 20px; }
.case-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.case-table th, .case-table td {
  padding: 10px 16px; border-bottom: 1px solid #e2e8f0;
}
.case-table th { text-align: left; font-weight: 600; color: #334155; background: #f1f5f9; }
.case-table .before { color: #64748b; }
.case-table .after { color: #1d4ed8; font-weight: 700; }
.case-table .improvement {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  background: #dcfce7; color: #16a34a; font-size: 11px; font-weight: 600;
}

/* Evaluation points */
.eval-section { padding: 40px 0; }
.eval-section h2 { text-align: center; font-size: 22px; font-weight: 700; color: #0f1f3e; margin-bottom: 28px; }
.eval-cards { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.eval-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 24px; width: 230px;
  text-align: center;
}
.eval-card-icon {
  font-size: 28px; margin-bottom: 8px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #eef2ff; display: inline-flex;
  align-items: center; justify-content: center;
}
.eval-card h4 { font-size: 14px; font-weight: 700; color: #0f1f3e; margin-bottom: 6px; }
.eval-card p { font-size: 12px; color: #64748b; }

/* ===== FAQ Page ===== */
.faq-hero {
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
}
.faq-hero h1 { font-size: 32px; }

.faq-layout {
  display: flex; gap: 40px; padding: 60px 0;
}
.faq-main { flex: 1; }
.faq-sidebar { width: 280px; flex-shrink: 0; }

.faq-category { margin-bottom: 40px; }
.faq-category-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 16px;
}
.faq-cat-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #1d4ed8; color: #fff;
  font-size: 16px; font-weight: 800;
}
.faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.faq-item summary {
  font-size: 14px; font-weight: 600; color: #0f1f3e;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 8px;
  padding: 14px 0;
}
.faq-item summary .q-mark {
  color: #1d4ed8; font-weight: 700; flex-shrink: 0;
}
.faq-item summary .faq-arrow {
  margin-left: auto; color: #94a3b8;
  transition: transform 0.2s; flex-shrink: 0;
}
.faq-item[open] summary .faq-arrow { transform: rotate(180deg); }
.faq-item .faq-answer-content {
  padding: 0 0 14px 24px; font-size: 13px; color: #475569;
  line-height: 1.7;
}
.faq-item .faq-answer-content .a-mark {
  color: #dc2626; font-weight: 700;
}

/* FAQ Sidebar */
.faq-sidebar-card {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 20px;
  margin-bottom: 16px;
}
.faq-sidebar-title { font-size: 15px; font-weight: 700; color: #0f1f3e; margin-bottom: 12px; }
.sidebar-cta {
  display: block; text-align: center;
  padding: 14px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.sidebar-cta.line-cta { background: #06c755; color: #fff; }
.sidebar-cta.line-cta:hover { background: #05a847; }
.sidebar-cta.mail-cta { background: #1d4ed8; color: #fff; }
.sidebar-cta.mail-cta:hover { background: #1e40af; }
.sidebar-cta-sub { font-size: 10px; color: #94a3b8; text-align: center; margin-top: -4px; margin-bottom: 10px; }
.sidebar-phone { font-size: 20px; font-weight: 800; color: #0f1f3e; text-align: center; margin-bottom: 4px; }
.sidebar-phone-hours { font-size: 11px; color: #94a3b8; text-align: center; }
.sidebar-link {
  display: block; padding: 10px 0; font-size: 13px;
  color: #334155; border-bottom: 1px solid #e2e8f0;
}
.sidebar-link:hover { color: #1d4ed8; }
.sidebar-link::after { content: ' >'; color: #94a3b8; }

.sidebar-check-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 16px; margin-bottom: 10px;
}
.sidebar-check-title { font-size: 14px; font-weight: 700; color: #0f1f3e; margin-bottom: 12px; }
.sidebar-check-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px; border: 1px solid #e2e8f0;
  border-radius: 8px; margin-bottom: 8px;
}
.sidebar-check-icon { font-size: 20px; flex-shrink: 0; }
.sidebar-check-item h5 { font-size: 12px; font-weight: 700; color: #0f1f3e; margin-bottom: 2px; }
.sidebar-check-item p { font-size: 10px; color: #64748b; }
.sidebar-flow-link {
  display: block; text-align: center;
  padding: 10px; border-radius: 8px;
  border: 1.5px solid #1d4ed8; color: #1d4ed8;
  font-size: 13px; font-weight: 600;
  margin-top: 8px;
}
.sidebar-flow-link:hover { background: #eef2ff; }

/* ===== CTA Section Bottom ===== */
.cta-bottom {
  background: #eef2ff; padding: 48px 0; text-align: center;
}
.cta-bottom h2 { font-size: 24px; font-weight: 800; color: #0f1f3e; margin-bottom: 8px; }
.cta-bottom .highlight { color: #1d4ed8; }
.cta-bottom p { font-size: 13px; color: #64748b; margin-bottom: 24px; }

/* ===== Logo X Mark ===== */
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  border-radius: 8px;
  color: #fff; font-weight: 800; font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(29,78,216,0.25);
  letter-spacing: -1px;
}
.header-logo a {
  display: flex; align-items: center; gap: 10px;
}

/* ===== Privacy & Terms Pages ===== */
.legal-hero {
  padding: 40px 0 48px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
}
.legal-hero h1 {
  font-size: 32px; font-weight: 800; color: #0f1f3e;
}
.legal-intro {
  font-size: 13px; color: #475569; margin-bottom: 32px; line-height: 1.8;
}
.legal-section {
  padding: 60px 0;
}
.legal-item {
  margin-bottom: 32px;
}
.legal-item-title {
  display: flex; align-items: center; gap: 12px;
  font-size: 18px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 12px;
}
.legal-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #1d4ed8; color: #fff;
  font-size: 16px; font-weight: 800;
  flex-shrink: 0;
}
.legal-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #eef2ff; color: #1d4ed8;
  font-size: 16px; flex-shrink: 0;
}
.legal-item p, .legal-item ul {
  font-size: 13px; color: #475569; line-height: 1.8;
  padding-left: 48px;
}
.legal-item ul { list-style: none; }
.legal-item ul li::before { content: '・'; }
.legal-contact-box {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 24px;
  margin-top: 16px;
}
.legal-contact-box h4 {
  font-size: 15px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 12px;
}
.legal-contact-box p {
  font-size: 13px; color: #475569; line-height: 1.8;
  padding-left: 0;
}
.legal-contact-box .contact-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #334155; padding: 4px 0;
}
.legal-contact-box .contact-row svg {
  flex-shrink: 0;
}
.back-home {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 32px; border: 1.5px solid #e2e8f0;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  color: #334155; transition: all 0.2s;
  margin-top: 32px;
}
.back-home:hover { border-color: #1d4ed8; color: #1d4ed8; }

/* ===== Homepage ===== */
.campaign-bar {
  background: #1d4ed8; color: #fff;
  padding: 10px 0; text-align: center;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.campaign-bar .camp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15); padding: 4px 14px;
  border-radius: 20px; font-size: 12px;
}
.campaign-bar .camp-text { font-size: 13px; }
.campaign-bar .camp-highlight { color: #fbbf24; font-weight: 800; }

.home-hero {
  padding: 40px 0 32px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
}
.home-hero-inner {
  display: flex; align-items: flex-start; gap: 32px;
}
.home-hero-text { flex: 1; padding-top: 8px; }
.home-hero-text h1 {
  font-size: 32px; font-weight: 800; line-height: 1.4;
  color: #0f1f3e; margin-bottom: 12px;
}
.home-hero-text > p {
  font-size: 13px; color: #475569; margin-bottom: 20px; line-height: 1.8;
}
.home-hero-image { flex: 1.3; position: relative; display: flex; gap: 12px; align-items: flex-start; }
.home-line-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 40px; border-radius: 8px;
  background: #06c755; color: #fff;
  font-size: 15px; font-weight: 700;
  transition: all 0.2s; margin-bottom: 6px;
  border: 2px solid #06c755;
}
.home-line-btn .line-logo {
  display: inline-block; background: #fff; color: #06c755;
  font-weight: 800; font-size: 10px; padding: 2px 6px;
  border-radius: 3px;
}
.home-line-btn:hover { background: #05a847; border-color: #05a847; }
.home-line-sub { font-size: 11px; color: #94a3b8; margin-bottom: 20px; }

.hero-badges-row {
  display: flex; gap: 16px; margin-top: 8px;
}
.hero-badge-item {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 8px; padding: 10px 14px;
  font-size: 11px; color: #334155; font-weight: 500;
  flex: 1;
}
.hero-badge-item .hb-icon {
  font-size: 18px; flex-shrink: 0;
}

/* Dashboard Mock v2 */
.dash-mock-v2 {
  background: #fff; border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  overflow: hidden; font-size: 9px; flex: 1;
}
.dash-mock-v2 .dm-header {
  background: #0f1f3e; color: #fff;
  padding: 6px 10px; font-weight: 700; font-size: 11px;
  display: flex; align-items: center; gap: 6px;
}
.dash-mock-v2 .dm-body { display: flex; }
.dash-mock-v2 .dm-sidebar {
  background: #0f1f3e; color: #94a3b8;
  padding: 4px 0; width: 90px; flex-shrink: 0;
}
.dash-mock-v2 .dm-sidebar div {
  padding: 3px 8px; font-size: 8px; cursor: default;
}
.dash-mock-v2 .dm-sidebar div.active { color: #fff; background: rgba(255,255,255,0.1); }
.dash-mock-v2 .dm-main { padding: 8px; flex: 1; }
.dm-stats {
  display: flex; gap: 6px; margin-bottom: 8px;
}
.dm-stat-card {
  flex: 1; background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 6px; padding: 6px; text-align: center;
}
.dm-stat-card .dm-label { font-size: 7px; color: #64748b; margin-bottom: 2px; }
.dm-stat-card .dm-value { font-size: 13px; font-weight: 800; color: #0f1f3e; }
.dm-stat-card .dm-sub { font-size: 7px; color: #64748b; }
.dm-chart {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 6px; padding: 6px; margin-bottom: 8px;
  height: 60px; position: relative;
}
.dm-chart .chart-title { font-size: 8px; font-weight: 700; color: #0f1f3e; margin-bottom: 4px; }
.dm-chart svg { width: 100%; height: 36px; }
.dm-schedule {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 6px; padding: 6px; margin-bottom: 6px;
}
.dm-schedule .sch-title { font-size: 8px; font-weight: 700; color: #0f1f3e; margin-bottom: 4px; }
.dm-schedule table { width: 100%; border-collapse: collapse; font-size: 7px; }
.dm-schedule table td { padding: 2px 3px; border-bottom: 1px solid #f1f5f9; }
.dm-unpaid {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 6px; padding: 6px;
}
.dm-unpaid .up-title { font-size: 8px; font-weight: 700; color: #0f1f3e; margin-bottom: 4px; }
.dm-unpaid table { width: 100%; border-collapse: collapse; font-size: 7px; }
.dm-unpaid table td { padding: 2px 3px; border-bottom: 1px solid #f1f5f9; }

/* Phone Mock */
.phone-mock {
  width: 120px; flex-shrink: 0;
  background: #fff; border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  overflow: hidden; border: 2px solid #e2e8f0;
}
.phone-mock .pm-header {
  background: #1d4ed8; color: #fff;
  padding: 6px 8px; font-size: 8px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-mock .pm-body { padding: 4px; font-size: 7px; }
.phone-mock .pm-item {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 4px; padding: 4px; margin-bottom: 3px;
}
.phone-mock .pm-item .pm-name { font-weight: 700; color: #0f1f3e; font-size: 8px; }
.phone-mock .pm-item .pm-info { color: #64748b; font-size: 6px; }
.phone-mock .pm-item .pm-date { color: #94a3b8; font-size: 6px; text-align: right; }

/* 5 Things Section */
.five-things { padding: 48px 0; }
.five-things h2 {
  text-align: center; font-size: 22px; font-weight: 800;
  color: #0f1f3e; margin-bottom: 32px;
}
.five-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.five-card {
  text-align: center; padding: 16px 10px;
}
.five-card .five-icon {
  width: 60px; height: 60px; border-radius: 16px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.five-card:hover .five-icon {
  transform: scale(1.1) rotate(-3deg);
}
.five-icon.icon-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.five-icon.icon-green { background: linear-gradient(135deg, #10b981, #34d399); }
.five-icon.icon-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.five-icon.icon-orange { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.five-icon.icon-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
  font-size: 22px; border: 2px solid #dbe4ff;
}
.five-card h4 {
  font-size: 13px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 6px;
}
.five-card p {
  font-size: 10.5px; color: #64748b; line-height: 1.6;
}

/* Home Pricing */
.home-pricing { padding: 48px 0; background: #f8fafc; }
.home-pricing h2 {
  text-align: center; font-size: 22px; font-weight: 800;
  color: #0f1f3e; margin-bottom: 24px;
}
.home-pricing-layout {
  display: flex; gap: 20px; align-items: flex-start;
}
.home-pricing-cards {
  display: flex; gap: 12px; flex: 1; flex-wrap: wrap;
}
.home-pricing-card {
  background: #fff; border: 1.5px solid #e2e8f0;
  border-radius: 12px; padding: 20px 16px;
  flex: 1; min-width: 180px; position: relative;
}
.home-pricing-card.recommended {
  border-color: #1d4ed8;
  box-shadow: 0 4px 16px rgba(29,78,216,0.12);
}
.home-pricing-card.recommended::before {
  content: 'おすすめ';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #1d4ed8; color: #fff;
  padding: 2px 14px; border-radius: 10px;
  font-size: 10px; font-weight: 700;
}
.home-pricing-card .plan-tag {
  font-size: 10px; color: #64748b; margin-bottom: 4px;
}
.home-pricing-card h4 {
  font-size: 14px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 6px;
}
.home-pricing-card .price {
  font-size: 12px; color: #334155; margin-bottom: 2px;
}
.home-pricing-card .price .amount {
  font-size: 28px; font-weight: 800; color: #0f1f3e;
}
.home-pricing-card .price-sub {
  font-size: 10px; color: #94a3b8; margin-bottom: 12px;
}
.home-pricing-card ul {
  list-style: none; font-size: 11px; color: #334155;
  margin-bottom: 14px;
}
.home-pricing-card ul li { padding: 2px 0 2px 16px; position: relative; }
.home-pricing-card ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: #1d4ed8; font-weight: 700;
}
.home-pricing-card .btn-detail {
  display: block; text-align: center; padding: 8px;
  border-radius: 6px; font-size: 12px; font-weight: 600;
  border: 1.5px solid #1d4ed8; color: #1d4ed8;
  transition: all 0.2s;
}
.home-pricing-card .btn-detail:hover { background: #1d4ed8; color: #fff; }
.home-pricing-card.recommended .btn-detail {
  background: #1d4ed8; color: #fff;
}

/* Plan Compare */
.plan-compare {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 20px; width: 260px; flex-shrink: 0;
}
.plan-compare h4 {
  font-size: 14px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 12px;
}
.plan-tabs {
  display: flex; gap: 4px; margin-bottom: 12px;
}
.plan-tabs span {
  flex: 1; text-align: center; padding: 5px 0;
  font-size: 10px; font-weight: 600; border-radius: 4px;
  cursor: pointer; border: 1px solid #e2e8f0; color: #64748b;
}
.plan-tabs span.active {
  background: #1d4ed8; color: #fff; border-color: #1d4ed8;
}
.plan-compare table {
  width: 100%; border-collapse: collapse; font-size: 10px;
}
.plan-compare table td {
  padding: 4px 0; border-bottom: 1px solid #f1f5f9;
}
.plan-compare table td:last-child {
  text-align: right; color: #94a3b8;
}
.pc-check { color: #1d4ed8; font-weight: 700; }
.pc-tri { color: #f59e0b; }
.pc-dash { color: #cbd5e1; }
.plan-compare .pc-legend {
  font-size: 8px; color: #94a3b8; margin-top: 8px;
  display: flex; gap: 8px;
}

/* Home Steps */
.home-steps { padding: 48px 0; }
.home-steps h2 {
  text-align: center; font-size: 22px; font-weight: 800;
  color: #0f1f3e; margin-bottom: 28px;
}

/* Home Voice */
.home-voice { padding: 48px 0; background: #fff; }
.home-voice h2 {
  text-align: center; font-size: 22px; font-weight: 800;
  color: #0f1f3e; margin-bottom: 24px;
}
.home-voice-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.home-voice-card {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 16px; text-align: center;
}
.home-voice-card .hv-avatar {
  width: 56px; height: 56px; border-radius: 16px;
  margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.home-voice-card:hover .hv-avatar {
  transform: scale(1.1) rotate(-3deg);
}
.hv-avatar.av-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.hv-avatar.av-green { background: linear-gradient(135deg, #10b981, #34d399); }
.hv-avatar.av-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.hv-avatar.av-orange { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.hv-avatar.av-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
.home-voice-card .hv-name {
  font-size: 11px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 8px;
}
.home-voice-card p {
  font-size: 10px; color: #475569; line-height: 1.6;
  text-align: left;
}
.home-voice-link {
  text-align: center; margin-top: 20px;
}
.home-voice-link a {
  font-size: 13px; color: #1d4ed8; font-weight: 600;
}

/* Home FAQ */
.home-faq { padding: 48px 0; background: #f8fafc; }
.home-faq h2 {
  text-align: center; font-size: 22px; font-weight: 800;
  color: #0f1f3e; margin-bottom: 20px;
}
.home-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
  max-width: 800px; margin: 0 auto;
}
.home-faq-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 0; border-bottom: 1px solid #e2e8f0;
  font-size: 13px; color: #334155; cursor: pointer;
}
.home-faq-item::before { content: 'Q'; color: #1d4ed8; font-weight: 700; flex-shrink: 0; }
.home-faq-item::after { content: '>'; margin-left: auto; color: #94a3b8; flex-shrink: 0; }
.home-faq-link {
  text-align: center; margin-top: 16px;
}
.home-faq-link a {
  font-size: 13px; color: #1d4ed8; font-weight: 600;
}

/* CTA Banner v2 */
.cta-banner-v2 {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  padding: 32px 0;
}
.cta-banner-inner {
  display: flex; align-items: center; gap: 24px;
}
.cta-camp-badge {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px; padding: 16px 20px; color: #fff;
  text-align: center; flex-shrink: 0;
}
.cta-camp-badge .ccb-icon { font-size: 24px; margin-bottom: 4px; }
.cta-camp-badge .ccb-title { font-size: 13px; font-weight: 700; }
.cta-camp-badge .ccb-sub { font-size: 10px; opacity: 0.8; }
.cta-banner-content {
  flex: 1;
}
.cta-banner-content h3 {
  font-size: 22px; font-weight: 800; color: #fff;
  margin-bottom: 4px;
}
.cta-banner-content p {
  font-size: 12px; color: rgba(255,255,255,0.7);
}
.cta-banner-btn {
  flex-shrink: 0;
}
.cta-banner-btn a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px;
  background: #06c755; color: #fff;
  font-size: 15px; font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(6,199,85,0.3);
}
.cta-banner-btn a:hover { background: #05a847; }

/* ===== Features Page ===== */
.features-hero-v2 {
  padding: 40px 0 48px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
}
.features-hero-inner {
  display: flex; align-items: flex-start; gap: 40px;
}
.features-hero-text { flex: 1; }
.features-hero-text h1 {
  font-size: 32px; font-weight: 800; color: #0f1f3e;
  margin-bottom: 12px;
}
.features-hero-text p {
  font-size: 14px; color: #475569; line-height: 1.8;
  margin-bottom: 20px;
}
.features-hero-image { flex: 1; }

.feature-list { padding: 60px 0; }
.feature-row {
  display: flex; align-items: flex-start; gap: 40px;
  margin-bottom: 48px; padding-bottom: 48px;
  border-bottom: 1px solid #e2e8f0;
}
.feature-row:last-child { border-bottom: none; }
.feature-row-text { flex: 1; }
.feature-row-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #1d4ed8; color: #fff;
  font-size: 16px; font-weight: 800;
  margin-bottom: 8px;
}
.feature-row-text h3 {
  font-size: 20px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 8px;
}
.feature-row-text p {
  font-size: 13px; color: #475569; line-height: 1.7;
}
.feature-row-mock { flex: 1; }
.feature-row-mock .mini-mock {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 8px; padding: 12px; font-size: 10px;
}
.mini-mock-title {
  font-size: 12px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 8px; padding-bottom: 4px;
  border-bottom: 2px solid #1d4ed8;
}
.mini-mock table {
  width: 100%; border-collapse: collapse; font-size: 10px;
}
.mini-mock table th {
  text-align: left; padding: 4px 6px; color: #64748b;
  border-bottom: 1px solid #e2e8f0; font-weight: 500;
}
.mini-mock table td {
  padding: 4px 6px; border-bottom: 1px solid #f1f5f9;
}

/* Business Flow */
.biz-flow { padding: 40px 0 60px; }
.biz-flow h2 {
  text-align: center; font-size: 22px; font-weight: 700;
  color: #0f1f3e; margin-bottom: 32px;
}
.biz-flow-icons {
  display: flex; justify-content: center; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.biz-flow-item {
  text-align: center; width: 100px;
}
.biz-flow-item .biz-icon {
  width: 52px; height: 52px; border-radius: 14px;
  margin: 0 auto 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.biz-flow-item:hover .biz-icon { transform: scale(1.1) rotate(-3deg); }
.biz-icon.bi-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.biz-icon.bi-green { background: linear-gradient(135deg, #10b981, #34d399); }
.biz-icon.bi-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.biz-icon.bi-orange { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.biz-icon.bi-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
.biz-icon.bi-cyan { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
.biz-icon.bi-red { background: linear-gradient(135deg, #ef4444, #f87171); }
.biz-flow-item p {
  font-size: 11px; font-weight: 600; color: #334155;
}
.biz-flow-arrow {
  font-size: 16px; color: #cbd5e1; margin-top: -16px;
}

/* ===== Updated Pricing Page ===== */
.pricing-hero-v2 {
  padding: 40px 0 48px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
}
.pricing-hero-inner {
  display: flex; align-items: flex-start; gap: 40px;
}
.pricing-hero-text { flex: 1; }
.pricing-hero-text h1 {
  font-size: 32px; font-weight: 800; color: #0f1f3e;
  margin-bottom: 12px;
}
.pricing-hero-text p {
  font-size: 14px; color: #475569; line-height: 1.8;
  margin-bottom: 20px;
}
.pricing-hero-image { flex: 1; }

.pricing-cards-v2 {
  display: flex; gap: 20px; padding: 48px 0 24px;
  justify-content: center; flex-wrap: wrap;
}
.pricing-card-v2 {
  background: #fff; border: 1.5px solid #e2e8f0;
  border-radius: 16px; padding: 28px 24px;
  width: 280px; text-align: center;
  position: relative; transition: box-shadow 0.3s;
}
.pricing-card-v2:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.pricing-card-v2.recommended {
  border-color: #1d4ed8;
  box-shadow: 0 4px 20px rgba(29,78,216,0.15);
}
.pricing-card-v2.recommended::before {
  content: 'おすすめ';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #1d4ed8; color: #fff;
  padding: 3px 16px; border-radius: 12px;
  font-size: 12px; font-weight: 700;
}
.pricing-card-v2 .plan-name {
  font-size: 18px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 4px;
}
.pricing-card-v2 .plan-desc {
  font-size: 11px; color: #64748b; margin-bottom: 12px;
}
.pricing-card-v2 .plan-price {
  font-size: 14px; color: #334155; margin-bottom: 4px;
}
.pricing-card-v2 .plan-price .amount {
  font-size: 32px; font-weight: 800; color: #0f1f3e;
}
.pricing-card-v2 .plan-price .yen { font-size: 14px; }
.pricing-card-v2 .plan-target {
  font-size: 11px; color: #94a3b8; margin-bottom: 16px;
}
.pricing-card-v2 .plan-features {
  text-align: left; margin-bottom: 20px;
}
.pricing-card-v2 .plan-features li {
  list-style: none; font-size: 12px; color: #334155;
  padding: 3px 0 3px 18px; position: relative;
}
.pricing-card-v2 .plan-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: #1d4ed8; font-weight: 700;
}
.pricing-card-v2 .btn-plan-v2 {
  display: block; padding: 10px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  border: 1.5px solid #1d4ed8; color: #1d4ed8;
  transition: all 0.2s;
}
.pricing-card-v2 .btn-plan-v2:hover { background: #1d4ed8; color: #fff; }
.pricing-card-v2.recommended .btn-plan-v2 {
  background: #1d4ed8; color: #fff;
}

/* Comparison v2 */
.comparison-v2 { padding: 40px 0 60px; }
.comparison-v2 h2 {
  text-align: center; font-size: 20px; font-weight: 700;
  color: #0f1f3e; margin-bottom: 24px;
}
.comparison-v2 table {
  width: 100%; border-collapse: collapse; font-size: 12px;
}
.comparison-v2 table th, .comparison-v2 table td {
  padding: 8px 10px; text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.comparison-v2 table th {
  background: #f8fafc; color: #334155; font-weight: 600;
}
.comparison-v2 table th:first-child,
.comparison-v2 table td:first-child {
  text-align: left;
}
.comparison-v2 table th.rec-col {
  background: #eef2ff; color: #1d4ed8;
}
.comparison-v2 table td.rec-col {
  background: #fafbff;
}

/* Recommend v2 */
.recommend-v2 { padding: 40px 0 60px; }
.recommend-v2 h2 {
  text-align: center; font-size: 22px; font-weight: 700;
  color: #0f1f3e; margin-bottom: 32px;
}
.recommend-v2-cards {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.recommend-v2-card {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 24px; width: 300px;
}
.recommend-v2-card h4 {
  font-size: 15px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 8px;
}
.recommend-v2-card p {
  font-size: 12px; color: #475569; line-height: 1.7;
}

/* ===== New Voice Page ===== */
.voice-intro {
  text-align: center; padding: 20px 0 0;
}
.voice-intro p {
  font-size: 14px; color: #475569;
}
.voice-grid-5 {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  padding: 40px 0;
}
.voice-card-v2 {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 16px; padding: 24px; text-align: center;
  transition: box-shadow 0.3s;
}
.voice-card-v2:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.voice-card-v2 .avatar-circle {
  width: 72px; height: 72px; border-radius: 18px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.voice-card-v2:hover .avatar-circle { transform: scale(1.1) rotate(-3deg); }
.avatar-circle.av-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.avatar-circle.av-green { background: linear-gradient(135deg, #10b981, #34d399); }
.avatar-circle.av-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.avatar-circle.av-orange { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.avatar-circle.av-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
.voice-card-v2 .company-label {
  font-size: 12px; color: #64748b; margin-bottom: 4px;
}
.voice-card-v2 .company-name {
  font-size: 14px; font-weight: 700; color: #0f1f3e; margin-bottom: 12px;
}
.voice-card-v2 .quote {
  font-size: 14px; font-weight: 700; color: #0f1f3e;
  line-height: 1.6; margin-bottom: 12px;
  min-height: 60px;
}
.voice-card-v2 .quote::before { content: '「'; }
.voice-card-v2 .quote::after { content: '」'; }
.voice-card-v2 .detail {
  font-size: 11px; color: #475569; line-height: 1.7;
  text-align: left; margin-bottom: 12px;
}
.voice-card-v2 .tags {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.voice-card-v2 .tags span {
  font-size: 10px; color: #1d4ed8; background: #eef2ff;
  padding: 2px 8px; border-radius: 4px;
}
.reasons-section { padding: 60px 0; }
.reasons-section h2 {
  text-align: center; font-size: 24px; font-weight: 800;
  color: #0f1f3e; margin-bottom: 40px;
}
.reasons-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.reason-card {
  text-align: center; padding: 24px;
}
.reason-card .reason-icon {
  width: 60px; height: 60px; border-radius: 16px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.reason-card:hover .reason-icon { transform: scale(1.1) rotate(-3deg); }
.reason-icon.ri-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.reason-icon.ri-green { background: linear-gradient(135deg, #10b981, #34d399); }
.reason-icon.ri-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.reason-icon.ri-orange { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.reason-card h4 {
  font-size: 14px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 8px; line-height: 1.5;
}
.reason-card p {
  font-size: 12px; color: #64748b; line-height: 1.6;
}

/* ===== New Flow Page ===== */
.flow-hero-v2 {
  padding: 40px 0 48px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
  text-align: center;
}
.flow-hero-v2 h1 {
  font-size: 32px; font-weight: 800; color: #0f1f3e;
  margin-bottom: 12px;
}
.flow-hero-v2 p {
  font-size: 14px; color: #475569; margin-bottom: 24px;
}
.flow-line-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; border-radius: 50px;
  background: #06c755; color: #fff;
  font-size: 15px; font-weight: 700;
  transition: all 0.2s;
}
.flow-line-btn:hover { background: #05a847; }
.flow-line-sub {
  font-size: 12px; color: #64748b; margin-top: 8px;
}
.steps-v2 {
  display: flex; gap: 12px; justify-content: center;
  padding: 40px 0; flex-wrap: wrap;
}
.step-v2 {
  text-align: center; width: 180px;
  position: relative;
}
.step-v2 .step-num-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: #1d4ed8; color: #fff;
  font-size: 14px; font-weight: 800;
  margin-bottom: 8px;
}
.step-v2 .step-icon-box {
  width: 64px; height: 64px; border-radius: 16px;
  margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.step-v2:hover .step-icon-box {
  transform: scale(1.1) rotate(-3deg);
}
.step-icon-box.si-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.step-icon-box.si-green { background: linear-gradient(135deg, #10b981, #34d399); }
.step-icon-box.si-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.step-icon-box.si-orange { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.step-icon-box.si-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
.step-v2 h4 {
  font-size: 14px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 6px;
}
.step-v2 p {
  font-size: 11px; color: #64748b; line-height: 1.5;
}
.step-v2 .step-time {
  font-size: 11px; color: #94a3b8; margin-top: 4px;
}
.step-v2 + .step-v2::before {
  content: '>';
  position: absolute; left: -10px; top: 56px;
  font-size: 18px; color: #cbd5e1;
}
.step-format-note {
  text-align: center; font-size: 13px; color: #64748b;
  background: #f8fafc; padding: 12px 24px; border-radius: 8px;
  display: inline-block;
}
.check-grid-v2 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 32px 0;
}
.check-card-v2 {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 20px; text-align: center;
}
.check-card-v2 .check-icon-box {
  width: 52px; height: 52px; border-radius: 14px;
  margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.check-card-v2:hover .check-icon-box { transform: scale(1.1) rotate(-3deg); }
.check-icon-box.ci-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.check-icon-box.ci-green { background: linear-gradient(135deg, #10b981, #34d399); }
.check-icon-box.ci-orange { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.check-icon-box.ci-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
.check-card-v2 h4 {
  font-size: 13px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 8px;
}
.check-card-v2 ul {
  list-style: none; text-align: left; font-size: 11px; color: #475569;
}
.check-card-v2 ul li { padding: 2px 0; }
.check-card-v2 ul li::before { content: '✓ '; color: #1d4ed8; font-weight: 700; }
.schedule-badge {
  background: #1d4ed8; color: #fff;
  border-radius: 12px; padding: 16px 32px;
  display: inline-block; text-align: center;
}
.schedule-badge .badge-top {
  font-size: 12px; font-weight: 600; margin-bottom: 4px;
}
.schedule-badge .badge-big {
  font-size: 22px; font-weight: 800;
}

/* ===== New FAQ Page ===== */
.faq-hero-v2 {
  padding: 40px 0 48px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
}
.faq-hero-v2 h1 {
  font-size: 32px; font-weight: 800; color: #0f1f3e;
  margin-bottom: 8px;
}
.faq-hero-v2 p {
  font-size: 14px; color: #475569;
}
.faq-hero-inner {
  display: flex; align-items: flex-start; gap: 40px;
}
.faq-hero-text { flex: 1; }
.faq-hero-image {
  flex: 0 0 320px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden; padding: 16px;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: #eef2ff; padding: 40px 0; text-align: center;
}
.cta-banner h3 {
  font-size: 20px; font-weight: 700; color: #0f1f3e;
  margin-bottom: 8px;
}
.cta-banner p {
  font-size: 13px; color: #64748b; margin-bottom: 20px;
}

/* ===== Fixed Mobile LINE Button ===== */
.mobile-fixed-line {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: #06c755;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.mobile-fixed-line a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #fff; font-size: 16px; font-weight: 700;
  text-decoration: none;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 900px) {
  .hero-inner, .pricing-hero .hero-inner { flex-direction: column; }
  .hero-image { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .voice-cards { grid-template-columns: 1fr; }
  .pricing-cards { flex-direction: column; align-items: center; }
  .pricing-card { width: 280px; }
  .faq-layout { flex-direction: column; }
  .faq-sidebar { width: 100%; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-contact { text-align: left; }
  .header-nav { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .step + .step::before { display: none; }
  .schedule-timeline { flex-direction: column; align-items: center; }
  .pattern-cards { flex-direction: column; align-items: center; }
  .check-cards { flex-direction: column; align-items: center; }
  .recommend-cards { flex-direction: column; align-items: center; }
  .eval-cards { flex-direction: column; align-items: center; }
  .home-hero-inner { flex-direction: column; }
  .home-hero-image { display: none; }
  .five-grid { grid-template-columns: repeat(3, 1fr); }
  .home-pricing-layout { flex-direction: column; }
  .home-pricing-cards {
    flex-direction: row; flex-wrap: nowrap;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 16px; padding: 0 4px 16px;
    scrollbar-width: none;
  }
  .home-pricing-cards::-webkit-scrollbar { display: none; }
  .home-pricing-card {
    flex: 0 0 85%; min-width: 0; max-width: 85%;
    scroll-snap-align: center;
  }
  .plan-compare { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .home-voice-grid { grid-template-columns: repeat(2, 1fr); }
  .home-faq-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .features-hero-inner { flex-direction: column; }
  .features-hero-image { display: none; }
  .feature-row { flex-direction: column; }
  .biz-flow-icons { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .pricing-hero-inner { flex-direction: column; }
  .pricing-hero-image { display: none; }
  .pricing-cards-v2 {
    flex-direction: row; flex-wrap: nowrap;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 16px; padding: 0 4px 16px;
    scrollbar-width: none;
  }
  .pricing-cards-v2::-webkit-scrollbar { display: none; }
  .pricing-card-v2 {
    flex: 0 0 85%; min-width: 0; max-width: 85%;
    scroll-snap-align: center;
  }
  .recommend-v2-cards { flex-direction: column; align-items: center; }
  .voice-grid-5 { grid-template-columns: 1fr 1fr; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .check-grid-v2 { grid-template-columns: 1fr 1fr; }
  .faq-hero-inner { flex-direction: column; }
  .faq-hero-image { display: none; }
  .steps-v2 { flex-direction: column; align-items: center; }
  .step-v2 + .step-v2::before { display: none; }
  .mobile-fixed-line { display: block; }
  body { padding-bottom: 60px; }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 600px) {
  .container { padding: 0 16px; }

  /* Header */
  .header-inner { height: 56px; padding: 0 16px; }
  .logo-text { font-size: 20px; }
  .logo-sub { display: none; }
  .header-cta .btn-primary-header,
  .header-cta .btn-line { font-size: 12px; padding: 6px 12px; }

  /* Campaign bar */
  .campaign-bar { font-size: 11px; padding: 8px 12px; flex-wrap: wrap; justify-content: center; }
  .camp-badge { font-size: 10px; padding: 3px 8px; }

  /* Hero */
  .home-hero { padding: 32px 0 24px; }
  .home-hero h1 { font-size: 26px; line-height: 1.4; }
  .home-hero p { font-size: 14px; line-height: 1.7; }
  .home-hero p br { display: none; }
  .home-line-btn { font-size: 16px; padding: 14px 32px; width: 100%; justify-content: center; }
  .hero-badges-row { flex-direction: column; gap: 8px; }
  .hero-badge-item { width: 100%; }

  /* 5 Things */
  .five-things { padding: 32px 0; }
  .five-things h2 { font-size: 20px; margin-bottom: 20px; }
  .five-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .five-card h4 { font-size: 13px; }
  .five-card p { font-size: 11px; }

  /* Pricing */
  .home-pricing h2 { font-size: 20px; }
  .home-pricing-cards { gap: 12px; padding: 0 8px 16px; }
  .home-pricing-card { flex: 0 0 88%; max-width: 88%; }
  .plan-compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .plan-compare table { min-width: 500px; }

  /* Steps */
  .home-steps h2, .steps-section h2 { font-size: 20px; }
  .steps-v2 { gap: 16px; }
  .step-v2 { width: 100%; max-width: 100%; }
  .step-v2 p { font-size: 12px; }

  /* Voice */
  .home-voice h2 { font-size: 20px; }
  .home-voice-grid { grid-template-columns: 1fr; gap: 12px; }
  .voice-grid-5 { grid-template-columns: 1fr; }

  /* FAQ */
  .home-faq h2 { font-size: 20px; }
  .home-faq-item { font-size: 13px; padding: 12px 16px; }

  /* CTA Banner */
  .cta-banner h3, .cta-banner-v2 h3 { font-size: 18px; }
  .cta-banner p, .cta-banner-v2 p { font-size: 12px; }
  .cta-banner-inner { padding: 24px 16px; gap: 16px; }
  .cta-banner-btn a { font-size: 16px; padding: 14px 32px; }
  .btn-line-large { font-size: 16px; padding: 14px 32px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 20px; }
  .footer-links { flex-direction: column; gap: 16px; }
  .footer-brand { text-align: center; }
  .footer-logo { font-size: 18px; }
  .footer-desc { font-size: 11px; }

  /* Breadcrumb */
  .breadcrumb { font-size: 11px; }

  /* Legal pages */
  .legal-hero h1 { font-size: 24px; }
  .legal-section p { font-size: 13px; }

  /* Features page */
  .features-hero-v2 h1 { font-size: 26px; }
  .features-hero-v2 p { font-size: 13px; }
  .features-hero-v2 p br { display: none; }
  .feature-row-text h3 { font-size: 20px; }
  .feature-row-text p { font-size: 13px; }
  .feature-row-text p br { display: none; }
  .biz-flow-icons { gap: 6px; }
  .biz-icon { width: 44px; height: 44px; }
  .biz-icon svg { width: 18px; height: 18px; }
  .biz-flow-item p { font-size: 9px; }
  .biz-flow-arrow { font-size: 14px; }

  /* Pricing page */
  .pricing-hero-v2 h1 { font-size: 26px; }
  .pricing-hero-v2 p { font-size: 13px; }
  .pricing-hero-v2 p br { display: none; }
  .pricing-card-v2 { flex: 0 0 88%; max-width: 88%; }
  .compare-table-v2 { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table-v2 table { min-width: 500px; }

  /* Flow page */
  .flow-hero h1 { font-size: 26px; }
  .check-grid-v2 { grid-template-columns: 1fr; }

  /* Voice page */
  .reasons-grid { grid-template-columns: 1fr; }
  .reason-card { padding: 20px; }

  /* FAQ page */
  .faq-hero-v2 h1 { font-size: 26px; }
  .faq-hero-v2 p { font-size: 13px; }
  .faq-item summary { font-size: 14px; padding: 14px 16px; }
  .faq-answer-content { font-size: 13px; padding: 12px 16px; }

  /* Buttons - touch friendly */
  .btn-line, .btn-primary-header, .home-line-btn, .flow-line-btn,
  .btn-line-large, .btn-detail, .sidebar-cta { min-height: 44px; }
}
