@charset "utf-8";

/* 회원가입 이메일 자동완성 */
.autocomplete-suggestions {
	border: 1px solid #ccc;
	max-height: 150px;
	overflow-y: auto;
	position: relative;
	/* 	position: absolute;  */
	background-color: white;
	z-index: 1000;
	width: calc(100% - 22px);
}

/*메인 배너=============================================================*/
.main_banner {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.4210;
	overflow: hidden;
}

.main_banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* 이미지 꽉 채우기 */
	display: block;
}


/*소개박스=========================================================*/
/* ===== HERO ===== */
.yl_hero {
	padding-top: clamp(80px, 7.5vw, 160px);
	padding-bottom: clamp(80px, 7.5vw, 144px);
	
	color: #0c0c0c;
}

.yl_hero * {
	box-sizing: border-box;
}

.yl_hero .yl_inner {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

/* 헤드 */
.yl_hero .yl_head {
	text-align: center;
	margin-bottom: clamp(40px, 4vw, 72px);
}

.yl_hero .yl_head h2 {
	color: #222;
	font-family: Pretendard;
	font-size: clamp(26px, 3.2vw, 48px);
	font-style: normal;
	font-weight: 600;
	line-height: 1.15;
	margin: 0;
}

.yl_hero .yl_head p {
	color: #888;
	font-family: Pretendard;
	font-size: clamp(16px, 2.2vw, 32px);
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

/* (사용 중이면 유지) 이미지 그리드 */
.yl_hero .yl_grid {
	display: flex;
	gap: 12px;
	margin: 18px 0 36px;
}

.yl_hero .yl_card {
	position: relative;
	flex: 1 1 25%;
	width: 25%;
	aspect-ratio: 16/5;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
}

.yl_hero .yl_card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(0.85);
	transition: transform .35s ease, filter .35s ease;
}

.yl_hero .yl_card strong {
	position: absolute;
	left: 16px;
	bottom: 12px;
	padding: 6px 10px;
	font-size: clamp(12px, 0.9vw, 15px);
	font-weight: 600;
	color: #fff;
	background: rgba(0, 0, 0, .35);
	border-radius: 4px;
	letter-spacing: -.2px;
}

.yl_hero .yl_card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0));
	pointer-events: none;
}

.yl_hero .yl_card:hover img {
	transform: scale(1.04);
	filter: brightness(0.95);
}

/* 메시지 */
.yl_hero .yl_msg {
	text-align: center;
	margin-top: clamp(80px, 7.5vw, 144px);
	margin-bottom: clamp(40px, 3.75vw, 72px);
}

.yl_hero .yl_quote {
	color: #222;
	text-align: center;
	font-family: Pretendard;
	font-size: clamp(18px, 2.2vw, 24px);
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

.yl_hero .yl_msg h3 {
	color: #222;
	text-align: center;
	font-family: Pretendard;
	font-size: clamp(24px, 3.2vw, 40px);
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	margin-top: 16px;
}

.yl_hero .yl_msg h3 em {
	color: #0077C2;
	font-family: Pretendard;
	font-size: inherit;
	font-style: normal;
	font-weight: 600;
	line-height: inherit;
}

.yl_hero .yl_sub {
	color: #222;
	text-align: center;
	font-family: Pretendard;
	font-size: clamp(16px, 2.2vw, 40px);
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	margin-top: 4px;
}

/* 연락처 */
.yl_hero .yl_contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.yl_hero .yl_numbers {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
	margin-bottom: clamp(40px, 3.75vw, 72px);
}

.yl_hero .yl_numbers a {
	color: #222;
	text-align: center;
	font-family: Pretendard;
	font-size: clamp(22px, 3.2vw, 48px);
	font-style: normal;
	font-weight: 800;
	line-height: 1.15;
	text-decoration: none;
}

/* CTA 버튼(폭은 그대로 300px 유지, 글씨만 유동) */
.yl_hero .yl_cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	width: 300px;
	height: 68px;
	padding: 18px 36px;
	border-radius: 10px;
	background: #003C85;
	color: #ffffff;
	font-size: clamp(14px, 1.4vw, 22px);
	font-weight: 600;
	text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}

