/* ------------------------------
   2025 Minimal Modern Reset
------------------------------ */

/* すべての要素にボックスサイズの統一 */
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  /* マージン・パディング初期化 */
  body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
    margin: 0;
    padding: 0;
  }
  
  /* リストのデフォルトスタイルを削除 */
  ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  /* aタグ：装飾リセット */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* ボタンやinputのfont継承とborderリセット */
  input, button, textarea, select {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
  }
  
  /* ボタン系のクリック範囲対策 */
  button {
    cursor: pointer;
    background-color: transparent;
  }
  
  /* 画像はブロック要素として扱い、親要素に合わせて表示 */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  /* テーブル：セル間のスペースをなくす */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  /* HTML5セクション要素のデフォルトdisplayを指定 */
  main, article, aside, footer, header, nav, section, figure {
    display: block;
  }
  
  /* body全体に基本のフォントと背景色 */
  body {
    font-family: system-ui, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #000;
    -webkit-font-smoothing: antialiased;
  }
  