/* JavaScript 無効時のタイトル画像幅を可変にする */
.noscriptImg {
	width: 100%;
	height: auto;
}

/* JavaScript が有効な場合に非表示 */
html.enable-javascript .hide-enable-js{
	display: none;
}

/* JavaScript が無効な場合に非表示 */
html:not(.enable-javascript) .hide-disable-js{
	display: none;
}

/* ▼ローディング画面のサイズ可変　ここから */
.titleGame_wrapper {
    max-width: 960px;
    margin: auto;
}

.titleGame {
    position: relative;
    width: 100%;
    padding-top: 46.8%;
}

.titleGame_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*	background: #ffffff; */
    max-width: 100%;
    max-height: 100%;
}

#canvas {
    max-width: 100%;
    max-height: 100%;
}
/* ▲ローディング画面のサイズ可変　ここまで */

