/* とりあえず最低限の余白と幅 */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans JP", sans-serif;
  line-height: 1.7;
}
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: center;
}
.site-footer {
  border-bottom: none;
  font-size: 12px;
  margin-top: 50px;
  padding-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .site-footer {
    font-size: 10px;
    padding-bottom: 10px;
  }
}
.site-title {
  font-weight: 700;
  text-decoration: none;
}
.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  gap: 16px;
}
.site-nav a {
  text-decoration: none;
}
.entry-title {
  margin-bottom: 0.4em;
}
.entry-excerpt {
  color: #444;
}

/* ベースフォント設定 */
body {
  font-family: "Alata", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #111;
}

/* 見出しにも適用（任意） */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Alata", "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* フォーム要素にも適用 */
button,
input,
select,
textarea {
  font-family: "Alata", "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-appearance: none; /* Safari用のデフォルト解除 */
  appearance: none;
  background: none;
  border: none;
}
