/* common */
main{ position: relative; }


/* title-box */
.title-box h3{ font-size: 5rem; font-weight: 500; color: #111; letter-spacing: -0.02em; }


/* viewmore */
.viewmore{
	--before: 8px;
	--after: 40px;
}
.viewmore{ max-width: 100%; width: max-content; display: flex; align-items: center; font-size: 18px; font-weight: 400; color: #111 !important; text-stroke: #111 0.02em; -webkit-text-stroke: #111 0.02em; transition: color 0.4s, text-stroke-color 0.4s; }
.viewmore > i{ width: var(--after); height: var(--after); display: inline-flex; align-items: center; margin-right: 15px; position: relative; overflow: hidden; transition: width 0.4s; }
.viewmore > i::before{ content: ""; width: var(--after); height: var(--after); background: #FFF; mask: url("/en/img/main/icon_viewmore.svg") no-repeat center center / contain; position: absolute; top: 50%; left: 0; z-index: 10; transform: translateY(-50%); }
.viewmore > i > i{ width: 100%; height: var(--after); display: inline-block; background: #111; border-radius: 50%; position: relative; transition: height 0.4s, background 0.4s; }


/* slick-info */
.slick-info .slick-dots{ display: flex !important; margin-top: -2px; }
.slick-info .slick-dots li{ width: 7px; height: 7px; background: rgba(255, 255, 255, 0.3); border-radius: 99px; transition: width 0.4s, background 0.4s; cursor: pointer; }
.slick-info .slick-dots li.slick-active{ width: 30px; background: #FFF; }
.slick-info .slick-dots li:not(:last-of-type){ margin-right: 20px; }
.slick-info .slick-dots li button{ display: none; }

.slick-info .btns{ display: flex; justify-content: center; align-items: center; margin: -30px 0; }
.slick-info .btns button{ background: none; border: none; padding: 30px; opacity: 1; transition: opacity 0.4s; }
.slick-info .btns button.none{ opacity: 0.3; }
.slick-info .btns button i{ display: inline-flex; width: 25px; height: 25px; background: url("/en/img/main/icon_network_arrow.svg") no-repeat center center / contain; }
.slick-info .btns .next i{ transform: scaleX(-1); }

@media screen and (hover: hover) and (pointer: fine){
	/* viewmore */
	.viewmore > i{ width: var(--before); }
	.viewmore > i > i{ height: var(--before); }

	.viewmore:hover{ color: var(--mainColor) !important; text-stroke-color: var(--mainColor); -webkit-text-stroke-color: var(--mainColor); }
	.viewmore:hover > i{ width: var(--after); }
	.viewmore:hover > i > i{ width: var(--after); height: 100%; background: var(--mainColor); }
}

@media screen and (max-width: 1280px){
	/* viewmore */
	.viewmore{
		--before: 6px;
		--after: 35px;
	}
	.viewmore{ font-size: 17px; }
	
	/* slick-info */
	.slick-info .slick-dots{ margin-top: -4px; }
	.slick-info .slick-dots li:not(:last-of-type){ margin-right: 15px; }
	.slick-info .btns{ margin: -20px 0; }
	.slick-info .btns button{ padding: 20px; }
}


/* visual */
#visual{ position: relative; overflow: hidden; }
#visual .bg{ max-height: 100svh; height: 100vh; transform: scale(1.025); transition: transform 2.5s linear; }

#visual .cover{ padding-bottom: 100px; position: absolute; bottom: 0; left: 0; right: 0; }
#visual .cover .inner{ padding-left: calc((100% - 1600px) / 2); }
#visual .cover .flex-box{ display: flex; justify-content: space-between; align-items: flex-start; margin-top: 75px; }

#visual .txt-wrap .slick-track{ display: flex; }
#visual .txt{ float: unset; height: auto; display: flex; flex-direction: column; justify-content: flex-end; }
#visual .txt h2,
#visual .txt p{ transform: translateY(100%); clip-path: inset(0 0 100% 0); -webkit-clip-path: inset(0 0 100% 0); }
#visual .txt h2{ font-size: 9rem; font-weight: 400; color: #FFF; letter-spacing: -0.02em; margin-bottom: 20px; }
#visual .txt p{ font-size: 24px; font-weight: 200; color: #FFF; letter-spacing: -0.02em; }

#visual .slick-dots{ display: flex; }
#visual .slick-dots li{ width: 60px; font-size: 19px; font-weight: 200; color: rgba(255, 255, 255, 0.6); transition: font-weight 0.4s, color 0.4s; cursor: pointer; }
#visual .slick-dots li span{ display: block; margin-bottom: 10px; }
#visual .slick-dots li .bar{ background: rgba(255, 255, 255, 0.15); }
#visual .slick-dots li .bar div{ width: 0; height: 2px; background: #FFF; will-change: width; }

#visual .scrollDown{ display: inline-flex; align-items: center; }
#visual .scrollDown span{ font-size: 20px; font-weight: 300; color: #FFF; line-height: 1; letter-spacing: -0.02em; }
#visual .scrollDown i{ width: 28px; height: 28px; display: inline-block; border: 1px solid #FFF; border-radius: 50%; margin-left: 10px; position: relative; overflow: hidden; }
#visual .scrollDown i::before,
#visual .scrollDown i::after{ content: ""; width: 100%; height: 100%; background: url("/en/img/main/icon_scrollDown.svg") no-repeat center center / contain; position: absolute; top: 0; left: 0; }
#visual .scrollDown i::before{ transform: translateY(-100%); animation: scrollDown01-en 2s infinite; }
#visual .scrollDown i::after{ transform: translateY(0); animation: scrollDown02-en 2s infinite; }


/* visual (slick-active) */
#visual .visual.animated .bg{ transform: scale(1); }

#visual .txt.slick-active h2{ animation: textClip var(--aosT) both; }
#visual .txt.slick-active p{ animation: textClip var(--aosT) calc(var(--aosT) / 2) both; }

#visual .slick-dots li.slick-active{ font-weight: 600; color: #FFF; }
#visual .slick-dots li.slick-active .bar div{ animation: progressBar var(--duration) linear both; }

@media screen and (max-width: 1700px){
	#visual .cover{ padding-bottom: 70px; }

	#visual .txt h2{ font-size: 7.5rem; }
	#visual .txt p{ font-size: 22px; }
	
	#visual .slick-dots li{ font-size: 18px; }
	
	#visual .scrollDown span{ font-size: 19px; }
}

@media screen and (max-width: 1280px){
	#visual .cover{ padding-bottom: 40px; }

	#visual .txt h2{ font-size: 6.5rem; }
	#visual .txt p{ font-size: 20px; }
	
	#visual .slick-dots li{ width: 55px; font-size: 17px; }
	
	#visual .scrollDown span{ font-size: 18px; }
}

@media screen and (max-width: 900px){
	#visual .txt h2{ font-size: 6rem; }
	#visual .txt p{ font-size: 19px; }
	#visual .txt h2 span{ display: block; }
}


/* business */
#business{ padding: 160px 0; overflow: hidden; }
#business h3{ font-size: 6rem; font-weight: 600; color: #111; letter-spacing: -0.02em; text-align: center; margin-bottom: 60px; }

#business .grid-box{ display: grid; grid-template-columns: calc(100% - 480px) 480px; }
#business .fade a{ display: block; }
#business .img{ position: relative; }
#business .img figure{ width: calc(100% + 1px); display: block; position: relative; overflow: hidden; }
#business .img figure img{ width: 100%; height: 100%; object-fit: cover; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1.1); transition: transform var(--duration); }
#business .img span{ display: inline-flex; justify-content: center; align-items: center; background: var(--mainColor); font-size: 20px; font-weight: 400; color: #FFF; letter-spacing: -0.02em; line-height: 1; padding: 15px 18px; position: absolute; bottom: 0; right: 0; z-index: 10; }
#business .img span i{ display: inline-block; width: 15px; height: 15px; background: url("/en/img/main/icon_target_arrow.svg") no-repeat center center / contain; margin-left: 15px; }
#business .text{ opacity: 0; transition: opacity var(--duration); }

#business .slick-slide{ overflow: hidden; z-index: 997 !important; opacity: 1 !important; }
#business .slick-prev{ z-index: 998 !important; }
#business .slick-active{ z-index: 999 !important; }

#business .slick-active{ z-index: 999 !important; }
#business .slick-active .img figure{ animation-name: bgClip; animation-fill-mode: both; }
#business .slick-active .img figure img{ transform: translate(-50%, -50%) scale(1); }
#business .slick-active .text{ opacity: 1; }

#business .text{ padding-top: 40px; }
#business .text .tit > *{ font-weight: 500; color: #000; letter-spacing: -0.02em; transition: color 0.4s; }
#business .text .tit{ display: flex; align-items: flex-start; }
#business .text .tit span{ flex-shrink: 0; display: block; font-size: 24px; }
#business .text .tit h6{ flex: 1 1 auto; min-width: 0; font-size: 40px; }
#business .text .content p{ font-size: 20px; font-weight: 300; color: #555; letter-spacing: -0.02em; line-height: 1.6; }

#business .left{ padding-right: 60px; }
#business .left .img figure{ padding-bottom: 47.17%; }
#business .left .text{ display: flex; }
#business .left .text .tit{ width: 49%; flex-shrink: 0; }
#business .left .text .tit span{ width: 84px; }
#business .left .text .content{ flex: 1 1 auto; min-width: 0; padding-top: 40px; }

#business .right .img figure{ padding-bottom: 58.335%; }
#business .right .img span{ display: none; }
#business .right .text .tit > *{ color: #BBB; }
#business .right .text .tit span{ width: 64px; }
#business .right .text .content{ display: none; }

#business .slide-info{ display: flex; justify-content: flex-end; align-items: center; padding-top: 115px; }
#business .btns,
#business .progress{ display: flex; align-items: center; }

#business .btns button{ background: none; border: none; padding: 0; transition: opacity 0.4s; }
#business .btns button.none{ opacity: 0.3; }
#business .btns button i{ width: 24px; height: 24px; display: inline-block; background: url("/en/img/main/icon_business_arrow.svg") no-repeat center center / contain; }
#business .btns .next{ transform: scaleX(-1); }

#business .progress{ margin-left: 20px; }
#business .progress span{ display: inline-block; font-size: 16px; font-weight: 500; color: #111; letter-spacing: -0.02em; }
#business .progress .idx{ width: 20px; color: var(--mainColor); }
#business .progress .bar{ width: 80px; margin: 0 10px; position: relative; }
#business .progress .bar::before{ content: ""; height: 1px; display: block; background: rgba(17, 17, 17, 0.15); }
#business .progress .bar div{ width: 0; height: 1px; background: var(--mainColor); }

@media screen and (max-width: 1700px){
	#business{ padding: 120px 0; }
	#business h3{ margin-bottom: 40px; }
	
	#business .grid-box{ grid-template-columns: calc(100% - 400px) 400px; }
	
	#business .img span{ font-size: 18px; }
	#business .img span i{ width: 13px; height: 13px; }
	
	#business .text{ padding-top: 30px; }
	#business .text .tit span{ font-size: 22px; }
	#business .text .tit h6{ font-size: 36px; }
	#business .text .content p{ font-size: 19px; }
	
	#business .left{ padding-right: 40px; }
	#business .left .text .tit span{ width: 70px; }
	
	#business .right .text .tit span{ width: 55px; }
	
	#business .slide-info{ padding-top: 90px; }
}

@media screen and (max-width: 1400px){
	#business .grid-box{ grid-template-columns: calc(100% - 350px) 350px; }

	#business .text .tit span{ font-size: 18px; }
	#business .text .tit h6{ font-size: 32px; }
	
	#business .left .text .tit span{ width: 55px; }
	#business .right .text .tit span{ width: 45px; }
	
	#business .slide-info{ padding-top: 60px; }
}

@media screen and (max-width: 1280px){
	#business{ padding: 70px 0 90px; }
	#business h3{ margin-bottom: 25px; }
	
	#business .img span{ font-size: 16px; padding: 12px 15px; }
	#business .img span i{ width: 11px; height: 11px; }
	
	#business .text{ padding-top: 20px; }
	#business .text .tit span{ font-size: 17px; }
	#business .text .tit h6{ font-size: 30px; }
	#business .text .content p{ font-size: 18px; }
	
	#business .left{ padding-right: 20px; }
	#business .left .text{ flex-direction: column; }
	#business .left .text .tit{ width: 100%; }
	#business .left .text .content{ padding-top: 15px; }
	
	#business .progress span{ font-size: 15px; }
}

@media screen and (max-width: 1024px){
	#business .grid-box{ grid-template-columns: repeat(1, 100%); }
	#business .left{ padding-right: 0; }
	#business .clone{ display: none; }
}

@media screen and (max-width: 900px){
	#business .text .tit h6{ font-size: 26px; }
	#business .text .tit span{ font-size: 16px; }
	
	#business .left .text .tit span{ width: 45px; }
}


/* rnd */
#rnd{ background: url("/en/img/main/rnd_bg.jpg") no-repeat center center / cover; padding: 160px 0; opacity: 1; clip-path: inset(0 100% 0 0); -webkit-clip-path: inset(0 100% 0 0); transition: clip-path var(--aosT); }
#rnd .grid-box{ display: grid; grid-template-columns: 740px calc(100% - 740px); transform: translateY(var(--aosP)); opacity: 0; transition: transform var(--aosT), opacity var(--aosT); transition-delay: var(--aosT); }
#rnd  .img img{ width: 100%; height: 100%; object-fit: cover; }

#rnd .text{ display: flex; flex-direction: column; background: #FFF; padding: 60px; }
#rnd .text span{ font-size: 20px; font-weight: 500; color: var(--mainColor); letter-spacing: -0.02em; }
#rnd .text .column{ flex: 1 0 auto; margin: 50px 0; }
#rnd .text h3{ font-size: 4.8rem; font-weight: 600; color: #000; letter-spacing: -0.02em; margin-bottom: 40px; }
#rnd .text p{ font-size: 18px; font-weight: 300; color: #333; letter-spacing: -0.02em; line-height: 1.5; }
#rnd .text .box p:not(:last-child){ margin-bottom: 15px; }
#rnd .text .viewmore{ font-size: 20px; }

#rnd.aos-animate{ clip-path: inset(0 0 0 0); -webkit-clip-path: inset(0 0 0 0); }
#rnd.aos-animate .grid-box{ transform: translateY(0); opacity: 1; }

@media screen and (max-width: 1700px){
	#rnd{ padding: 120px 0; }
	
	#rnd .text{ padding: 50px; }
	#rnd .text .column{ margin-top: 40px; }
	#rnd .text span{ font-size: 19px; }
	#rnd .text .viewmore{ font-size: 19px; }
}

@media screen and (max-width: 1500px){
	#rnd .grid-box{ grid-template-columns: 45% 55%; }
}

@media screen and (max-width: 1280px){
	#rnd{ padding: 90px 0; }
	
	#rnd .text{ padding: 40px; }
	#rnd .text .column{ margin-top: 30px; }
	#rnd .text span{ font-size: 18px; }
	#rnd .text h3{ margin-bottom: 30px; }
	#rnd .text .viewmore{ font-size: 18px; }
}

@media screen and (max-width: 1024px){
	#rnd{ padding: 40px 0; }
	#rnd .grid-box{ grid-template-columns: repeat(1, 100%); }
	#rnd .text{ padding: 25px; }
	#rnd .text .column{ margin-top: 20px; }
	#rnd .text h3{ margin-bottom: 20px; }
}


/* esg */
#esg{ margin-top: 100px; padding: 120px 0 160px; position: relative; z-index: 10; margin-bottom: -1px; }
#esg .title-box{ padding-bottom: 75px; }
#esg .fade{ opacity: 1; }

#esg .bg-box, 
#esg .bg-box .bg{ position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
#esg .bg-box{ z-index: -1; }
#esg .bg-box::before,
#esg .bg-box::after{ content: ""; width: 100%; height: 50%; background: linear-gradient(to bottom, #FFF, transparent); position: absolute; top: 0; left: 0; z-index: 100; }
#esg .bg-box .bg{ opacity: 0; transition: opacity 0.4s; }
#esg .bg-box .bg img{ width: 100%; height: 100%; object-fit: cover; }

#esg .bg-box .bg.on{ opacity: 1; }

#esg .item-wrap{ display: grid; grid-template-columns: repeat(4, 25%); margin: -10px; }
#esg .item-wrap .item{ margin: 10px; padding-top: 20px; }
#esg .item-wrap .item a{ height: 100%; display: flex; flex-direction: column; padding: 40px; transform: translateY(0); position: relative; z-index: 10; transition: transform 0.4s; }
#esg .item-wrap .item a::before,
#esg .item-wrap .item a::after{ content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: -1; box-sizing: border-box; }
#esg .item-wrap .item a::before{ background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(7px); }
#esg .item-wrap .item a::after{ background: #FFF; opacity: 0; transition: opacity 0.4s; }
#esg .item-wrap .item .top{ flex: 1 0 auto; margin-bottom: 115px; }
#esg .item-wrap .item .icon{ width: 80px; height: 80px; display: inline-flex; justify-content: center; align-items: center; background: var(--mainColor); border-radius: 50%; padding: 15px; }
#esg .item-wrap .item h6{ font-size: 32px; font-weight: 400; color: #FFF; text-stroke: transparent 0.015em; -webkit-text-stroke: transparent 0.015em; letter-spacing: -0.03em; margin-top: 30px; transition: color 0.4s, text-stroke-color 0.4s; }
#esg .item-wrap .item p{ font-size: 18px; font-weight: 200; color: #FFF; text-stroke: transparent 0.015em; -webkit-text-stroke: transparent 0.015em; letter-spacing: -0.03em; line-height: 1.5; margin-bottom: 30px; transition: color 0.4s, text-stroke-color 0.4s; }
#esg .item-wrap .item .viewmore{ font-weight: 400; color: #FFF !important; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
#esg .item-wrap .item .viewmore > i > i{ background: #FFF; }

#esg .slick-info{ display: none; margin-top: 10px; }

@media screen and (hover: hover) and (pointer: fine){
	#esg .item-wrap .item:hover a{ transform: translateY(-20px); }
	#esg .item-wrap .item:hover a::after{ opacity: 1; }
	#esg .item-wrap .item:hover h6{ color: #111; text-stroke-color: #111; -webkit-text-stroke-color: #111; }
	#esg .item-wrap .item:hover p{ color: #333; text-stroke-color: #333; -webkit-text-stroke-color: #333; }
	#esg .item-wrap .item:hover .viewmore{ color: var(--mainColor) !important; text-stroke-color: var(--mainColor); -webkit-text-stroke-color: var(--mainColor); }
	#esg .item-wrap .item:hover .viewmore > i{ width: var(--after); }
	#esg .item-wrap .item:hover .viewmore > i > i{ height: 100%; background: var(--mainColor); }
}

@media screen and (max-width: 1700px){
	#esg{ margin-top: 50px; padding: 90px 0 120px; }
	#esg .title-box{ padding-bottom: 60px; }
	
	#esg .item-wrap .item a{ padding: 30px; }
	#esg .item-wrap .item .icon{ width: 75px; height: 75px; }
	#esg .item-wrap .item h6{ font-size: 28px; }
}

@media screen and (max-width: 1400px){
	#esg .item-wrap .item .top{ margin-bottom: 70px; }
}

@media screen and (max-width: 1280px){
	#esg{ margin-top: 30px; padding: 60px 0 90px; }
	#esg .title-box{ padding-bottom: 40px; }
	#esg .fade{ opacity: 0; transform: translateY(var(--aosP)); transition: opacity var(--aosT), transform var(--aosT); }
	#esg .fade.aos-animate{ opacity: 1; transform: translateY(0); }
	
	#esg .bg-box .bg{ transition-duration: var(--aosT); }
	#esg .bg-box .bg.on{ opacity: 0; }
	#esg .bg-box .bg.active{ opacity: 1 !important; }
	
	#esg .item-wrap{ width: calc(100% + 40px); display: block; margin-left: -20px; }
	#esg .item-wrap .slick-track{ display: flex; }
	#esg .item-wrap .item{ float: unset; width: 400px; height: auto; opacity: 1; transform: translateY(0); transition: unset; }
	#esg .item-wrap .item br{ display: none; }
	#esg .item-wrap .item a{ padding: 25px; }
	#esg .item-wrap .item .top{ margin-bottom: 40px; }
	#esg .item-wrap .item .icon{ width: 70px; height: 70px; }
	#esg .item-wrap .item h6{ font-size: 25px; margin-top: 20px; }
	#esg .item-wrap .item p{ margin-bottom: 20px; }
	
	#esg .item-wrap .item:hover a{ transform: translateY(0); }
	#esg .item-wrap .item:hover a::after{ opacity: 0; }
	#esg .item-wrap .item:hover h6{ color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#esg .item-wrap .item:hover p{ color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#esg .item-wrap .item:hover .viewmore{ color: #FFF !important; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#esg .item-wrap .item:hover .viewmore > i{ width: var(--before); }
	#esg .item-wrap .item:hover .viewmore > i > i{ height: var(--before); background: #FFF; }
	
	#esg .item-wrap .item.slick-active a{ transform: translateY(-20px); }
	#esg .item-wrap .item.slick-active a::after{ opacity: 1; }
	#esg .item-wrap .item.slick-active h6{ color: #111; text-stroke-color: #111; -webkit-text-stroke-color: #111; }
	#esg .item-wrap .item.slick-active p{ color: #333; text-stroke-color: #333; -webkit-text-stroke-color: #333; }
	#esg .item-wrap .item.slick-active .viewmore{ color: var(--mainColor) !important; text-stroke-color: var(--mainColor); -webkit-text-stroke-color: var(--mainColor); }
	#esg .item-wrap .item.slick-active .viewmore > i{ width: var(--after); }
	#esg .item-wrap .item.slick-active .viewmore > i > i{ height: 100%; background: var(--mainColor); }
	
	#esg .item-wrap .item.slick-now a{ transform: translateY(-20px); }
	#esg .item-wrap .item.slick-now a::after{ opacity: 1; }
	#esg .item-wrap .item.slick-now h6{ color: #111; text-stroke-color: #111; -webkit-text-stroke-color: #111; }
	#esg .item-wrap .item.slick-now p{ color: #333; text-stroke-color: #333; -webkit-text-stroke-color: #333; }
	#esg .item-wrap .item.slick-now .viewmore{ color: var(--mainColor) !important; text-stroke-color: var(--mainColor); -webkit-text-stroke-color: var(--mainColor); }
	#esg .item-wrap .item.slick-now .viewmore > i{ width: var(--after); }
	#esg .item-wrap .item.slick-now .viewmore > i > i{ height: 100%; background: var(--mainColor); }
	
	#esg .slick-info{ display: block; }
}


/* network */
#network{ background: url("/en/img/main/network_bg.jpg") no-repeat center center / cover; padding: 160px 0; }
#network .title-box{ display: flex; justify-content: space-between; align-items: center; padding-bottom: 60px; }
#network .title-box h3{ font-weight: 400; color: #FFF; }
#network .tab-menu ul{ display: flex; margin: -20px; }
#network .tab-menu ul li{ position: relative; }
#network .tab-menu ul li::after{ content: ""; width: 1px; height: 12px; background: rgba(255, 255, 255, 0.6); position: absolute; top: 50%; right: -1px; transform: translateY(-50%); }
#network .tab-menu ul li:last-of-type::after{ display: none; }
#network .tab-menu ul li button{ background: none; border: none; font-size: 22px; font-weight: 400; color: rgba(255, 255, 255, 0.3); padding: 20px; }
#network .tab-menu ul li.on button{ font-weight: 600; color: #FFF; }

#network .tab-content .tab:not(:first-of-type){ display: none; }

#network .network-wrap .slick-list{ margin-right: -20px; }
#network .network{ padding-top: 10px; margin-right: 20px; }
#network .network a{ display: block; background: #FFF; padding: 30px; transform: translateY(0); transition: background 0.4s, transform 0.4s; }
#network .network .content{ margin: 30px 0; }
#network .network .mark{ display: inline-block; background: var(--mainColor); font-size: 18px; font-weight: 400; color: #FFF; text-stroke: 0.02em transparent; -webkit-text-stroke: 0.02em transparent; letter-spacing: -0.02em; line-height: 1; padding: 8px 20px; transition: background 0.4s, color 0.4s, text-stroke-color 0.4s; }
#network .network h6{ font-size: 26px; font-weight: 500; color: #111; text-stroke: 0.015em #111; -webkit-text-stroke: 0.015em #111; letter-spacing: -0.04em; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; margin-bottom: 15px; transition: color 0.4s, text-stroke-color 0.4s; }
#network .network p{ height: 3em; display: -webkit-box; font-size: 18px; font-weight: 300; color: #333; text-stroke: 0.015em #333; -webkit-text-stroke: 0.015em #333; letter-spacing: -0.03em; line-height: 1.5; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.4s, text-stroke-color 0.4s; }
#network .viewmore{ text-stroke: 0.01em #111; -webkit-text-stroke: 0.01em #111; margin-left: auto; }
#network .viewmore > i::before{ background: var(--mainColor); }

#network .slick-info{ margin-top: 65px; }

@media screen and (hover: hover) and (pointer: fine){
	#network .network:hover a{ background: var(--mainColor); transform: translateY(-10px); }
	#network .network:hover .mark{ background: #FFF; color: var(--mainColor); text-stroke-color: var(--mainColor); -webkit-text-stroke-color: var(--mainColor); }
	#network .network:hover h6{ color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#network .network:hover p{ color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#network .network:hover .viewmore{ color: #FFF !important; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#network .network:hover .viewmore > i{ width: var(--after); } 	
	#network .network:hover .viewmore > i > i{ height: 100%; background: #FFF; }
}

@media screen and (max-width: 1700px){
	#network{ padding: 120px 0; }
	#network .title-box{ padding-bottom: 40px; }
	#network .tab-menu ul li button{ font-size: 20px; }
	
	#network .network .mark{ font-size: 17px; padding: 8px 17px; }
	#network .network h6{ font-size: 23px; }
	
	#network .slick-info{ margin-top: 50px; }
}

@media screen and (max-width: 1280px){
	#network{ padding: 90px 0; }
	#network .title-box{ padding-bottom: 30px; }
	#network .tab-menu ul li button{ font-size: 19px; }
	
	#network .network a{ padding: 25px; }
	#network .network .content{ margin: 20px 0; }
	#network .network .mark{ font-size: 16px; padding: 6px 13px; }
	#network .network h6{ font-size: 21px; }
	#network .network p{ font-size: 17px; }
	
	#network .slick-info{ margin-top: 30px; }
}

@media screen and (max-width: 800px){
	#network .title-box{ flex-direction: column; }
	#network .tab-menu{ margin-top: 20px; transform: translateY(var(--aosM)); }
	#network .tab-menu.aos-animate{ transform: translateY(0); }
	
	#network .network-wrap{ width: calc(100% + 40px); margin-left: -20px; }
	#network .network{ width: 400px; }
	
	#network .network:hover a{ background: #FFF; transform: translateY(0); }
	#network .network:hover .mark{ background: var(--mainColor); color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#network .network:hover h6{ color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#network .network:hover p{ color: #111; text-stroke-color: #111; -webkit-text-stroke-color: #111; }
	#network .network:hover .viewmore{ color: #333 !important; text-stroke-color: #333; -webkit-text-stroke-color: #333; }
	#network .network:hover .viewmore > i{ width: var(--before); } 	
	#network .network:hover .viewmore > i > i{ height: var(--before); background: #111; }
	
	#network .network.slick-active a{ background: var(--mainColor); transform: translateY(-10px); }
	#network .network.slick-active .mark{ background: #FFF; color: var(--mainColor); text-stroke-color: var(--mainColor); -webkit-text-stroke-color: var(--mainColor); }
	#network .network.slick-active h6{ color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#network .network.slick-active p{ color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#network .network.slick-active .viewmore{ color: #FFF !important; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#network .network.slick-active .viewmore > i{ width: var(--after); } 	
	#network .network.slick-active .viewmore > i > i{ height: 100%; background: #FFF; }
	
	#network .network.slick-now a{ background: var(--mainColor); transform: translateY(-10px); }
	#network .network.slick-now .mark{ background: #FFF; color: var(--mainColor); text-stroke-color: var(--mainColor); -webkit-text-stroke-color: var(--mainColor); }
	#network .network.slick-now h6{ color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#network .network.slick-now p{ color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#network .network.slick-now .viewmore{ color: #FFF !important; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#network .network.slick-now .viewmore > i{ width: var(--after); } 	
	#network .network.slick-now .viewmore > i > i{ height: 100%; background: #FFF; }
}


/* investor */
#investor{
	--itemW: 380px;
	--itemH: 300px;
}
#investor{ padding: 160px 0 200px; }
#investor .grid-box{ display: grid; grid-template-columns: calc(100% - (var(--itemW) * 2)) var(--itemW) var(--itemW); margin: -10px; }
#investor .grid-box > *{ display: flex; flex-direction: column; margin: 10px; position: relative; z-index: 10; opacity: 1; clip-path: inset(0 100% 0 0 ); -webkit-clip-path: inset(0 100% 0 0); transition: clip-path var(--aosT); }
#investor .grid-box > *.aos-animate{ clip-path: inset(0 0 0 0); -webkit-clip-path: inset(0 0 0 0); }
#investor .grid-box a{ height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 40px; padding-top: 30px; }
#investor .img,
#investor .symbol{ height: var(--itemH); }

#investor .txt{ letter-spacing: -0.03em; margin-bottom: 30px; }
#investor .txt *{ color: #FFF; }
#investor .txt .icon{ margin-bottom: 15px; }
#investor .txt h4{ font-size: 7rem; font-weight: 400; }
#investor .txt h5{ font-size: 40px; font-weight: 400; }
#investor .txt h6{ font-size: 28px; font-weight: 400; line-height: 1.5; }
#investor .txt p{ font-size: 20px; font-weight: 300; color: rgba(255, 255, 255, 0.8); line-height: 1.5; margin-top: 40px; }

#investor .viewmore{ color: #FFF !important; text-stroke-color: transparent !important; -webkit-text-stroke-color: transparent !important; }
#investor .viewmore > i::before{ background: var(--mainColor); }
#investor .viewmore > i > i{ background: #FFF; }

#investor .bg{ position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; overflow: hidden; }
#investor .bg::after{ content: ""; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.2); position: absolute; top: 0; left: 0; opacity: 1; transition: opacity 0.4s; }
#investor .bg img{ width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform 0.4s; }

#investor .block{ grid-row: auto / span 2; }
#investor .block a{ padding: 70px; }
#investor .block .viewmore{ font-size: 20px; }

#investor .symbol .bg::after{ background: url("/en/img/main/investor_symbol.svg") no-repeat center center / cover; opacity: 1 !important; }

@media screen and (hover: hover) and (pointer: fine){
	#investor .grid-box > *:hover .bg::after{ opacity: 0; }
	#investor .grid-box > *:hover .bg img{ transform: scale(1.07); }
}

@media screen and (max-width: 1700px){
	#investor{ padding: 120px 0 180px; }
	#investor .grid-box a{ padding: 35px; padding-top: 25px; }

	#investor .txt h5{ font-size: 36px; }
	#investor .txt h6{ font-size: 24px; }
	#investor .txt p{ font-size: 19px; margin-top: 30px; }
	
	#investor .block a{ padding: 50px; }
	#investor .block .viewmore{ font-size: 19px; }
}

@media screen and (max-width: 1500px){
	#investor{
		--itemW: 340px;
		--itemH: 260px;
	}
}

@media screen and (max-width: 1330px){
	#investor .block br{ display: none; }
}

@media screen and (max-width: 1280px){
	#investor{
		--itemW: 280px;
		--itemH: 240px;
	}
	
	#investor{ padding: 90px 0 160px; }
	#investor .grid-box{ margin: -7px; }
	#investor .grid-box > *{ margin: 7px; }
	#investor .grid-box a{ padding: 25px; padding-top: 20px; }

	#investor .txt .icon{ margin-bottom: 10px; }
	#investor .txt h5{ font-size: 28px; }
	#investor .txt h6{ font-size: 22px; }
	#investor .txt p{ font-size: 18px; margin-top: 15px; }
	
	#investor .block a{ padding: 35px; }
	#investor .block .viewmore{ font-size: 18px; }
}

@media screen and (max-width: 1024px){
	#investor .grid-box{ grid-template-columns: repeat(2, 50%); }
	
	#investor .block{ min-height: 350px; grid-column: auto / span 2; grid-row: unset; }
	#investor .block a{ padding: 25px; }
}

@media screen and (max-width: 700px){
	#investor{
		--itemH: 150px;
	}
	#investor .grid-box{ grid-template-columns: repeat(1, 100%); }
	
	#investor .txt h5{ font-size: 24px; }
	#investor .txt h6{ font-size: 20px; }
	
	#investor .block{ grid-column: unset; }
	
	#investor .symbol .txt{ display: flex; align-items: center; }
	#investor .symbol .txt br{ display: none; }
	#investor .symbol .txt .icon{ flex-shrink: 0; margin-bottom: 0; margin-right: 15px; }
}