/* ===== フッター ===== */
.site-footer {
  background-color: #1F2937; /* gray-800 */
  color: #D1D5DB;           /* gray-300 */
  padding: 24px;
}

.footer-inner {
  max-width: 1120px; /* max-w-7xl */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.footer-info {
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}

.footer-info p {
  margin: 4px 0;
}

/* 768px以上で横並び */
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  .footer-info {
    text-align: right;
  }
}
