@charset “utf-8”;
/* Webフォントを定義 */
@font-face {
  font-family: "Senobi-Gothic"; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url("./font/Senobi-Gothic-Medium.ttf") format("truetype");
}
/* bold */
@font-face {
  font-family: "Senobi-Gothic"; /* フォント名 */
  src: url("./font/Senobi-Gothic-Bold.ttf") format("truetype");
  font-weight: bold; /* boldが使えるようになる */
}
/********
    共通
*********/
html {
  scroll-behavior: smooth;
}
body {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  background: #000;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  touch-callout: none;
  font-family: "Senobi-Gothic", sans-serif;
  font-size: 16px;
  color: #fff;
}
.wp-bg {
  background-color: #009fda;
  color: #fff;
}
.wp-font {
  color: #fff;
}
@media screen and (max-width: 550px) {
  .wp-bg {
    font-size: 7vw;
  }
}
@media screen and (max-width: 320px) {
  body {
    width: 320px;
  }
}

a {
  display: block;
}
a:hover {
  text-decoration: none;
}
img,
video {
  vertical-align: inherit;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  pointer-events: none;
  width: 100%;
}
/********
    ターゲット
*********/
/* .contents_inner{
    padding-top: 150px;
    margin-top:-150px;
} */
/********
    コンテナ
*********/
.wrap-container {
  max-width: 500px;
  min-width: 320px;
  width: 90%;
  margin: 0 auto;
}

/********
    結果
*********/
#message {
  margin: 0 auto;
  font-size: xx-large;
}
#name {
  margin: 0 auto;
  text-align: center;
}
/********
    フェードインコンテンツ
*********/
#fadelayer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
#fadelayer .fade_curcle {
  width: 80%;
  max-width: 300px;
  animation: 3s linear infinite trans;
}
@keyframes trans {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#fadelayer .fade_logo {
  width: 80%;
  max-width: 300px;
}
.lp-fadeIn {
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
  visibility: hidden;
  transform: translate(0, 10%);
}
.fade_on {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
/********
    フェードインコンテンツ
*********/
#modal_connect {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.button {
  cursor: pointer;
}
.button img {
  width: 90%;
  max-width: 400px;
}
.click-me {
  font-size: 120%;
  text-align: center;
}
/********
    QR読み込み用
*********/
#log {
  height: 300px;
  overflow-y: scroll;
  text-align: left;
  background-color: black;
  color: white;
  display: none;
}

canvas {
  width: 100%;
  height: auto;
}
#view-airdrop {
  display: none;
}
