@charset "utf-8";
:root {
	--scene-scale: calc(1.6 * (100vw / 1400px));
}
.pcbr {
	display: none;
}
.ptbr {
	display: none;
}
.tbbr {
	display: none;
}
.mbbr {
	display: block;
}
.dn {
	display: none;
}

body.no-scroll {
	overflow: hidden;
	position: fixed; /* iOS 대응 */
	width: 100%;
}
#wrap {
	background: #f5f5ee;
}
#container {
	overflow: hidden;
}

.sec1 {
	position: relative;
	width: 100%;
	height: 100vh;
	background: url(../images/main/sec1_bg.jpg) no-repeat center / cover;
	overflow: hidden;
}

.sec1 .slgWrap {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 1px;
}
.sec1 .slg {
	position: absolute;
	z-index: 10;
}
.sec1 .slg.slg1 {
	left: 4%;
	bottom: 24vw;
}
.sec1 .slg.slg2 {
	right: 4%;
	top: 24vw;
}
.sec1 .slg span {
	font-size: 18vw;
	font-weight: 900;
	color: #fff;
}
.sec1 .slg2 span {
	font-size: 20vw;
}
.sec1 .scroll {
	position: absolute;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
	text-align: center;
}
.sec1 .scroll .mouse {
	position: relative;
	display: block;
	width: 19px;
	height: 36px;
	border-radius: 30px;
	border: 1.7px solid #fff;
	margin: 0 auto 10px;
}
.sec1 .scroll .mouse i {
	position: absolute;
	left: 50%;
	top: 5px;
	transform: translateX(-50%);
	width: 2px;
	height: 6px;
	border-radius: 10px;
	background: #fff;
	animation: wheelMove 1.5s ease-in-out infinite;
}
@keyframes wheelMove {
	0% {
		transform: translate(-50%, 0);
		opacity: 1;
	}
	50% {
		transform: translate(-50%, 10px);
		opacity: 0.5;
	}
	100% {
		transform: translate(-50%, 0);
		opacity: 1;
	}
}
.sec1 .scroll span {
	font-family: "Manrope";
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff;
}

.sec1 .scene-wrap {
	position: absolute;
	left: 50%;
	top: 50%;
	width: clamp(135px, 36vw, 210px);
	height: clamp(135px, 36vw, 210px);
	transform: translate(-50%, -50%) rotate(-10deg);
	-webkit-transform: translate(-50%, -50%) rotate(-10deg);
	z-index: 100;
}

.sec1 .scene {
	width: 100%;
	height: 100%;
	cursor: grab;
	user-select: none;
}

.sec1 .scene:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(10deg);
	-webkit-transform: translate(-50%, -50%) rotate(10deg);
	width: 450%;
	aspect-ratio: 1758 / 1131;
	background: url(../images/main/sec1_card_light.png) no-repeat center / contain;
}

.sec1 .scene.grabbing {
	cursor: grabbing;
}

.sec1 .scene .carousel {
	width: 100%;
	height: 100%;
	position: absolute;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	will-change: transform;
	outline: 1px solid transparent;
}

.sec1 .scene .carousel-card {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	outline: 1px solid transparent;
	box-shadow:
		inset -1px -1px 2px rgba(255, 255, 255, 0.8),
		inset 1px 1px 2px rgba(0, 0, 0, 1);
}

