@charset "utf-8";

/* 회사소개 탭 */
.company_tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 40px;
	border-bottom: 1px solid #ddd;
}
.company_tab {
	flex: 1 1 0;
	min-width: 140px;
	padding: 14px 10px;
	border: 1px solid #ddd;
	border-bottom: 0;
	background: #f7f7f7;
	color: #666;
	font-size: 15px;
	text-align: center;
	cursor: pointer;
	transition: background .2s, color .2s, border-color .2s;
}
.company_tab:hover {
	color: #3e8c6d;
}
.company_tab.active {
	background: #3e8c6d;
	border-color: #3e8c6d;
	color: #fff;
	font-weight: 600;
}
.company_tab_panel {
	display: none;
}
.company_tab_panel.active {
	display: block;
}

/* 연혁 */
.company_sect_tit {
	text-align: center;
	margin-bottom: 50px;
}
.company_sect_tit h3 {
	font-size: 28px;
	color: #222;
	margin-bottom: 12px;
	font-weight: 700;
}
.company_sect_tit p {
	font-size: 15px;
	color: #777;
}
.company_history_timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 0;
	list-style: none;
}
.company_history_timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	margin-left: -1px;
	background: #ddd;
}
.company_history_item {
	position: relative;
	width: 50%;
	padding: 0 40px 40px;
	box-sizing: border-box;
	list-style: none;
}
.company_history_item:nth-child(odd) {
	left: 0;
	text-align: right;
}
.company_history_item:nth-child(even) {
	left: 50%;
	text-align: left;
}
.company_history_item::before {
	content: '';
	position: absolute;
	top: 8px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #3e8c6d;
	border: 3px solid #fff;
	box-shadow: 0 0 0 2px #3e8c6d;
	z-index: 1;
}
.company_history_item:nth-child(odd)::before {
	right: -7px;
}
.company_history_item:nth-child(even)::before {
	left: -7px;
}
.company_history_item h4 {
	font-size: 24px;
	color: #3e8c6d;
	margin-bottom: 12px;
	font-weight: 700;
}
.company_history_item > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.company_history_item > ul > li {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 6px;
}
.company_history_item > ul > li span {
	display: inline-block;
	min-width: 42px;
	font-weight: 600;
	color: #333;
	margin-right: 6px;
}
.company_history_item .history_sub {
	display: block;
	font-size: 12px;
	color: #888;
	margin-top: 2px;
	padding-left: 48px;
}
.company_history_item:nth-child(odd) .history_sub {
	padding-left: 0;
	padding-right: 0;
}

/* 비전 & 미션 */
.company_vm_section {
	padding: 50px 0;
	background: #f0f5f4;
	text-align: center;
}
.company_vm_title {
	font-size: 32px;
	font-weight: 700;
	color: #3170c8;
	margin-bottom: 16px;
	text-transform: uppercase;
}
.company_vm_subtitle {
	font-size: 22px;
	color: #3e8c6d;
	margin-bottom: 8px;
	font-weight: 700;
}
.company_vm_subtitle_zh {
	font-size: 14px;
	color: #888;
	margin-bottom: 24px;
}
.company_vm_separator {
	width: 100%;
	height: 1px;
	background: #ddd;
	margin: 36px auto;
	max-width: 600px;
	position: relative;
}
.company_vm_separator::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 3px;
	background: #3170c8;
}
.company_core_section {
	padding: 60px 0;
	background: #fff;
	text-align: center;
}
.company_core_arrow {
	width: 200px;
	height: 2px;
	background: #e0e0e0;
	margin: 0 auto 24px;
	position: relative;
}
.company_core_arrow::after {
	content: '';
	position: absolute;
	left: 50%;
	top: -8px;
	transform: translateX(-50%);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 14px solid #3170c8;
}
.company_core_circles {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 40px;
}
.company_core_circle {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	border: 3px solid;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 16px;
	box-sizing: border-box;
}
.company_core_circle.blue { border-color: #6bc4b5; }
.company_core_circle.brown { border-color: #d4a574; }
.company_core_circle.green { border-color: #8bc34a; }
.company_core_circle .ko {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 12px;
}
.company_core_circle.blue .ko { color: #3170c8; }
.company_core_circle.brown .ko { color: #d4a574; }
.company_core_circle.green .ko { color: #8bc34a; }
.company_core_circle .en {
	font-size: 12px;
	color: #333;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1.4;
}
.company_scope_section {
	padding: 60px 0 80px;
	background: #f9f9f9;
}
.company_scope_title {
	font-size: 32px;
	font-weight: 700;
	color: #3170c8;
	text-align: center;
	margin-bottom: 50px;
	text-transform: uppercase;
}
.company_scope_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	min-height: 560px;
}
.company_scope_center {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 160px;
	height: 160px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(0,0,0,.1);
	font-size: 22px;
	font-weight: 700;
	color: #222;
}
.company_scope_block {
	padding: 50px;
	border-radius: 8px;
	color: #fff;
}
.company_scope_block.green { background: #4caf50; }
.company_scope_block.blue { background: #5a8fa8; }
.company_scope_block.light-green { background: #8bc34a; }
.company_scope_block.light-blue { background: #3e8c6d; }
.company_scope_block h5 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 14px;
	color: #fff;
}
.company_scope_block ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.company_scope_block li {
	font-size: 14px;
	margin-bottom: 8px;
	padding-left: 16px;
	position: relative;
	line-height: 1.5;
}
.company_scope_block li::before {
	content: '▶';
	position: absolute;
	left: 0;
	font-size: 10px;
}

/* 조직도 */
.company_org_img {
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
}
.company_org_img img {
	max-width: 100%;
	height: auto;
}

@media all and (max-width:768px) {
	.company_tab {
		flex: 1 1 calc(50% - 5px);
		min-width: 0;
		font-size: 13px;
		padding: 12px 6px;
	}
	.company_history_timeline::before {
		left: 20px;
	}
	.company_history_item,
	.company_history_item:nth-child(even) {
		width: 100%;
		left: 0;
		text-align: left;
		padding: 0 0 30px 50px;
	}
	.company_history_item::before,
	.company_history_item:nth-child(odd)::before,
	.company_history_item:nth-child(even)::before {
		left: 13px;
		right: auto;
	}
	.company_history_item h4 {
		font-size: 20px;
	}
	.company_scope_grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.company_scope_center {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		margin: 0 auto 20px;
	}
	.company_core_circle {
		width: 160px;
		height: 160px;
	}
}
