@charset "utf-8";
/* 和暦西暦 */

.calendar {
	width: 1000px;
	height: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin: 10px 0px;
	padding-right: 6px;
	overflow: hidden;
}

.inner-box {
	width: 300px;
	height: 100%;
	ovwrflow: hidden;
	display: inline-block;
}


.era {
	width: 100%;
	height: 100%;
	display: block;
	font-size: 15px;
	line-height: 200%;
	font-weight: bold;
	margin-top: 20px;
}
	
.basic-table {
	width: 300px;
	height: 100%;
	display: block;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	box-shadow: 3px 3px 4px #eee;
}

.basic-table tr > th {
	width: 100px;
	padding: 5px 15px;
	text-align: center;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	background: #F8F9FA;
	font-weight: normal;
}

.basic-table tr > td {
	width: 200px;
	padding: 5px 15px;
	text-align: center;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}

