/* =========================================
   LP専用フッター（root を尊重・衝突ゼロ）
   ※ 変数(:root) は触らない
========================================= */

.lp-footer {
  background: var(--color-white);
  padding: 40px 20px;
  text-align: center;
  /* border-top: 1px solid var(--color-border);  ← 削除済み */
}

.lp-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* ==============================
   リンク一覧
============================== */
.lp-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer-links a {
  color: var(--color-text-light);
  font-size: 14px;
  text-decoration: none;
}

.lp-footer-links a:hover {
  color: var(--color-text);
  text-decoration: underline;
}

/* PC：横並び */
@media (min-width: 768px) {
  .lp-footer-links ul {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

/* ==============================
   コピーライト
============================== */
.lp-footer-copy small {
  font-size: 13px;
  color: var(--color-text-light);
}

/* LP01（page-ads.php）専用：下余白を消す */
.page-template-page-ads .site-main {
  padding-bottom: 0 !important;
}