*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  font-family: 'Noto Sans JP', sans-serif;
}
img{
  display: block;
  max-width: 100%;
}
video,iframe{
  width: 100%;
  height: 113px;
  object-fit: cover;
}
.container{
  position: relative;
  max-width: 1100px;
  height: 150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ff0200;
}
.card{
  position: absolute;
  bottom: 0;
  left: 175px;
  z-index: 10000;
}
.banner{
  background-color: #fff;
  width: 350px;
}
.preview{
  display: flex;
  width: 750px;
  justify-content: space-between;
  background-color: #ccc;
  border-radius: 5px;
  border: 5px solid #000;
  box-sizing: border-box;
}
.preview iframe{
  width: 100%;
}
.item{
  width: 250px;
  height: 100%;
  background-color: #000;
  border-left: 3px solid #000;
  box-sizing: border-box;
}
.item_block{
  position: relative;
}
.item_block nav,
.item_block a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.item_block a{
  z-index: 100;
}
.item_block nav{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 10;
}
li{
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
}
li.icon{
  width: 26px;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 2px 0 0 2px;
}
.icon img{
  height: 10px;
}
li.viewer{
  width: 30px;
  margin: 2px .5px 0 auto;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  line-height: 1;
}
.controler{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 7px 3px;
}
.controler a{
  color: #fff;
  font-size: 12px;
}
.controler a:hover{
  color: #fbe000
}
.bt{
  background-color: #fbe000;;
  border: none;
  border-radius: 3px;  
  font-size: 10px;
  padding: 3px 5px;
}
.bt:hover{
  background-color: #fff;
  cursor: pointer;
}

/* New elements styles */

.hide{
  display: none !important;
}


.vibrate {
  animation: vibrate 0.3s linear infinite;
}

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