:root {
  --nv-blue: #003262;
  --nv-blue-2: #1f6fb2;
  --nv-green: #00a79d;
  --nv-navy: #102a43;
  --nv-text: #263238;
  --nv-gray: #64748b;
  --nv-light: #f4f8fb;
  --nv-border: #d8e3ec;
  --nv-white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--nv-text);
  line-height: 1.8;
  background: #fff;
}

a {
  color: inherit;
}

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

.lp-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-section {
  padding: 72px 0;
}

.lp-section.soft {
  background: var(--nv-light);
}

.lp-hero {
  overflow-x: hidden;
.lp-hero .lp-container {
  max-width: 1320px;
  padding-left: 28px;
  padding-right: 28px;
}

  padding: 72px 0 64px;
  background: linear-gradient(135deg, #f7fbff 0%, #eef8f5 100%);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 46px;
  align-items: center;
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 46px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eaf8f1;
  color: var(--nv-green);
  font-size: 14px;
  font-weight: 700;
}

.lp-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.22;
  color: var(--nv-navy);
  letter-spacing: -0.02em;
}

.lp-lead {
  margin: 0 0 24px;
  font-size: 17px;
  color: #334155;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 18px;
}

.lp-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp-btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--nv-blue-2), var(--nv-green));
  box-shadow: 0 12px 28px rgba(31, 111, 178, 0.22);
}

.lp-btn.secondary {
  color: var(--nv-blue);
  background: #fff;
  border: 1px solid var(--nv-border);
}

.lp-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
  margin-top: 18px;
}

.lp-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--nv-border);
  color: var(--nv-gray);
  font-size: 13px;
  font-weight: 700;
}

.lp-hero-image {
  width: 124%;
  max-width: 124%;
  margin-left: 0;
  padding: 6px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(216, 227, 236, .9);
  box-shadow: 0 18px 48px rgba(16, 42, 67, .12);
  justify-self: start;
}

.lp-hero-image img {
  width: 100%;
}

.lp-section-title {
  position: relative;
  margin: 0 0 22px;
  padding-left: 18px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.35;
  color: var(--nv-navy);
}

.lp-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 5px;
  height: 1.2em;
  border-radius: 999px;
  background: var(--nv-blue);
}

.lp-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nv-blue), var(--nv-green));
}

.lp-section-lead {
  max-width: 850px;
  margin: 0 0 30px;
  color: #475569;
  font-size: 16px;
}

.lp-grid {
  display: grid;
  gap: 18px;
}

.lp-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.lp-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.lp-card {
  background: #fff;
  border: 1px solid var(--nv-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.06);
}

.lp-card h3 {
  margin: 0 0 10px;
  color: var(--nv-blue);
  font-size: 18px;
}

.lp-card p {
  margin: 0;
  color: #475569;
}

.lp-list {
  margin: 0;
  padding-left: 1.2em;
}

.lp-list li {
  margin-bottom: 8px;
}

.lp-note {
  padding: 22px 24px;
  border-radius: 18px;
  background: #eef8f5;
  border-left: 5px solid var(--nv-green);
  color: #234;
  font-weight: 600;
}

.lp-table-wrap {
  overflow-x: auto;
}

.lp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--nv-border);
  border-radius: 18px;
  overflow: hidden;
}

.lp-table th,
.lp-table td {
  padding: 18px;
  border-bottom: 1px solid var(--nv-border);
  vertical-align: top;
  text-align: left;
}

.lp-table th {
  background: var(--nv-blue);
  color: #fff;
  white-space: nowrap;
}

.lp-table tr:last-child td {
  border-bottom: 0;
}

.lp-price {
  white-space: nowrap;
  color: var(--nv-green);
  font-weight: 800;
}

.lp-image-block {
  margin: 28px 0;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--nv-border);
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.06);
}

.nv-rules-section {
  margin-top: 28px;
}

.nv-rules-section .rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.nv-rules-section .rule-card {
  background: #fff;
  border: 1px solid var(--nv-border);
  border-top: 5px solid var(--nv-blue);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.05);
}

.nv-rules-section .rule-card.green {
  border-top-color: var(--nv-green);
}

.nv-rules-section .card-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.nv-rules-section .card-title {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--nv-blue);
}

.nv-rules-section .rule-card.green .card-title {
  color: var(--nv-green);
}

.nv-rules-section ul {
  margin: 0;
  padding-left: 1.1em;
}

.nv-rules-section li {
  margin-bottom: 8px;
  font-size: 14.5px;
  line-height: 1.6;
}

.nv-rules-section .footer-note {
  text-align: center;
  background: #f1f5f9;
  padding: 18px;
  border-radius: 12px;
  font-weight: 700;
  border-left: 5px solid var(--nv-blue);
}

.lp-faq {
  display: grid;
  gap: 14px;
}

.lp-faq-item {
  background: #fff;
  border: 1px solid var(--nv-border);
  border-radius: 16px;
  padding: 22px;
}

.lp-faq-item h3 {
  margin: 0 0 10px;
  color: var(--nv-blue);
  font-size: 17px;
}

.lp-faq-item p {
  margin: 0 0 10px;
}

.lp-faq-item p:last-child {
  margin-bottom: 0;
}

.lp-footer-cta {
  text-align: center;
  padding: 72px 0;
  background: linear-gradient(135deg, var(--nv-blue), var(--nv-green));
  color: #fff;
}

.lp-footer-cta h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
}

.lp-footer-cta p {
  max-width: 760px;
  margin: 0 auto 24px;
}

.lp-footer-cta .lp-btn {
  background: #fff;
  color: var(--nv-blue);
}

@media screen and (max-width: 900px) {
  .lp-hero-grid,
  .lp-grid.cols-3,
  .lp-grid.cols-2,
  .nv-rules-section .rules-grid {
    grid-template-columns: 1fr;
  }

  .lp-section {
    padding: 52px 0;
  }

  .lp-hero {
    padding: 52px 0;
  }

  .lp-hero-image {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 8px;
  }

  .lp-table {
    min-width: 760px;
  }
}

.lp-flow {
  margin-top: 28px;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--nv-border);
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.06);
}

.lp-flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.lp-flow-step {
  position: relative;
  padding: 22px 14px;
  border-radius: 16px;
  background: #f8fbfe;
  border: 1px solid var(--nv-border);
  text-align: center;
}

.lp-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #eaf4fb;
  color: var(--nv-blue);
  font-size: 20px;
  font-weight: 800;
}

.lp-flow-step h3 {
  margin: 0 0 6px;
  color: var(--nv-blue);
  font-size: 17px;
}

.lp-flow-step p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.lp-flow-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #eef8f5;
  border-left: 5px solid var(--nv-green);
  color: #234;
  font-weight: 700;
}

@media screen and (max-width: 900px) {
  .lp-flow-steps {
    grid-template-columns: 1fr;
  }
}
