@charset "utf-8";

#refund{
	background-color: var(--light-blue);
	position: relative;
	overflow: hidden;
}

/* 누락된 ref_img.png 장식은 숨김 */
#refund::before{
	display: none;
}

#refund .wrapper{
	display: block;
	padding: 80px 0 120px;
}

#refund .refund-lead{
	width: 100%;
	max-width: 860px;
	margin: 0 0 40px;
	padding: 18px 22px;
	background: #fff;
	border-left: 4px solid var(--blue);
	border-radius: 0 12px 12px 0;
	box-sizing: border-box;
}

#refund .refund_body{
	display: flex;
	align-items: flex-start;
	gap: 48px;
}

#refund .refund_left{
	width: 34%;
	flex-shrink: 0;
	position: sticky;
	top: 120px;
}

#refund .refund_right{
	flex: 1;
	min-width: 0;
}

#refund .refund_tit{
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--gray02);
	line-height: 1.35;
	word-break: keep-all;
}

#refund .refund_tit span{
	font-size: inherit;
	font-weight: inherit;
	color: var(--black);
}

#refund .ref_cont_tit{
	color: var(--black);
	font-size: 1.3125rem;
	font-weight: 800;
	margin-bottom: 18px;
	word-break: keep-all;
	line-height: 1.45;
}

#refund .ref{
	margin-bottom: 42px;
}

#refund .ref:last-child{
	margin-bottom: 0;
}

.color_b{
	color: var(--blue);
	font-size: inherit;
	font-weight: inherit;
}

.color_y{
	color: var(--yellow);
	font-size: inherit;
	font-weight: inherit;
}

#refund .ref_cont_txt{
	display: flex;
	align-items: flex-start;
	width: 100%;
	gap: 10px;
	margin-bottom: 10px;
}

#refund .ref_cont_txt p{
	color: var(--gray01);
	font-size: 1.125rem;
	word-break: keep-all;
	line-height: 1.65;
	flex: 1;
	min-width: 0;
}

#refund .ref_cont_txt .dot{
	display: block;
	width: 5px;
	height: 5px;
	background-color: var(--gray01);
	border-radius: 50%;
	margin-top: 0.7em;
	flex-shrink: 0;
}

@media screen and (max-width: 1300px){
	#refund .refund_tit{
		font-size: 2.2rem;
	}

	#refund .ref_cont_tit{
		font-size: 1.2rem;
	}

	#refund .ref_cont_txt p{
		font-size: 1.0625rem;
	}
}

@media screen and (max-width: 1100px){
	#refund .wrapper{
		padding: 70px 0 100px;
	}

	#refund .refund_body{
		flex-direction: column;
		gap: 28px;
	}

	#refund .refund_left{
		width: 100%;
		position: static;
		padding-bottom: 8px;
	}

	#refund .refund_right{
		width: 100%;
		padding-top: 28px;
		border-top: 1px dashed var(--blue);
	}
}

@media screen and (max-width: 767px){
	#refund .wrapper{
		padding: 56px 0 80px;
	}

	#refund .refund-lead{
		margin-bottom: 28px;
		padding: 14px 16px;
		font-size: 0.95rem;
	}

	#refund .refund_tit{
		font-size: 1.75rem;
	}

	#refund .ref{
		margin-bottom: 32px;
	}

	#refund .ref_cont_tit{
		font-size: 1.1rem;
		margin-bottom: 14px;
	}

	#refund .ref_cont_txt p{
		font-size: 1rem;
	}
}
