

/* reset.css — シンプルリセット（軽めで使いやすい） */

/* 1. ボックスサイズを扱いやすく */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. ページ全体の余白・フォント基準をリセット   
vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
    */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;

}


/* 3. HTML5要素をブロックに */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* 4. ベースのbody設定 */
body {
  line-height: 1.4;            /* 読みやすさ */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
  background: white;
  font-family: inherit;
}

/* 5. リスト・リンクの基本 */
ol, ul {
  list-style: none;
}

/*
a {
  text-decoration: none;
  color: inherit;
}
*/

/* 6. 画像とメディアの扱い */
img, picture, video, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 7. フォーム要素のリセット（ブラウザ差分の軽減） 
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
*/

/* 8. テーブルの基本 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 9. ボタンの最低限の指標（必要なら上書きしてね） */
button {
  cursor: pointer;
}

/* 10. アクセシビリティ用：フォーカスのデフォルトは残す場合はこのコメントを外して使ってね */
/* :focus { outline: 2px solid Highlight; outline-offset: 2px; } */

