@charset "UTF-8";

/* 기본 레이아웃 */
.process-wrapper {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 0px;
	box-sizing: border-box;
}

.process-container {
	background-color: #f9f9fb;
	border: 1px solid #eaecef;
	border-radius: 12px;
	/* 위아래 여백을 2/3 수준으로 대폭 축소 */
	padding: 14px 20px;
	margin-bottom: 24px;
	font-family: 'Pretendard', -apple-system, sans-serif;
}

.process-title {
	/* 글자 크기 복구 */
	font-size: 18px;
	font-weight: 800;
	color: #1a1a1a;
	/* 제목 아래 간격 축소 */
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.process-title::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 18px;
	background-color: #e00000;
	margin-right: 10px;
	border-radius: 2px;
}

.process-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	/* 리스트 간격 축소 */
	gap: 6px;
}

.process-item {
	display: flex;
	align-items: center;
	background: #ffffff;
	/* 개별 항목 높이 축소 (패딩 조절) */
	padding: 8px 14px;
	border-radius: 8px;
	border: 1px solid #efefef;
}

.step-number {
	background-color: #333;
	color: #fff;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	/* 숫자 크기 복구 */
	font-size: 13px;
	font-weight: 700;
	margin-right: 12px;
	flex-shrink: 0;
}

.step-text {
	/* 글자 크기 복구 */
	font-size: 16px;
	color: #333;
	font-weight: 600;
	line-height: 1.2;
}

.process-notice {
	/* 주의사항 간격 및 크기 복구 */
	margin-top: 10px;
	padding-top: 8px;
	font-size: 14px;
	color: #d00000;
	line-height: 1.4;
	border-top: 1px dashed #e0e0e0;
}

/* [반응형 대응] 모바일 화면 (768px 이하) */
@media (max-width: 768px) {
	.process-container {
		padding: 12px 16px;
		margin-bottom: 20px;
	}

	.process-title {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.process-item {
		padding: 6px 12px;
	}

	.step-text {
		font-size: 14px;
	}

	.process-notice {
		font-size: 12px;
	}
}

p.list_alert_msg{
	display: list-item;
	/*font-weight:bold;*/
	list-style-type: disc; /* Or any other valid type */
	line-height: 1.5;
	margin-left: 20px;
	padding: 0px;
	color:#3a3a3a;
	font-size: 14px;
}
p.list_alert_msg_sub{
	display: list-item;
	/*font-weight:bold;*/
	list-style-type: none; /* Or any other valid type */
	line-height: 1.5;
	margin-left: 20px;
	padding: 0px;
	color:#3a3a3a;
	font-size: 14px;
}
@media (min-width: 768px) {
	p.list_alert_msg{
		font-size: 18px;
	}
	p.list_alert_msg_sub{
		font-size: 18px;
	}	
}

.commonMoneyBoxDiv{
	list-style:none;
	width:100%;
	display:flex;
}
.commonMoneyBoxDiv li {

}
.commonMoneyBoxDiv li:nth-child(1){
	width:24%;
}
.commonMoneyBoxDiv li:nth-child(2){
	width:44%;
}
.commonMoneyBoxDiv li:nth-child(3){
	width:30%;
}
.commonMoneyBoxDiv2{
	list-style:none;
	width:100%;
}
.commonMoneyBoxDiv2 li {
	width:100%;
}
.commonMoneyBoxDiv .moneyTextClass{
	padding: 15px;
	font-size:--font-size-xl;
	color:red;
}
.commonMoneyBoxDiv2 .moneyTextClass2{
	padding: 15px;
	font-size:--font-size-xl;
	color:red;	
}
.commonMoneyBoxDiv #temp_money{

}
@media (min-width: 768px) {
	.commonMoneyBoxDiv .moneyTextClass{
		padding: 30px;
		font-size:28px;
	}
	.commonMoneyBoxDiv li:nth-child(1){
		width:30%;
	}
	.commonMoneyBoxDiv li:nth-child(2){
		width:36%;
	}
	.commonMoneyBoxDiv li:nth-child(3){
		width:30%;
	}	
}

.sec_product_info{
	font-size:12px;
	color:#5587ED;
	font-weight:bold;
}
.sec_product_info2{
	font-size:12px;
	font-weight:bold;/*normal;*/
	color: #00203F;
	padding:2px;
	background-color: #ADEFD1;
	border: 0;
	border-radius: 5px;
	line-height: 1.1;
}
@media (min-width: 768px) {
	.sec_product_info{
		font-size:16px;
	}
	.sec_product_info2{
		font-size:16px;
		/*color: #00203F;	*/
	}	
}

.result-buy-stock-name{
	font-size:16px;
}
@media (min-width: 768px) {
	.result-buy-stock-name{
		font-size:26px;
	}
}

.loan-comparison-page {
  counter-reset: my-span-counter; /* Initialized to 0 */
}

h3.section-title{
	width:100%;
	display:grid;
	grid-template-columns: 0.06fr 0.94fr;
	margin-top : 0em;
	position: relative;
	float: left;
	line-height: 1.2;
}
.title-list{
	counter-increment: my-span-counter;
}
.title-list:before{
	position: absolute;
	top:5px;
	left:15px;
	content: counter(my-span-counter) ". ";
}

@media (min-width: 768px) {
	h3.section-title{
		grid-template-columns: 0.05fr 0.95fr;

	}
	.title-list{
		counter-increment: my-span-counter;
	}
	.title-list:before{
		position: absolute;
		top:5px;
		left:15px;
		content: counter(my-span-counter) ". ";
	}
}