@charset "utf-8";

.pcbr {
	display: none;
}
.tbbr {
	display: none;
}
.mbbr {
	display: block;
}
.dn {
	display: none;
}

:root {
	--point-color: #37a7ca;
	--notice-bg: #1a3556;
}

#main {
	width: 100%;
}

/* visual — 메인 슬라이드·텍스트·컨트롤 */
.mainVisual {
	position: relative;
	height: 100vh;
	height: 100svh;
	overflow: hidden;
	background: #000;
}

.mainVisual .swiper,
.mainVisual .swiper-wrapper,
.mainVisual .swiper-slide {
	height: 100%;
}

.mainVisual .visualBg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.mainVisual .visualBg::after {
	display: block;
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
}

.mainVisual .visualBg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mainVisual .visualInner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0 auto;
	padding: 88px 20px 72px;
}

.mainVisual .visualTxt {
	max-width: 100%;
}

.mainVisual .visualTit {
	display: flex;
	flex-direction: column;
	gap: 0;
	color: #fff;
	font-family: "Manrope", "Poppins", sans-serif;
	font-size: clamp(32px, 9vw, 44px);
	font-weight: 600;
	line-height: 1.1;
	text-transform: uppercase;
}

.mainVisual .visualTit > span {
	display: block;
}

.mainVisual .visualDesc {
	margin-top: 14px;
	color: #fff;
	font-size: clamp(14px, 4vw, 18px);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.mainVisual .visualControls {
	position: absolute;
	left: 20px;
	bottom: 32px;
	z-index: 5;
}

.mainVisual .visualNav {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mainVisual .visualNav-prev,
.mainVisual .visualNav-next {
	position: relative;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.mainVisual .visualNav-prev::before,
.mainVisual .visualNav-next::before {
	display: block;
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.mainVisual .visualNav-prev::before {
	border-left: 2px solid #fff;
	margin-left: 2px;
}

.mainVisual .visualNav-next::before {
	border-right: 2px solid #fff;
	transform: translate(-50%, -50%) rotate(45deg);
	margin-left: -2px;
}

.mainVisual .visualNav-dots {
	display: flex;
	align-items: center;
	gap: 6px;
}

.mainVisual .visualNav-dot {
	width: clamp(24px, 8vw, 48px);
	height: 2px;
	padding: 0;
	border: 0;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s;
}

.mainVisual .visualNav-dot.is-active {
	background: #fff;
}

.mainVisual .visualScroll {
	display: none;
}

/* overview — 시안 중앙 텍스트 레이아웃 */
.mainOverview-bg {
	display: none;
}

.mainOverview {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #fff;
}

.mainOverview-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px;
	width: 100%;
	padding: 64px 20px;
}

.mainOverview-txt {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	width: 100%;
	text-align: center;
}

.mainOverview-tit {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #1a3556;
	font-family: "Manrope", "Poppins", sans-serif;
	font-size: clamp(32px, 9vw, 48px);
	font-weight: 700;
	line-height: 1.15;
}

.mainOverview-tit > span {
	display: block;
}

.mainOverview-desc {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #6c6c6c;
	font-size: var(--fz-16);
	line-height: 1.65;
}

.mainOverview-desc span {
	display: block;
}

.mainOverview-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 150px;
	height: 50px;
	padding: 0 22px;
}

/* product — 모바일 세로 헤더 + 가로 스크롤 카드 */
.mainProduct {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 80px 20px 100px;
	background: #fff;
}

.mainProduct-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
	padding-top: 32px;
	border-top: 1px solid rgba(0, 0, 0, 0.4);
}

.mainProduct-head .btnViewMore {
	gap: 5px;
	width: 150px;
	height: 50px;
	padding: 14px 22px;
}

.mainProduct-list {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	margin: 0 -20px;
	padding: 0 20px;
	list-style: none;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.mainProduct-list::-webkit-scrollbar {
	display: none;
}

.mainProduct-list > li {
	flex: 0 0 240px;
	min-width: 240px;
}

.mainSecLabel {
	color: var(--point-color);
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
}

.mainSecLabel-white {
	color: #fff;
}

.mainSecTit {
	margin-top: 16px;
	color: #000;
	font-size: 26px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.02em;
}

.mainSecTit-white {
	color: #fff;
}

.btnViewMore {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	padding: 20px 30px;
	border-radius: 200px;
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	transition: opacity 0.3s;
}

.btnViewMore-gray {
	background: #ededed;
	color: #333;
}

.btnViewMore-white {
	background: #fff;
	color: #333;
}

.btnViewMore-outline {
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
}

.btnViewMore i {
	display: flex;
	width: 20px;
	height: 20px;
}

.btnViewMore i img {
	width: 100%;
	height: 100%;
}

.productCard {
	position: relative;
	display: block;
	overflow: hidden;
	height: 380px;
	border-radius: 12px;
	background: #000;
}

.productCard-bg {
	position: absolute;
	inset: 0;
}

.productCard-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.productCard-bg::after {
	display: block;
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
}

.productCard-top {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	height: 80px;
	padding: 18px 20px 0;
}

.productCard-top::before {
	display: block;
	content: "";
	position: absolute;
	left: 16px;
	top: 80px;
	width: calc(100% - 32px);
	height: 1px;
	background: rgba(255, 255, 255, 0.5);
}

.productCard-top::after {
	display: block;
	content: "";
	position: absolute;
	left: 60.29%;
	top: 0;
	width: 1px;
	height: 80px;
	background: rgba(255, 255, 255, 0.5);
}

.productCard-num {
	color: #fff;
	font-size: 32px;
	font-weight: 300;
	line-height: 1;
}

.productCard-label {
	color: #fff;
	font-family: "Manrope", sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.27;
}

.productCard-txt {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	padding: 28px 20px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.productCard-txt strong {
	display: block;
	color: #fff;
	font-family: "Manrope", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
}

.productCard-txt p {
	margin-top: 10px;
	color: #fff;
	font-size: 14px;
	line-height: 1.4;
}

/* notice — 1열 카드 슬라이드 */
.mainNotice {
	padding: 80px 20px 48px;
	background: var(--notice-bg);
}

.mainNotice-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	padding-top: 32px;
	padding-bottom: 36px;
	border-top: 2px solid rgba(255, 255, 255, 0.5);
}

.mainNotice-headTxt {
	width: 100%;
}

.noticeNav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 72px;
}

.noticeNav-prev,
.noticeNav-next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.noticeNav-prev img,
.noticeNav-next img {
	width: 100%;
	height: auto;
}

.noticeSwiper {
	overflow: hidden;
}

.noticeGrid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.noticeCard {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
	min-height: auto;
	padding: 14px;
	border-radius: 12px;
	background: #fff;
}

.noticeCard-thumb {
	flex-shrink: 0;
	overflow: hidden;
	width: 100%;
	height: 140px;
	border-radius: 10px;
	background: #000;
}

.noticeCard-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.noticeCard-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
}

