* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



html {
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #2c353f;
}

body {
  width: 100%;
  margin: 0;
  position: relative;
font-family: "Noto Sans JP", sans-serif !important;
}

html, body {
  font-family: "Noto Sans JP", sans-serif !important;
}

body,
body * {
  font-family: "Noto Sans JP", sans-serif !important;
}

/* 中央寄せしたい範囲だけ container を使う */
.header-container,
main,
footer {
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}

/* もし左右に余白も欲しいなら */
.header-container,
main,
footer {
  padding-left: 20px;
  padding-right: 20px;
}

/* スクロール禁止 */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

a {
  text-decoration: none;
  color: #2c353f;
}

.is-md-show {
  display: none;
}

@media (max-width: 768px) {
  .is-md-hide {
    display: none;
  }
  .is-md-show {
    display: block;
  }
}
