@charset "utf-8";

/* 내용관리 */


/* 연혁 1번 디자인 */

.history {
	max-width:1200px;
	margin: 0 auto;
	display: flex;
	padding: 120px 0 120px 0;
    box-sizing: border-box;
	overflow: hidden;
}


.history_bp {
	font-size: 15px;
    word-break: keep-all;
}
.history_left {
	width: 50%;
	display: flex;
    flex-wrap: wrap;
	align-content: flex-start;
	gap: 20px;
}

.history_left img {
	display: block;
	width: 100%;
}

.history_left .history_img {
	width: 100%;
}

.history_left .history_img.img2, .history_img.img3 {
	width: calc(100% / 2 - 10px);
}

.history_right {
	width: 50%;
	padding-left: 80px;
    box-sizing: border-box;
}

.history_section {
	width: 100%;
	box-sizing: border-box;
}

.history_detail {
	width: 100%;
}

.history_detail h2 {
	font-size:2.4em;
	color:#353aac;
	
}
.history_wrap {
	border-left:1px solid #ccc;
}
.history_item {
	padding-left: 50px;
	position: relative;
	margin-bottom: 40px;
}

.history_item:before {
	position: absolute;
	left: 0; 
	top: 0;
	content:'';
	display: block;
	width: 20px;
	height: 20px;
	background-color: #2f1c81;
	border-radius:100%;
	transform: translate(-50%, 40%);
}

.history_item h2 {
	font-size: 2em;
    margin-bottom: 20px;
	color:#2f1c81;
}

.history_item p {
	font-size: 1.4em;
    font-weight: 400;
    line-height: 1.6em;
	word-break:keep-all;
}

@media screen and (max-width:992px) {
	.history {
		padding:120px 20px 120px 20px;
	}
}

@media screen and (max-width:550px) {
	.history {
		flex-wrap: wrap;
	}

	.history_left {
		width: 100%;
	}
	.history_right {
		width: 100%;
		/* padding-left: 50%; */
		padding-left: 10px;
		margin-top: 60px;
	}	
	.history_item h2 {
		font-size: 1.6em;
	}
	.history_item p {
		font-size: 1.2em;
		line-height: 1.3em;
	}
}

@media screen and (max-width:360px) {
	.history_item h2 {
		font-size: 1.3em;
	}
	.history_item p {
		font-size: 1em;
		line-height: 1.1em;
	}	
	.history_item p b {
		display: block;
	}
	.mo_hide {
		display: none;
	}
	.history_item p b.mo_hide {
		display: none;
	}
}