/* minimal reset.css */
/* ボックスサイズを border-box に統一 */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* 標準要素の余白リセット */
body, h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* リストマーカーを削除 */
ul, ol {
  list-style: none;
}

/* 画像などのメディア要素をレスポンシブ対応 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム要素に親フォントを継承 */
input, button, textarea, select {
  font: inherit;
}

/* テキスト折り返しの改善 */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
