:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

html {
  background: #fffdf4;
}

body {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100svh;
  -webkit-box-shadow: 0 0 99px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 99px rgba(0, 0, 0, 0.15);
}

main {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

* {
  color: #1d363e;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.1em;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: block;
}

span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

span.attention {
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

span.attention > * {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
span.attention > * > * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.fixedBanner {
  --fs: max(1.9rem, 19px);
  --fw: $bold;
  --lh: 1.5;
  --ls: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}
.fixedBanner__top {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  bottom: 5%;
  right: 5%;
  padding: max(1.7rem, 17px);
  background: #ef8d0a;
  border-radius: 50%;
}
.fixedBanner__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fixedBanner__text .imgBox {
  width: auto;
  height: 1lh;
}
.fixedBanner__text .imgBox img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fixedBanner__text span {
  color: #fff;
  font-size: var(--fs);
  font-weight: var(--fw);
  line-height: var(--lh);
  letter-spacing: var(--ls);
}
.fixedBanner__arrow {
  display: grid;
  align-self: stretch;
  place-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(3.3rem, 33px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
}
.fixedBanner__arrow svg {
  width: 60%;
  height: auto;
}/*# sourceMappingURL=style.css.map */