@import url(./reset.css);
@import url(./default.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@200;300;400;600;800&display=swap");
html {
  height: -webkit-fill-available;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 3.6505867014vw;
  }
}

body {
  overflow-x: hidden;
  background-color: #000;
  background-color: #1c1c1f;
  background-image: linear-gradient(350deg, #000000 40%, #4d4947 90%);
  overflow-x: hidden;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  overflow: hidden;
}

#loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  color: #0091d7;
  background-image: linear-gradient(340deg, #000 60%, #4c4a46 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 9999;
}
#loading .inner {
  font-size: 2rem;
  font-weight: 800;
}
#loading .inner img {
  width: 15rem;
  padding: 0 0 1rem 0;
}
#loading .inner #text {
  text-align: center;
  display: flex;
  justify-content: center;
}
#loading .inner #text span {
  display: block;
  padding: 0 0.2rem;
}
#loading .inner #text span:nth-child(2) {
  padding: 0 0.1rem 0 0.2rem;
}
#loading.loaded {
  opacity: 0;
}

.buruburu {
  -webkit-animation: buruburuMov 0.3s infinite linear alternate;
          animation: buruburuMov 0.3s infinite linear alternate;
}

@-webkit-keyframes buruburuMov {
  0% {
    transform: translate(0, 0) rotate(-3deg);
  }
  50% {
    transform: translate(0, -1px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(3deg);
  }
}

@keyframes buruburuMov {
  0% {
    transform: translate(0, 0) rotate(-3deg);
  }
  50% {
    transform: translate(0, -1px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(3deg);
  }
}
.h1Area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: flex-start;
  z-index: -1;
  padding: 4rem 3rem;
}
@media screen and (max-width: 767px) {
  .h1Area {
    padding: 4rem 6.5rem 4rem 6rem;
  }
}

.logoArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 1000;
  pointer-events: none;
}
.logoArea img.logo {
  pointer-events: all;
  position: absolute;
  bottom: 2.5rem;
  display: block;
  left: 3rem;
  width: 7rem;
  height: auto;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .logoArea img.logo {
    bottom: 1.2rem;
    left: 1.5rem;
    width: 5rem;
  }
}

#cameraPosText {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  color: aliceblue;
  display: none;
}

#lookAtText {
  color: aliceblue;
  position: absolute;
  display: none;
  bottom: 0.5rem;
  left: 0.5rem;
}

ul.btns {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  padding-bottom: 0.7rem;
  padding-right: 0.7rem;
  z-index: 100000;
  display: none;
}
ul.btns li {
  padding: 0.2rem 0.8rem;
  background-color: aliceblue;
  border-radius: 0.2rem;
  margin: 0 0.2rem;
  cursor: pointer;
}

#canvas {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}
#canvas .circle {
  position: absolute;
  width: 3rem;
  height: 3rem;
  display: block;
  color: aliceblue;
  font-size: 3rem;
  background-color: #fff;
  border: 5px solid rgb(7, 151, 248);
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
  pointer-events: all;
  -webkit-animation: tenmetu 1s infinite linear alternate;
          animation: tenmetu 1s infinite linear alternate;
}
#canvas .circle:hover {
  border: 2rem solid #8dd1ff;
}
@media screen and (max-width: 767px) {
  #canvas .circle {
    width: 6rem;
    height: 6rem;
  }
  #canvas .circle:hover {
    border: 5px solid rgb(7, 151, 248);
  }
}
@-webkit-keyframes tenmetu {
  0% {
    background-color: #fff;
  }
  50% {
    background-color: rgb(141, 209, 255);
  }
  100% {
    background-color: #fff;
  }
}
@keyframes tenmetu {
  0% {
    background-color: #fff;
  }
  50% {
    background-color: rgb(141, 209, 255);
  }
  100% {
    background-color: #fff;
  }
}

ul#videoUl {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  display: none;
  justify-content: flex-start;
}
ul#videoUl li {
  background-color: azure;
  padding: 0.4rem 1rem;
  cursor: pointer;
  margin-left: 0.4rem;
}
/*# sourceMappingURL=style.css.map */