@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #EEEEEE;
  -ms-touch-action: pan-x pan-y;
      touch-action: pan-x pan-y;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
}

/*´éÓ°»­Ãæ*/
#screenPage {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100svh;
  overflow: hidden;
  background-color: #EEEEEE;
  z-index: 2;
}

#videoContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 100svh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  z-index: 2;
}
#videoContainer.is-close {
  display: none;
}

.canvas-wrapper {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #EEEEEE;
  overflow: hidden;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

#shutterButton {
  position: absolute;
  left: 50%;
  bottom: 2vw;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 15vw;
  height: 15vw;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

#ChangeFacingBtn {
  position: absolute;
  right: 2vw;
  top: 2vw;
  width: 10vw;
  aspect-ratio: 1/1;
  z-index: 2;
}

#videoContainer[data-mode=picture] #ChangeFacingBtn {
  display: none;
}

#shutterButton img {
  max-width: 100%;
}

.photoFrame {
  max-width: 100%;
  max-height: 100%;
}

#photoFrameImg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  z-index: 1;
}

/* ¥×¥ì¥Ó¥å©` */
#captureModal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: #FBF4E7;
  overflow-y: scroll;
  z-index: 4;
}
#captureModal.is-close {
  display: none;
}

#capturedImageDownload {
  display: block;
  width: 55%;
  margin: 0 auto;
}

.capture-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: #7d7d7d;
  padding: 6.4102564103vw 0 3.8461538462vw;
}
.capture-img img {
  width: 55%;
  background: #7d7d7d;
}

.capture-txt {
  font-size: 4.1025641026vw;
  color: #fff;
  margin-top: 2.5641025641vw;
}

#closeBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  position: absolute;
  top: 5.1282051282vw;
  right: 5.1282051282vw;
  width: 12.8205128205vw;
  height: 12.8205128205vw;
}
#closeBtn::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 10.2564102564vw;
  height: 2px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
}
#closeBtn::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 10.2564102564vw;
  height: 2px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  background: #fff;
}

#copyMessage {
  position: fixed;
  top: 0;
  left: 0;
  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;
  background: #27885D;
  width: 100%;
  height: 15.3846153846vw;
  font-size: 4.6153846154vw;
  font-weight: 700;
  color: #fff;
  -webkit-transform: translateY(-105%);
          transform: translateY(-105%);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.preview-btn {
  display: block;
  margin: 0 auto;
  width: 84.6153846154vw;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
}
.preview-btn#hashCopyBtn {
  position: relative;
  margin: 10.2564102564vw auto 12.8205128205vw;
}
.preview-btn#hashCopyBtn::before {
  position: absolute;
  content: "";
  bottom: -5.1282051282vw;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  border-top: 2.5641025641vw solid #27885D;
  border-left: 2.5641025641vw solid transparent;
  border-right: 2.5641025641vw solid transparent;
}
.preview-btn#shareXBtn {
  margin: 0 auto 5.1282051282vw;
}
.preview-btn#previewAdjustmentBtn {
  margin: 10.2564102564vw auto 15.3846153846vw;
}
.preview-btn#previewCloseBtn {
  width: 67.6923076923vw;
  margin: 15.3846153846vw auto 20.5128205128vw;
}

.preview-txt {
  font-size: 4.1025641026vw;
  line-height: 6.1538461538vw;
  padding: 0 3.8461538462vw;
}

.copy {
  font-size: 3.0769230769vw;
  color: #fff;
  text-align: center;
  height: 30.7692307692vw;
  background: #492D65;
  padding-top: 5.1282051282vw;
}

.is-inCamera {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.is-none {
  display: none !important;
}

.not-mobile-device {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  background-color: #EEEEEE;
  z-index: 100;
}

.landscape-device {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #EEEEEE;
  z-index: 99;
}

.split-photo-frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.camera-flash {
  visibility: hidden;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}
.camera-flash.is-flash {
  -webkit-animation: flash 2s ease-out forwards;
          animation: flash 2s ease-out forwards;
}

@-webkit-keyframes flash {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes flash {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
#shutterSound {
  display: none;
}/*# sourceMappingURL=style.css.map */