@charset "UTF-8";
html {
  /* ===== SP（デフォルト） ===== */
  font-size: clamp(13px, 16 / 375 * 100vw, 16px);
  /* ===== タブレット以上 ===== */
}
@media screen and (min-width: 768px) {
  html {
    font-size: clamp(13px, 16 / 1280 * 100vw, 16px);
  }
}
html {
  /* ===== PC以上（pc-inner-sum 以上では clamp の上限に収束） ===== */
}

body {
  color: #17346c;
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
    cursor: pointer;
    text-decoration: none;
    color:inherit;
  }
}

.is-absolute {
  position: absolute;
}
