@charset "utf-8";
/*
7セグ・14セグフォント 「DSEG」
http://www.keshikan.net/fonts.html
Copyright けしかん
*/
@font-face {
    font-family: 'GH_7SEGRegular';
    src: url('fonts/GH_7SEGRegular.eot');
    src: url('fonts/GH_7SEGRegular.eot?')  format('embedded-opentype'),
         url('fonts/GH_7SEGRegular.woff2') format('woff2'),
         url('fonts/GH_7SEGRegular.woff')  format('woff'),
         url('fonts/GH_7SEGRegular.ttf')   format('truetype'),
         url('fonts/GH_7SEGRegular.svg#GH_7SEGRegular') format('svg');
}
/* ニューモーフィズムアレンジ */
.dent {
  background: #fbc42d;
  box-shadow: inset 0.2vw 0.2vw 0.3vw #daab27,
              inset -0.2vw -0.2vw 1.4vw #ffdd33;
}
.dent.fitted {
  background: hsl(0, 0%, 0%, 0.06);
}
.dent.fitted .cover {
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset hsla(50, 80%, 30%, 1) 0 0 0 0.13vw, /* 枠線 */
    inset 0.3vw 0.3vw 0.4vw #daab27,    /* パネル埋め込みの裏の陰影（上・左） */
    inset -0.2vw -0.2vw 0.4vw #ffdd33,  /* パネル埋め込みの裏の陰影（下・右） */
    inset hsla(0, 0%, 100%, 0.7) 0 0.03vw 0.1vw 0.35vw,  /* パネル上の段差（反射） */
    inset hsla(0, 0%, 0%, 0.25) 0 -0.02vw 0 0.3vw,      /* パネル下の段差（陰影） */
    hsla(0, 0%, 0%, 0.1) 0 -0.1vw 0.2vw 0.1vw,          /* 枠上埋め込みの陰影 */
    hsla(50, 100%, 80%, 0.5) 0 0 0.3vw 0.1vw;           /* 枠下埋め込みの反射 */

  background-image:linear-gradient(180deg, hsl(0, 0%, 90%, 0.01) 0%,
    hsl(0, 0%, 78%, 0.05) 40%, 
    hsl(0, 0%, 90%, 0.25) 55%, 
    hsl(0, 0%, 78%, 0.1) 60%,
    hsl(0, 0%, 70%, 0.15) 100%);
}
/* グラスモーフィズムアレンジ */
.glass-morph {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 3px 5px 0 rgba(31, 38, 135, 0.25);
  backdrop-filter: blur(8.0px);
  -webkit-backdrop-filter: blur(8.0px);
  border: 1px solid rgba( 255, 255, 255, 0.18);
}
/* メタリックアレンジ */
.metal {
  background-color: hsl(0, 0%, 90%);
  box-shadow: inset hsla(50, 80%, 10%, 0.7) 0 0 0 0.16vw,    /* 枠線 */
    inset hsla(0, 0%, 15%, 0.8) 0 -0.1vw 0.25vw 0.2vw,  /* 段差の縁を緩やかにする */
    inset hsla(0, 0%, 100%, 0.7) 0 0.1vw 0.1vw 0.35vw,  /* パネル上の段差（反射） */
    inset hsla(0, 0%, 0%, 0.25) 0 -0.1vw 0 0.35vw,      /* パネル下の段差（陰影） */
    
    hsla(0, 0%, 0%, 0.1) 0 -0.1vw 0.2vw 0.2vw,          /* 枠上埋め込みの陰影 */
    hsla(50, 100%, 80%, 0.5) 0 0 0.3vw 0.2vw;           /* 枠下埋め込みの反射 */
  
  transition: color .2s;
}
.metal.linear {
  background-image: -webkit-repeating-linear-gradient(135deg, hsla(0, 0%, 100%,0) 0%, hsla(0, 0%, 100%, 0) 6%, hsla(0, 0%, 100%, 0.05) 7.5%),
    -webkit-repeating-linear-gradient(135deg, hsla(0, 0%, 0%,0) 0%, hsla(0, 0%, 0%, 0) 4%, hsla(0, 0%, 0%, 0.02) 4.5%),
    
    linear-gradient(180deg, hsl(0, 0%, 78%) 0%, 
    hsl(0, 0%, 90%) 47%, 
    hsl(0, 0%, 78%) 53%,
    hsl(0, 0%, 70%) 100%);
}
/* フィルター関連 */
.filter-dark90 {
  filter: brightness(10%);
}
.filter-dark60 {
  filter: brightness(40%);
}
.filter-initial {
  filter: brightness(100%);
}
@keyframes flashReel {
  0%, 100% {
    filter: brightness(100%);
  }
  50% {
    filter: brightness(70%);
  }
}
@keyframes flashSharp {
  40%, 80% {
    filter: brightness(100%);
  }
  0%, 100% {
    filter: brightness(10%);
  }
}
.filter-flash {
  animation-name: flashReel;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.filter-flash-sec {
  animation-name: flashReel;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}
.filter-flash-hisec {
  animation-name: flashReel;
  animation-duration: 0.2s;
  animation-timing-function: linear;
  animation-iteration-count: 3;
}
.filter-flash-hisec5 {
  animation-name: flashReel;
  animation-duration: 0.2s;
  animation-timing-function: linear;
  animation-iteration-count: 5;
}
.filter-flash-blink {
  animation-name: flashSharp;
  animation-duration: 0.2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.filter-flash-hiblink10 {
  animation-name: flashSharp;
  animation-duration: 0.1s;
  animation-timing-function: linear;
  animation-iteration-count: 10;
}
/* 細々オプション関連 */
.circle {
  border-radius: 50%;
}
.unshown {
  display: none;
}
.transparent {
  opacity: 0;
}
.text-left {
  text-align: left;
}
.align-left {
  float: left;
}

html {
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

body {
  font-family: serif;
  background-color: #EEE8AA;
}
body.modal-open {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  padding-right: 15px;
}

* {
  box-sizing: border-box;
}

ul.globalnav{
  top: 0px;
  left: 0px;
  width: 100%;
  margin: 0px;
  padding: 0px;
  position: fixed;
  z-index: 1200;
  background-color: #000;
  color: #fff;
  border-bottom: 1px #222 solid;
}

.globalnav li{
  float: right;
  text-align: center;
  background-color: #000;
  list-style-type: none;
}
li a{
  font-family: "M PLUS Rounded 1c", sans-serif;
  display: block;
  width: 100%;
  padding: 6px 10px;
  line-height: 2em;
  text-decoration: none;
  text-align: right;
  color: #fff;
}

li a:visited{
  color: #c0c0c0;
}

li a:hover {
  background: #222;
  color: #fff;
}

li a:active{
  color: #fff;
}

ul .unlink a {
  background: #000;
  color: #333;
}

ul .current a {
  background: #222;
  color: #fff;
}

/*------------Micro clearfix--------------*/
ul.globalnav {
  zoom: 1;
}

ul.globalnav:before, ul:after {
  content: "";
  display: table;
}

ul.globalnav:after {
  clear: both;
}

/*閉じる用の薄黒カバー*/
#nav_close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 1000;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav_content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  text-align: right;
  z-index: 1100;
  width: 90%;
  max-width: 20vw;
  height: 100%;
  background: #000;
  border-right: 1px #222 solid;
  transition: .3s ease-in-out;
  transform: translateX(105%);
}

.sidenav ul {
  background: #333;
  width: 100%;
  /*配置*/
  position: absolute;
  top: 25px;
  left: 0;
  padding-inline-start: 0px;
}

.sidenav li {
  margin: 0px;
  padding: 0px;
  text-align:center;
  background-color: #000;
  list-style-type: none;
  pointer-events: auto;
  border-bottom: 1px #222 solid;
}

/****メニューオープン時****/
#nav_content:target .menuopen {
  /*配置*/
  display: none;
}

#nav_content:target .menuclose {
  /*配置*/
  display: block;
}

