@charset "UTF-8";

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

/* Margin reset */
* {
  margin: 0;
}

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

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

/* Table */
table {
  border-collapse: collapse;
}