.noticeCard-cate {
	color: var(--point-color);
	font-family: "Manrope", sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
}

.noticeCard-tit {
	display: block;
	overflow: hidden;
	margin-top: 4px;
	color: #171717;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.4;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.noticeCard-desc {
	overflow: hidden;
	display: -webkit-box;
	margin-top: 4px;
	color: #6c6c6c;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.noticeCard-date {
	color: #6c6c6c;
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}

.mainNotice-more {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
}

.mainNotice-more a:hover {
	color: #fff;
}

/* contact — CTA 박스 */
.mainContact {
	position: relative;
	overflow: hidden;
	padding: 64px 20px;
}

.mainContact-bg {
	position: absolute;
	inset: 0;
	background: url(/images/main/contact_bg.jpg) no-repeat center / cover;
}

.mainContact-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 36px;
}

.mainContact-tit {
	display: flex;
	flex-direction: column;
	color: #fff;
	font-family: "Manrope", "Poppins", sans-serif;
	font-size: clamp(28px, 8vw, 40px);
	font-weight: 600;
	line-height: 1.2;
}

.mainContact-box {
	width: 100%;
	padding: 28px 24px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(25px);
}

.mainContact-boxTit {
	margin-top: 20px;
	color: #000;
	font-size: clamp(22px, 6vw, 30px);
	font-weight: 500;
	line-height: 1.4;
}

.mainContact-boxDesc {
	margin-top: 14px;
	color: #666;
	font-size: 15px;
	line-height: 1.55;
}

.mainContact-boxInner .btnViewMore {
	margin-top: 28px;
}

/* 레이어 팝업 — 모바일 너비·글자 크기 보정 */
.page-main .main_layer_popup {
	width: calc(100% - 32px) !important;
	max-width: none;
	top: 72px !important;
}

.page-main .main_layer_popup .m_h {
	font-size: 16px !important;
	padding: 16px !important;
}