#nav_content:target ul{
  /*配置*/
  display: block;
}

/*チェックが入ったらもろもろ表示*/
#nav_input:checked ~ #nav_close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav_input:checked ~ #nav_content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.sidenav {
  display: block;
}

.setting-menu {
  position: absolute;
  font-family: "M PLUS Rounded 1c", sans-serif;
  width: 100%;
}
.setting-content {
  z-index: 1100;
  position: relative;
  top: 6vh;
  width: 70vw;
  max-width: 700px;
  padding: 30px 30px 15px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  transition: .3s ease-in-out;
  transform: translateY(-200%);
}
#cast_setting_input:checked ~ #cast_setting_content,
#lamp_setting_input:checked ~ #lamp_setting_content,
#action_setting_input:checked ~ #action_setting_content,
#title_setting_input:checked ~ #title_setting_content,
#movie_setting_input:checked ~ #movie_setting_content,
#lightsoff_setting_input:checked ~ #lightsoff_setting_content {
  transform: translateY(0%);
  box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.8);
}
.setting-title {
  position: absolute;
  padding: 6px 10px;
  color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  background:  rgba(0, 0, 0, 0.8);
  border-radius: 5px 5px 0 0;
}
.setting-content .heder-space {
  position: relative;
  height: 20px;
}
.setting-content .detail-wrapper {
  height: 70vh;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow-y: auto;
}
.setting-content .detail {
  position: relative;
  width: 300px;
  height: 250px;
  margin: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
}
.setting-content .detail.long {
  height: 500px;
}
.detail .title {
  height: 30px;
  line-height: 30px;
  padding-left: 10px;
  color: #333;
  background: #ddd;
}
.detail .content {
  width: 100%;
  text-align: center;
}
.detail .content iframe {
  margin: 10px;
}
.detail .content img {
  width: 100%;
  max-height: 150px;
}
.detail .content img.lamp-image {
  width: 150px;
  height: 150px;
}
.detail .content img.top-panel-image {
  max-width: 150px;
  max-height: 150px;
}
.detail .content .text {
  border: 0;
  padding: 5px;
  font-size: 1em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #333;
  border: 1px #ccc solid;
  margin: 10px 0;
  width: 250px;
  border-radius: 3px;
}
.detail .content p {
  margin: 0 15px;
  font-size: 0.9em;
  color: #777;
}
.image-top {
  margin-top: 10px;
}

.detail .setbtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  padding: 3px 0;
  margin: 0 auto;
}
.setbtn label {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.8em;
  width: 100px;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  margin: 5px 10px;
  background: #fff;
  border: 1px #C0C0C0 solid;
  cursor: pointer;
}
.setbtn label > input{
  display:none;
}
.setbtn label.upload {
  background: #f0e68c;
}

.radio {
  margin-left: 10px;
  text-align: left;
}
.radio label {
  position: relative;
  width: 100%;
  padding-left: 25px;
  margin: 5px 0;
  display: inline-block;
}
.radio.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.radio label ~ label{
  margin-left: 15px;
}

.radio input[type=radio] {
  display: none;
}

.radio input[type=radio] + span::before {
  content: "";
  display: block;
  left: 0;
  top: 3px;
  position: absolute;
  border-top: 8px transparent solid;
  border-left: 17px #ff8c00 solid;
  border-bottom: 8px transparent solid;
  opacity: 0;
  transition: .1s;
  cursor: pointer;
}
.radio span {
  cursor: pointer;
}

.radio input[type=radio]:checked + span::before {
  opacity: 1;
}

