*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
/* font-sizeの初期値を"font-size = 62.5%"で16px→10pxとすることで、
remでフォントサイズを指定する際、16px相当にしたい場合1.6rem、40pxは4remと、
remでサイズ指定しやすくなる。
また、レスポンシブル対応で、各画面サイズごとの標準文字サイズを指定するには
body{
    font-size:1.6rem ;
}
とする。
*/

body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote,
pre {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

textarea {
  resize: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
