@charset "UTF-8";

/* ========================================
   Modern Reset
   ======================================== */

/* ボックスサイズを境界に含める */
*, *::before, *::after {
  box-sizing: border-box;
}

/* デフォルトの余白をリセット */
* {
  margin: 0;
  padding: 0;
}

/* デフォルトの line-height とフォントをリセット */
html, body {
  height: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%; /* iOSの自動拡大防止 */
  font-family: sans-serif;
}

/* 画像やメディアをブロック要素化 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム要素をリセット */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
}

/* リストのスタイルを消す */
ul, ol {
  list-style: none;
}

/* リンクの下線や色を消す（必要に応じて追加スタイルで調整） */
a {
  color: inherit;
  text-decoration: none;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 見出しは普通の文字サイズからスタート */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}
