/* reset.css */

/* 全体の要素のマージンとパディングをリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 見出しタグのリセット */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リストのスタイルをリセット */
ul,
ol {
  list-style: none;
}

/* テーブルのスタイルをリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* アンカーのスタイルをリセット */
a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

/* ボタンとフォーム要素のスタイルをリセット */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  appearance: none;
}

/* メディア要素のスタイルをリセット */
img,
video,
audio {
  max-width: 100%;
  height: auto;
  display: block;
}

/* HTML5の新しい要素をリセット */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* フォーム要素のリセット */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
textarea {
  resize: vertical;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
