/*
--------------------------------------
containers
--------------------------------------
*/

.timeline__wrapper {
	position: relative;
	width: 100%;
	overflow-x: auto;
	padding: 50px 0;
}

.timeline__container {
	position: relative;
	z-index: 1;
	gap: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
	max-width: 75%;
	margin: 0 auto;
	padding: 0 40px;
}

/*
--------------------------------------
item
--------------------------------------
*/

.timeline__item {
	position: relative;
	text-align: center;
	font-family: var(--e-global-typography-primary-font-family);
	color: #333;
}

/*
--------------------------------------
content
--------------------------------------
*/

.timeline__svg {
	position: absolute;
	top: 35px;
	left: 0;
	width: 100%;
	height: 47px;
	z-index: 0;
	pointer-events: none;
}

.timeline__svg svg {
	width: 100%;
	height: 100%;
}

.timeline__dot {
	width: 14px;
	height: 14px;
	background-color: #e0775c;
	border-radius: 50%;
	margin: 0 auto 10px;
}

.timeline__item--1 .timeline__dot {
	position: relative;
	top: -20px;
}

.timeline__item--2 .timeline__dot {
	position: relative;
	top: 15px;
}

.timeline__item--3 .timeline__dot {
	position: relative;
	top: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
}

.arrow__dot {
	background-color: #e0775c;
	color: white;
	font-weight: bold;
	width: 32px;
	height: 32px;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.timeline__year {
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 16px;
}

.timeline__item--1 .timeline__year {
	top: -50px;
}

.timeline__item--2 .timeline__year {
	text-align: center;
}

.timeline__text {
	font-size: 14px;
	line-height: 1.5;
}

.timeline__item--1 .end-text {
	margin-top: 20px;
}