.detail label {
  display:block;
  float:left;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.detail label.checkbox-wrapper input {
  display: none;
}
.detail label.checkbox-wrapper span {
  position: relative;
  display:block;
  float:left;
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 10px;
}
.detail label.checkbox-wrapper span::after {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  top: 50%;
  left: calc(50% - 9px);
  width: 9px;
  height: 20px;
  margin-top: -16px;
  opacity: 0;
  border-right: 6px solid #f0e68c;
  border-bottom: 3px solid #f0e68c;
  transform: rotate(45deg);
}
.detail label.checkbox-wrapper span .title {
  position: relative;
  z-index: 1;
  line-height: 1em;
  padding-left: 0;
  background: none;
}
.detail .checkbox-wrapper input:checked + span {
  background: #ff8c00;
}
.detail .checkbox-wrapper input:checked + span::after {
  opacity: 1;
}

.switch {
  position: relative;
  letter-spacing: 0;
  text-align: center;
  font-size: 18px;
  width: 100px;
  margin: 10px 20px;
  background: #fff;
}
.switch input[type="checkbox"] {
  display: none;
}
.switch label {
  display: block;
  box-sizing: border-box;
  line-height: 36px;
  height: 40px;
  border: 2px solid #999999;
  border-radius: 20px;
}
.switch input[type="checkbox"]:checked +label {
  border-color: #78bd78;
}
.switch label span:after{
  content: "LOCK";
  padding: 0 0 0 36px;
  color: #999999;
}
.switch input[type="checkbox"]:checked + label span:after {
  content: "設定";
  padding: 0 36px 0 0;
  color: #fff;
}
.switch .switch-img {
  position: absolute;
  width: 32px;
  height: 32px;
  background: #999999;
  top: 4px;
  left: 4px;
  border-radius: 16px;
  transition: .2s;
}
.switch input[type="checkbox"]:checked ~ .switch-img {
  transform: translateX(60px);
  background: #fff;
}
.switch input[type="checkbox"]:checked ~ label {
  background: #78bd78;
}
.switch-title {
  position: relative;
  float: left;
  line-height: 40px;
  height: 40px;
  margin-left: 10px;
}
.play-position i {
  font-size: 1.2em;
  color: #ec3323;
  cursor: pointer;
}

.setting-content table {
  font-size: 0.9em;
  width: 100%;
  border-collapse: collapse;
}

.setting-content table tr {
  border: #fff 2px solid;
  border-bottom: none;
}

.setting-content table th {
  position: relative;
  text-align: left;
  width: 20%;
  background-color: #fbc42d;
  color: #333;
  text-align: center;
  padding: 10px 5px;
  border-right: #fff 2px solid;
}

.setting-content table td {
  text-align: left;
  width: 20%;
  text-align: center;
  background-color: #eee;
  border: #fff 2px solid;
  overflow: hidden;
}
.setting-content table td:first-of-type {
  border-top: none;
}

.btn_close{
  position: absolute;
  text-align: right;
  z-index: 10;
  padding: 6px 10px;
  color: #777;
  top: 0;
  right: 0;
  width: 100%;
}


#reel_1,
#reel_2,
#reel_3 {
  position: relative;
  float: left;
  width: 12vw;
  height: 17vw;
  background-color: white;
  border: 0px;
  overflow: hidden;
}

#reelframe {
  position: relative;
  border-radius: 0.5vw;
  background-color: #000;
  border: 4px #bfbfbf groove;
  margin: 0 auto;
}

.reelbg,
.reelbgshade-top,
.reelbgshade-hitop,
.reelbgshade-bottom,
.reelbgshade-hibottom,
.reelbgshade-darkbottom {
  width: 1.8vw;
}
.reelbg {
  position: relative;
  float: left;
  height: 17vw;
  background-color: #7f7f7f;
  border-left: 2px #000 groove;
  border-right: 1px #000 groove;
}

.reelbgshade-top {
  position: absolute;
  z-index: 300;
  height: 2vw;
  background: -moz-linear-gradient(top, rgba(0,0,0,1), rgba(0,0,0,1));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
  background: -o-linear-gradient(top, rgba(0,0,0,1), rgba(0,0,0,1));
  background: linear-gradient(top, rgba(0,0,0,1), rgba(0,0,0,1));
}
.reelbgshade-hitop {
  position: absolute;
  z-index: 100;
  height: 4vw;
  top: 0.5vw;
  background: -moz-linear-gradient(top, rgba(255,255,255,0.7), rgba(255,255,255,0));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.7)), to(rgba(255,255,255,0)));
  background: -o-linear-gradient(top, rgba(255,255,255,0.7), rgba(255,255,255,0));
  background: linear-gradient(top, rgba(255,255,255,0.7), rgba(255,255,255,0));
}
.reelbgshade-bottom {
  position: absolute;
  z-index: 200;
  height: 17vw;
  background: -moz-linear-gradient(top, rgba(0,0,0,0.4), rgba(0,0,0,1));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.4)), to(rgba(0,0,0,1)));
  background: -o-linear-gradient(top, rgba(0,0,0,0.4), rgba(0,0,0,1));
  background: linear-gradient(top, rgba(0,0,0,0.4), rgba(0,0,0,1));
}
.reelbgshade-hibottom {
  position: absolute;
  z-index: 300;
  height: 6vw;
  bottom: 0px;
  background: -moz-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,0.8));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), to(rgba(255,255,255,0.8)));
  background: -o-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,0.8));
  background: linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,0.8));
}
.reelbgshade-darkbottom {
  content: "";
  position: absolute;
  z-index: 300;
  height: 5vw;
  bottom: 0px;
  background: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,1));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), to(rgba(0,0,0,1)));
  background: -o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,1));
  background: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,1));
}

#reel_1 .wrapper,
#reel_2 .wrapper,
#reel_3 .wrapper {
  position: absolute;
  width: 12vw;
}

#reel_1 .wrapper .slot,
#reel_2 .wrapper .slot,
#reel_3 .wrapper .slot {
  position: relative;
  z-index: 1;
  width: 12vw;
  text-align: center;
  padding-top: 2px;
  background: #fff;
}

#reel_1 .wrapper::after,
#reel_2 .wrapper::after,
#reel_3 .wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 3px;
  background: -moz-linear-gradient(top, rgba(20,20,20,0.2), rgba(20,20,20,0));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20,20,20,0.2)), to(rgba(20,20,20,0)));
  background: -o-linear-gradient(top, rgba(20,20,20,0.2), rgba(20,20,20,0));
  background: linear-gradient(top, rgba(20,20,20,0.2), rgba(20,20,20,0));
}

.reelshade-top {
  position: absolute;
  z-index: 300;
  width: 12vw;
  height: 3vw;
  background: -moz-linear-gradient(top, rgba(20,20,20,0.5), rgba(20,20,20,0));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20,20,20,0.5)), to(rgba(20,20,20,0)));
  background: -o-linear-gradient(top, rgba(20,20,20,0.5), rgba(20,20,20,0));
  background: linear-gradient(top, rgba(20,20,20,0.5), rgba(20,20,20,0));
}

