* {
  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(--standard-font-size) * 1px);
  line-height: var(--standard-line-height);
  color: var(--font);
  background-color: var(--bg-exh);
  overflow-x: hidden;
  overflow-y: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
}

img {
  width: 100%;
  vertical-align: bottom;
}

video {
  width: 100%;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {

  a:hover {
    opacity: 0.7;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }

}

address {
  text-decoration: none;
}

table {
  line-height: 1.25;
}