@charset "UTF-8";

/* box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* margin reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
}

/* body */
body {
  line-height: 1;
  text-rendering: optimizeSpeed;
}

/* list */
ul,
ol {
  list-style: none;
}

/* link */
a {
  text-decoration: none;
  color: inherit;
}

/* image */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* form */
input,
button,
textarea,
select {
  font: inherit;
}

/* button */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* iframe */
iframe {
  border: 0;
}

/* address */
address {
  font-style: normal;
}

/* strong */
strong {
  font-weight: bold;
}

/* small */
small {
  font-size: 80%;
}
