@charset "UTF-8";
/* Scss Document */
@font-face {
  /*フォントの名前*/
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("/font/NotoSansJP-Regular.otf") format("opentype");
}
@font-face {
  /*フォントの名前*/
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("/font/NotoSansJP-Medium.otf") format("opentype");
}
@font-face {
  /*フォントの名前*/
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("/font/NotoSansJP-Bold.otf") format("opentype");
}
:root {
  --c-white01: #ffffff;
  --c-black01: #0c0c0c;
  --c-black02: #121212;
  --site-base-container: 1000px;
  --header-height: 122px;
  --tran-opacity-a: all .25s ease-out 0s;
}

section {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}

p {
  text-align: center;
  font-size: 20px;
  color: var(--c-black02);
}/*# sourceMappingURL=common.css.map */