/* ==============================================
   Footer Section: フッター
============================================== */
.lp-footer {
  background: #111 !important;
  color: #fff !important;
  padding: 60px 0 40px !important;
  margin-top: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.lp-footer .lp-container {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}

.lp-footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lp-footer__brand {
  max-width: 400px;
}

.lp-footer__brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: 0.02em;
}

.lp-footer__site-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}

.lp-footer__tagline {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.lp-footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.lp-footer__link-group {
  display: flex;
  flex-direction: column;
}

.lp-footer__link-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}

.lp-footer__link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-footer__link-list li {
  margin: 0;
  padding: 0;
}

.lp-footer__link-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
  display: inline-block;
}

.lp-footer__link-list a:hover {
  color: #fff;
  text-decoration: underline;
}

/* タブレット */
@media screen and (max-width: 992px) {
  .lp-footer {
    padding: 50px 0 35px;
  }

  .lp-footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* スマホ */
@media screen and (max-width: 768px) {
  .lp-footer {
    padding: 40px 0 30px;
  }

  .lp-footer__content {
    gap: 32px;
  }

  .lp-footer__brand {
    max-width: 100%;
  }

  .lp-footer__brand-name {
    font-size: 1.3rem;
  }

  .lp-footer__site-name {
    font-size: 1.1rem;
  }

  .lp-footer__tagline {
    font-size: 0.9rem;
  }

  .lp-footer__links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lp-footer__link-group {
    width: 100%;
  }
}
