@charset "UTF-8";
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
} /* Reset margin */
body,
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
} /* Body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
} /* Images */
img,
picture {
  max-width: 100%;
  display: block;
} /* Forms */
input,
button,
textarea,
select {
  font: inherit;
} /* Remove list styles */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
} /* Links */
a {
  text-decoration: none;
  color: inherit;
}
/* ボタンタグの装飾リセット */
button {
  cursor: pointer;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: none;
  border-radius: 0;
}