.ing_page_top{
	width:100%;
	margin:0;
	padding:0;
	background:#fff;
	border-bottom:1px solid #e3e7ed;
	box-sizing:border-box;
}

.ing_page_top_inner{
	width:100%;
	max-width:1340px;
	margin:0 auto;
	padding:42px 20px 10px;
	box-sizing:border-box;
}

.ing_page_top_title_row{
	display:flex;
	align-items:flex-end;
	justify-content:space-between;
	gap:30px;
	padding-bottom:25px;
}

.ing_page_top_title_box{
	display:flex;
	align-items:center;
	min-width:0;
}

.ing_page_top_line{
	display:block;
	width:5px;
	height:34px;
	margin-right:14px;
	border-radius:5px;
	background:#142d59;
	flex-shrink:0;
}

.ing_page_top_title{
	margin:0;
	padding:0;
	font-size:34px;
	line-height:1.25;
	font-weight:800;
	letter-spacing:-1.3px;
	color:#111827;
	word-break:keep-all;
}

.ing_page_location{
	display:flex;
	align-items:center;
	justify-content:flex-end;
	flex-wrap:wrap;
	gap:9px;
	padding-bottom:4px;
	font-size:13px;
	line-height:1.5;
	white-space:nowrap;
}

.ing_page_location_link{
	color:#7d8796;
	text-decoration:none;
	transition:color 0.2s ease;
}

.ing_page_location_link:hover{
	color:#142d59;
}

.ing_page_location_current{
	font-weight:700;
	color:#142d59;
}

.ing_page_location_arrow{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	font-size:11px;
	font-weight:400;
	color:#c0c6d0;
}

.ing_page_tab{
	position:sticky;
	top:150px;      /* 헤더 높이 */
	z-index:500;
	background:#fff;
	border-bottom:1px solid #e9e9e9;
	box-shadow:0 4px 20px rgba(0,0,0,.05);
}

.ing_page_tab.is_fixed{
    position:fixed;
    top:72px;      /* 헤더 높이 */
    left:0;
    width:100%;
    z-index:500;
}

.ing_page_tab_list{
	display:flex;
	align-items:stretch;
	width:100%;
	margin:0;
	padding:0;
	list-style:none;
	border-top:1px solid #dce1e8;
	border-left:1px solid #dce1e8;
	box-sizing:border-box;
}

.ing_page_tab_item{
	flex:1 1 0;
	min-width:0;
	margin:0;
	padding:0;
	border-right:1px solid #dce1e8;
	border-bottom:1px solid #dce1e8;
	background:#fff;
	box-sizing:border-box;
}

.ing_page_tab_link{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	min-height:60px;
	padding:12px 15px;
	box-sizing:border-box;
	font-size:16px;
	line-height:1.4;
	font-weight:600;
	letter-spacing:-0.4px;
	text-align:center;
	text-decoration:none;
	word-break:keep-all;
	color:#181d27;
	background:#fff;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.ing_page_tab_item:not(.active) .ing_page_tab_link:hover{
	color:#142d59;
	background:#f3f6fa;
	box-shadow:inset 0 -3px 0 #142d59;
}

.ing_page_tab_item.active{
	border-color:#142d59;
}

.ing_page_tab_item.active .ing_page_tab_link{
	font-weight:700;
	color:#fff;
	background:#142d59;
}

.ing_page_tab_item.active + .ing_page_tab_item{
	border-left-color:#142d59;
}


@media screen and (max-width:768px){
	.ing_page_tab.is_fixed{
		position:fixed;
		top:68px;      /* 헤더 높이 */
		left:0;
		width:100%;
		z-index:500;
	}
	.ing_page_top_inner{
		width:100%;
		margin:0;
		padding:20px 5px 10px;
		box-sizing:border-box;
	}

	.ing_page_top_title_row{
		display:block;
		padding-bottom:19px;
	}

	.ing_page_top_title_box{
		align-items:center;
	}

	.ing_page_top_line{
		width:4px;
		height:26px;
		margin-right:10px;
	}

	.ing_page_top_title{
		font-size:25px;
		letter-spacing:-0.8px;
	}

	.ing_page_location{
		justify-content:flex-start;
		margin-top:11px;
		padding:0 0 0 14px;
		gap:6px;
		font-size:12px;
		white-space:normal;
	}

	.ing_page_tab_list{
		overflow:hidden;
	}

	.ing_page_tab_link{
		min-height:40px;
		padding:5px 5px;
		font-size:8pt;
		line-height:1.35;
		letter-spacing:-0.6px;
	}

}