/* ============================================
   Jingas LP - style.css
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #212529;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.pc-only {
  display: none;
}

.sp-only {
  display: block;
}

/* ---------- Section Base ---------- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #f8f9fa;
}

.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #34a853;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1b3a36;
  margin-bottom: 48px;
  line-height: 1.4;
}

.body-text {
  max-width: 720px;
  margin: 0 auto;
}

.body-text p {
  margin-bottom: 20px;
}

/* ---------- Fixed Header ---------- */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.fixed-header.visible {
  transform: translateY(0);
  opacity: 1;
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-size: 22px;
  font-weight: 900;
  color: #1b3a36;
  letter-spacing: 1px;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  background: #34a853;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(52,168,83,0.3);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  text-align: center;
}

.btn-primary:hover {
  background: #2d8f47;
  box-shadow: 0 4px 12px rgba(52,168,83,0.4);
  transform: translateY(-1px);
}

.btn-sm {
  font-size: 13px;
  padding: 10px 20px;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #34a853;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border: 2px solid #34a853;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
  text-align: center;
}

.btn-outline:hover {
  background: #34a853;
  color: #ffffff;
  transform: translateY(-1px);
}

/* CTA Block */
.cta-block {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-note {
  font-size: 13px;
  color: #6c757d;
  margin-top: 4px;
}

/* ============================================
   SECTION 1: First View
   ============================================ */
.section-fv {
  padding-top: 60px;
  padding-bottom: 80px;
  min-height: auto;
}

.fv-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fv-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.badge-accent {
  display: inline-block;
  background: #34a853;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
}

.fv-heading {
  font-size: 32px;
  font-weight: 900;
  color: #1b3a36;
  line-height: 1.4;
}

.fv-sub {
  font-size: 16px;
  color: #212529;
  line-height: 1.8;
}

.fv-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fv-badge-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fv-badge-number {
  font-size: 36px;
  font-weight: 700;
  color: #34a853;
  line-height: 1.2;
}

.fv-badge-unit {
  font-size: 18px;
  font-weight: 700;
}

.fv-badge-label {
  font-size: 14px;
  font-weight: 700;
  color: #1b3a36;
}

.fv-badge-note {
  font-size: 12px;
  color: #6c757d;
}

.guarantee-badge {
  font-size: 15px;
  font-weight: 700;
  color: #1b3a36;
}

.guarantee-badge i {
  color: #34a853;
  margin-right: 6px;
}



/* ============================================
   SECTION 2: Problems
   ============================================ */
.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.problem-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 24px 24px 28px;
  border-left: 3px solid #34a853;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease;
}

.problem-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.problem-card p {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.section-bottom-text {
  text-align: center;
  font-weight: 500;
  color: #1b3a36;
  margin-top: 40px;
  font-size: 15px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SECTION 3: Risks / Cases
   ============================================ */
.case-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.case-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease;
}

.case-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.case-label {
  font-size: 13px;
  font-weight: 700;
  color: #34a853;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.case-title {
  font-size: 20px;
  font-weight: 700;
  color: #1b3a36;
  margin-bottom: 16px;
  line-height: 1.4;
}

.case-card p {
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================
   SECTION 4: About
   ============================================ */
.sub-section {
  margin-top: 60px;
}

.sub-heading {
  font-size: 22px;
  font-weight: 700;
  color: #1b3a36;
  text-align: center;
  margin-bottom: 32px;
}

.strength-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

.strength-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.strength-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.strength-icon {
  width: 56px;
  height: 56px;
  background: rgba(52,168,83,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: #34a853;
}

.strength-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1b3a36;
  margin-bottom: 8px;
}

.strength-card p {
  font-size: 14px;
  color: #6c757d;
}

/* ============================================
   SECTION 5: Services
   ============================================ */
.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(52,168,83,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: #34a853;
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1b3a36;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #6c757d;
}

.card-note {
  text-align: center;
  font-size: 14px;
  color: #6c757d;
  margin-top: 24px;
}

/* ============================================
   SECTION 6: Compare
   ============================================ */
.compare-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.compare-card {
  background: #ffffff;
  border-radius: 12px;
  border-top: 4px solid #34a853;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease;
}

.compare-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.compare-category {
  font-size: 14px;
  font-weight: 700;
  color: #6c757d;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.compare-voice {
  font-size: 18px;
  font-weight: 700;
  color: #1b3a36;
  margin-bottom: 16px;
}

.compare-card > p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.compare-solution {
  font-size: 15px;
  font-weight: 700;
  color: #34a853;
}

.compare-solution i {
  margin-right: 6px;
}

/* ============================================
   SECTION 7: Change / Comparison Table
   ============================================ */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 32px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.comparison-table thead th {
  background: #1b3a36;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
}

.comparison-table thead th:first-child {
  width: 140px;
}

.comparison-table tbody td {
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
  font-size: 14px;
  line-height: 1.7;
  vertical-align: top;
  background: #ffffff;
}

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

.row-label {
  font-weight: 700;
  color: #1b3a36;
  background: #f8f9fa !important;
}

/* Mobile comparison cards */
.comparison-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.comparison-card-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.comparison-card-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1b3a36;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}

.comparison-pair {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-before,
.comparison-after {
  font-size: 14px;
  line-height: 1.7;
  padding: 12px 16px;
  border-radius: 8px;
}

.comparison-before {
  background: #f8f9fa;
}

.comparison-after {
  background: rgba(52,168,83,0.06);
  border-left: 3px solid #34a853;
}

.comparison-label-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 8px;
  background: #e9ecef;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-label-tag.after {
  background: #34a853;
  color: #ffffff;
}

.table-note {
  font-size: 14px;
  color: #6c757d;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 16px;
}

/* ============================================
   SECTION 8: Fit
   ============================================ */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.fit-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.fit-yes {
  border-top: 4px solid #34a853;
}

.fit-no {
  border-top: 4px solid #6c757d;
}

.fit-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1b3a36;
  margin-bottom: 20px;
}

