@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100..900&display=swap');

:root {
  --bg-color0: #fff;
  --bg-color1: #f5f5f7;
  --bg-color2: #f7f7f7;
  --accent-red: rgb(255, 45, 85);
  --accent-blue: rgb(0, 122, 255);
  --accent-green: rgb(52, 199, 89);
  --accent-yellow: rgb(255, 204, 0);
  --systemGray1: rgb(142, 142, 147);
  --systemGray2: rgb(174, 174, 178);
  --systemGray3: rgb(199, 199, 204);
  --systemGray4: rgb(209, 209, 214);
  --systemGray5: rgb(229, 229, 234);
  --systemGray6: rgb(242, 242, 247);
  --colBlack1: #070707;
  --colBlack2: #191B1F;
  --colBlue: #1D6FF2;
  --colOrange: #FF8157;
  --colMint: #3ECDE0;
  --colYellow: #FFC62D;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  color: #44403f;
  line-height: 1.5;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
  height: 100%;
  font-style: normal;
  background: #f5f5f5;
  /* background: url(/img/1.jpg)  center center; */
  background-size: cover;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

p {
  margin: 0;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.no-scroll {
  overflow: hidden;
}

.loader {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(farthest-side, #aaa 94%, #0000) top/5px 5px no-repeat,
    conic-gradient(#0000 30%, #aaa);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 5px), #000 0);
  animation: l13 1s infinite linear;
}
