@charset "UTF-8";

/*
  Variables
---------------------------------------------- */
:root {
  --color-text-main: #26273d;
  --color-text-light: #fff;
  --color-text-red: #ca000d;
  --color-bg-dark: #26273d;
  --color-bg-navy: #003e88;
  --color-bg-link: #006fc9;
  --color-bg-white: #fff;
  --color-border-main: rgb(38 39 61 / 25%);
  --color-border-dark: rgb(33 33 33 / 25%);
  --color-border-gray: #becdd9;

  /* フォント確定後差し替え */
  --font-accent: "Noto Sans JP";

  --hover: 0.3s all ease-in-out;
  --opacity: 0.5;
}

/*
  Base
---------------------------------------------- */
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
@media screen and (min-width: 980px) {
  html {
    scroll-padding-top: 128px;
  }
}

*,
*::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: 1em;
  line-height: 1.5;
  color: var(--color-text-main);
  letter-spacing: 0.01em;
}

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;
}
