@charset "UTF-8";
body, h1, h2, h3, h4, h5, h6, ul, ol, dl {
  margin: 0;
  padding: 0;
}
hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
ul, ol {
  list-style-type: none;
}
/* =============================
config
===============================*/
body {
  line-height: 1.6;
}
* {
  box-sizing: border-box;
}
a {
  color: #222;
  transition: 0.3s;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
  transition: 0.3s;
  color: var(--hover);
}
a img {
  transition: 0.3s;
}
a:hover img {
  opacity: 0.8;
  transition: 0.3s;
}
button:hover {
  transition: 0.3s;
}
button {
  -webkit-appearance: none;
  appearance: none;
  color: #222;
  background-color: #fff;
}