/* リセットCSS */

/* ブロック要素のマージン、パディング、ボーダーをリセット */
body,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
blockquote,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
}

/* リストのスタイルをリセット */
ul,
ol {
  list-style: none;
}

/* a要素のデフォルトスタイルをリセット */
a {
  text-decoration: none;
}

/* ボタン要素のスタイルをリセット */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
}

/* テキスト関連の要素のデフォルトスタイルをリセット */
input[type="text"],
input[type="password"],
textarea,
select,
option {
  appearance: none;
  border-radius: 0;
  outline: none;
  resize: none;
}

/* 要素のボックスサイジングをリセット */
* {
  box-sizing: border-box;
}

/* レスポンシブイメージのスタイルをリセット */
img {
  max-width: 100%;
  height: auto;
}
