@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
/*
 * url() の中では var() が展開されない（CSS変数はプロパティ値でのみ解決される）ため、
 * 書き出しツールが残した変数入りのURLではフォントが一切読み込まれていなかった。
 * テーマが実際に使うウェイトは 400 / 500 / 700 の3つなので、それだけを取得する。
 */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/*
 * 上の Meyer Reset は b/strong/em/i にも font: inherit を当てるため、
 * 太字・斜体の既定スタイルまで消える（リセット後に自前で定義し直す前提の設計）。
 * 記事本文は編集者が <strong> / <em> で強調を付けるので、意味論を復元しておく。
 * 数字を大きく見せる等の用途で weight を明示している既存の指定
 * （.feature-card__no strong など）は詳細度が高く、従来どおりそちらが優先される。
 */
strong,
b {
  font-weight: 700;
}
em,
i {
  font-style: italic;
}
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  min-height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
