/* -------------------------
   Minimal Reset / Normalize
-------------------------- */

/* ボックスサイズの扱いを統一 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* margin初期化 */
body, h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, blockquote {
  margin: 0;
  padding: 0;
}

/* リストのスタイル削除 */
ul, ol {
  list-style: none;
}

/* デフォルトフォント設定 */
body {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: system-ui, sans-serif;
}

/* 画像を枠内に収める */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* フォーム系をリセット */
input, button, textarea, select {
  font: inherit;
}

/* ボタンのデフォルト装飾を消す */
button {
  border: none;
  background: none;
  cursor: pointer;
}

/* 文章の折り返し */
p {
  text-wrap: pretty;
}
