@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6,th,dt,strong{
  font-weight: 500;
}
ul,
ol {
  list-style: none;
}
html {
  font-size: 62.5%;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6em;
  line-height: 1.4;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img,
picture,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
  vertical-align: bottom;
}
input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  border-radius: 0;
}
a {
  text-decoration: none;
}
table {
  border-collapse: collapse;
}
address,
em {
  font-style: normal;
}
/*------------------------
「視差効果を減らす」設定用
スマホで見たときカクつくならここを設定し直す
-------------------------*/
/*
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
*/