/* Shared stylesheet for the static legal pages (privacy.html / terms.html). */

body {
  margin: 0;
  background: #f7f8fa;
  color: #555555;
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    'Hiragino Sans',
    'Noto Sans JP',
    sans-serif;
  line-height: 1.75;
}

header {
  background: white;
  border-bottom: 1px solid #e5e6ea;
}

header div {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
}

header a {
  color: #555555;
  text-decoration: none;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}

article {
  background: white;
  border: 1px solid #e5e6ea;
  border-radius: 12px;
  padding: 32px;
}

h1 {
  color: #111111;
  font-size: 1.875rem;
  margin: 0 0 32px;
}

h2 {
  color: #111111;
  font-size: 1.25rem;
  margin: 0 0 16px;
}

section {
  margin-bottom: 32px;
}

p {
  margin: 0 0 16px;
}

ol,
ul {
  margin: 0 0 16px;
  padding-left: 1.5em;
}

li {
  margin-bottom: 8px;
}

hr {
  border: 0;
  border-top: 1px solid #e5e6ea;
  margin: 48px 0;
}

a {
  color: #4a6cf7;
}

@media (min-width: 768px) {
  article {
    padding: 48px;
  }
}
