
html {
	overflow-y: scroll;
}

h1 {
	margin-bottom: 24px;
}

/* clearfix
--------------------------------- */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}


.main_area {
	float: left;
	margin-left: 160px;
}

/* 情報表示
--------------------------------- */
.content {
	padding: 16px 24px;
}
	.content h1 {
		margin: 0;
		padding: 0;
	}
	.gamepad_info {
		padding: 0;
		margin-bottom: 32px;
	}
	.gamepad_info:after {
		content: "";
		display: block;
		clear: both;
	}
		.gamepad_info dt {
			clear: both;
			float: left;
			width: 180px;
			text-align: left;
			background: #eee;
			border-left: #ccc;
			margin: 0 0 1px 0;
			padding: 8px 16px
		}
		.gamepad_info dd {
			float: left;
			text-align: left;
			margin: 0;
			padding: 2px 16px
		}
	.pressed_btn {
		display: inline-block;
		background: #E1F9C1;
		border: 1px solid #8EDF38;
		padding: 2px 16px;
		margin: 0 4px;
		border-radius: 10%;
	}



/* アケコン
--------------------------------- */
.controller_body {
	position: relative;
	top: 0;
	left: 0;
/*
	background: url('./img/arcade_controller_body_blue.png') no-repeat;
*/
	background: url('./img/arcade_controller_body.png') no-repeat;
	background-size: contain;
	width: 640px;
	height: 340px;
}
	.controller_body .stick_area {
		display: inline-block;
		position: absolute;
		top: 40px;
		left: 30px;
	}
		.controller_body .stick_area img {
			display: inline-block;
			width: 200px;
			height: 200px;
		}
	.controller_body .button_area {
		display: inline-block;
		position: absolute;
		top: 46px;
		left: 220px;

	}
		.controller_body .button_area .button {
			display: inline-block;
			position: absolute;
		}
		.controller_body .button_area #buttonA {
			top: 28px;
			left: 0px;
		}
		.controller_body .button_area #buttonY {
			top: 10px;
			left: 80px;
		}
		.controller_body .button_area #buttonRB {
			top: 6px;
			left: 160px;
		}
		.controller_body .button_area #buttonLB {
			top: 0;
			left: 240px;
		}
		.controller_body .button_area #buttonB {
			top: 108px;
			left: 0px;
		}
		.controller_body .button_area #buttonX {
			top: 90px;
			left: 80px;
		}
		.controller_body .button_area #buttonRT {
			top: 86px;
			left: 160px;
		}
		.controller_body .button_area #buttonLT {
			top: 80px;
			left: 240px;
		}
			.controller_body .button_area .button img {
				display: inline-block;
				width: 80px;
				height: 80px;
			}



/* 入力履歴
--------------------------------- */
.history_area {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 10;
	width: 300px;
	height: 100vh;
	padding: 8px;
	overflow: hidden;
}









