@import "./style.css";

.preview.shorter{
  height: calc(100vh - 10vh - 65px);
}

.info-area {
  justify-content: space-between;
}
.vibrate {
  animation: vibrate 0.3s linear infinite;
}

@keyframes vibrate {
  0% { transform: translateX(0); }
  5% { transform: translateX(-8px); }
  10% { transform: translateX(8px); }
  15% { transform: translateX(0); }
  /* 85%までポーズ */
  85% { transform: translateX(0); }
  90% { transform: translateX(-8px); }
  95% { transform: translateX(8px); }
  100% { transform: translateX(0); }
}

.vibrate {
  animation: vibrate 0.3s linear infinite;
}
.icon{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 50px;
  width: 12vw;
  height: 30px;
  background-color: #f30387;
  margin-bottom: 10px;
  border: 1px solid #eee;
}

.icon img {
  object-fit: contain;
  height: 80%;
  display: block;
  margin: 0 auto;
}
.lang img{
  max-width: 50px;
  width: 12vw;
}


.hide{
  display: none;
}
#left_block.hide{
  visibility: hidden;
}

#top_banner{
  display: block;
  text-decoration: none;
}
#top_banner.hide{
  display: none;
}
.top_banner{
  height: 65px;
  box-sizing: border-box;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "Meiryo UI", "メイリオ", Meiryo, Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg,rgba(42, 123, 155, 1) 0%, #f305f7 0%, #000000 100%);
}
.top_banner li{
  padding: 5px 10px 10px;
}
.top_banner .top_banner_logo{
  width: 40%;
}
.top_banner .top_banner_logo img{
  max-width: 290px;
  width: 100%;
}
.top_banner .top_banner_text{
  width: 70%;
  text-align: center;
}
.top_banner .top_banner_text div{
  max-width: 200px;  
  margin: 0 0 0 auto;
}
.top_banner .bt{
  border: 1px solid gold;
  background-color: #000;
  padding: 0 1rem;
  line-height: 1.5;
}
.top_banner .bt span{
  color: gold;
  font-size: .8em;
}
@media (min-width: 450px) {
  .preview.shorter{
    height: calc(100vh - 10vh - 80px);
  }
  .top_banner{
    height: 80px;
    padding: 10px 20px;
    font-size: 18px;
  }
  .top_banner .top_banner_text div{
  max-width: 240px;  
  }
  .top_banner .bt {
    margin-top: 5px;
  }
}
@media (min-width: 1000px) {
  .preview.shorter{
    height: calc(100vh - 10vh - 100px);
  }
  .top_banner{
    height: 100px;
    font-size: 20px;
  }
  .top_banner .top_banner_text div{
  max-width: 300px;  
  }
}
