/* ============================================================
   介護DX SaaS — Global Stylesheet
   ============================================================ */

:root {
  --primary:       #0F766E;
  --primary-light: #CCFBF1;
  --primary-dark:  #0D6B63;
  --text:          #1E293B;
  --text-muted:    #64748B;
  --border:        #E2E8F0;
  --bg:            #F8FAFC;
  --white:         #FFFFFF;
  --danger:        #DC2626;
  --warning:       #D97706;
  --success:       #16A34A;
  --radius:        10px;
}

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

body {
  margin: 0;
  font-family: 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  background: var(--primary);
  color: white;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.logo { color: white; font-size: 16px; font-weight: bold; }
.logo-badge {
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  margin-left: 8px;
}
.header-nav { display: flex; align-items: center; gap: 16px; }
.header-nav a { color: rgba(255,255,255,.85); font-size: 13px; }
.header-nav a:hover { color: white; }
.nav-jigyosho {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  border-right: 1px solid rgba(255,255,255,.2);
  padding-right: 16px;
  margin-right: 4px;
}

/* ── Main ────────────────────────────────────────────────── */
.main-content { padding: 40px 0 60px; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: #1E293B;
  color: #94A3B8;
  padding: 24px 0;
  font-size: 12px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { color: #94A3B8; }
.footer-nav a:hover { color: white; }

/* ── Card ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  margin-bottom: 20px;
}
.card-header {
  font-size: 13px;
  font-weight: bold;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}
.card-sub-header {
  font-size: 13px;
  font-weight: bold;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ── Auth Pages ──────────────────────────────────────────── */
.auth-page { background: var(--bg); }
.auth-card {
  max-width: 440px;
  margin: 60px auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.auth-logo {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 4px;
}
.auth-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.auth-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
}
.auth-btn:hover { background: var(--primary-dark); }
.auth-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}
.auth-footer-link {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Form ────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 6px;
  color: var(--text);
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
}
.form-input:focus { border-color: var(--primary); }
.form-row { display: flex; gap: 10px; }
.form-row .form-input { flex: 1; }
.req { color: var(--danger); }

/* ── Alerts ──────────────────────────────────────────────── */
.alert {
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 13px;
}
.alert-error { background: #FEF2F2; border: 1px solid #FCA5A5; color: var(--danger); }
.alert-success { background: #F0FDF4; border: 1px solid #86EFAC; color: var(--success); }

/* ── Badges ──────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: bold;
}
.badge-green  { background: #DCFCE7; color: #166534; }
.badge-blue   { background: #DBEAFE; color: #1E40AF; }
.badge-yellow { background: #FEF9C3; color: #92400E; }
.badge-red    { background: #FEE2E2; color: #991B1B; }
.badge-gray   { background: #F1F5F9; color: #475569; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-sm {
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}
.btn-sm:hover { background: var(--bg); }
.btn-sm.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ── Plan Grid ───────────────────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.plan-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  cursor: pointer;
  transition: border-color .15s;
}
.plan-card:hover { border-color: var(--primary); }
.plan-card.selected { border-color: var(--primary); background: var(--primary-light); }
.plan-card input[type=radio] { display: none; }
.plan-name { font-weight: bold; font-size: 15px; margin-bottom: 4px; }
.plan-price { font-size: 24px; font-weight: bold; color: var(--primary); margin-bottom: 10px; }
.plan-price span { font-size: 13px; color: var(--text-muted); }
.plan-features { margin: 0; padding-left: 18px; font-size: 12px; color: var(--text-muted); }
.plan-features li { margin-bottom: 4px; }
.badge-popular {
  background: var(--primary);
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 6px;
  vertical-align: middle;
}
.badge-soon {
  background: #E2E8F0;
  color: #64748B;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 6px;
  vertical-align: middle;
}
.plan-grid-single { grid-template-columns: 1fr 1fr; }
.plan-card-future {
  opacity: 0.55;
  cursor: default;
  border-style: dashed;
}
.agree-row label { display: flex; align-items: center; gap: 8px; font-weight: normal; }

/* ── Dashboard Grid ──────────────────────────────────────── */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.card-status  { }
.card-license { }
.card-drive   { grid-column: 1 / -1; }
.card-upload  { grid-column: 1 / -1; }

.status-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.status-date { font-size: 12px; color: var(--text-muted); }
.jigyosho-name { font-size: 20px; font-weight: bold; }

.license-key {
  font-family: monospace;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.license-note { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }

.drive-done { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.check-icon { font-size: 24px; }
.drive-link { margin-left: 8px; }

.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
.upload-icon { font-size: 36px; margin-bottom: 10px; }
.user-chip {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 99px;
  padding: 2px 10px;
  font-size: 12px;
  margin: 2px;
}

/* ── Table ───────────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.data-table th, .data-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table th {
  background: var(--bg);
  font-weight: bold;
  color: var(--text-muted);
}
.data-table tr:hover td { background: #F0FDF9; }

/* ── Legal ───────────────────────────────────────────────── */
.legal-page { max-width: 760px; margin: 0 auto; }
.legal-page h1 { font-size: 24px; border-bottom: 2px solid var(--border); padding-bottom: 12px; }
.legal-page h2 { font-size: 16px; margin-top: 28px; color: var(--primary); }
.legal-date { color: var(--text-muted); font-size: 13px; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal-table th, .legal-table td { padding: 12px 16px; border: 1px solid var(--border); }
.legal-table th {
  background: var(--bg);
  width: 200px;
  font-weight: bold;
  vertical-align: top;
}

/* ── Success ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.success-title { font-size: 22px; margin-bottom: 10px; }

/* ── Launch Button ──────────────────────────────────────── */
.btn-launch {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.btn-launch:hover { background: rgba(255,255,255,0.35); }
.card-launch { display: flex; flex-direction: column; justify-content: center; }

/* ============================================================
   Landing Page (LP)
   ============================================================ */

/* ── Hero ── */
.lp-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0D9488 100%);
  color: white;
  padding: 64px 0 72px;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lp-hero-label {
  font-size: 12px;
  background: rgba(255,255,255,.2);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.lp-hero-h1 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 16px;
}
.lp-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 28px;
}
.lp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.lp-btn-primary {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: background .15s;
}
.lp-btn-primary:hover { background: var(--primary-light); text-decoration: none; }
.lp-btn-outline {
  display: inline-block;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.6);
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: border-color .15s;
}
.lp-btn-outline:hover { border-color: white; text-decoration: none; }
.lp-hero-note {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 12px;
}

/* ── モックアップ ── */
.lp-mockup {
  background: #1E293B;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.lp-mockup-bar {
  background: #334155;
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.lp-mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.lp-mockup-body {
  padding: 20px;
  color: white;
}
.lp-mockup-select {
  background: #334155;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.lp-mockup-label { font-size: 12px; color: #94A3B8; }
.lp-mockup-value { font-size: 13px; font-weight: bold; }
.lp-mockup-progress { margin-bottom: 14px; }
.lp-mockup-progress-bar {
  background: #334155;
  border-radius: 99px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 6px;
}
.lp-mockup-progress-fill {
  background: var(--primary);
  width: 70%;
  height: 100%;
  border-radius: 99px;
  animation: lp-progress 2s ease-in-out infinite alternate;
}
@keyframes lp-progress {
  from { width: 60%; } to { width: 85%; }
}
.lp-mockup-progress-text { font-size: 12px; color: #94A3B8; }
.lp-mockup-done {
  background: #14532D;
  color: #86EFAC;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 8px;
}

/* ── Section共通 ── */
.lp-section { padding: 64px 0; }
.lp-section-h2 {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: var(--text);
}
.lp-section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 36px;
}

/* ── 対応サービス ── */
.lp-services { background: var(--bg); }
.lp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}
.lp-service-item {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--text);
}

/* ── 3ステップ ── */
.lp-steps { background: white; }
.lp-step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}
.lp-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.lp-step:last-child { border-bottom: none; }
.lp-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-step-body h3 { font-size: 16px; margin-bottom: 6px; color: var(--text); }
.lp-step-body p { font-size: 13px; color: var(--text-muted); }

/* ── Before/After ── */
.lp-comparison { background: var(--bg); }
.lp-comparison-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}
.lp-comparison-before, .lp-comparison-after {
  flex: 1;
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1.5px solid var(--border);
}
.lp-comparison-after {
  border-color: var(--primary);
  background: #F0FDFA;
}
.lp-comparison-label {
  font-size: 12px;
  font-weight: bold;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.lp-comparison-time {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.lp-comparison-before .lp-comparison-time { color: #94A3B8; }
.lp-comparison-before ul, .lp-comparison-after ul {
  padding-left: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.lp-comparison-after ul { color: var(--text); }
.lp-comparison-arrow {
  font-size: 28px;
  color: var(--primary);
  font-weight: bold;
  flex-shrink: 0;
}

/* ── チラシDL ── */
.lp-dl-section { background: white; padding: 40px 0; }
.lp-dl-box {
  background: var(--primary-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp-dl-text h2 { font-size: 18px; margin-bottom: 6px; }
.lp-dl-text p { font-size: 13px; color: var(--text-muted); }
.lp-dl-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.lp-dl-btn:hover { background: var(--primary-dark); text-decoration: none; }

/* ── 料金 ── */
.lp-pricing { background: var(--bg); }
.lp-price-card {
  max-width: 400px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  text-align: center;
}
.lp-price-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.lp-price-amount {
  font-size: 42px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 20px;
}
.lp-price-amount span { font-size: 14px; color: var(--text-muted); }
.lp-price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  font-size: 14px;
}
.lp-price-features li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.lp-price-features li:last-child { border-bottom: none; }

/* ── LP base layout overrides ── */
.lp-page .main-content { padding: 0; }

/* ── eyebrow ── */
.lp-eyebrow {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.lp-eyebrow-light { color: rgba(255,255,255,.7); }

/* ── hero H1 em ── */
.lp-hero-h1 em {
  font-style: normal;
  font-size: 1.15em;
  color: #CCFBF1;
}

/* ── stat strip ── */
.lp-stat-strip {
  background: #0A5C55;
  padding: 36px 0;
}
.lp-stat-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.lp-stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 16px 24px;
}
.lp-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
.lp-stat-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.lp-stat-before {
  font-size: 22px;
  font-weight: bold;
  color: rgba(255,255,255,.45);
  text-decoration: line-through;
}
.lp-stat-arrow { font-size: 20px; color: rgba(255,255,255,.5); }
.lp-stat-after {
  font-size: 32px;
  font-weight: bold;
  color: #CCFBF1;
  line-height: 1;
}
.lp-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

/* ── pain section ── */
.lp-pain {
  background: #1E293B;
  padding: 72px 0;
  text-align: center;
}
.lp-pain-h2 {
  font-size: 32px;
  font-weight: bold;
  color: white;
  margin-bottom: 40px;
  line-height: 1.4;
}
.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.lp-pain-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 24px 16px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  line-height: 1.7;
}
.lp-pain-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.lp-pain-cta { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.lp-pain-solve {
  font-size: 22px;
  font-weight: bold;
  color: #CCFBF1;
  margin: 0;
}

/* ── audience sections ── */
.lp-audience { padding: 80px 0; }
.lp-audience-mgr { background: white; }
.lp-audience-staff { background: var(--bg); }
.lp-audience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lp-audience-inner-rev { direction: rtl; }
.lp-audience-inner-rev > * { direction: ltr; }
.lp-audience-h2 {
  font-size: 30px;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.lp-audience-lead {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}
.lp-audience-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.lp-audience-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.lp-audience-list li:last-child { border-bottom: none; }
.lp-audience-check {
  color: var(--primary);
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-audience-list strong { display: block; font-size: 15px; margin-bottom: 4px; }
.lp-audience-list p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.7; }

.lp-impact-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 36px 32px;
  color: white;
  text-align: center;
  box-shadow: 0 12px 40px rgba(15,118,110,.3);
}
.lp-impact-card-teal {
  background: #1E293B;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.lp-impact-label { font-size: 12px; opacity: .75; margin-bottom: 16px; }
.lp-impact-num {
  font-size: 64px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
}
.lp-impact-num span { font-size: 24px; }
.lp-impact-sub { font-size: 13px; opacity: .8; }
.lp-impact-list {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 15px;
}
.lp-impact-list li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.lp-impact-list li:last-child { border-bottom: none; }

/* ── features ── */
.lp-features { background: var(--bg); }
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-feature-card {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: box-shadow .2s, border-color .2s;
}
.lp-feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(15,118,110,.1);
}
.lp-feature-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.lp-feature-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--text); }
.lp-feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── CTA band ── */
.lp-cta-band {
  background: var(--primary);
  padding: 72px 0;
  text-align: center;
}
.lp-cta-band-h2 {
  font-size: 34px;
  font-weight: bold;
  color: white;
  margin-bottom: 12px;
  line-height: 1.4;
}
.lp-cta-band-sub {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  margin-bottom: 32px;
}
.lp-cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.lp-btn-lg { font-size: 17px; padding: 16px 36px; }
.lp-btn-outline-white {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.6);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: background .15s;
}
.lp-btn-outline-white:hover { background: rgba(255,255,255,.1); text-decoration: none; color: white; }

/* ── FAQ ── */
.lp-faq { background: white; }
.lp-faq-list { max-width: 720px; margin: 0 auto; }
.lp-faq-item { border-bottom: 1px solid var(--border); }
.lp-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  line-height: 1.5;
}
.lp-faq-q:hover { color: var(--primary); }
.lp-faq-arrow {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--primary);
  transition: transform .2s;
}
.lp-faq-item.open .lp-faq-arrow { transform: rotate(180deg); }
.lp-faq-a {
  display: none;
  padding: 0 0 20px 0;
}
.lp-faq-item.open .lp-faq-a { display: block; }
.lp-faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin: 0; }

/* ── contact section (LP内) ── */
.lp-contact-section { background: var(--bg); }
.lp-contact-box {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.lp-contact-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-textarea { resize: vertical; min-height: 100px; }
.contact-submit { width: 100%; font-size: 16px; padding: 15px; }
.contact-privacy { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }
.contact-alt { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-muted); }
.lp-contact-email { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-muted); }

/* ── contact page ── */
.lp-contact-page { padding: 60px 0; }
.contact-wrap { max-width: 680px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 36px; }
.contact-h1 { font-size: 32px; font-weight: bold; margin-bottom: 10px; }
.contact-sub { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.contact-success { text-align: center; padding: 60px 0; }
.contact-success-icon { font-size: 48px; margin-bottom: 16px; }
.contact-success h2 { font-size: 24px; margin-bottom: 10px; }
.contact-success p { color: var(--text-muted); }

/* ── final CTA ── */
.lp-final-cta {
  background: #0A5C55;
  padding: 90px 0;
  text-align: center;
}
.lp-final-cta-h2 {
  font-size: 42px;
  font-weight: bold;
  color: white;
  margin-bottom: 16px;
  line-height: 1.35;
}
.lp-final-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}
.lp-final-cta-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .card-drive, .card-upload { grid-column: 1; }
  .plan-grid { grid-template-columns: 1fr; }
  .auth-card { margin: 20px 16px; padding: 28px 20px; }
  .footer-inner { flex-direction: column; gap: 12px; }
  /* LP */
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-hero-image { display: none; }
  .lp-hero-h1 { font-size: 28px; }
  .lp-service-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-comparison-grid { flex-direction: column; }
  .lp-comparison-arrow { transform: rotate(90deg); }
  .lp-dl-box { flex-direction: column; text-align: center; }
  /* New LP sections */
  .lp-stat-grid { flex-direction: column; gap: 8px; }
  .lp-stat-divider { width: 80px; height: 1px; }
  .lp-stat-after { font-size: 26px; }
  .lp-stat-before { font-size: 18px; }
  .lp-pain-h2 { font-size: 22px; }
  .lp-pain-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-pain-solve { font-size: 18px; }
  .lp-audience-inner, .lp-audience-inner-rev { grid-template-columns: 1fr; direction: ltr; }
  .lp-audience-h2 { font-size: 24px; }
  .lp-audience-visual { order: -1; }
  .lp-impact-num { font-size: 48px; }
  .lp-feature-grid { grid-template-columns: 1fr; }
  .lp-cta-band-h2 { font-size: 24px; }
  .lp-final-cta-h2 { font-size: 28px; }
  .lp-contact-box { padding: 24px 16px; }
  .lp-contact-form .form-row-2 { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}
