#about {
	width: 100vw;
	background-color: var(--gray_10);
	padding: 70px 0 150px 0;
	position: relative;
}

#about>div {
	width: 100vw;
}

.history_wrap {
	padding: 0 1.0rem;
	overflow-x: scroll;
	margin-top: 56px;
}

.history_con {
	height: 100%;
	width: fit-content;
	display: block;
	padding: 0 20px;
	white-space: nowrap;
}

.history_item {
	display: inline-block;
	margin-right: 100px;
	position: relative;
}

.history_item:last-child>.history_line {
	width: 120%;
}

.history_line {
	position: absolute;
	top: 35px;
	left: -40px;
	width: 160%;
	height: 5px;
	border-radius: 5px;
	background-color: var(--gray_20);
}

.history_con ul {
	padding-top: 10px;
}

.history_con .list_point {
	position: relative;
	top: 16px;
	width: 14px;
	height: 14px;
	margin-right: 14px;
}

.history_inducement {
	display: flex;
	gap: 2px;
	cursor: pointer;
}

.scroll_absolute {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	margin-top: 50px;
}

.history_inducement.absolute {
	position: absolute;
	top: 165px;
	right: 60px;
}

.arrow_animation {
	display: inline-block;
	position: relative;
	top: -3px;
}

.arrow_animation>span {
	position: absolute;
}

.arrow_1 {
	left: 0;
}

.arrow_2 {
	left: 4px;
}

input[type=range] {
	width: 100%;
	-webkit-appearance: none;
	background: var(--gray_20);
	border-radius: 10px;
	outline: none;
	margin-top: 12px;
	width: 300px;
}

input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 30%;
	height: 10px;
	border-radius: 10px;
	background-color: var(--gray_40);
	cursor: pointer
}