/* 基本的なリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* リンクの装飾をリセット */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* リストのスタイルをリセット */
  ul, ol {
    list-style: none;
  }
  
  /* 画像のデフォルトスタイルを調整 */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* テーブルのスタイルをリセット */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  /* フォーム要素のリセット */
  input, button, textarea, select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
  }
  
  /* ボタンのデフォルトスタイルを調整 */
  button {
    cursor: pointer;
  }
  
  /* HTMLとbodyの基本設定 */
  html {
    font-size: 16px;
  }
  
  body {
    line-height: 1.5;
    font-family: sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  