/* ===================================================
   Site Footer
   =================================================== */

.site-footer {
  background-color: #0a1628;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-left p {
  font-size: 12px;
  margin: 0;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  gap: 15px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.footer-company-info {
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
  text-align: left;
}

.footer-market-logo {
  display: flex;
  align-items: center;
}

.footer-market-logo img {
  width: 43px;
  height: 50px;
  object-fit: contain;
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 12px;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* ===================================================
   レスポンシブ（スマホ）
   =================================================== */

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-right {
    flex-direction: row;
    align-items: flex-end;
  }

  .footer-links {
    flex-direction: row;
  }
}