/* ==========================
   reset.css
========================== */

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

/* margin / padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: 100;
}

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

/* body */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: sans-serif;
  color: #333;
  background: #fff;
  text-rendering: optimizeSpeed;
}

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

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

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

button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

input,
textarea {
  border-radius: 0;
}

textarea {
  resize: vertical;
}

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

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

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

/* html */
html {
  scroll-behavior: smooth;
}

/* anchor jump adjustment */
:target {
  scroll-margin-top: 80px;
}

em{
  font-style: normal;
}