/* ==========================================================
   footer
   ========================================================== */

.footer {
  background-color: var(--color-navy);
  background-image: linear-gradient(
    90deg,
    rgba(16, 28, 61, 0.92) 0%,
    rgba(10, 17, 40, 0.9) 100%
  );
  border-top: 1px solid rgba(201, 162, 75, 0.18);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 22px 26px;
}

.footer__logo {
  width: 120px;
  height: 17px;
}

/* ポリシーリンク */
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer__nav-link {
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: var(--color-gold);
}

.footer__copyright {
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 28px 80px;
  }

  .footer__nav {
    margin-left: auto;
    margin-right: 40px;
    gap: 28px;
  }

  .footer__logo {
    width: 144.7px;
    height: 20px;
  }

  .footer__copyright {
    font-size: 12px;
  }
}
