@charset "UTF-8";
/* ----関数設定---- */
/* ----------------------------------------------------------------------
ページ設定
---------------------------------------------------------------------- */
:root {
  --liquid-npcDesignRatio: calc(1920 / 10);
  --liquid-ltbDesignRatio: calc(1366 / 10);
  --liquid-ntbDesignRatio: calc(1024 / 10);
  --liquid-lspDesignRatio: calc(390 / 10);
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1920px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-npcDesignRatio));
  }
  html {
    font-size: var(--liquid-htmlroot);
  }
}
@media screen and (max-width: 1366px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-ltbDesignRatio));
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-ntbDesignRatio));
  }
}
@media screen and (max-width: 520px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-lspDesignRatio));
  }
}
:root {
  --color-black: #303030;
  --color-blue: #032859;
  --color-red: #b72525;
}

/* ----------------------------------------------------------------------
基本設定
---------------------------------------------------------------------- */
body {
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  color: var(--color-black);
  line-height: 1;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
  letter-spacing: 0.05em;
}
body::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  border: 3px solid #fff;
  z-index: 98;
  pointer-events: none;
}

p {
  text-box: trim-both text text;
  letter-spacing: 0.075em;
}