@charset "UTF-8";

/* =========================================================
   reset.css
   ---------------------------------------------------------
   Minimal reset for custom sites
   ========================================================= */

/* 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,
blockquote {
  margin: 0;
  padding: 0;
}

/* root */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* body */
body {
  min-height: 100vh;
  line-height: 1;
}

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

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

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

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

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

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

input,
textarea,
select {
  border-radius: 0;
}

textarea {
  resize: vertical;
}

/* inherit line-height for form controls in some browsers */
input,
button,
textarea,
select {
  line-height: inherit;
}

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

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