@charset "utf-8";

#mainLogo {
	width: 262px;
	height: 42px;
	margin-left: -131px;
	margin-top: -21px;
}

header {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
header .spacer {
	z-index: 10;
}
#shadow {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 80px;
    box-shadow: rgba(102, 102, 102, 0.65098) 0px 0px 10px 3px;
    -webkit-box-shadow: rgba(102, 102, 102, 0.65098) 0px 0px 10px 3px;
    -moz-box-shadow: rgba(102, 102, 102, 0.65098) 0px 0px 10px 3px;
	z-index: 1;
}

/*---------------------------------------------
pseudoTable
---------------------------------------------*/
.pseudoTable article {
	position: relative;
}
.pseudoTable .date {
	display: table;
	border-collapse: collapse;
}
.pseudoTable .time {
	display: table-cell;
	border: 1px solid #f0efef;
	border-bottom: none;
	padding: 20px;
	width: 180px;
	vertical-align: middle;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	background: #dedcdb;
}
.pseudoTable .date:last-child .time {
	border-bottom: 1px solid #f0efef;
}
.pseudoTable .time .day {
	display: block;
	font-size: 2.3rem;
	line-height: 1;
}
.pseudoTable .time .updated {
	display: block;
	font-size: 1.8rem;
}
.pseudoTable .contents {
	display: table-cell;
	box-sizing: border-box;
	border: 1px solid #f0efef;
	border-bottom: none;
	width: 100%;
}
.pseudoTable .date:last-child .contents {
	border-bottom: 1px solid #f0efef;
}
.pseudoTable .contents article {
	border-top: 1px solid #f0efef;
	padding: 20px;
	background: #fff;
}
.pseudoTable .date:nth-child(odd) article {
	background: #f9f9f9;
}
.pseudoTable article:first-child,
.pseudoTable .date:first-child .contents article:first-child {
	border-top: none;
}
.pseudoTable .contents article:after {
	display: block;
	content: "";
	clear: both;
}

