
#gameScreen {
	margin: 0 auto;
	padding: 0;
	width:960px;
	height:600px;
	background-color:#ffffff;
	position:relative;
	-webkit-user-select: none;  /* Chrome or Safari */
	-moz-user-select: none;     /* FireFox */
	-ms-user-select: none;      /* IE */
	-o-user-select: none;       /* Opera */
	user-select: none;
}

#nowload {
	display: table-cell;
	margin: 0 auto;
	width:960px;
	height:600px;
	color:#000;
	vertical-align:middle;
	text-align:center;
	font-size:2em;
}
#loader-wrap {
    width:100%;
    height:20px;
    background-color:#cdcdcd;
}
#loader {
    width:0px;
    height:20px;
    background-color:#17cddd;
}


@font-face {
	font-family:'源ノ明朝';
	src: local('源ノ明朝'), 
	url('/guardian/html5/Font/SourceHanSerif-Bold.otf') format('opentype');
}


/* 動画再生用 */
#iframe-movie {
	position: absolute;
	left: 0px;
	top: 0px;
	width:960px;
	height:600px;
	border:0px;
	/*visibility:hidden;*/
	display:none;
}

/* プログレスバー */
#myProgress {
	position: absolute;
	left: 180px;
	top: 500px;
	width: 600px;
	background-color: grey;
	display:none;
}
#myBar {
	width: 1%;
	height: 30px;
	background-color: #4CAF50;
	text-align: center; /* To center it horizontally (if you want) */
	line-height: 30px; /* To center it vertically */
	color: white;
}

/* コンテキストメニュー */
.my-contextmenu {
    display: none;
    position: fixed;
    /* width: 270px; */
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 1px rgba(0,0,0,.2);
    z-index: 1000;
	padding:0px;
	text-align:left;
}
.my-contextmenu.show {
    display: block;
}
.my-contextmenu ul {
    list-style: none;
    padding:0px;
}
.my-contextmenu ul li {
    padding: 3px 10px 3px;
    font-size: 12px;
    color: #333;
}

.my-contextmenu ul li:hover {
	background-color: #91c9f7;
	transition: background-color 800ms;
}

#gameScreen select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    border: none;
    color: #000000;
	font-family: "MS UI Gothic", "Osaka", sans-serif;
	font-size: 14px;
}

#gameScreen select::-ms-expand{
	display: none;
}

/* chromeなどで text-input にoutlineが自動でつくのを回避 */
:focus {
    outline: none;
}
