@charset "UTF-8";
/*----------
	沿革
----------*/
/*-----------
	p-history
----------*/
.p-history {
	border-top: 1px solid var(--color-border);
}
.p-history__item {
	position: relative;
	border-bottom: 1px solid var(--color-border);
}
.p-history__year {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: var(--z-1);
	font-weight: 600;
}
.p-history__detail {
	position: relative;
	display: flex;
	background-color: var(--color-bg);
}
.p-history__detail + .p-history__detail {
	margin-top: -20px;
}
.p-history__detail + .p-history__detail .p-history__month,
.p-history__detail + .p-history__detail .p-history__list {
	padding-top: 10px;
}
.p-history__month {
	flex: 0 0 30%;
	padding: 20px;
	font-weight: 600;
	text-align: right;
}
.p-history__list {
	flex: 0 0 70%;
	padding: 20px;
	background-color: #fff;
}
@media (width < 768px) {
	.p-history {
		position: relative;
	}
	.p-history__inner {
		overflow: auto;
		margin-right: -20px;
		margin-left: -20px;
		padding-bottom: 8px;
	}
	.p-history__inner::-webkit-scrollbar {
		width: 132px;
		height: 4px;
	}
	.p-history__inner::-webkit-scrollbar-thumb {
		background: #666;
		border-radius: 30px;
	}
	.p-history__body {
		width: 700px;
		padding-right: 20px;
		padding-left: 20px;
	}
}