/* History */
#historiesBox {
	padding: 0  0 80px;
}

.historyBox {
	width: 72%;
	margin: 0 auto;
}
.historyBox table {
	width: 100%;
	border-collapse: collapse;
}
.historyBox tr {
	border-bottom: dotted 1px #afafaf;
}
.historyBox th {
	width: 248px;
	font-size: 1.4rem;
	line-height: 1;
	font-weight: normal;
}
.historyBox th span:first-of-type {
	width: 64px;
	text-align: left;
	display: inline-block;
}
.historyBox th span:last-of-type {
	width: 32px;
	text-align: right;
	display: inline-block;
}
.historyBox td {
	padding: 16px 0;
}
.historyBox td p {
	position: relative;
	font-size: 1.4rem;
	line-height: 184%;
	padding-left: 16px;
}
.historyBox td p:before {
	position: absolute;
	top: 12px;
	left: 0;
	width: 6px;
	height: 6px;
	border-top: solid 1px #2f40af;
	border-right: solid 1px #2f40af;
	display: inline-block;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 520px) {
	/* History */
	#historiesBox {
		padding: 0  0 64px;
	}
	
	.historyBox {
		width: 100%;
		margin: 0;
	}
	.historyBox th,
	.historyBox td {
		display: block;
	}
	.historyBox th {
		width: 100%;
		text-align: left;
		padding: 24px 0 16px;
	}
	.historyBox td {
		line-height: 160%;
		padding: 0 0 16px 0;
	}
}