.reelshade-bottom {
  position: absolute;
  z-index: 300;
  width: 12vw;
  height: 3vw;
  bottom: 0px;
  background: -moz-linear-gradient(top, rgba(20,20,20,0), rgba(20,20,20,0.5));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20,20,20,0)), to(rgba(20,20,20,0.5)));
  background: -o-linear-gradient(top, rgba(20,20,20,0), rgba(20,20,20,0.5));
  background: linear-gradient(top, rgba(20,20,20,0), rgba(20,20,20,0.5));
}

.reelboundary::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  width: 12vw;
  height: 3px;
  top: 0;
  background: -moz-linear-gradient(top, rgba(20,20,20,0.3), rgba(20,20,20,0));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20,20,20,0.3)), to(rgba(20,20,20,0)));
  background: -o-linear-gradient(top, rgba(20,20,20,0.3), rgba(20,20,20,0));
  background: linear-gradient(top, rgba(20,20,20,0.3), rgba(20,20,20,0));
}

.data-panel-wrapper {
  position: relative;
  z-index: 500;
  top: 40px;
  width: 60vw;
  margin: 0 auto;
}
.data-panel {
  position: absolute;
  z-index: 1;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.1em;
  color: #333;
  text-shadow: 0 0 2px #fff;
  min-width: 13vw;
  margin: 0 auto;
}
.data-panel.left {
  left: 0;
}
.data-panel.right {
  right: 0;
}
.data-panel .round-all {
  border-radius: 3px;
}
.data-panel .round-top {
  border-radius: 3px 3px 0 0;
}
.data-panel .round-bottom {
  border-radius: 0 0 3px 3px;
}
.data-panel table {
  width: 100%;
}
.data-panel table th {
  width: 50%;
  padding: 0 3px;
  text-align: left;
}
.data-panel table td {
  width: 50%;
  padding: 0 3px;
  text-align: right;
}
.data-panel table th.quarter,
.data-panel table td.quarter {
  width: 25%;
}
.data-panel .line-left {
  border-left: rgba(0, 0, 0, 0.2) 1px solid;
}
.data-panel .line-right {
  border-right: rgba(0, 0, 0, 0.2) 1px solid;
}
.data-panel .line-top {
  border-top: rgba(0, 0, 0, 0.2) 1px solid;
}
.data-panel .line-bottom {
  border-bottom: rgba(0, 0, 0, 0.2) 1px solid;
}
.data-panel .bg-bright {
  background: rgba(255, 255, 255, 0.5);
}
.data-panel .pull-menu {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: max-width 0.8s;
}
.data-panel .pull-menu.data {
  position: relative;
  z-index: 0;
  max-height: 0;
  background: rgba(255, 255, 255, 0.4);
  transition: max-height .3s;
}
.data-panel .history {
  max-height: 10vw;
  overflow-y: scroll;
}
#data_panel_input:checked ~ .pull-menu {
  max-width: 0;
}
#data_panel_input:checked ~ .pull-trigger {

}
#data_panel_input:checked ~ .pull-trigger .arrow-left {
  transform: rotate(45deg);
}

#slotbox {
  position: relative;
  top: 60px;
  width: 60vw;
  padding: 2vw 0 9vw;
  background: #fbc42d;
  box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.8);
  border-radius: 5vw;
  margin: 0 auto;
  overflow: hidden;
}

.top-panel {
  position: relative;
  text-align: center;
  width: 54vw;
  height: 15vw;
  margin: 0 auto;
  padding: 0.8vw;
  margin-bottom: 10px;
  border-radius: .3vw;
}
.top-panel img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: auto;
  max-height: auto;
  padding: 0.2vw;
  transform : translate(-50%, -50%);
}

#player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform : translate(-50%, -50%);
}
.player-wrapper {
  background: #000;
}
.player-unshown {
  opacity: 0;
}

.door-slide-space {
  position: absolute;
  top: 0;
  width: 27vw;
  height: 100%;
}
.door-slide-space.left {
  z-index: 1;
  left: 0;
  transition: .5s ease-in-out;
}
.door-slide-space.right {
  z-index: 1;
  right: 0;
  transition: .5s ease-in-out;
}
.door-slide-space.center {
  z-index: 0;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  margin: 0 auto;
  overflow: hidden;
}
.navi-wrapper {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.5);
  transition: .3s ease-in-out;
}
.navi-space {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.navi-space div.left {
  width: 50%;
  height: 100%;
}
.navi-space div.right {
  width: 50%;
  height: 100%;
}
.navi-space img {
  position: relative;
  margin-top: 5%;
  max-width: 80%;
  max-height: 90%;
  max-width: auto;
  max-height: auto;
  padding: auto;
  transform: auto;
}
.navi-space p {
  position: relative;
  display: block;
  bottom: 5%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 3vw;
  text-shadow: 1px 1px 2px #fff, 0 0 1em #fff, 0 0 0.2em #fff;
}
.navi-space div.left img {
  margin-right: 10px;
}.navi-space div.right p {
  text-align: left;
}
.navi-hide-right {
  transform: translateX(120%);
}

.door-wrapper {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.door-wrapper .door {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fbc42d;
  box-shadow: inset hsla(50, 80%, 30%, 1) 0 0 0 0.13vw, /* 枠線 */
    inset 0.3vw 0.3vw 0.4vw #daab27,    /* パネル埋め込みの裏の陰影（上・左） */
    inset -0.2vw -0.2vw 0.4vw #ffdd33,  /* パネル埋め込みの裏の陰影（下・右） */
    inset hsla(0, 0%, 100%, 0.7) 0 0.03vw 0.1vw 0.35vw,  /* パネル上の段差（反射） */
    inset hsla(0, 0%, 0%, 0.25) 0 -0.02vw 0 0.3vw,      /* パネル下の段差（陰影） */
    hsla(0, 0%, 0%, 0.1) 0 -0.1vw 0.2vw 0.1vw,          /* 枠上埋め込みの陰影 */
    hsla(50, 100%, 80%, 0.5) 0 0 0.3vw 0.1vw;           /* 枠下埋め込みの反射 */

  background-image:linear-gradient(180deg, hsl(0, 0%, 90%, 0.01) 0%,
    hsl(0, 0%, 78%, 0.05) 40%, 
    hsl(0, 0%, 90%, 0.25) 55%, 
    hsl(0, 0%, 78%, 0.1) 60%,
    hsl(0, 0%, 70%, 0.15) 100%);
}
.door-wrapper .door.left {
  transform: translateX(50%);
}
.door-wrapper .door.right {
  transform: translateX(-50%);
}
#bonus_movie_input:checked ~ .door-slide-space.left {
  transform: translateX(-49%);
}
#bonus_movie_input:checked ~ .door-slide-space.right {
  transform: translateX(49%);
}

