/* =========================================
   Modern CSS Reset
   ========================================= */

/* 1. 全要素のボックスサイズ計算を直感的にする（paddingを含める） */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. デフォルトの余白を削除 */
* {
  margin: 0;
  padding: 0;
}

/* 3. デフォルトのリストスタイルを削除 */
ul,
ol {
  list-style: none;
}

/* 4. HTMLとBodyの高さを100%にする */
html,
body {
  height: 100%;
}

/* 5. 画像などが親要素からはみ出さないようにする（レスポンシブの必須設定） */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 6. フォーム要素のフォントを親に合わせる */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. テキストの折り返しを自然にする */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 8. リンクの下線を消し、色を継承する（お好みで） */
a {
  text-decoration: none;
  color: inherit;
}

/* 9.button */
button{
    padding: 0;
    border: none;
    background: 0 0;
}