/* footer.css
   サイトフッター・利用規約ページ */

/* =============================================================================
   フッター全体
   ============================================================================= */

.site-footer {
  margin-top: 64px;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.site-footer__inner {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__links {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
}

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

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

.site-footer__copy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* =============================================================================
   利用規約ページ
   ============================================================================= */

.tos-page {
  max-width: 720px;
  margin: 0 auto;
}

.tos-section {
  margin-top: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.tos-section:last-of-type {
  border-bottom: none;
}

.tos-section h2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}

.tos-section p,
.tos-section ul {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--color-text);
  margin: 0 0 6px;
}

.tos-section ul {
  padding-left: 1.4em;
}

.tos-section li {
  margin-bottom: 4px;
}

.tos-page__back {
  margin-top: 40px;
  font-size: 0.85rem;
}

.tos-page__back a {
  color: var(--color-primary);
  text-decoration: none;
}

.tos-page__back a:hover {
  text-decoration: underline;
}
