* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  font-size: 62.5%;
  text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

body {
  font-family: var(--noto-sans);
  font-size: 1.5rem;
  line-height: 1.475;
  color: var(--black);
}

img {
  width: 100%;
  vertical-align: middle;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

input:not([type="checkbox"], [type="submit"]),
textarea,
select {
  width: 100%;
  font: inherit;
  color: var(--black);
  border: 0.1rem solid #AFAFAF;
}

input:not([type="checkbox"]),
textarea {
  border-radius: 0.25em;
  padding: 0.25em;
}

input[type="submit"] {
  font: inherit;
  color: var(--black);
  border: 0.1rem solid #AFAFAF;
  border-radius: 0;
  padding: 0.5em;
}

button {
  font: inherit;
  color: var(--black);
  line-height: 1;
  border: 0.1rem solid #AFAFAF;
  outline: none;
  appearance: none;
}

@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  button {
    cursor: pointer;
  }
}