/* Reset CSS – 全体の初期化 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML基本要素の初期化 */
html, body {
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  color: #000;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* リンク初期化 */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

/* リスト初期化 */
ul, ol, li {
  list-style: none;
}

/* テキスト・フォーム系初期化 */
h1, h2, h3, h4, h5, h6, p, span, strong, em {
  font-weight: normal;
  font-style: normal;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* メディア要素 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 表のリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}

/* セクションタグ系 */
article, aside, details, figcaption, figure, footer, header,
main, menu, nav, section, summary {
  display: block;
}

/* スマホ対策 */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: none;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
