@charset "utf-8";
html,
body {
  
}

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

body {
  color: #393939;
  font-family: "Noto sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

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

.wrapper {
  overflow: hidden;
}