.slotTitle {
  position: relative;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 2.5vw;
  line-height: 0.8em;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 0 0 0.3vw #fff;
  overflow: hidden;
}
.dent .slotTitle.bright {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 0.3vw #000;
}

#slotMsg {
  background-color: black;
  color: white;
  font-weight: bold;
  font-size: 1.0em;
  text-align: center;
  border: 1px #C0C0C0 inset;
  border-radius: 0.3vw;
  width: 54.6vw;
  margin: 0 auto;
}

.center-panel {
  position: relative;
  margin-top: 1vw;
}
.counterframe {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40vw;
  height: 4.5vw;
  margin: 0 auto;
  padding: 0.4vw;
  border-radius: 0.3vw;
}
.counterframe.dent {
  box-shadow: inset 0.1vw 0.1vw 0.3vw #daab27,
              inset -0.13vw -0.15vw 0.3vw #ffdd33;
}
.point-lamp-wrapper {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 1.8vw;
  height: 100%;
  width: 5vw;
  margin-top: 1%;
}
.point-lamp {
  height: 24%;
}
.point-lamp span {
  display: block;
  box-sizing: content-box;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 30%;
  line-height: 23%;
  width: 10%;
  height: 23%;
  background-color: #191919;
  border-radius: 5%;
  border: 2px #000 solid;
}
.point-lamp span::after {
  content: "";
  display: block;
  margin-left: 1vw;
}
.point-lamp.replay span::after {
  content: "Replay";
  display: block;
}
.point-lamp.bet1 span::after {
  content: "1BET";
  display: block;
}
.point-lamp.bet2 span::after {
  content: "2BET";
  display: block;
}
.point-lamp.bet3 span::after {
  content: "3BET";
  display: block;
}
.point-lamp span.highlight {
  background-color: #cb0000;
  box-shadow: inset 0 0 1px 0.5px rgba(0,0,0,0.7);
  box-shadow: inset -0.6px 0.6px 1px 0.5px rgba(255,255,255,0.7);
}

.dseg {
  font-family: 'GH_7SEGRegular', sans-serif;
  font-size: 2.6vw;
  height: 90%;
  color: #cb0000;
  background-color: #191919;
  border: 0.2vw #000 groove;
  border-radius: 0.2vw;
  margin: 0 2vw;
}
.dseg.credit-seg,
.dseg.payout-seg {
  width: 4vw;
}
.dseg.notice-seg {
  width: 6vw;
}
.dseg .dseg-text {
  text-align: right;
  padding-top: .1vw;
  width: 100%;
}

.lamp.left {
  position: absolute;
  left: 0;
  bottom: 0;
}
.lamp.right {
  position: absolute;
  right: 0;
  bottom: 0;
}
.lamp.upper-left {
  position: absolute;
  left: 0;
  bottom: 12.5vw;
}
.lamp.upper-right,
.lamp.upper-right-rev {
  position: absolute;
  right: 0;
  bottom: 12.5vw;
}
.lamp img {
  width: 10vw;
  height: 10vw;
}
.lamp.upper-right-rev img {
  transform: scale(-1, 1);
}

.leverFrame {
  position: absolute;
  left: 0;
  margin-top: 1.5vw;
  margin-left: 5vw;
}

.lever{
  width: 5.5vw;
  height: 5.5vw;
  margin-top: 0;
  background-color: #202020;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.lever::before {
  display: block;
  content: "";
  width: 1.5vw;
  height: 1.5vw;
  top: 1vw;
  left: 3vw;
  position: absolute;
  background-color: #FFF;
  border-radius: 50%;  
  z-index: 550;
  filter: blur(0.3vw);
}
.lever::after {
  display: block;
  content: "";
  width: 6vw;
  height: 6vw;
  top: 0;
  left: 0;
  position: absolute;
  filter: blur(0.3vw);
  background-color: transparent;
  z-index: 500;
  box-shadow: inset 1vw -1vw 0 -0.5vw rgba(0,0,0,0.9), inset 0 0.1vw 0 0.1vw rgba(255,255,255,0.8);
  border-radius: 50%;
}
.lever-on {
  animation-name: lever-on;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
}
@keyframes lever-on {
  0% {transform:translateY(10%);}
  50% {transform:translateY(10%);}
  100% {transform:translateY(0%);}
}

.btnframe {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  margin-top: 1vw;
}
.btnframe .metal.linear {
  width: 95%;
  height: 10vw;
  padding: 0.8vw;
  border-radius: .8vw;
  border-radius: 1vw;
}

