/* CSS Document */
@media all and (orientation: landscape) {
	body_landscape {}
	
	.for_game {
		width:calc(100vh - 100px);
		height:calc(100vh - 100px);
	}
}

@media all and (orientation: portrait) {
	body_portrait {}
	
	.for_game {
		width:calc(100vw - 100px);
		height:calc(100vw - 100px);
	}
}

@media screen and (max-width: 740px) {
	body_740 {}

	.icons .icon {
		width:50px;
		height:50px;
		background-size:50px auto;
	}
}

@media screen and (max-width: 620px) {
	body_620 {}
	
	.icons {
		right:5px;
	}

	.icons .icon {
		width:40px;
		height:40px;
		background-size:40px auto;
	}
}