* {
  margin: 0;
  padding: 0;
}
body{
margin: 0;
}

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

html {
  -webkit-text-size-adjust: 100%; /* iOSのテキストサイズ自動調整を無効化 */
  font-family: sans-serif; /* デフォルトのフォント */
  line-height: 1.15; /* 行の高さの調整 */
}

img {
  vertical-align: middle; /* または top, bottom など */
  max-width: 100%; /* 親要素からはみ出さないように */
  height: auto; /* 縦横比を維持 */
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* フォントを継承 */
  font-size: 100%; /* フォントサイズをリセット */
  line-height: 1.15; /* 行の高さをリセット */
  margin: 0; /* 余白をリセット */
}

a{
  text-decoration: none;
}