.yl_hero .yl_cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(13, 59, 116, .24);
	background: #0b3568;
}

.yl_hero .yl_ico {
	width: 14px;
	height: 14px;
	display: inline-block;
	border: 2px solid currentColor;
	border-radius: 3px;
	position: relative;
}

.yl_hero .yl_ico::after {
	content: "";
	position: absolute;
	right: -2px;
	top: 50%;
	width: 6px;
	height: 6px;
	border: 2px solid currentColor;
	border-left: 0;
	border-top: 0;
	transform: translateY(-50%) rotate(-45deg);
	border-radius: 1px;
}

/* ===== SERVICE 4-UP (카드 모두 붙임) ===== */
.yl_service_wrap {
	width: 100%;
	background: #fff;
}

.yl_service_inner {
	display: flex;
	width: 100%;
	max-width: 1350px;
	margin: 0 auto;
	padding: 0;
}

.yl_service_card {
	position: relative;
	flex: 1 1 25%;
	width: 25%;
	aspect-ratio: 337/225;
	overflow: hidden;
	text-decoration: none;
}

.yl_service_card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(0.6);
	transition: transform .4s ease, filter .4s ease;
}

.yl_service_card span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	white-space: nowrap;
	color: #FFF;
	font-family: Pretendard;
	font-size: clamp(16px, 1.8vw, 28px);
	font-style: normal;
	font-weight: 600;
	line-height: 1.1;
}

.yl_service_card:hover img {
	transform: scale(1.05);
	filter: brightness(0.8);
}

/* 반응형 */

@media (max-width: 1350px) {
	.yl_service_inner {
		width: 93.75%;
	}
}

@media (max-width: 1024px) {
	.yl_service_inner {
		flex-wrap: wrap;
		/* padding: 0 24px; */
	}

	.yl_service_card {
		width: 50%;
		flex: 1 1 50%;
		aspect-ratio: 16/9;
	}
}



/*서브 공용 베너=============================================================================== */
.sb_banner {
	width: 100%;
	position: relative;
}

.sb_banner::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--bg) no-repeat center/cover;
	filter: brightness(.6);
}

.sb_banner .sb_banner_inner {
	position: relative;
	width: 100%;
	margin: 0 auto;
	aspect-ratio: 1920 / 400;
	overflow: hidden;
	min-height: 400px;

	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sb_banner .sb_banner_inner img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.6);
}


.sub_vi_txt_box {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.sub_vi_txt_box h1 {
	font-size: clamp(32px, 2.5vw, 40px);
	font-weight: 700;
	line-height: 130%;
	color: #fff;
}

.sub_vi_txt_box p {
	font-size: clamp(22px, 2.5vw, 32px);
	font-weight: 500;
	line-height: 130%;
	color: #fff;
}


.sub_vi_txt_box {
	overflow: hidden;
}

.ani-slide {
	opacity: 0;
	transform: translateX(-50px);
	animation: slideIn 1.2s ease forwards;
}

.delay-200 {
	animation-delay: .4s;
}

@keyframes slideIn {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ani-slide {
		animation: none;
		opacity: 1;
		transform: none;
	}
}

@media all and (max-width:768px) {
	.sb_banner .sb_banner_inner {
		width: 93.75%;
	}
}



/* .sb_banner .sb_banner_title {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #FFFFFF;
	
	font-size: clamp(40px, 2.5vw, 32px);
	font-weight: 700;
	line-height: 1;
	margin: 0;
	text-align: center;
}

.sb_banner .sb_banner_title i {
	display: inline-block;
	width: 2px;
	height: 1.6em;
	background: #FFFFFF;
	opacity: 0.9;
	transform: translateY(2px);
} */



/*서브페이지==============================================================================*/
.leak_solution {
	width: 100%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	
	color: #0C0C0C;
	box-sizing: border-box;
	margin: clamp(64px, 7.5vw, 144px) 0;
	padding: 0 16px;
}

.leak_solution .inner {
	width: min(1400px, 90%);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 4vw, 72px);
	box-sizing: border-box;
	flex-wrap: wrap;
}

