/* ブラウザデフォルトのスタイルをリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* リストマーカーのスタイル */
  ul, ol {
    list-style: none;
  }
  
  /* 画像の余白 */
  img {
      display: block;
    max-width: 100%;
    height: auto;
  }
  
  /* リンクのスタイル */
  a {
    text-decoration: none;
    color: inherit;
  }
