/* ===== LP Global ===== */
body.lp-standalone {
  margin: 0;
  padding: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
}
.lp-accent { color: #0066ff; }
.pc-only { display: inline; }
.sp-only { display: none; }

/* LP Custom Template - full width */
#lp-main {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}
#lp-main a {
  text-decoration: none;
}

/* LP Footer */
.lp-footer {
  background: #1a1a1a;
  color: #999;
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
}
.lp-footer p {
  margin: 0;
}

/* ===== Hero Section ===== */
.lp-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a2d50 50%, #0d1f3c 100%);
  padding: 60px 0 80px;
  color: #fff;
}
.lp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.lp-hero-left {
  flex: 1;
  padding-top: 20px;
}
.lp-hero-label {
  display: inline-block;
  background: rgba(0, 102, 255, 0.2);
  border: 1px solid rgba(0, 102, 255, 0.5);
  color: #6db3ff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.lp-hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 20px;
  color: #fff;
}
.lp-hero-title .lp-accent {
  color: #4d9fff;
}
.lp-hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: #b0c4de;
  margin-bottom: 24px;
}
.lp-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lp-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #e0e8f0;
}

/* Hero Form */
.lp-hero-right {
  width: 420px;
  flex-shrink: 0;
}
.lp-hero-right .wpcf7 {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hero-form-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a2d50;
  text-align: center;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}
.lp-hero-right .wpcf7 label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.lp-hero-right .wpcf7 input[type="text"],
.lp-hero-right .wpcf7 input[type="email"],
.lp-hero-right .wpcf7 input[type="tel"],
.lp-hero-right .wpcf7 select,
.lp-hero-right .wpcf7 textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #f9fafb;
  margin-top: 4px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.lp-hero-right .wpcf7 input:focus,
.lp-hero-right .wpcf7 select:focus,
.lp-hero-right .wpcf7 textarea:focus {
  outline: none;
  border-color: #0066ff;
  background: #fff;
}
.lp-hero-right .wpcf7 textarea {
  resize: vertical;
  min-height: 80px;
}
.lp-hero-right .wpcf7 input[type="submit"] {
  width: 100%;
  padding: 14px;
  background: #0066ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.lp-hero-right .wpcf7 input[type="submit"]:hover {
  background: #0052cc;
}

/* ===== Numbers Section ===== */
.lp-numbers {
  background: #fff;
  padding: 48px 0;
  border-bottom: 1px solid #eee;
}
.lp-numbers-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.lp-number-value {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #0066ff;
  line-height: 1.2;
}
.lp-number-value small {
  font-size: 24px;
}
.lp-number-label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 4px;
  font-weight: 500;
}

/* ===== Section Base ===== */
.lp-section {
  padding: 80px 0;
}
.lp-section > .lp-container,
.lp-cta > .lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 16px;
  color: #1a1a1a;
}
.lp-section-sub {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 48px;
}

/* ===== Problems Section ===== */
.lp-problems {
  background: #f7f9fc;
}
.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.lp-problem-card {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.lp-problem-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.lp-problem-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.lp-problem-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}
.lp-problem-answer {
  text-align: center;
  font-size: 18px;
  color: #0066ff;
  font-weight: 700;
}

/* ===== Services Section ===== */
.lp-services {
  background: #fff;
}
.lp-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lp-service-card {
  background: #f9fafb;
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 36px 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.lp-service-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.lp-service-num {
  font-size: 14px;
  font-weight: 800;
  color: #0066ff;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.lp-service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #1a1a1a;
}
.lp-service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}
.lp-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.lp-service-card ul li {
  font-size: 13px;
  color: #444;
  padding: 4px 0 4px 20px;
  position: relative;
}
.lp-service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0066ff;
  font-weight: 700;
}
.lp-service-link {
  font-size: 14px;
  font-weight: 600;
  color: #0066ff;
  text-decoration: none;
}
.lp-service-link:hover {
  text-decoration: underline;
}

/* ===== Why Section ===== */
.lp-why {
  background: #f7f9fc;
}
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #e8ecf0;
  transition: box-shadow 0.2s;
}
.lp-why-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.lp-why-num {
  display: inline-block;
  background: #0066ff;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}
.lp-why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #1a1a1a;
  line-height: 1.5;
}
.lp-why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ===== Flow Section ===== */
.lp-flow {
  background: #fff;
}
.lp-flow-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}
.lp-flow-step {
  background: #f9fafb;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  flex: 1;
  max-width: 240px;
}
.lp-flow-num {
  font-size: 12px;
  font-weight: 800;
  color: #0066ff;
  background: rgba(0, 102, 255, 0.08);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.lp-flow-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a1a1a;
}
.lp-flow-step p {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}
.lp-flow-arrow {
  color: #ccc;
  font-size: 24px;
  padding-top: 48px;
  flex-shrink: 0;
}

/* ===== CTA Section ===== */
.lp-cta {
  background: linear-gradient(135deg, #0a1628 0%, #1a2d50 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.lp-cta-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
}
.lp-cta-sub {
  font-size: 16px;
  color: #b0c4de;
  margin-bottom: 32px;
  line-height: 1.8;
}
.lp-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.lp-btn-primary {
  background: #0066ff;
  color: #fff;
}
.lp-btn-primary:hover {
  background: #0052cc;
  color: #fff;
}
.lp-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.lp-btn-secondary:hover {
  border-color: #fff;
  color: #fff;
}

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

  .lp-hero { padding: 40px 0 48px; }
  .lp-hero-inner {
    flex-direction: column;
    gap: 32px;
  }
  .lp-hero-left { padding-top: 0; }
  .lp-hero-title { font-size: 28px; }
  .lp-hero-right { width: 100%; }
  .lp-hero-badges { justify-content: center; }

  .lp-numbers-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .lp-number-value { font-size: 36px; }

  .lp-section { padding: 56px 0; }
  .lp-section-title { font-size: 24px; }

  .lp-problem-grid { grid-template-columns: 1fr; }
  .lp-service-grid { grid-template-columns: 1fr; }
  .lp-why-grid { grid-template-columns: 1fr; }

  .lp-flow-grid {
    flex-direction: column;
    align-items: center;
  }
  .lp-flow-step { max-width: 100%; width: 100%; }
  .lp-flow-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .lp-cta-title { font-size: 24px; }
}
