/* ポップアップ */
#cover{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
  display: none;
  z-index: 1001;
  -ms-touch-action: none;
  touch-action: none;
}
#popviewer{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 960px;
  height: 640px;
  margin: -320px 0 0 -480px;
  border: #444 solid 0px;
  display: none;
  z-index: 1002;
  background-color: #666;
  opacity: 1.0;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  border-color: #444;
  border-style: solid;
  border-width: 4px 4px 4px 4px;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}
.popview{
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  padding: 0;
}
.popview img{
}
#mainview{
  position: absolute;
  left: 0;
  top: 0;
  width: 480px;
  height: 640px;
  margin: 0;
  padding: 0;
  background-color: #666;
  opacity: 1.0;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  overflow: hidden;
  /*-webkit-overflow-scrolling: touch;*/
}
#syncview{
  position: absolute;
  left: 0;
  top: 0;
  width: 480px;
  height: 640px;
  margin: 0;
  padding: 0;
  background-color: #aaa;
  opacity: 1.0;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  overflow: hidden;
  /*-webkit-overflow-scrolling: touch;*/
  display: none;
}
.hotaru{
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}
.vbtn{
  position: absolute;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
  cursor: pointer;
}
#hint{
  display: block;
}
#hintd{
  position: absolute;
  left: 50%;
  top: 5px;
  width: 400px;
  margin-left: -200px;
  padding: 15px;
  display: none;
  z-index: 1005;
  color: #333;
  background-color: #eee;
  opacity: 0.9;
  filter: alpha(opacity=90);
  -ms-filter: "alpha(opacity=90)";
  border-color: #444;
  border-style: solid;
  border-width: 2px;
  -ms-touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -o-user-select: none;
  user-select: none;
}
#hintclose{
  position: absolute;
  right: 6px;
  top: 6px;
  cursor: pointer;
}
#hintd h4{
  font-size: 100%;
}
#hintd p{
  font-size: 95%;
  margin-top: 0.5em;
  text-indent: 1em;
}