/* =========================================================
   reset.css  —  コーディング規約 準拠リセット
   ========================================================= */

* {
  box-sizing: border-box;
  line-height: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
}

html, body, div,
h1, h2, h3, h4, h5, h6,
ul, ol, li, p, dl, dt, dd {
  padding: 0;
  margin: 0;
}

html {
  font-size: 10px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: #393939;
}

ol, ul, li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

img.right {
  object-position: right;
}

button, a {
  opacity: 1;
  transition: all .2s ease-out;
  color: inherit;
  text-decoration: none;
}

button:hover, a:hover {
  opacity: .6;
}

textarea, button, input {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
}

table {
  border-collapse: collapse;
}
