@charset "UTF-8";

/* =====================================
   フッター: 共通コンポーネント
   ===================================== */

.footer {
  bottom: 0;
  left: 0;
  height: 300px;
  background-color: var(--color-white, #fff);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.footer .footer-container {
  width: 90%;
}

.footer .footer-image {
  width: 150px;
  height: 160px;
  margin: 24px auto 0; /* 中央配置 */
}

.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 20px;
  font-size: 14px;
}

.footer .footer-links a {
  text-decoration: none;
  color: var(--color-black, #000);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.footer .footer-links a:hover {
  opacity: 0.7;
}

.footer .footer-copy {
  margin-top: 8px;
  color: var(--color-black, #000);
  font-size: 14px;
}

/* =====================================
   レスポンシブ: モバイル対応
   ===================================== */

@media (width <= 600px) {
  .footer .footer-links {
    gap: 20px;
  }
}

@media (width <= 940px) {
  .footer {
    left: 0;
    height: 300px;
  }

  .footer-top {
    display: none;
  }
}
