@charset "utf-8";
:root {
	--scene-scale: calc(0.7 * (100vw / 1400px));
}
.pcbr {
	display: block;
}
.ptbr {
	display: block;
}
.tbbr {
	display: none;
}
.mbbr {
	display: none;
}
.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: 17%;
	bottom: 10vw;
}
.sec1 .slg.slg2 {
	right: 17%;
	top: 10vw;
}
.sec1 .slg span {
	font-size: 7.8vw;
	font-weight: 900;
	color: #fff;
}
.sec1 .slg2 span {
	font-size: 9vw;
}
.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: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #fff;
}

.sec1 .scene {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-10deg) scale(0);
	width: 340px;
	aspect-ratio: 1;
	perspective: 2000px;
	perspective-origin: center;
	margin: 0 auto;
	cursor: grab;
	user-select: none;
	z-index: 100;
}
.sec1 .scene:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(10deg);
	width: 440%;
	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;
}
.sec1 .scene .carousel-card {
	position: absolute;
	width: 100%;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	transform-style: preserve-3d;
}
.sec1 .card-face {
	position: absolute;
	inset: 0;
	border-radius: 30px;
	overflow: hidden;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.sec1 .card-face.front {
	position: absolute;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.sec1 .card-face.back {
	background: #000;
	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: 25px;
	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: 30px;
	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: 24px;
	font-weight: 700;
	color: #fff;
}
.sec1 .scene .carousel-card .inner .txtWrap .moreBtn {
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 5px 12px;
	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: 14px;
	color: #fff;
	font-weight: 500;
}
.sec1 .scene .carousel-card .inner .txtWrap .moreBtn i {
	display: block;
	width: 5px;
	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 {
	transform: translate(-50%, -50%) rotate(-10deg) scale(0.2);
	opacity: 0;
}
.sec1.in-view .scene {
	transform: translate(-50%, -50%) rotate(-10deg) scale(var(--scene-scale));
	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 {
}
.popup .popup-content > .top {
	position: relative;
	padding: 35px 60px;
	background: #2c36bc;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.popup .popup-content > .top .cate {
	font-size: 30px;
	font-weight: 600;
	color: #fff;
}
.popup .popup-content > .top .xBtn {
	display: block;
	width: 24px;
	height: 24px;
}
.popup .conWrap {
	width: 100%;
	padding: 40px 60px;
	background: #fff;
}
.popup .conWrap .inner {
	width: 100%;
	max-height: 70vh;
	overflow-y: auto;
	display: flex;
	flex-wrap: wrap;
	row-gap: 35px;
	justify-content: space-between;
}
.popup .conWrap .inner .con.w1 {
	width: 100%;
}
.popup .conWrap .inner .con:nth-child(2) {
	width: calc(55% - 10px);
}
.popup .conWrap .inner .con:nth-child(3) {
	width: calc(45% - 10px);
}
.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: 24px;
	font-weight: 600;
	color: #1a1a1a;
}
.popup .conWrap .inner .con .cate .top .ctr {
	display: flex;
	gap: 5px;
}
.popup .conWrap .inner .con .cate .top .ctr > div {
	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 {
	width: 100%;
	aspect-ratio: 210 / 144;
	border-radius: 8px;
	overflow: hidden;
}
.popup .conWrap .inner .con .cate .cardSwiper .swiper-slide a .thumb {
	width: 100%;
	aspect-ratio: 237 / 163;
	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: 18px;
	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: 18px;
	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: 24px;
	bottom: 24px;
	width: calc(100% - 48px);
	font-size: 18px;
	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%);
}

.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.jpg) no-repeat bottom center / 100% 100%;
	padding: 120px 0;
}
.sec2 .innerwrap {
	width: 92%;
	max-width: 1300px;
	margin: 0 auto;
}
.sec2 .secTit {
	margin-bottom: 80px;
	text-align: center;
}
.sec2 .secTit h2 {
	position: relative;
	width: fit-content;
	font-size: 65px;
	color: #02042c;
	margin: 0 auto;
}
.sec2 .secTit h2:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 45px;
	background: #c4bdff;
}
.sec2 .secTit h2 span,
.sec2 .secTit h2 strong {
	position: relative;
	z-index: 2;
}
.sec2 .secTit h3 {
	font-family: "Pretendard";
	font-size: 40px;
	font-weight: 500;
	color: #666;
	margin-top: 30px;
}
.sec2 .notice {
	font-family: "Pretendard";
	font-size: 22px;
	font-weight: 500;
	color: #4d4d4d;
	margin-bottom: 20px;
}
.sec2 .notice strong {
	font-family: "Paperozi";
	font-size: 40px;
	color: #000;
	margin-right: 15px;
}
.sec2 .slideWrap {
	width: 100%;
}
.sec2 .slideWrap .slideCon {
	position: relative;
	width: 100%;
	height: 115px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.6);
	transition: height 0.3s;
}
.sec2 .slideWrap .slideCon + .slideCon {
	margin-top: 20px;
}
.sec2 .slideWrap .slideCon:nth-child(5n + 1) {
	margin-top: 40px;
}
.sec2 .slideWrap .slideCon:nth-last-child(5) {
	margin-top: 170px;
}
.sec2 .slideWrap .slideCon:first-child {
	margin-top: 0;
}
.sec2 .slideWrap .slideCon .notice {
	position: absolute;
	left: 0;
	bottom: calc(100% + 20px);
	margin: 0;
	color: #fff;
	display: none;
}
.sec2 .slideWrap .slideCon .notice strong {
	color: #fff;
}
.sec2 .slideWrap .slideCon:nth-last-child(5) .notice {
	display: block;
}
.sec2 .slideWrap .slideCon .arr {
	position: absolute;
	right: 65px;
	top: 49px;
	width: 22px;
	height: 14px;
	background: url(../images/main/sec2_slideCon_arr.png) no-repeat center / contain;
	z-index: 15;
	cursor: pointer;
}
.sec2 .slideWrap .slideCon .titWrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 115px;
	padding: 0 65px 0 35px;
	display: flex;
	align-items: center;
	z-index: 10;
	cursor: pointer;
}
.sec2 .slideWrap .slideCon .titWrap .department {
	width: 260px;
}
.sec2 .slideWrap .slideCon .titWrap .department span {
	position: relative;
	font-family: "Pretendard";
	font-size: 25px;
	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: -40px;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	background: url(../images/main/new_icon.png) no-repeat center / contain;
}
.sec2 .slideWrap .slideCon .titWrap .tit {
	width: calc(100% - 260px);
	padding: 0 40px;
	border-left: 1px solid rgba(0, 0, 0, 0.2);
	font-family: "Pretendard";
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2em;
	color: #1a1a1a;
}
.sec2 .slideWrap .slideCon .infoWrap {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 85px 75px;
	border-radius: 10px;
	opacity: 0;
	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);
}
.sec2 .slideWrap .slideCon .infoWrap .con {
	position: relative;
	z-index: 2;
	display: flex;
}
.sec2 .slideWrap .slideCon .infoWrap .con .thumb {
	width: 50%;
}
.sec2 .slideWrap .slideCon .infoWrap .con .thumb img {
	width: 100%;
	aspect-ratio: 600 / 480;
	object-fit: cover;
	border-radius: 30px 0 30px 0;
	border: 3px solid #fff;
	transition: all 0.3s;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts {
	width: 50%;
	padding: 40px 0 0 60px;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .department {
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .department span {
	position: relative;
	font-family: "Pretendard";
	font-size: 25px;
	font-weight: 600;
	color: #1a1a1a;
}
.sec2 .slideWrap .slideCon.new .infoWrap .con .txts .department span:after {
	content: "";
	position: absolute;
	right: -40px;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	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: 40px;
	font-weight: 800;
	letter-spacing: -1.5px;
	color: #1a1a1a;
	margin: 15px 0 20px;
}
.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: 16px;
	font-family: "Pretendard";
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4em;
	letter-spacing: -1px;
	color: #464646;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .exp p:after {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 8px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #202358;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .exp .cmt {
	display: block;
	color: #343b91;
	font-size: 20px;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .moreLink {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 16px 30px;
	margin-top: 30px;
	border: 1px solid #aaa;
	border-radius: 100px;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .moreLink span {
	font-family: "Pretendard";
	font-size: 20px;
	font-weight: 600;
	color: #666;
}
.sec2 .slideWrap .slideCon .infoWrap .con .txts .moreLink img {
	width: 10px;
}
.sec2 .slideWrap .slideCon .infoWrap .linkWrap {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 140px;
	background: url(../images/main/card_bg.png) no-repeat center / cover;
	border-radius: 0 0 10px 10px;
}
.sec2 .slideWrap .slideCon .infoWrap .linkWrap .link {
	position: absolute;
	right: 80px;
	top: 50%;
	transform: translateY(-50%);
}
.sec2 .slideWrap .slideCon .infoWrap .linkWrap .link span {
	font-family: "Pretendard";
	font-size: 25px;
	font-weight: 500;
	color: #fff;
	vertical-align: middle;
	margin-right: 10px;
	border-bottom: 1px solid #fff;
}

.sec2 .slideWrap .slideCon.active {
	height: 660px;
	background: #fff;
	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);
}
.sec2 .slideWrap .slideCon.active .titWrap {
	opacity: 0;
	z-index: -1;
}
.sec2 .slideWrap .slideCon.active .infoWrap {
	opacity: 1;
	transition: all 1s;
}
.sec2 .slideWrap .slideCon.active .arr {
	transform: rotate(180deg);
}
