* {
	margin: 0;
	padding: 0;
	border: 0;
}

html,body { height:100%; }

body {
	background-color:rgba(245,242,213,1);
	font-family: 'Sawarabi Mincho', serif; /* これがないとなぜかバグる */
}

#game{
	width: 480px;
	height: 640px;
	position:absolute;
	top:50%;
	left:50%;
	margin:-320px 0 0 -240px;
}

input,textarea{
	background:transparent;
	border:1px solid #000000;
	color:#000000;
	font-size: 28px;
	text-align: center;
}

input:focus {
	outline:rgb(0,0,0) auto 5px;
}