/* ======================================
FOOTER : 共通最終版（#site-footer 統一）
====================================== */

#site-footer {
  width: 100%;
  background: #0099cc;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
}

/* inner */
#site-footer .footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 20px 32px;
}

/* ロゴ */
#site-footer .footer-logo {
  text-align: center;
  margin-bottom: 56px;
}

#site-footer .footer-logo-link {
  display: inline-block;
  line-height: 0;
}

#site-footer .footer-logo img {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* メイン */
#site-footer .footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

/* キャッチコピー */
#site-footer .footer-catch {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ナビ */
#site-footer .footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#site-footer .footer-nav li {
  margin-bottom: 14px;
}

#site-footer .footer-nav a {
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

#site-footer .footer-nav a:hover {
  opacity: 0.75;
}

/* 下段 */
#site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.35);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

#site-footer .footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
}

#site-footer .footer-copyright a {
  color: inherit;
  text-decoration: underline;
}

/* 会社名リンク */
#site-footer .footer-company a {
  color: #ffffff;
  text-decoration: underline;
}

#site-footer .footer-company a:hover {
  opacity: 0.8;
}

/* ===============================
SP
=============================== */
@media (max-width: 768px) {

  #site-footer .footer-logo img {
    max-width: 240px;
  }

  #site-footer .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #site-footer .footer-nav ul {
    display: inline-block;
    text-align: left;
  }
}
/* === 応急修正：フッター中央寄せ（LP専用） === */
#site-footer .footer-inner {
  margin-left: auto;
  margin-right: auto;
}

