/* -----------------------
   reset.css
   ----------------------- */

/* 1. ボックスサイズを統一 */
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  /* 2. 余白リセット */
  body, h1, h2, h3, h4, h5, h6,
  p, blockquote, figure, dl, dd {
    margin: 0;
    padding: 0;
  }
  
  /* 3. リストのマーカーを削除 */
  ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  /* 4. リンクの初期化 */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* 5. フォント継承 */
  button, input, select, textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
  }
  
  /* 6. HTMLとbodyの高さを100%に */
  html, body {
    height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    color: #000;
  }
  
  /* 7. 画像のはみ出し防止 */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  /* 8. テーブルの余計な隙間除去 */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  /* 9. strong/b/i の安全なリセット */
  strong {
    font-weight: bold;
  }
  em {
    font-style: italic;
  }
  