/* ------------------------------------ */
/* 서브페이지 */
/* ------------------------------------ */

/* 제품 페이지 */
.section_industries {
	position: relative;
	display: flex;
	align-items: center;
	height: 700px;
}
.section_industries.jewelry {
	background: #f2f4f6 url("../img/sub_bg_jewelry.png") 50% 50% no-repeat;
	background-size: 1920px 700px;
}
.section_industries.cosmetic {
	background: #f2f4f6 url("../img/sub_bg_cosmetic.png") 50% 50% no-repeat;
	background-size: 1920px 700px;
}
.section_industries.furniture {
	background: #f2f4f6 url("../img/sub_bg_furniture.png") 50% 50% no-repeat;
	background-size: 1920px 700px;
}
.section_industries > .inner {
	padding: 80px 0;
}
.section_industries > .inner .vcon {
	display: flex;
	align-items: center;
}
.section_industries .txt_box h3 {
	font-size: 45px;
    line-height: 60px;
	font-family: "Sora", "Pretendard JP", sans-serif;
}
.section_industries .product_img_box {
	position: relative;
	width: 500px;
	height: 500px;
	margin: 0 auto;
	background-color: transparent;
}
.section_industries .product_img_box .click_btn {
	display: block;
	position: absolute;
	bottom: 30px;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: 0 0 0 -30px;
	border-radius: 50%;
	transition: all .15s linear;
	
	animation: scrollani_1 5000ms linear infinite;
}
.section_industries .product_img_box .click_btn img {
	width: 100%;
	height: 100%;
}
.section_industries .product_img_box .click_btn:hover {
	box-shadow: 0 3px 9px #0000002a;
}
.section_industries_sub .product_wrap > .vcon,
.section_platform_sub .product_wrap > .vcon {
	padding: 80px 0;
}
.section_industries_sub .product_wrap .product_box,
.section_platform_sub .product_wrap .product_box {
	width: 80%;
}
.section_industries_sub .product_wrap > .vcon:nth-child(odd) .product_box,
.section_platform_sub .product_wrap > .vcon:nth-child(odd) .product_box {
	margin-left: auto;
}
.section_industries_list .industries_list > li.cells:nth-child(even) {
    top: 60px;
}
.section_industries_sub .txt_box h3::after,
.section_platform_sub .txt_box h3::after {
	content: '';
    display: block;
    width: 40px;
    height: 2.5px;
    margin: 10px 0 10px;
    background-color: var(--main);
}

.industries_list li.cells {
	aspect-ratio: 2 / 3;
}
.industries_list li.cells img {
	object-fit: cover;
}

/* 플랫폼 페이지 */
.section_platform .platform_list > li.cells {
	aspect-ratio: 16 / 9;
	border-radius: 20px;
}
.platform_tit {
	padding-bottom: 60px;
	text-align: center;
}
.platform_tit h4 {
	line-height: 34px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -1px;
	color: var(--main);
}
.platform_tit h3 {
	line-height: 64px;
    margin-bottom: 10px;
	font-size: 44px;
	font-weight: 700;
	letter-spacing: -1.5px;
}
.platform_tit p {
	line-height: 28px;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: -0.5px;
	color: #666;
	font-family: "Sora", "Pretendard JP", sans-serif;
}

.product_img_box {
	position: relative;
	aspect-ratio: 3 /2;
}

.product_img_box img {
	object-fit: contain;
}

.product_img_box img.shadow {
	box-shadow: 0 2px 10px rgba(42, 39, 65, .1);
}

.product_img_box.ani_event img {
	position: absolute;
	top: 0; left: 0;
	cursor: pointer;
}

.product_img_box iframe {
	border-radius: 20px;
	box-shadow: 0 2px 10px rgba(42, 39, 65, .1);
}

.f_tip {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding-top: 14px;
	cursor: pointer;
	pointer-events: none;
}

.f_tip p {
	font-size: 13px;
	font-weight: 600;
	color: var(--main);
	letter-spacing: -0.6px;
	background-color: #ffffff80;
	border-radius: 20px;
	padding: 10px 12px;
	backdrop-filter: blur(10px);
	font-family: "Sora", "Pretendard JP", sans-serif;
}

.f_tip::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-50%) scale(1.5);

	width: 9px;
	height: 9px;
	background-color: var(--main);
	border-radius: 50%;
	z-index: 2;
}

.f_tip::before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-50%);

	width: 12px;
	height: 12px;
	background-color: rgb(38, 111, 255, .7);
	border-radius: 50%;
	z-index: 2;
	opacity: 1;
	animation: dots 2.5s infinite;
}

@keyframes dots {
	100% { 
		transform: translate(-50%, -50%) scale(2.8); 
		opacity: 0;
	}
}


/* 스크롤 트랜지션 설정 */
.vcon.wait_scroll li.cells {
    opacity: 0;
    transform: translateY(40px);
}
.vcon li.cells {
    opacity: 1;
    transform: translateY(0);
    transition: all .4s ease-in;
}
/* 딜레이설정 */
.vcon li.cells.image {
	transition-delay: 100ms;
}
.vcon li.cells.text {
	transition-delay: 400ms;
}