.stopBtnframe {
  display: flex;
  justify-content: center;
  width: 37vw;
  background: -webkit-linear-gradient(top, rgba(70,70,70,1) 0%,rgba(10,10,10,1) 99%);
  background: -moz-linear-gradient(top, rgba(70,70,70,1) 0%,rgba(10,10,10,1) 99%);
  background: linear-gradient(top, rgba(70,70,70,1) 0%,rgba(10,10,10,1) 99%);
  border-radius: 0.8vw;
  text-align: center;
  padding: 0.8vw 0;
  margin: 0 auto;
  box-shadow: inset 0 0 0.4vw rgba(0,0,0,0.9), inset -0.1vw 0.2vw 0.2vw rgba(255,255,255,0.7);
}
.stopBtn {
  width: 7vw;
  height: 7vw;
  margin: 0 2vw;
  border-radius: 50%;
}
.stopBtn-shadow {
  background: -webkit-linear-gradient(top, rgba(180,180,180,1) 0%,rgba(80,80,80,1) 99%);
  background: -moz-linear-gradient(top, rgba(180,180,180,1) 0%,rgba(80,80,80,1) 99%);
  background: linear-gradient(top, rgba(180,180,180,1) 0%,rgba(80,80,80,1) 99%);
  box-shadow: inset 0 0 0.4vw rgba(0,0,0,0.9), inset -0.1vw 0.2vw 0.2vw rgba(255,255,255,0.9);
}
.stopBtn-shadow-push {
  background: -webkit-linear-gradient(top, rgba(70,70,70,1) 0%,rgba(170,170,170,1) 99%);
  background: -moz-linear-gradient(top, rgba(70,70,70,1) 0%,rgba(170,170,170,1) 99%);
  background: linear-gradient(top, rgba(70,70,70,1) 0%,rgba(170,170,170,1) 99%);
  box-shadow: inset 0 0 0.4vw rgba(0,0,0,0.9), inset 0vw 0.1vw 0.2vw rgba(255,255,255,0.9);
}
.stop-disabled {
  border: 4px #808080 inset;
}
.stop-available {
  border: 4px #FAF0E6 inset;
}
.pushBtn-wrapper {
  position: absolute;
  z-index: 500;
  right: 0;
  bottom: 0;
  height: 10vw;
  border-radius: 3px 0 0 3px;
}
.pushBtnframe {
  display: flex;
  justify-content: center;
  max-width: 0;
  height: 100%;
  padding-top: 1vw;
  padding-bottom: 1vw;
  margin: 0 auto;
  background-color: hsl(0, 0%, 90%);
  background-image: -webkit-repeating-linear-gradient(135deg, hsla(0, 0%, 100%,0) 0%, hsla(0, 0%, 100%, 0) 6%, hsla(0, 0%, 100%, 0.05) 7.5%),
    -webkit-repeating-linear-gradient(135deg, hsla(0, 0%, 0%,0) 0%, hsla(0, 0%, 0%, 0) 4%, hsla(0, 0%, 0%, 0.02) 4.5%),
    linear-gradient(180deg, hsl(0, 0%, 78%) 0%, 
    hsl(0, 0%, 90%) 47%, 
    hsl(0, 0%, 78%) 53%,
    hsl(0, 0%, 70%) 100%);
  overflow: hidden;
  transition: max-width .3s;
}
@keyframes vibrate {
  0% {
    margin-left: 10px;
    margin-right: 0;
  }
  20% {
    margin-left: 0;
    margin-right: 10px;
  }
  40% {
    margin-left: 10px;
    margin-right: 0;
  }
  60% {
    margin-left: 0;
    margin-right: 10px;
  }
  80% {
    margin-left: 10px;
    margin-right: 0;
  }
  100% {
    margin-left: 0;
    margin-right: 0;
  }
}
@keyframes vibrate_vertical {
  0% {
    transform: translateY(-10%);
  }
  20% {
    transform: translateY(0%);
  }
  40% {
    transform: translateY(-10%);
  }
  60% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0%);
  }
}
.vibration {
  animation-name: vibrate;
  animation-duration: 0.1s;
  animation-timing-function: linear;
  animation-iteration-count: 5;
}
.vibration-vertical {
  animation-name: vibrate_vertical;
  animation-duration: 0.1s;
  animation-timing-function: linear;
  animation-iteration-count: 3;
}
.pushBtn {
  text-align: center;
  border-radius: 35%; 
  width: 12vw;
  height: 8vw;
  border: 0.4vw #000 solid;
  transition: transform .3s;
  transform: translateX(120%);
}
.pushText {
  font-family: 'Frijole', sans-serif;
  font-size: 2.2vw;
  padding-top: 1.7vw;
}
.pushBtn-shadow {
  background: -webkit-linear-gradient(top, rgba(180,180,180,1) 0%,rgba(250,250,250,1) 99%);
  background: -moz-linear-gradient(top, rgba(180,180,180,1) 0%,rgba(250,250,250,1) 99%);
  background: linear-gradient(top, rgba(180,180,180,1) 0%,rgba(250,250,250,1) 99%);
  box-shadow: inset 0 -0.4vw 0 0.2vw rgba(0,0,0,0.9), inset 0 0 0 0.2vw rgba(0,0,0,0.9), inset 0vw 0.1vw 0.2vw rgba(255,255,255,0.9);
}
.pushBtn-shadow-push {
  background: -webkit-linear-gradient(top, rgba(180,180,180,1) 0%,rgba(250,250,250,1) 99%);
  background: -moz-linear-gradient(top, rgba(180,180,180,1) 0%,rgba(250,250,250,1) 99%);
  background: linear-gradient(top, rgba(180,180,180,1) 0%,rgba(250,250,250,1) 99%);
  box-shadow: inset 0 -0.4vw 0 0.2vw rgba(0,0,0,0.9), inset 0 0 0 0.3vw rgba(0,0,0,0.9), inset 0vw 0.1vw 0.2vw rgba(255,255,255,0.9);
}
.pushBtn-shadow-push .pushText {
  padding-top: 2vw;
}

.modal-wrapper {
  z-index: 5000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center
}

.modal-wrapper .modal-window {
  display: inline-block;
  z-index: 5100;
  position: relative;
  top: 30vw;
  width: 70%;
  height: 40%;
  max-width: 700px;
  max-height: 20vh;
  padding: 30px 30px 15px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.0);
  box-shadow: 0 0 2vw rgba(255, 255, 255, 0.0);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.modal-overlay {
  z-index: 5100;
  top: 0;
  left: 0;
  background: #fff;
}
.modal-wrapper .modal-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.5;
}

.msg-wrapper {
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.msg-wrapper .modal-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .3s ease-in-out;
}
.letter {
  position: absolute;
  z-index: 5100;
  font-family: "M PLUS Rounded 1c", sans-serif;
  top: 10vh;
  width: 80%;
  max-width: 350px;
  min-height: 220px;
  padding: 24px;
  background: #fff;
  transition: .3s ease-in-out;
  transform: rotate(-2.5deg) translateY(-200%);
}
.letter .title {
  text-indent: 1em;
  color: #333;
}
.letter .title.info {
  color: #0e5fb8;
}
.letter .title.err {
  color: #cb0000;
}
.letter .title.caution {
  color: #f39832;
}
.letter .title.success {
  color: #399634;
}
.letter div {
  background-image:
  linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 98%, #646464 100%);
  background-size: 100% 2em;
  line-height: 2em;
}
.letter .btn-agree {
  text-align: center;
  cursor: pointer;
}
#msg_input:checked ~ .letter {
  transform: rotate(-2.5deg) translateY(0%);
  box-shadow: 0.2vw 0.2vw 0.7vw rgba(0,0,0,0.8);
}
#msg_input:checked ~ #msg_overlay {
  display: block;
  opacity: .5;
}

