/* =========================
  LP Footer（完成系・バランス調整）
========================= */
.lp-footer {
  background: #2f5db3;
  color: #fff;
  padding: 96px 32px 48px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* 上段レイアウト */
.lp-footer-inner {
  max-width: 1000px;
  margin: 0 auto 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

/* -------------------------
  左カラム
------------------------- */
.lp-footer-left {
  max-width: 480px;
}

.lp-footer-company {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 24px;
}

.lp-footer-logo img {
  width: 220px;
  margin-bottom: 16px;
}

.lp-footer-title {
  font-size: 56px;
  font-weight: 800;
  margin: 0;
}

/* -------------------------
  右カラム（中央基準）
------------------------- */
.lp-footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ボタン上テキスト */
.lp-footer-lead {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-align: center;
}

/* ボタン */
.lp-footer-btn-outline,
.lp-footer-btn-primary {
  width: 320px;
  padding: 16px 0;
  border-radius: 999px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
}

.lp-footer-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.lp-footer-btn-primary {
  background: #5fb2f5;
  color: #083b6d;
}

/* フッターリンク */
.lp-footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.lp-footer-links a {
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}

/* -------------------------
  下段（会社名・コピーライト）
------------------------- */
.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.85;
}

/* =========================
  レスポンシブ
========================= */
@media (max-width: 768px) {
  .lp-footer {
    padding: 72px 20px 40px;
  }

  .lp-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .lp-footer-title {
    font-size: 42px;
  }

  .lp-footer-right {
    align-items: center;
  }

  .lp-footer-btn-outline,
  .lp-footer-btn-primary {
    width: 100%;
    max-width: 320px;
  }

  .lp-footer-links {
    flex-wrap: wrap;
    max-width: 360px;
  }

  .lp-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
