* {
  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: calc(var(--font-size) * 1px);
  line-height: var(--line-height);
  color: var(--black);
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: visible;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

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

address {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}
