@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap");
* {
  font-family: 'Noto Sans JP', sans-serif;
}

body, html {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  margin: 0;
}

[hide] {
  pointer-events: none;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.001;
  -webkit-transform: scale(0.001);
          transform: scale(0.001);
}

#LoadingScreen {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  background-color: #0008;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  z-index: 9999;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: nowrap;
  -ms-flex-direction: column;
      flex-direction: column;
  color: white;
  z-index: 9998;
}

#LoadingScreen p {
  text-align: center;
}

body {
  background-image: url(./background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

body > div {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

canvas {
  pointer-events: all;
  -ms-touch-action: auto;
      touch-action: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#capture, #capture_video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  border: solid #780000 2px;
  z-index: -100;
}

#record_end {
  width: 23vw;
  height: 23vw;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 8.5%;
  background-image: url(./assets/svg/record_end.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: none;
  margin: auto;
  top: unset;
}

#captureUI {
  position: fixed;
  bottom: 10vw;
  top: unset;
  width: 100vw;
  height: 25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

#captureUI object {
  z-index: 5000;
  pointer-events: all;
}

#capture, #capture_video {
  z-index: 9999;
  pointer-events: all;
}

#rotate_attention {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
}

@media (orientation: landscape) {
  #rotate_attention {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-image: url(./portrait_attention.svg);
    background-position: center;
    background-size: auto 90%;
    background-repeat: no-repeat;
    background-color: #780000cc;
  }
}

@media (orientation: portrait) {
  #rotate_attention {
    display: none;
    -webkit-transform: scale(0.001);
            transform: scale(0.001);
  }
}
/*# sourceMappingURL=style.css.map */