@charset "utf-8";

.pcbr {
	display: none;
}
.tbbr {
	display: block;
}
.mbbr {
	display: none;
}
.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.2);
}

.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: 100px 40px 80px;
}

.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(40px, 6.5vw, 64px);
	font-weight: 600;
	line-height: 1.1;
	text-transform: uppercase;
}

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

.mainVisual .visualDesc {
	margin-top: 16px;
	color: #fff;
	font-size: clamp(16px, 2.2vw, 24px);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.03em;
}

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

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

.mainVisual .visualNav-prev,
.mainVisual .visualNav-next {
	position: relative;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	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: 10px;
	height: 10px;
	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: 8px;
}

.mainVisual .visualNav-dot {
	width: clamp(32px, 6vw, 72px);
	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 {
	position: absolute;
	right: 40px;
	bottom: 0;
	z-index: 5;
	width: 3px;
	height: 120px;
}

.mainVisual .visualScroll-line {
	display: block;
	position: absolute;
	left: 1px;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
}

.mainVisual .visualScroll-bar {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 40px;
	background: #fff;
	animation: visualScroll 2s ease-in-out infinite alternate;
}

@keyframes visualScroll {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(80px);
	}
}

/* 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: 32px;
	width: 100%;
	padding: 80px 40px;
}

.mainOverview-txt {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	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(48px, 6.5vw, 80px);
	font-weight: 700;
	line-height: 1.1;
}

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

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

.mainOverview-desc span {
	display: block;
}

.mainOverview-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	gap: 10px;
	width: 160px;
	height: 54px;
	padding: 0 24px;
}

/* product — 태블릿 가로 스크롤 카드 */
.mainProduct {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 100px 40px 120px;
	background: #fff;
}

.mainProduct-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	max-width: 100%;
	padding-top: 40px;
	border-top: 1px solid rgba(0, 0, 0, 0.4);
}

.mainProduct-headTxt {
	flex: 1;
	min-width: 0;
}

.mainProduct-head .btnViewMore {
	flex-shrink: 0;
	gap: 10px;
	width: 160px;
	height: 54px;
	padding: 16px 24px;
}

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

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

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

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

.mainSecLabel-white {
	color: #fff;
}

.mainSecTit {
	margin-top: 20px;
	color: #000;
	font-size: 36px;
	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: 15px;
	font-weight: 400;
	line-height: 1;
	transition: opacity 0.3s;
}

.btnViewMore:hover {
	opacity: 0.8;
}

.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: 24px;
	height: 24px;
}

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

.productCard {
	position: relative;
	display: block;
	overflow: hidden;
	height: 460px;
	border-radius: 16px;
	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: 20px;
	width: 100%;
	height: 90px;
	padding: 22px 24px 0;
}

.productCard-top::before {
	display: block;
	content: "";
	position: absolute;
	left: 20px;
	top: 90px;
	width: calc(100% - 40px);
	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: 90px;
	background: rgba(255, 255, 255, 0.5);
}

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

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

.productCard-txt {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	padding: 32px 24px;
	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: 24px;
	font-weight: 500;
	line-height: 1.2;
}

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

/* notice — 2열 카드 슬라이드 */
.mainNotice {
	padding: 100px 40px 60px;
	background: var(--notice-bg);
}

.mainNotice-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	padding-top: 40px;
	padding-bottom: 50px;
	border-top: 2px solid rgba(255, 255, 255, 0.5);
}

.mainNotice-headTxt {
	flex: 1;
	min-width: 0;
}

.noticeNav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
	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: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

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

.noticeCard-thumb {
	flex-shrink: 0;
	overflow: hidden;
	width: 100%;
	height: 160px;
	border-radius: 12px;
	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: 16px;
	min-width: 0;
}

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

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

.noticeCard-desc {
	overflow: hidden;
	display: -webkit-box;
	margin-top: 6px;
	color: #6c6c6c;
	font-size: 15px;
	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: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.mainNotice-more {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	padding-top: 32px;
	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: 80px 40px;
}

.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: 48px;
}

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

.mainContact-box {
	width: 100%;
	max-width: 640px;
	padding: 40px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(25px);
}

.mainContact-boxTit {
	margin-top: 24px;
	color: #000;
	font-size: clamp(24px, 3.5vw, 40px);
	font-weight: 500;
	line-height: 1.4;
}

.mainContact-boxDesc {
	margin-top: 16px;
	color: #666;
	font-size: 17px;
	line-height: 1.5;
}

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

/* 레이어 팝업 — 태블릿 너비 보정 */
.page-main .main_layer_popup {
	width: calc(100% - 80px) !important;
	max-width: 700px;
}

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