.fit-card h4 i {
  margin-right: 8px;
}

.fit-yes h4 i {
  color: #34a853;
}

.fit-no h4 i {
  color: #6c757d;
}

.fit-card ul {
  margin-bottom: 20px;
}

.fit-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.fit-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34a853;
}

.fit-card p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.fit-card p:last-child {
  margin-bottom: 0;
}

.fit-summary {
  font-weight: 500;
  color: #1b3a36;
}

/* ============================================
   SECTION 9: Pricing
   ============================================ */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
  position: relative;
}

.pricing-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.pricing-featured {
  border: 2px solid #34a853;
}

.pricing-popular-label {
  background: #34a853;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 8px;
}

.pricing-card-header {
  padding: 24px 24px 8px;
}

.pricing-card-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1b3a36;
}

.pricing-card-body {
  padding: 8px 24px 28px;
}

.pricing-amount {
  font-size: 16px;
  color: #212529;
  margin-bottom: 16px;
}

.pricing-number {
  font-size: 32px;
  font-weight: 700;
  color: #1b3a36;
}

.pricing-number.featured {
  color: #34a853;
}

.pricing-tax {
  font-size: 13px;
  color: #6c757d;
}

.pricing-card-body > p:last-child {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.7;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: #6c757d;
  line-height: 1.8;
}

/* ============================================
   SECTION 10: Guarantee
   ============================================ */
.section-guarantee {
  background: #1b3a36;
  color: #ffffff;
}

.section-label-white {
  color: rgba(255,255,255,0.5);
}

.section-heading-white {
  color: #ffffff;
}

.guarantee-main-copy {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.5;
}

.guarantee-body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-body p {
  opacity: 0.9;
  margin-bottom: 16px;
  font-size: 15px;
}

/* ============================================
   SECTION 11: Flow
   ============================================ */
.flow-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.flow-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: box-shadow 0.25s ease;
}

.flow-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.flow-number {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  color: #34a853;
  line-height: 1;
  margin-bottom: 16px;
}

.flow-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1b3a36;
  margin-bottom: 8px;
}

.flow-card p {
  font-size: 14px;
  color: #6c757d;
}

/* ============================================
   SECTION 12: Final CTA
   ============================================ */
.section-final-cta {
  border-top: 2px solid #34a853;
}

.final-limit {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #1b3a36;
  margin-top: 40px;
}

.final-limit strong {
  font-weight: 700;
}

.final-limit-note {
  text-align: center;
  font-size: 13px;
  color: #6c757d;
  margin-top: 8px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #1b3a36;
  padding: 48px 0;
  text-align: center;
}

.footer-logo {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.footer-url a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s ease;
}

.footer-url a:hover {
  color: #ffffff;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

/* ============================================
   Fade-in Animation
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   RESPONSIVE: PC (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 80px;
  }

  .section {
    padding: 100px 0;
  }

  .pc-only {
    display: block;
  }

  .sp-only {
    display: none;
  }

  .section-heading {
    font-size: 36px;
    margin-bottom: 56px;
  }

  /* Header */
  .header-inner {
    padding: 14px 80px;
  }

  /* FV */
  .section-fv {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .fv-grid {
    max-width: 800px;
    margin: 0 auto;
  }

  .fv-content {
    gap: 28px;
  }

  .fv-heading {
    font-size: 48px;
  }

  .fv-sub {
    font-size: 18px;
  }

  .fv-badges {
    flex-direction: row;
    gap: 16px;
  }

  .fv-badge-card {
    flex: 1;
  }



  /* Strengths */
  .strength-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Services */
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }

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

  /* Pricing */
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
  }

  .pricing-featured {
    transform: translateY(-8px);
  }

  /* Flow */
  .flow-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Guarantee */
  .guarantee-main-copy {
    font-size: 36px;
  }

  /* Sub heading */
  .sub-heading {
    font-size: 24px;
  }

  /* Compare blocks */
  .compare-blocks {
    gap: 28px;
  }
}

/* ============================================
   RESPONSIVE: Large (1024px+)
   ============================================ */
@media (min-width: 1024px) {
}
