:root {
  --color-white: #ffffff;
  --color-primary: #0d366d;
  --color-sub: #f7c009;
}

/**
 * 本文フォント（デフォルトは Noto Sans JP）
 *
 * 数字を Noto Sans Arabic に切り替えたい要素では、
 * その要素の font-family に "Noto Sans Arabic" を含めること:
 *
 *   .PhoneNumber {
 *     font-family: "Noto Sans Arabic", "Noto Sans JP", sans-serif;
 *   }
 */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

@media screen and (max-width: 980px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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