@keyframes stripeBg {
  0% {background-position: 0 0;}
  100% {background-position: 100% 0;}
}
@-webkit-keyframes stripeBg {
  0% {background-position: 0 0;}
  100% {background-position: 100% 0;}
}
@-moz-keyframes stripeBg {
  0% {background-position: 0 0;}
  100% {background-position: 100% 0;}
}

.progress-frame {
  position: relative;
  width: 200px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border: 8px rgba(80, 80, 80, 0.5) double;
  border-radius: 5px;
  margin: 0 auto;
  text-align: center
}
.loading-msg {
  z-index: 5100;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'arial black', sans-serif;
  color: rgba(105, 105, 105, 1);
  text-shadow: 0 0.1vw 0.1vw #fff;
}
#progress-bar {
  position: absolute;
  width: 0;
  height: 34px;
  background: #fbc42d;
}
.type-stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  background: linear-gradient(-45deg, #cfcfcf 25%, #fff 25%, #fff 50%, #cfcfcf 50%, #cfcfcf 75%, #fff 75%, #fff);
  -webkit-animation: stripeBg 10s linear infinite;
  background-size: 20px 20px;
}

@-webkit-keyframes toLeft {
  0% {background-position: 100% 0;}
  100% {background-position: 0 0;}
}
.type-arrow-right-up {
  width: 100%;
  height: 1.5vw;
  background: 
    linear-gradient(-45deg, rgba(255,0,0,1) 0%, rgba(255,0,0,1) 30%, rgba(255,0,0,0) 30%, rgba(255,0,0,0) 30%);
  -webkit-animation: toLeft 2s linear infinite;
  background-size: 2.7vw 1.5vw;
}
.type-arrow-right-down {
  width: 100%;
  height: 1.5vw;
  background: 
    linear-gradient(-135deg, rgba(255,0,0,1) 0%, rgba(255,0,0,1) 30%, rgba(255,0,0,0) 30%, rgba(255,0,0,0) 30%);
  -webkit-animation: toLeft 2s linear infinite;
  background-size: 2.7vw 1.5vw;
}
.type-arrow-bg {
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255,255,255,0.7);
}

.down-trigger-wrapper {
  width: 50px;
  height: 30px;
}
.pull-trigger-left {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 10px;
  padding-right: 5px;
  cursor: pointer;
}
.pull-trigger-down {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 5px;
  padding-bottom: 10px;
  cursor: pointer;
}
.arrow-up {
  width: 15px;
  height: 15px;
  margin: 0 auto;
  border: 3px solid;
  border-color: rgba(255, 255, 255, 0.7) rgba(255, 255, 255, 0.7) transparent transparent;
  transform: rotate(-45deg);
}
.arrow-down {
  width: 15px;
  height: 15px;
  margin: 0 auto;
  border: 3px solid;
  border-color: rgba(255, 255, 255, 0.7) rgba(255, 255, 255, 0.7) transparent transparent;
  transform: rotate(135deg);
}
.arrow-left {
  width: 15px;
  height: 15px;
  margin: 0 auto;
  border: 3px solid;
  border-color: rgba(255, 255, 255, 0.7) rgba(255, 255, 255, 0.7) transparent transparent;
  transform: rotate(-135deg);
}
.arrow-right {
  width: 15px;
  height: 15px;
  margin: 0 auto;
  border: 3px solid;
  border-color: rgba(255, 255, 255, 0.7) rgba(255, 255, 255, 0.7) transparent transparent;
  transform: rotate(45deg);
}
#pull_left_input:checked ~ .pushBtnframe {
  max-width: 300px;
  padding: 1vw;
}
#pull_left_input:checked ~ .pushBtnframe .pushBtn {
  transform: translateX(0%);
}
#pull_left_input:checked ~ .pull-trigger-left {
  padding-left: 5px;
  padding-right: 10px;
}
#pull_left_input:checked ~ .pull-trigger-left .arrow-left {
  transform: rotate(45deg);
}
#pull_down_input:checked ~ .pull-menu.data {
  max-height: 20vw;
}
#pull_down_input:checked ~ .down-trigger-wrapper .pull-trigger-down {
  padding-top: 10px;
  padding-bottom: 5px;
}
#pull_down_input:checked ~ .down-trigger-wrapper .pull-trigger-down .arrow-down {
  transform: rotate(-45deg);
}

