@charset "UTF-8";

html, body{
	-webkit-text-size-adjust : none;  /* 크롬, 사파리, 오페라 신버전 */
	-ms-text-size-adjust : none;  /* IE */
	-moz-text-size-adjust : none;  /* 파이어폭스 */
	-o-text-size-adjust : none;  /* 오페라 구버전 */
}
#wrap {background: none;}
.bottom_wrap {display: none;}
#footer {background: #eee;}

#container {
	position: relative;
	min-height: calc(100vh - 62px - 112px);
	background: var(--conBg);
	overflow: hidden;
}

/* 고정된 visual 이미지 */
.fixed_visual {
	position: fixed; left: 50%; transform: translateX(-50%);
	width: 720px; aspect-ratio: 2 / 1;
}
.visual {position: relative;}
/* visual 상단여백 */
.visual:has(.fixed_visual)::before {
	content: ""; display: block; clear: both;
	width: 100%; height: 50px;
}
/* visual fixed로 비어버린 공간 채우기 */
.visual:has(.fixed_visual)::after {
	content: ""; display: block; clear: both;
	width: 100%; aspect-ratio: 2 / 1;
}
/* visual 이미지 */
.fixed_visual .visual_img {width: 100%; height: 100%; object-fit: cover; filter: opacity(45%) brightness(110%);}
/* visual 제목 */
.fixed_visual .visual_tit {
	position: absolute;
	top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: auto; text-align: center;
	color: #000; font-weight: 900; font-size: 46px; line-height: 1.2;
}
.visual_tit::before {
	content: ""; display: block; clear: both;
	width: 100%; height: 100%; background: #fff;
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1.2);
	z-index: -1; border-radius: 25%; filter: blur(5px) opacity(70%);
}

/* 섹션 */
.sec {
	position: relative;
	background: var(--conBg);
	padding: 50px 20px;
}
.sec_tit {
	display: inline-block; position: relative;
	margin-left: calc(35px / 2); margin-top: 30px; margin-bottom: 30px;
}
.sec_tit>h2 {
	position: relative;
	font-size: 40px; font-weight: 700; color: var(--titColor);
	background: var(--conBg); padding: 0 5px;
}
.backline {
	width: calc(100% + 35px); height: 9px;
	border-top: 3px solid var(--titColor);
	border-bottom: 3px solid var(--titColor);
	position: absolute; top: 50%; left: 50%;
	transform: translate(-50%, -50%);
}
.sec_subtit {
	font-size: 34px; font-weight: 700; margin: 40px 0; position: relative;
	border-left: 5px solid var(--mainColor); text-indent: 5px; padding: 2px 0;
}
.sec_txt {
	font-size: 32px; font-weight: 400; line-height: 1.3;
	color: var(--txtColor); margin: 30px 0;
}

.sm {font-size: 24px;}
.md {font-size: 32px;}