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

html {
  font-size: calc(100vw / 37.5);
  -webkit-text-size-adjust: 100%;
}

@media (min-width: 480px) {
  html {
    font-size: 12.8px;
  }
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--h5-bg);
  color: var(--h5-text);
  font-family: var(--h5-font);
  font-size: 1.4rem;
  line-height: 2.4rem;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  vertical-align: top;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

input,
select {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 0.2rem solid var(--h5-primary);
  outline-offset: 0.2rem;
}
