@charset "UTF-8";
html {
  font-size: 112.5%; /* 18px */
}
@media (max-width: 767px) {
  html {
    font-size: 100%; /* 16px */
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.04em;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
}
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

section {
  padding: 120px 0;
}
@media (max-width: 767px) {
  section {
  padding: 60px 0;
  }
}
a,
button {
  transition: 0.3s;
}
html {
  scroll-behavior: smooth;
}
::selection {
  background: #E7EEF7;
}