/**
 * サイトフッターのスタイル
 * 両方のページで共通のフッタースタイルを定義します
 */

.site-footer {
  background-color: #f8f8f8;
  padding: 20px 0;
  border-top: 1px solid #eee;
  margin-top: 2rem;
  text-align: center;
}

.site-footer .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-content {
  width: 100%;
  text-align: center;
}

.footer-links {
  margin-bottom: 15px;
  text-align: center;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  margin: 0 8px;
  font-size: 0.9rem;
  transition: color 0.3s;
}

/* 区切り文字 */
.separator {
  color: #999;
}

.footer-links a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

.copyright {
  color: #777;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 30px 0;
  }
  
  .site-footer .container {
    padding: 0 15px;
  }
  
  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    line-height: 2.5 !important;
    margin-bottom: 20px;
  }
  
  .footer-links a {
    margin: 0 !important;
    padding: 8px 16px !important;
    display: block !important;
    font-size: 16px !important;
  }
  
  /* 区切り文字を非表示 */
  .site-footer .separator,
  .footer-links .separator {
    display: none !important;
  }
  
  .copyright {
    font-size: 14px;
    line-height: 1.6;
  }
}
