
body {
    text-align: center;
    padding: 0;
    margin: 0 auto;
    width: 1000px;
    min-width: 1000px;
}
ul {
    list-style: none;
}

.white{
    color: white;
}

.slot {
    width: 90%;
    height: 500px;
    overflow: hidden;
    margin: auto;
    border : solid 1px #333 ;
}
.slot-frame {
    height: 500px;
    position: relative;
    overflow: hidden;
    border : solid 1px #333 ;
    background-color: rgba(255,255,255,0.6);
}
.reels {
    width: 31%;
    position: absolute;
}
.reels:nth-child(1) {
    left: 0;
}
.reels:nth-child(2) {
    left: 33%;
}
.reels:nth-child(3) {
    right: 0;
}
.reel {
    height: 270px;
}
.reel img {
    display: block;
    width: 89%;
    margin: auto;
}

video {
    display:block;
    width: 100%;
}

video#bg-video {
    position:fixed;
    right:0;
    bottom:0;
    min-width:100%;
    min-height:100%;
    width:auto;
    height:auto;
    z-index:-1;
    opacity: 0.8;
}
/* ボタンとか */
.play-board{
    margin: 15px auto;
    background-color: rgba(255,255,255,0.8);
    width: 80%;
}
.play-board div{
    padding: 10px;
    margin-top: 5px;
}
.play-board.bg-dark{
    background-color: #444C7D;
    opacity: 0.9;
}
/* 枠演出 */
.last-one{
    background-color: deeppink;
    color: aliceblue;
    display: none;
    width: 60%;
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    /*opacity: 0.8;*/
}
.complete{
    background-color: blueviolet;
    color: aliceblue;
    display: none;
    width: 60%;
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    /*opacity: 0.8;*/
}
.lost{
    background-color: #D7AFA8;
    color: aliceblue;
    display: none;
    width: 60%;
    z-index: 100;
    position: absolute;
    top: 31%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.last-one h2{
    position: absolute;
    z-index: 101;
    top: 10px;
    left: 0;
    width: 100%;
    height: 60px;
    font-size: 36px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: deeppink;
}
.complete h2{
    position: absolute;
    z-index: 101;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100px;
    padding-top: 30px;
    padding-bottom: 15px;
    font-size: 36px;
    background-color: blueviolet;
}.complete h3{
     position: absolute;
     z-index: 101;
     top: 102px;
     left: 0;
     width: 100%;
     font-size: 25px;
     padding-bottom: 15px;
     background-color: blueviolet;
 }
button{
    width: 30%;
    height: 5%;
    font-size: 30px;
    font-weight: bold;
}