@media screen and (max-width:1200px) {
  .point-lamp {
    transform:scale(0.9);
  }
}
@media screen and (max-width:1024px) {
  .point-lamp {
    transform:scale(0.8);
  }
}
@media screen and (max-width:896px) {
  .point-lamp {
    transform:scale(0.7);
  }
}
@media screen and (max-width:768px) {
  .metal {
    box-shadow: inset hsla(50, 80%, 10%, 0.7) 0 0 0 0.3vw,    /* 枠線 */
      inset hsla(0, 0%, 15%, 0.8) 0 -0.1vw 0.25vw 0.2vw,  /* 段差の縁を緩やかにする */
      inset hsla(0, 0%, 100%, 0.7) 0 0.2vw 1vw 0.35vw,    /* パネル上の段差（反射） */
      inset hsla(0, 0%, 0%, 0.25) 0 -0.1vw 0 0.55vw,      /* パネル下の段差（陰影） */
      hsla(0, 0%, 0%, 0.1) 0 -0.1vw 0.2vw 0.2vw,          /* 枠上埋め込みの陰影 */
      hsla(50, 100%, 80%, 0.5) 0 0 0.3vw 0.2vw;           /* 枠下埋め込みの反射 */
  }
  #nav_content {
    max-width: 40vw;
  }
  .setting-content {
    width: 90%;
    max-width: 90%;
  }

  #reel_1,
  #reel_2,
  #reel_3 {
    width: 19.5vw;
    height: 28.5vw;
  }

  #reelframe {
    border-radius: 0.8vw;
    border: 2px #bfbfbf groove;
  }

  .reelbg,
  .reelbgshade-top,
  .reelbgshade-hitop,
  .reelbgshade-bottom,
  .reelbgshade-hibottom,
  .reelbgshade-darkbottom {
    width: 2.8vw;
  }
  .reelbg {
    height: 28.5vw;
  }
  .reelbgshade-top {
    height: 3.6vw;
  }
  .reelbgshade-hitop {
    height: 8vw;
  }
  .reelbgshade-bottom {
    height: 28.5vw;
  }
  .reelbgshade-hibottom {
    height: 8vw;
  }
  .reelbgshade-darkbottom {
    height: 6vw;
  }

  #reel_1 .wrapper,
  #reel_2 .wrapper,
  #reel_3 .wrapper {
    width: 19.5vw;
  }

  #reel_1 .wrapper .slot,
  #reel_2 .wrapper .slot,
  #reel_3 .wrapper .slot {
    width: 19.5vw;
    padding-top: 0.3vw;
  }
  .reelshade-top {
    width: 20vw;
    height: 4.2vw;
  }
  .reelshade-bottom {
    width: 20vw;
    height: 4.2vw;
  }
  .reelboundary::before {
    width: 20vw;
    height: 1px;
  }

  #slotbox {
    border-radius: 5vw;
    width: 96vw;
  }

  .top-panel {
    width: 88vw;
    height: 25vw;
    margin-top: 1.5vw;
    padding: 1vw;
  }
  .top-panel img {
    padding-top: 0
  }
  .data-panel-wrapper {
    width: 96vw;
  }
  .data-panel {
    font-size: 0.5em;
    min-width: 33vw;
    margin: 0;
  }
  .top-panel.dent.fitted .cover {
    margin: 0;
  }
  .door-slide-space {
    width: 44vw;
  }
  .navi-space p {
    font-size: 5vw;
  }

  .slotTitle{
    font-size: 4.2vw;
  }

  #slotMsg {
    font-size: 0.6em;
    border-radius: 0.3vw;
    width: 71.6vw;
  }

  .center-panel {
    margin-top: 1.5vw;
  }
  .counterframe {
    width: 64.5vw;
    height: 7.8vw;
    padding: 0.6vw;
  }

  .point-lamp-wrapper {
    width: 10vw;
    margin-top: 0.5%;
  }
  .point-lamp {
    transform:scale(0.8);
  }
  .point-lamp span::after {
    margin-left: 2.2vw;
  }

  .dseg {
    font-size: 5vw;
    border: 0.3vw #000 groove;
    border-radius: 0.3vw;
    margin: 0 3vw;
  }
  .dseg.credit-seg,
  .dseg.payout-seg {
    width: 7vw;
  }
  .dseg.notice-seg {
    width: 12vw;
  }
  .dseg .dseg-text {
    padding-top: 0.4vw;
  }

  .lamp.upper-left {
    bottom: 21.5vw;
  }
  .lamp.upper-right,
  .lamp.upper-right-rev {
    bottom: 21.5vw;
  }
  .lamp img {
    width: 15.4vw;
    height: 15.4vw;
  }

  .leverFrame {
    margin-top: 3vw;
    margin-left: 8vw;
  }
  .lever{
    width: 8.5vw;
    height: 8.5vw;
  }
  .lever::before{
    width: 2.5vw;
    height: 2.5vw;
    top: 1.2vw;
    left: 4.5vw;
    filter: blur(0.6vw);
  }
  .lever::after{
    width: 10.5vw;
    height: 10.5vw;
    filter: blur(0.3vw);
    box-shadow: inset 1.5vw -2.4vw 0 -0.9vw rgba(0,0,0,0.6), inset 0 0.1vw 0 0.4vw rgba(255,255,255,0.3);
  }

  .btnframe .metal.linear {
    height: 15.7vw;
    border-radius: 1.5vw;
  }

  .stopBtnframe {
    margin-top: 0.3vw;
  }
  .pushBtn-wrapper {
    height: 15.7vw;
  }
  .pushBtnframe {
    padding-top: 2vw;
  }
  .pushBtn {
    width: 17vw;
    height: 11vw;
    border: 0.8vw #000 solid;
  }
  .pushText {
    font-size: 3.2vw;
    padding-top: 2vw;
  }
  .pushBtn-shadow-push .pushText {
    padding-top: 2.3vw;
  }
  .stopBtnframe {
    border-radius: 1.3vw;
    width: 60vw;
  }
  .stopBtn {
    margin: 0 2.7vw;
    width: 12vw;
    height: 12vw;
  }
  .progress-frame {
    width: 50vw;
    height: 40px;
  }
  .loading-msg {
    font-size: 3.2vw;
  }
  #progress-bar {
    height: 24px;
  }
  .type-stripe {
    height: 24px;
  }
  .type-arrow-right-up,
  .type-arrow-right-down {
    height: 2vw;
    background-size: 3.6vw 2vw;
  }

  .arrow-left,
  .arrow-down {
    width: 10px;
    height: 10px;
    border: 2px solid;
    border-color: rgba(255, 255, 255, 0.7) rgba(255, 255, 255, 0.7) transparent transparent;
  }

  #pull_left_input:checked ~ .pushBtnframe {
    padding-top: 2vw;
    padding-left: 1vw;
    padding-right: 1vw;
  }
}
@media screen and (max-width:667px) {
  .point-lamp {
    transform:scale(0.7);
  }
}
@media screen and (max-width:568px) {
  .point-lamp {
    transform:scale(0.6);
  }
}
@media screen and (max-width:480px) {
  .point-lamp-wrapper {
    left: 0;
  }
  .point-lamp {
    transform:scale(0.5);
  }
}
@media screen and (max-width:375px) {
  .point-lamp {
    transform:scale(0.4);
  }
}
@media screen and (max-width:280px) {
  .point-lamp {
    transform:scale(0.3);
  }
}