/* ========================================
   Reset CSS - ベーシックリセット
======================================== */

/* 全体初期化 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* HTMLとBODYの初期設定 */
html,
body {
  height: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* メディア要素の初期化 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム関連の初期化 */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
  padding: 0;
  margin: 0;
  color: inherit;
}

/* リスト系の初期化 */
ul,
ol {
  list-style: none;
}

/* テーブルの初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* リンクの初期化 */
a {
  text-decoration: none;
  color: inherit;
}

/* ボタンの初期化 */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* 見出し系の余白リセット */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* アクセシビリティ */
[hidden] {
  display: none !important;
}
