@charset "UTF-8";

/*
  Base
---------------------------------------------- */
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 2.5rem;
}

@media screen and (min-width: 1200px) {
  html {
    scroll-padding-top: 3rem;
  }
}

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

body {
  height: 100%;
  font-family: YakuHanJPs, "Noto Sans JP", "メイリオ", Meiryo,
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ W3", "ＭＳ Ｐゴシック",
    "MS PGothic", Helvetica, Arial, sans-serif;
  font-size: var(--font-size-xs);
  line-height: 1.75;
  color: var(--color-key);
  letter-spacing: 0.01em;
  background-color: var(--color-white);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--animation);
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
  line-height: normal;
}

strong {
  font-weight: bold;
}

input,
textarea {
  max-width: 100%;
  font-family: inherit;
  font-size: 100%;
}

small {
  font-size: inherit;
}
