/* HISTORY */
.history {
	margin-bottom: 136px;
}

.history article {
	display: flex;
	gap: 35px;
}

.history article .year {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-size: 40px;
	line-height: 48px;
	color: #1B3D8C;
	white-space: nowrap;
	padding: 18px 0;
	width: 100px;
	flex-shrink: 0;
}

.history article .year::after {
	content: '年';
	display: inline;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: -0.03em;
	color: #1B3D8C;
	margin-left: 5px;
}

.history article .line {
	width: 12px;
	position: relative;
	flex-shrink: 0;
}

.history article .line::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 12px;
	height: 12px;
	border-radius: 6px;
	background: #4073EB;
}

.history article .line::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	height: 100%;
	background: #4073EB;
}

.history article:first-child .line::after {
	height: 50%;
	top: 50%;
}

.history article:last-child .line::after {
	height: 50%;
	bottom: 50%;
}

.history article .text {
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.1em;
	color: #000000;
	padding: 18px 0;
}




/* SP */
@media screen and (max-width: 900px) {

	/* HISTORY */
	.history {
		margin-bottom: 40px;
	}

	.history article {
		display: flex;
		gap: 35px;
	}

	.history article .year {
		font-size: 26px;
		padding: 18px 0;
		width: 20%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.history article .year::after {
		font-size: 16px;
		margin-left: 3px;
	}

	.history article .line {
		width: 12px;
		position: relative;
		flex-shrink: 0;
	}
	.history article .text {
		font-size: 14px;
		padding: 18px 0;
	}


}