/** # 연혁 CSS **/

.sub-history .history-content-wrap .sub-line-header-wrap {
	margin-bottom: 120px;
}

.history-content-wrap .sub-line-header-title {
	font-weight: 500;
	font-size: 48px;
	color: var(--theme-color);
	margin-bottom: 16px;
}
.history-content-wrap .sub-line-header-text-wrap {
	/* color: var(--theme-color); */
	margin-top: 16px;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}
.history-content-wrap .sub-line-header-text-wrap .sub-line-header-text-in {
	display: block;
}
.history-content-wrap .bg-wrap {
	z-index: 1;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	/* min-height: 350px; */
	aspect-ratio: 4.231 / 1;
	width: 100%;
}

.history-box {
	width: 100%;
	display: flex;
}
.history-box .left-sticky {
	position: sticky;
	top: var(--header-height);
	font-weight: 700;
}
.history-box .left-sticky .left-sticky-in {
	font-size: 48px;
}
.left-sticky-in {
	position: relative;
}

.left-sticky-in .point {
	content :"";
	border-radius: 100%;
	width: 30px;
	height: 30px;
	position: absolute;
	left: calc(100% - 16px);
	top: 50%;
	transform: translateY(-50%);
	border: 2px solid var(--theme-color);
	box-sizing: border-box;
	padding: 5px;
}
.left-sticky-in .point:after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: var(--theme-color);
	display: table;
	border-radius: 100%;
	animation-duration: 1.2s;
	animation-name: history-point;
	animation-iteration-count: infinite;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.history-box .left {
	width: 30%;
	box-sizing: border-box;
	position: relative;
}
.history-box .left:after {
	content: "";
	position: absolute;
	z-index: 0;
	left: calc(100% - 1px);
	top: 0;
	width: 1px;
	height: 100%;
	background-color: var(--theme-color);
	opacity: 0.2;
}
.left-sticky-year.top {
	font-size: 1.4em;
	color: var(--theme-color);
}
.left-sticky-year.top:after {
	content: "~";
}
.history-box .right {
	width: 70%;
	padding-left: 50px;
	box-sizing: border-box;
	font-size: 18px;
	font-weight: 400;
	color: var(--light-dark);
	padding-bottom: 100px;
	word-break: keep-all;
}
.history-box:last-child .right {
	padding-bottom: 0;
}
.history-box .right .history-line {
	margin-bottom: 16px;
	line-height: 150%;
	display: flex;
}
.history-box .right .history-line .month {
	color: var(--theme-color);
	margin-right: 15px;
	font-size: 1.1em;
	opacity: 0.8;
}

@keyframes history-point {
	from {
		width: 0;
		height: 0;
		opacity: 0.1;
	}

	to {
		width: 60%;
		height: 60%;
		opacity: 1;
	}
}


@media screen and (max-width:1200px){
	.history-content-wrap .sub-line-header-title {
		font-size: 36px;
	}
	.history-box .left-sticky .left-sticky-in {
		font-size: 36px;
	}
}

@media screen and (max-width:970px){
	.left-sticky-year.top {
		font-size: 1.2em;
	}
	.history-box .right .history-line {
		font-size: 14px;
	}
}

@media screen and (max-width:768px){
	.history-content-wrap .sub-line-header-wrap {
		margin-bottom: 48px;
	}
	.history-box .left-sticky .left-sticky-in {
		font-size: 35px;
	}
	.history-box .right {
		padding-left: 30px;
		padding-bottom: 50px;
	}
	.left-sticky-in .point {
		width: 24px;
		height: 24px;
		left: calc(100% - 12px);
	}
	.history-box .right .history-line {
		margin-bottom: 8px;
	}
	.history-content-wrap .bg-wrap {
		aspect-ratio: 3.5 / 1;
	}
}


@media screen and (max-width:540px){
	.history-content-wrap .sub-line-header-title {
		font-size: 32px;
		margin-bottom: 8px;
	}
	.history-content-wrap .sub-line-header-text-wrap {
		margin-top: 8px;
	}
	.history-box .left-sticky .left-sticky-in {
		font-size: 32px;
	}

}

@media screen and (max-width:480px){
	.history-box .left {
		width: 35%;
	}
	.history-box .right {
		width: 65%;
		padding-left: 25px;
		padding-bottom: 36px;
	}
	.history-content-wrap .sub-line-header-title {
		font-size: 24px;
	}
	.history-box .left-sticky .left-sticky-in {
		font-size: 24px;
	}
	.left-sticky-year.top {
		font-size: 1.1em;
	}
	.history-box .right .history-line .month {
		margin-right: 10px;
	}
	.history-box .right .history-line {
		font-size: 12px;
	}
}

@media screen and (max-width:360px){
	.history-box .left-sticky .left-sticky-in {
		font-size: 25px;
	}
	.history-box .right .history-line .month {
		font-size: 1.05em;
		margin-right: 7px;
	}
	.history-box .right {
		font-size: 13px;
	}
}

@media screen and (max-width:320px){
	.history-box .left-sticky .left-sticky-in {
		font-size: 21px;
	}
	
	.left-sticky-in .point {
		width: 22px;
		height: 22px;
		left: calc(100% - 10px);
	}
}
