body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 95vh;
  width: 100%;
}

body * {
  font-family: "Inter", sans-serif;
}

body.now-review {
  position: relative;
}

body.now-review::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

*:focus {
  outline: none;
}

#output-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#canvas {
  width: auto;
  height: 95vh;
  aspect-ratio: 9 / 16;
  /* 縦長アスペクト比を固定 */
  max-width: 100%;
  /* 画面幅を超えないように調整 */
  display: block;
  margin: 0 auto;
  /* 中央配置 */
}

#canvas,
#video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* width: 100%;
  height: auto; */
}

#video {
  z-index: 2;
  border-radius: 30px;
  top: 45%;
  width: auto;
  height: 70vh;
  aspect-ratio: 9 / 16;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.button-class {
  z-index: 999;
  position: absolute;

  height: 50px;
  width: 100px;
  font-size: 1.5em;
}

.select-menu {
  position: absolute;
  top: 20px;
  z-index: 100;
  height: 50px;
}

.select-menu>select {
  max-width: 200px;
  height: 100%;
  font-size: 1.5em;
}

.flamingo-logo {
  width: 100%;
  position: absolute;
  top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flamingo-logo>img {
  width: 300px;
}

.poweredbysnap-logo {
  /* width: 100%; */
  position: absolute;
  bottom: 30px;
  left: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.poweredbysnap-logo>img {
  width: 200px;
}