/* public/footer.css
   stage-select.html の footer タグに完全対応した共通フッターCSS
*/

:root{
  --footer-bg:#fff;
  --footer-text:#111;
  --footer-muted:#666;
  --footer-line:#eaeaea;
  --footer-max:920px;
}

.site-footer{
  border-top: 1px solid var(--footer-line);
  background: var(--footer-bg);
  padding: 18px 16px;
}

.site-footer__inner{
  max-width: var(--footer-max);
  margin: 0 auto;
  text-align: center;
}

.site-footer__links{
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.site-footer__links a{
  color: var(--footer-text);
  text-decoration: none;
}

.site-footer__links a:hover{
  text-decoration: underline;
}

.site-footer__links .sep{
  margin: 0 10px;
  color: var(--footer-muted);
}

.site-footer__copy{
  font-size: 12px;
  color: var(--footer-muted);
}