@charset "UTF-8";
/* CSS Document */

#btn {
  width: auto;
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
  cursor: pointer;
  border-radius: 1vw;
  background: #0058b7;
}

#btn img{
  width: 100%;
  transform: translate(-1.5%,-5%)
}

#btn:active img{
  transform: translate(0,0)
}

#btn::before{
  content: "";
  width: 26%;
  height: 100%;
  background: url("../img/pointer.png") left top no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 48%;
  right: -12%;
  z-index: 1;
}

#btn .off_btn {
  display:none;
}

#btn_off {
  width: auto;
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}

#btn_off img {
  display:none;
}
#btn_off .off_btn {
  background: #a0a0a0;
  width: 190px;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  font-weight: bold;
  font-size: 20px;
}


.frame div{
  width: 73%;
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
}

.frame div img{
  width: 100%;
}

.frame div img.roulette{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}


