/**
 * footer.css - GOT公式フッター専用スタイル
 *
 * site.css のフッター関連ルールのみを抜粋。
 * MeDu サイト等、site.css 全体を読み込まない外部ページから
 * GOT共通フッターを利用する際にこのファイルを読み込む。
 */

:root {
  --footer-bg: #000000;
}

footer.site-footer {
  width: 100%;
  background: var(--footer-bg);
  padding: 1.5rem 1rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-brand img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: min(520px, 100%);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-copyright {
  color: #ffffff;
  font-size: 0.75rem;
  opacity: 0.8;
  text-align: left;
}

@media (max-width: 668px) {
  .footer-nav a {
    font-size: 0.72rem;
  }

  .footer-copyright {
    font-size: 0.68rem;
  }
}
