/* :::::::::::::::::: report :::::::::::::::::: */

#main {
	margin: 50px 0 0;
	padding: 0;
	overflow: inherit;
}

.leftmenu{
	display: inline-block;
	width: 200px;
}
.leftmenu ul{
	font-size: 0.875rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.leftmenu li a{
	border-bottom: solid 1px #ccc;
	padding: 5px 5px 5px 15px;
	display: block;
	background: #eee;
}
.leftmenu li a:hover{
	color: #fff;
	background: #6B705C;
}
.leftmenu li a.on{
	color: #fff;
	background: #A5A58D;
}
.leftmenu li a.on:hover{
	color: #fff;
	background: #6B705C;
}

.main {
	display: inline-block;
	width: calc(100% - 200px);
}

.listButton{
	text-align: center;
}

.error{
	position: absolute;
	text-align: center;
	color: #e62c2a;
	width: 100%;
	padding-left: 200px;
	top: 330px;
}

/* 640px smartphone*/
@media only screen and (max-width: 40em) {
	#main {
		margin: 50px 0 32px;
	}
	.error{
		padding-left: 0;
	}
	.leftmenu{
		position: fixed;
		bottom: 0;
		width: 100%;
		z-index: 1;
	}
	.leftmenu ul{
		font-size: 0;
	}
	.leftmenu li{
		font-size: 0.875rem;
		text-align: center;
		width: calc(50% - 1px);
		display: inline-block;
		max-height: 32px;
		overflow: hidden;
	}
	.leftmenu li a{
		padding: 5px 0;
	}
	.leftmenu.menu3 li{
		width: calc(33.33% - 1px);
		margin-right: 1px;
	}
	.leftmenu li:last-child{
		width: 50%;
		margin-right: 1px;
	}
	.leftmenu.menu3 li:last-child{
		width: 33.33%;
	}
	.leftmenu.menu3 li:first-child a{
		font-size: 0;
	}
	.leftmenu.menu3 li:first-child a::before{
		font-size: 0.875rem;
		content:'タイムカード';
	}
	.main{
		width: 100%;
	}
	
}

/* 640px PC*/
@media only screen and (min-width: 40em) {}