@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap");
@import url(" ./aframe/aframe-hypericc-cardlist.css");

@font-face {
  font-family: localArial;
  src: local("Arial");
  unicode-range: U+0030-0039;
}

html {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-feature-settings: "palt";
}

body {
  margin: 0;
  color: black;
  font-family: localArial, "IBM Plex Sans", "MFW-YuGoPr6N-Demi", sans-serif;
  background-color: #33496d;
}

nav label div {
  background-color: blue;
}

.menu-container>a:hover {
  color: blue;
}

nav input:checked~label div {
  background-color: rgba(220, 220, 220, 0.7);
}

#title {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  margin: 22px 0 0 24px;
  padding: 0;
  z-index: 1;
  user-select: none;
  -webkit-user-select: none;
}

@media screen and (max-width:767px) {
  #title {
    margin: 14px 0 0 16px;
  }
}

#title h1 {
  color: rgba(220, 220, 220, 0.7);
  font-size: 18px;
  line-height: 18px;
  margin: 0;
  padding: 0;
}

#title span[lang="en"] {
  font-family: localArial, "IBM Plex Sans";
}

#title span[lang="ja"] {
  font-family: "MFW-YuGoPr6N-Bold";
}

#title div {
  font-size: 12px;
}

#label {
  display: block;
  position: fixed;
  z-index: 9;
  pointer-events: none;
  min-width: 50vw;
}

#label div {
  display: block;
  position: absolute;
  background-color: rgba(100, 100, 100, 0.2);
  color: white;
  transform: translate(-50%, 12px);
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 11px;
  line-height: 11px;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
}

#cursor {
  display: block;
  position: fixed;
  z-index: 9;
  transform-origin: 50% 50%;
  transform: scale(1);
  animation: cursor 1s infinite alternate;
  pointer-events: none;
}

@keyframes cursor {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.2);
  }
}

#cursor div {
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  max-width: 10%;
  max-height: 10%;
}

#cursor div:nth-last-of-type(1) {
  top: 0;
  left: 0;
  border-top: 1px solid white;
  border-left: 1px solid white;
}

#cursor div:nth-last-of-type(2) {
  top: 0;
  right: 0;
  border-top: 1px solid white;
  border-right: 1px solid white;
}

#cursor div:nth-last-of-type(3) {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
}

#cursor div:nth-last-of-type(4) {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
}

.a-enter-vr {
  display: none;
}