main .title p {
	font-size: 2.2rem;
	font-weight: 300;
	margin-top: 20px;
	clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
	transition: all 0.4s;
}

main .title.on p {
	clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
	transition: all 0.8s;
}

main h2 {
	color: #111;
	font-size: var(--font84);
	font-weight: 700;
}

main .option-box {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
}

main .option-box button {
	width: 45px;
	height: 45px;
	flex-shrink: 0;
	border-radius: 50%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

main .option-box button svg {
	width: 7px;
	height: 12px;
}

main .option-box .progress-bar {
	width: 100%;
	height: 1px;
	position: relative;
}

main .visual {
	width: 100%;
	display: flex;
}

@supports (-webkit-touch-callout: none) {
	main .visual .box {
		height: -webkit-fill-available;
	}
}

main .visual .box:root {
	--vh: 100%;
}

main .visual .box {
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	position: relative;
	transition: all 0.8s;
}

main .visual .bg,
main .visual .text-box {
	width: 100%;
	height: 100%;
}

main .visual .slide-box {
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .visual .bg {
	position: absolute;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

main .visual .bg.bg1 {
	background-image: url("/img/main/bg_visual_01_1.jpg");
}

main .visual .bg.bg2 {
	background-image: url("/img/main/bg_visual_01_2.jpg");
}

main .visual .bg.bg3 {
	background-image: url("/img/main/bg_visual_01_3.jpg");
}

main .visual .bg video {
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .visual .text-box {
	padding-bottom: 100px;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
}

main .visual .pagination {
	flex-shrink: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	column-gap: 30px;
}

main .visual .pagination * {
	color: var(--color-white);
}

main .visual .pagination button {
	font-size: 2rem;
	font-weight: 700;
	opacity: 0.3;
}

main .visual .pagination .swiper-pagination-bullet-active button {
	font-size: 2.625em;
	opacity: 1;
}

main .visual .title-box {
	width: 100%;
	display: grid;
	place-items: end;
	grid-template-areas: "overlap";
	position: relative;
}

main .visual .title-box .title {
	grid-area: overlap;
	text-align: right;
	opacity: 0;
}

main .visual .title-box .title * {
	color: var(--color-white);
}

main .visual .title-box h2 {
	font-size: var(--font120);
	font-weight: 300;
}

main .visual .title-box p {
	font-size: 2.8rem;
	font-weight: 600;
}

main .visual .title.on {
	opacity: 1;
}

main .visual .title.on p {
	transition-delay: 0.8s;
}

main .visual .scroll-box {
	position: absolute;
	left: 30px;
	bottom: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 10px;
}

main .visual .scroll-box img {
	width: 10px;
}

main .visual .scroll-box div {
	width: 20px;
	height: 40px;
	border: 1px solid var(--color-white);
	border-radius: 100px;
	position: relative;
}

main .visual .scroll-box span {
	display: block;
	width: 4px;
	height: 4px;
	background: var(--color-white);
	border-radius: 50%;
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrollAni 2.4s infinite;
}

@keyframes scrollAni {
	50% {
		top: calc(100% - 12px);
	}
}

main .visual .iframe{ 
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	position: relative;
	overflow: hidden;
}

main .visual .iframe iframe{ pointer-events:none;
	width:100vw;
	height:60vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
	min-height:110vh;
	min-width:177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%); 
}

main .company .box {
	margin: var(--gap80) 0;
}

main .company .title {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
}

main .company .title h2:last-child {
	padding-left: var(--gap80);
}

main .company .title p {
	color: #111;
	font-size: 2.2rem;
	font-weight: 300;
	line-height: 1.6;
	text-align: right;
}

main .company .title p .br768 {
	display: none;
}

main .company .item-box {
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

main .company .item {
	width: 100%;
	height: 345px;
	opacity: 0;
	transition: all 1s;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

main .company .item:nth-child(1) {
	transform: translateY(calc(1 * 40px));
}

main .company .item:nth-child(2) {
	transform: translateY(calc(2 * 40px));
}

main .company .item:nth-child(3) {
	transform: translateY(calc(3 * 40px));
}

main .company .item:nth-child(4) {
	transform: translateY(calc(4 * 40px));
}

main .company .item:nth-child(5) {
	transform: translateY(calc(5 * 40px));
}

main .company .inner {
	background: #f8f8f8;
	padding: 100px 40px 40px;
	transition: all 0.6s;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
}

main .company .inner * {
	color: var(--color-blue);
	font-weight: 700;
	transition: all 0.4s;
}

main .company .inner h6 {
	font-size: 2.2rem;
	margin: 40px 0 10px;
}

main .company .inner span {
	font-size: 6.2rem;
}

main .company .inner em {
	display: inline-block;
	font-size: 2.4rem;
	margin-left: 10px;
}

main .company .item-box.on .item {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.2s;
}

main .company .item:hover .inner {
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	background: var(--color-black);
}

main .company .item:hover .inner * {
	color: var(--color-white);
}

main .company .item:hover .inner .icon {
	filter: brightness(0) invert(1);
}

main .about {
	width: 100%;
	height: 100vh;
}

main .about .box {
	padding: var(--gap80) 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

main .about .w1760 {
	height: auto;
}

main .about .contents {
	position: relative;
}

main .about .img-box {
	padding: 24.3475% 0;
	position: relative;
	overflow: hidden;
}

main .about .img-box .img {
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	transition: all 0.6s;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

main .about .img-box .img.on {
	clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}

main .about .img-box img {
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .about .text-box {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .about .text-box * {
	color: var(--color-white);
}

main .about .title,
main .about .item-box {
	height: 100%;
}

main .about .title {
	padding: 80px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
}

main .about .item-box {
	width: 100%;
	max-width: 39.77275%;
	flex-shrink: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	row-gap: 7%;
}

main .about .item {
	font-size: var(--font42);
	padding: 0 60px;
	position: relative;
}

main .about .item::before {
	content: "";
	display: block;
	width: 3px;
	height: 0;
	background: var(--color-blue);
	transition: all 0.4s;
	position: absolute;
	top: 50%;
	left: -1px;
	transform: translateY(-50%);
}

main .about .item h3 {
	font-weight: 700;
	opacity: 0.2;
	transition: all 0.4s;
}

main .about .item .more {
	height: 0;
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	transition: all 0.4s;
}

main .about .item.on::before {
	height: 100%;
}

main .about .item.on h3 {
	font-size: 1.5235em;
	opacity: 1;
	margin-bottom: 15px;
}

main .about .item.on .more {
	height: auto;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	transition-delay: 0.2s;
}

main .products {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

main .products .circle-box,
main .products .circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .products .circle-box {
	width: 80px;
	height: 80px;
	width: 0;
	height: 0;
	opacity: 0;
	transition: all 0.8s;
}

main .products .circle {
	border-radius: 50%;
}

main .products .circle.blue {
	width: 100%;
	background: var(--color-blue);
	padding: 50% 0;
}

main .products .circle.green {
	width: 62.5%;
	background: var(--color-green);
	padding: 31.25% 0;
}

main .products .circle.black {
	width: 25%;
	background: linear-gradient(135deg, #202020 0%, #000 100%);
	padding: 12.5% 0;
}

main .products .circle-box.opacity {
	opacity: 1;
}

main .products .circle-box.on {
	width: 460%;
	padding: 230% 0;
	transform: translate(-50%, -50%);
}

main .products .box {
	padding: 0;
	position: relative;
	transition: all 0.6s;
	width: 100%;
	height: 100%;
}

main .products .box::before {
	content: "";
	display: block;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	background: url("/img/main/bg_products.jpg") no-repeat left/cover;
	opacity: 0;
	z-index: -1;
	transition: all 0.6s;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .products .box.padding {
	padding: 8% 0 60px;
}

main .products .box.on::before {
	opacity: 1;
}

main .products .title {
	text-align: center;
	transition: all 0.8s;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .products .title * {
	transition: all 0.8s;
}

main .products .title h2 {
	color: #111;
	font-size: 14rem;
	font-weight: 700;
}

main .products .title p {
	color: #333;
	font-size: 2.8rem;
	font-weight: 600;
	margin-top: 20px;
	clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}

main .products .title.on {
	top: 0;
	transform: translate(-50%, 0);
}

main .products .title.on h2,
main .products .title.on p {
	color: var(--color-white);
}

main .products .title.on h2 {
	font-size: var(--font84);
}

main .products .title.on p {
	font-size: 2.2rem;
	font-weight: 300;
}

main .products .slide-wrap {
	margin-top: 80px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(40px);
	transition: all 0.6s;
}

main .products .slide-wrap.on {
	opacity: 1;
	pointer-events: inherit;
	transform: translateY(0);
}

main .products .slide-box {
	width: 107.1022%;
	width: 85.2275%;
	position: relative;
}

main .products .item {
	height: 345px;
	padding: 60px 40px;
	position: relative;
	transition: all 0.6s;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

main .products .item::before {
	content: "";
	display: block;
	background: #090909;
	border: 1px solid #151515;
	z-index: -1;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .products .item * {
	transition: all 0.6s;
}

main .products .hover-bg {
	background: #eee;
}

main .products .plus {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 20px;
	right: 20px;
	opacity: 0;
	transition: all 0.6s;
}

main .products .plus span {
	background: var(--color-blue);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .products .plus span:first-child {
	width: 100%;
	height: 2px;
}

main .products .plus span:last-child {
	width: 2px;
	height: 100%;
}

main .products .icon {
	opacity: 0.6;
	filter: brightness(0) invert(1);
}

main .products dl {
	margin-top: auto;
}

main .products dl * {
	color: var(--color-white);
}

main .products dl dt {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 10px;
}

main .products dl dd {
	font-size: 2rem;
	font-weight: 300;
	opacity: 0.6;
}

main .products .option-box {
	margin-top: 110px;
}

main .products .option-box button {
	border: 1px solid rgba(255, 255, 255, 0.1);
}

main .products .option-box button .angle-cls {
	fill: rgba(255, 255, 255, 0.2);
}

main .products .option-box .progress-bar {
	background: rgba(255, 255, 255, 0.1);
}

main .products .option-box .progress-bar span {
	background: var(--color-white);
}

@media screen and (hover: hover) and (min-width: 1024px) {
	main .products .item:hover .hover-bg {
		width: 60em;
		height: 60em;
	}

	main .products .item:hover .plus {
		top: 40px;
		right: 40px;
		opacity: 1;
	}

	main .products .item:hover .icon {
		opacity: 1;
		filter: inherit;
	}

	main .products .item:hover dl * {
		color: var(--color-blue);
	}

	main .products .item:hover dl dd {
		opacity: 1;
	}
}

main .new .box,
main .sns .box {
	margin: var(--gap180) 0;
}

main .new .contents {
	display: grid;
	grid-template-columns: 12.5% 33.5227% 36.93195%;
	justify-content: space-between;
}

main .new .img-box {
	position: relative;
	overflow: hidden;
}

main .new .img-box .img,
main .new .img-box .img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .new .img-box .img {
	clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	transition: all 0.4s;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

main .new .img-box .img img {
	max-width: inherit;
}

main .new .img-box .img.on {
	clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
	z-index: 1;
}

main .new .text-box {
	padding-top: 60px;
}

main .new .title p {
	color: #111;
}

main .new .slide-wrap {
	display: flex;
	flex-direction: column;
	margin: 17% 0 0;
}

main .new .text {
	background: var(--color-white);
	padding-top: 20px;
	overflow: hidden;
}

main .new .text>* {
	opacity: 0;
	transition: all 0.4s;
}

main .new .text h5,
main .new .text p {
	font-family: var(--font-pretendard);
	transform: translateY(-20px);
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

main .new .text h5 {
	max-height: 3em;
	color: #111;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.5;
	-webkit-line-clamp: 2;
}

main .new .text p {
	max-height: 4.95em;
	color: #555;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.65;
	margin: 40px 0 80px;
	-webkit-line-clamp: 3;
}

main .new .more {
	color: #111;
	transform: translateX(40px);
}

main .new .more .plus span {
	background: var(--color-black);
}

main .new .swiper-slide-active .text>* {
	opacity: 1;
	transition: all 0.6s;
}

main .new .swiper-slide-active .text h5,
main .new .swiper-slide-active .text p {
	transform: translateY(0);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

main .new .swiper-slide-active .text h5 {
	transition-delay: 0.1s;
}

main .new .swiper-slide-active .text p {
	transition-delay: 0.2s;
}

main .new .swiper-slide-active .text .more {
	transform: translateX(0);
	transition-delay: 0.3s;
}

main .new .option-box {
	margin-top: 10%;
}

main .new .option-box button {
	border: 1px solid var(--color-black);
}

main .new .option-box button .angle-cls {
	fill: var(--color-black);
}

main .new .option-box .progress-bar {
	background: #eee;
}

main .new .option-box .progress-bar span {
	background: var(--color-blue);
}

main .new .current-img {
	padding: 61.5405% 0;
}

main .sns .item-box {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	row-gap: 20px;
	column-gap: 20px;
	transform-style: preserve-3d;
	margin-top: calc(var(--gap80) / 2);
}

main .sns .item-box:has(.big) {
	grid-template-columns: repeat(4, 0.163695fr) 0.339285fr;
}

main .sns a {
	position: relative;
}

main .sns .img {
	min-width: 100%;
	min-height: 100%;
	padding: 50% 0;
	position: relative;
	overflow: hidden;
}

main .sns .img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .sns .big {
	grid-area: 1/5/3/6;
	left: 10px;
}

main .shortcut .item-box {
	display: flex;
}

main .shortcut .item {
	width: 50%;
	height: 325px;
	position: relative;
}

main .shortcut .item * {
	color: var(--color-white);
}

main .shortcut .item::before {
	content: "";
	width: 50vw;
	height: 100%;
	position: absolute;
	top: 50%;
	z-index: -1;
	transform: translateY(-50%);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

main .shortcut .item a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

main .shortcut .item .eng-text {
	font-size: 2rem;
	font-weight: 700;
}

main .shortcut .item h3 {
	font-size: var(--font42);
	font-weight: 600;
	margin: 10px 0 25px;
}

main .shortcut .item .more {
	opacity: 0.5;
}

main .shortcut .item:first-child {
	padding-left: 80px;
}

main .shortcut .item:first-child::before {
	background-image: url("/img/main/bg_shortcut_01_1.jpg");
	right: 0;
}

main .shortcut .item:last-child {
	padding-left: 60px;
}

main .shortcut .item:last-child::before {
	background-image: url("/img/main/bg_shortcut_01_2.jpg");
	left: 0;
}