/* ============================================================
   ベースタイポグラフィ・リンク
============================================================ */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 0.9375rem;   /* 15px */
  line-height: 1.7;
  color: var(--color_text);
  background: var(--color_bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* SP/PC切り替えユーティリティ */
.sp { display: block; }
.pc { display: none; }

@media (min-width: 960px) {
  .sp { display: none !important; }
  .pc { display: block !important; }
}

/* スクロール時にスティッキーヘッダーのアンカーを吸い込まない */
[id] { scroll-margin-top: calc(var(--header_h) + 16px); }
@media (max-width: 639px) {
  [id] { scroll-margin-top: calc(var(--header_h_sp) + 16px); }
}

/* 本文コンテナ */
.container {
  max-width: var(--container_w);
  margin: 0 auto;
  padding: 0 20px;
}