.sec1 .card-face {
	position: absolute;
	inset: 0;
	border-radius: 15px;
	overflow: hidden;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.sec1 .card-face.front {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.sec1 .card-face.back {
	background: #000;
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.sec1 .scene .carousel-card .inner {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 10px;
	z-index: 10;
	display: flex;
	align-items: flex-end;
}
.sec1 .scene .carousel-card .inner:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	box-shadow:
		inset 1px 1px 1px rgba(255, 255, 255, 0.5),
		/* 위 + 왼쪽 (화이트) */ inset -2px -2px 1px rgba(0, 0, 0, 0.8); /* 아래 + 오른쪽 (블랙) */
}
.sec1 .scene .carousel-card .inner .txtWrap {
}
.sec1 .scene .carousel-card .inner .txtWrap .tit {
	position: relative;
	z-index: 2;
	font-family: "Pretendard";
	font-size: 12px;
	font-weight: 700;
	color: #fff;
}
.sec1 .scene .carousel-card .inner .txtWrap .moreBtn {
	margin-top: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	padding: 3px 7px;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	position: relative;
	z-index: 2;
	transition: all 0.3s;
}
.sec1 .scene .carousel-card .inner .txtWrap .moreBtn span {
	font-family: "Pretendard";
	font-size: 8px;
	color: #fff;
	font-weight: 500;
}
.sec1 .scene .carousel-card .inner .txtWrap .moreBtn i {
	display: block;
	width: 4px;
	height: 10px;
	background: url(../images/main/sec1_card_moreBtn_arr.png) no-repeat center / contain;
}
.sec1 .scene .carousel-card:hover .inner .txtWrap .moreBtn {
	background: #b133ed;
	border: 1px solid #b133ed;
}
.sec1 .scene .carousel-card .inner .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.sec1 .scene .carousel-card .inner .bg:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.sec1 .scene .carousel-card .inner .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 시작 모션 */
.sec1 .slgWrap .slg.slg1 {
	transform: translateX(-100%);
	opacity: 0;
}
.sec1 .slgWrap.in-view .slg.slg1 {
	transform: translateX(0);
	opacity: 1;
	transition: all 1s 0.8s;
}
.sec1 .slgWrap .slg.slg2 {
	transform: translateX(100%);
	opacity: 0;
}
.sec1 .slgWrap.in-view .slg.slg2 {
	transform: translateX(0);
	opacity: 1;
	transition: all 1s 1.4s;
}
.sec1 .scene {
	opacity: 0;
}
.sec1.in-view .scene {
	opacity: 1;
	transition: all 1.4s 0.2s;
}

.popup {
	position: fixed;
	display: none;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 1020px;
	width: 92%;
	border-radius: 10px;
	overflow: hidden;
	margin: 0 auto;
	z-index: 10000;
}
.popup .popup-content > .top {
	position: relative;
	padding: 20px 4%;
	background: #2c36bc;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.popup .popup-content > .top .cate {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}
.popup .popup-content > .top .xBtn {
	display: block;
	width: 20px;
	height: 20px;
}
.popup .conWrap {
	width: 100%;
	padding: 20px 4%;
	background: #fff;
}
.popup .conWrap .inner {
	width: 100%;
	max-height: 70vh;
	overflow-y: auto;
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
	justify-content: space-between;
}
.popup .conWrap .inner .con.w1 {
	width: 100%;
}
.popup .conWrap .inner .con.w2 {
	width: 100%;
}
.popup .conWrap .inner .con .cate {
}
.popup .conWrap .inner .con .cate .top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.popup .conWrap .inner .con .cate .top .cateTit {
	font-size: 20px;
	font-weight: 600;
	color: #1a1a1a;
}
.popup .conWrap .inner .con .cate .top .ctr {
	display: flex;
	gap: 5px;
}
.popup .conWrap .inner .con .cate .top .ctr > div {
	width: 30px;
	cursor: pointer;
}
.popup .conWrap .inner .con .cate .pressSwiper {
}
.popup .conWrap .inner .con .cate .pressSwiper .swiper-slide {
}
.popup .conWrap .inner .con .cate .pressSwiper .swiper-slide a,
.popup .conWrap .inner .con .cate .cardSwiper .swiper-slide a {
	display: block;
	width: 100%;
}
.popup .conWrap .inner .con .cate .pressSwiper .swiper-slide a .thumb,
.popup .conWrap .inner .con .cate .cardSwiper .swiper-slide a .thumb {
	width: 100%;
	aspect-ratio: 210 / 144;
	border-radius: 8px;
	overflow: hidden;
}
.popup .conWrap .inner .con .cate .pressSwiper .swiper-slide a .thumb img,
.popup .conWrap .inner .con .cate .cardSwiper .swiper-slide a .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.popup .conWrap .inner .con .cate .pressSwiper .swiper-slide a .tit {
	font-family: "Pretendard";
	margin-top: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #484848;
	line-height: 1.4em;
	height: 4.2em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.popup .conWrap .inner .con .cate .cardSwiper .swiper-slide a .tit {
	font-family: "Pretendard";
	margin-top: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #484848;
	line-height: 1.4em;
	height: 2.8em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.popup .conWrap .inner .con .cate .vodSwiper .swiper-slide {
}
.popup .conWrap .inner .con .cate .vodSwiper .swiper-slide a {
	position: relative;
	width: 100%;
	display: block;
}
.popup .conWrap .inner .con .cate .vodSwiper .swiper-slide a .thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 384 / 216;
	border-radius: 10px;
	overflow: hidden;
}
.popup .conWrap .inner .con .cate .vodSwiper .swiper-slide a .thumb:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.popup .conWrap .inner .con .cate .vodSwiper .swiper-slide a .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.popup .conWrap .inner .con .cate .vodSwiper .swiper-slide a .tit {
	font-family: "Pretendard";
	position: absolute;
	left: 15px;
	bottom: 15px;
	width: calc(100% - 30px);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3em;
	color: #fff;
	text-shadow: 1px 1px 2px rgb(65, 65, 65);
}
.popup .conWrap .inner .con .cate .vodSwiper .swiper-slide a .playBtn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
}

.dim {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 1001;
}

.sec2 {
	width: 100%;
	background: url(../images/main/sec2_bg_m.jpg) no-repeat bottom center / 100% 100%;
	padding: 60px 0;
}
.sec2 .innerwrap {
	width: 92%;
	max-width: 1300px;
	margin: 0 auto;
}
.sec2 .secTit {
	margin-bottom: 30px;
	text-align: center;
}
.sec2 .secTit h2 {
	position: relative;
	width: fit-content;
	font-size: 32px;
	color: #02042c;
	margin: 0 auto;
}
.sec2 .secTit h2:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 20px;
	background: #c4bdff;
}
.sec2 .secTit h2 span,
.sec2 .secTit h2 strong {
	position: relative;
	z-index: 2;
}
.sec2 .secTit h2 strong {
	display: block;
}
.sec2 .secTit h3 {
	font-family: "Pretendard";
	font-size: 18px;
	font-weight: 500;
	color: #666;
	margin-top: 15px;
}
.sec2 .notice {
	font-family: "Pretendard";
	font-size: 16px;
	font-weight: 500;
	color: #4d4d4d;
	margin-bottom: 20px;
}
.sec2 .notice strong {
	font-family: "Paperozi";
	font-size: 24px;
	color: #000;
	margin-right: 8px;
}
.sec2 .slideWrap {
	width: 100%;
}
.sec2 .slideWrap .slideCon {
	position: relative;
	width: 100%;
}
.sec2 .slideWrap .slideCon + .slideCon {
	margin-top: 8px;
}
.sec2 .slideWrap .slideCon:nth-child(5n + 1) {
	margin-top: 40px;
}
.sec2 .slideWrap .slideCon:nth-last-child(5) {
	margin-top: 120px;
}
.sec2 .slideWrap .slideCon:first-child {
	margin-top: 0;
}
.sec2 .slideWrap .slideCon .notice {
	position: absolute;
	left: 0;
	bottom: calc(100% + 20px);
	margin: 0;
	display: none;
	color: #fff;
}
.sec2 .slideWrap .slideCon .notice strong {
	color: #fff;
}
.sec2 .slideWrap .slideCon:nth-last-child(5) .notice {
	display: block;
}
.sec2 .slideWrap .slideCon .arr {
	position: absolute;
	right: 18px;
	top: 27px;
	width: 17px;
	height: 11px;
	background: url(../images/main/sec2_slideCon_arr.png) no-repeat center / contain;
	z-index: 15;
	cursor: pointer;
}
.sec2 .slideWrap .slideCon .titWrap {
	width: 100%;
	padding: 25px 16px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	z-index: 10;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
}
.sec2 .slideWrap .slideCon .titWrap .department {
	width: 100%;
}
.sec2 .slideWrap .slideCon .titWrap .department span {
	position: relative;
	font-family: "Pretendard";
	font-size: 16px;
	font-weight: 600;
	color: #343b91;
}
.sec2 .slideWrap .slideCon:nth-child(n + 21) .titWrap .department span {
	color: #6a27b6;
}
.sec2 .slideWrap .slideCon.new .titWrap .department span:after {
	content: "";
	position: absolute;
	right: -25px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: url(../images/main/new_icon.png) no-repeat center / contain;
}
.sec2 .slideWrap .slideCon .titWrap .tit {
	width: 100%;
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	font-family: "Pretendard";
	font-size: 18px;
	letter-spacing: -1.5px;
	font-weight: 700;
	line-height: 1.2em;
	color: #1a1a1a;
}
.sec2 .slideWrap .slideCon .infoWrap {
	position: relative;
	width: 100%;
	padding: 60px 0 0;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.07),
		0 2px 4px rgba(0, 0, 0, 0.07),
		0 4px 8px rgba(0, 0, 0, 0.07),
		0 8px 16px rgba(0, 0, 0, 0.07),
		0 16px 32px rgba(0, 0, 0, 0.07),
		0 32px 64px rgba(0, 0, 0, 0.07);
	display: none;
}
.sec2 .slideWrap .slideCon .infoWrap .con {
	width: 100%;
	padding: 0 20px;
	z-index: 2;
	display: flex;
	flex-direction: column;
}
.sec2 .slideWrap .slideCon .infoWrap .con .thumb {
	width: 100%;
}
.sec2 .slideWrap .slideCon .infoWrap .con .thumb img {
	width: 100%;
	aspect-ratio: 600 / 480;
	object-fit: cover;
	border-radius: 20px 0 20px 0;
	border: 2px solid #fff;
	transition: all 0.3s;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts {
	width: 100%;
	padding: 15px 0 25px;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .department {
	position: absolute;
	left: 16px;
	top: 25px;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .department span {
	position: relative;
	font-family: "Pretendard";
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
}
.sec2 .slideWrap .slideCon.new .infoWrap .con .txts .department span:after {
	content: "";
	position: absolute;
	right: -25px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: url(../images/main/new_icon.png) no-repeat center / contain;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .tit {
	display: block;
	font-family: "Pretendard";
	font-size: 22px;
	font-weight: 800;
	line-height: 1.4em;
	letter-spacing: -1px;
	color: #1a1a1a;
	margin: 0 0 8px;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .tit span {
	color: #343b91;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .exp {
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .exp p {
	position: relative;
	padding-left: 10px;
	font-family: "Pretendard";
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4em;
	color: #464646;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .exp p:after {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 6px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #202358;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .exp .cmt {
	display: block;
	color: #343b91;
	font-size: 13px;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .moreLink {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: fit-content;
	padding: 8px 20px;
	margin: 20px auto 0;
	border: 1px solid #aaa;
	border-radius: 100px;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .moreLink span {
	font-family: "Pretendard";
	font-size: 16px;
	font-weight: 600;
	color: #666;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .moreLink img {
	width: 8px;
}
.sec2 .slideWrap .slideCon .infoWrap .linkWrap {
	position: relative;
	width: 100%;
	height: 80px;
	background: url(../images/main/card_bg.png) no-repeat center / cover;
}
.sec2 .slideWrap .slideCon .infoWrap .linkWrap .link {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 92%;
	text-align: center;
}
.sec2 .slideWrap .slideCon .infoWrap .linkWrap .link span {
	font-family: "Pretendard";
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	vertical-align: middle;
	margin-right: 5px;
}
.sec2 .slideWrap .slideCon .infoWrap .linkWrap .link img {
	width: 15px;
}

.sec2 .slideWrap .slideCon.active .titWrap {
	opacity: 0;
	z-index: -1;
}
.sec2 .slideWrap .slideCon.active .arr {
	transform: rotate(180deg);
}