.leak_solution .leak_left {
	flex: 0 1 455px;
	max-width: 455px;
}

.leak_solution .leak_left .img_box {
	width: 100%;
	aspect-ratio: 455/671;
	overflow: hidden;
}

.leak_solution .leak_left .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.leak_solution .leak_right {
	flex: 1 1 640px;
	max-width: 820px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	gap: clamp(12px, 2vw, 18px);
	min-height: clamp(420px, 46vw, 630px);
	margin: 0 auto;
}

.leak_solution .leak_right .subtxt {
	color: #05367B;
	font-size: clamp(16px, 1.2vw, 22px);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

.leak_solution .leak_right .title {
	color: #222;
	font-size: clamp(24px, 2.4vw, 36px);
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: -0.02em;
}

.leak_solution .leak_right .txt_box {
	display: flex;
	flex-direction: column;
	gap: clamp(12px, 2vw, 18px);
	color: #111;
	font-size: clamp(15px, 1.4vw, 20px);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: -0.01em;
}

.leak_solution .leak_right .text_line {
	width: clamp(28px, 2.8vw, 36px);
	height: 0;
	border: 1.5px solid #05367B;
}

@media (max-width: 1024px) {
	.leak_solution .inner {
		flex-direction: column;
		gap: clamp(24px, 5vw, 48px);
	}

	.leak_solution .leak_right {
		align-items: flex-start;
		width: 100%;
		min-height: auto;
	}

	.sb_banner .sb_banner_inner {
		min-height: 300px;
	}
}

/* ===== Review Section ===== */
.review_section {
	width: 100%;
	box-sizing: border-box;
	
	color: #0C0C0C;
	background: #fff;
	padding: 0 16px clamp(48px, 8vw, 144px);
}

.review_inner {
	width: min(1400px, 100%);
	margin: 0 auto;
	box-sizing: border-box;
}

.review_title {
	margin: 0 0 clamp(18px, 3vw, 36px);
	text-align: center;
	color: #222;
	font-size: clamp(22px, 3.2vw, 36px);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.review_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(14px, 1.6vw, 18px);
	align-items: stretch;
}

@media (max-width: 900px) {
	.review_grid {
		grid-template-columns: 1fr;
	}
}

.review_card {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.8vw, 18px);
	padding: clamp(16px, 2.2vw, 24px);
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 6px 20px rgba(12, 12, 12, 0.08);
}

.review_thumb {
	flex: 0 0 auto;
	width: clamp(120px, 22vw, 200px);
	height: clamp(120px, 22vw, 200px);
	border-radius: 12px;
	background: repeating-linear-gradient(45deg, #eee 0 12px, #f6f6f6 12px 24px);
}

.review_body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(8px, 1.6vw, 18px);
}

.review_stars {
	margin: 0;
	font-size: clamp(16px, 1.6vw, 20px);
	letter-spacing: 2px;
	color: #FFD857;
	line-height: 1;
}

.review_text {
	margin: 0;
	color: #555;
	font-family: "Noto Sans KR", Pretendard, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	font-size: clamp(15px, 1.8vw, 22px);
	font-weight: 350;
	line-height: 1.6;
	letter-spacing: -0.02em;
}

@media (max-width: 600px) {
	.review_card {
		padding: clamp(14px, 4vw, 18px);
	}
}


/* 20251016 추가 */
.noice_board_alt_box {
	cursor: pointer;
}

.programCon_custom01 {
	margin-bottom: 60px;
}

@media all and (max-width: 768px) {
	.txt_box br {
		display: none;
	}
}



/* 20251110 추가 */
.review_card .img_box {
	aspect-ratio: 1 / 1;
	max-width: 194px;
}

.review_card .img_box img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
}