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

html {
  font-size: 2.5641025641vw;
  scroll-behavior: smooth;
}
@media (min-width: 751px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media (min-width: 1441px) {
  html {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  color: #64462d;
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
}

h1,
h2,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

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

img,
picture,
svg {
  display: block;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #0067c0;
  outline-offset: 0.3rem;
}

.hover-opacity {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .hover-opacity:hover {
    opacity: 0.6;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hover-opacity {
    transition: none;
  }
}

.container {
  position: relative;
  margin-inline: 2rem;
}
@media (min-width: 751px) {
  .container {
    max-width: 100rem;
    margin-inline: auto;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 751px) {
  .pc-only {
    display: inline;
  }
}

.sp-only {
  display: inline;
}
@media (min-width: 751px) {
  .sp-only {
    display: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
