/* =========================
   Linxy User LP Only
========================= */

/* ----- Base ----- */
.linxy-userlp-fv,
.linxy-userlp-problem,
.linxy-userlp-solution,
.linxy-userlp-experience,
.linxy-userlp-cta{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans JP",sans-serif;
}

.linxy-userlp-container{
  max-width:1200px;
  margin:0 auto;
}

/* =========================
   FV
========================= */

.linxy-userlp-fv{
  height:75vh; /* ← 確実に小さく */
  background:linear-gradient(120deg,#233f9a 0%,#1e40af 60%,#1e3a8a 100%);
  display:flex;
  align-items:center;
  padding:0 6%;
}

.linxy-userlp-fv-inner{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

.linxy-userlp-fv-phone{
  flex:0 0 280px;
}

.linxy-userlp-fv-phone video{
  width:220px;
  height:auto;
  display:block;
}

.linxy-userlp-fv-copy{
  flex:1;
  color:#fff;
}

.linxy-userlp-fv-copy h1{
  font-size:56px;
  font-weight:800;
  line-height:1.15;
  letter-spacing:-0.02em;
  margin:0;
}

.linxy-userlp-fv-sub{
  margin-top:16px;
  font-size:16px;
  opacity:.95;
}

.linxy-userlp-fv-buttons{
  margin-top:28px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.linxy-userlp-btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 40px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  color:#fff;
  text-decoration:none;
  background:#ff9500;
}

.linxy-userlp-btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 40px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
  color:#fff;
  background:rgba(255,255,255,.25);
}

/* =========================
   Problem
========================= */

.linxy-userlp-problem{
  padding:140px 8%;
  background:#fff;
}

.linxy-userlp-problem h2{
  font-size:40px;
  font-weight:800;
  margin-bottom:80px;
  text-align:center;
}

.linxy-userlp-problem-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px;
}

.linxy-userlp-problem-card{
  padding:50px 40px;
  border-radius:28px;
  background:#f8fafc;
}

.linxy-userlp-problem-card h3{
  font-size:20px;
  margin-bottom:14px;
  color:#233f9a;
}

.linxy-userlp-problem-card p{
  font-size:15px;
  color:#555;
  line-height:1.8;
}

/* =========================
   Solution
========================= */

.linxy-userlp-solution{
  padding:160px 8%;
  background:#f3f8ff;
}

.linxy-userlp-solution h2{
  font-size:40px;
  font-weight:800;
  margin-bottom:100px;
  text-align:center;
}

.linxy-userlp-solution-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px;
}

.linxy-userlp-solution-card{
  background:#fff;
  padding:60px 40px;
  border-radius:32px;
  box-shadow:0 30px 80px rgba(0,0,0,.05);
}

.linxy-userlp-solution-card h3{
  font-size:22px;
  margin-bottom:16px;
  color:#233f9a;
}

.linxy-userlp-solution-card p{
  font-size:15px;
  color:#555;
  line-height:1.8;
}

/* =========================
   Experience
========================= */

.linxy-userlp-experience{
  padding:180px 8%;
  background:#fff;
  text-align:center;
}

.linxy-userlp-experience h2{
  font-size:40px;
  font-weight:800;
  margin-bottom:100px;
}

.linxy-userlp-experience-video video{
  width:320px;
  max-width:100%;
  height:auto;
}

/* =========================
   CTA
========================= */

.linxy-userlp-cta{
  padding:160px 8%;
  background:#233f9a;
  color:#fff;
  text-align:center;
}

.linxy-userlp-cta h2{
  font-size:42px;
  font-weight:800;
  margin-bottom:60px;
}

/* =========================
   Responsive
========================= */

@media(max-width:1100px){

  .linxy-userlp-fv-inner{
    flex-direction:column;
    text-align:center;
    gap:50px;
  }

  .linxy-userlp-fv-copy h1{
    font-size:40px;
  }

  .linxy-userlp-problem-grid,
  .linxy-userlp-solution-grid{
    grid-template-columns:1fr;
  }

}