/* Common */
.btn {
	height:90px;
}

.btn a {
	display: flex;
	align-items: center;
	height:100%;
	gap:20px;
}

.btn a::after {
	content: "";
	display: block;
	width: 32px;
	height: 22px;
	background: url('/asset/img/icon/arr01.png') no-repeat center / auto 22px;
	transition: var(--transition-basic);
}

.btn p {
	display: flex;
	align-items: center;
	height: 100%;
	gap:6px;
}

.btn span {
	display: flex;
	align-items: center;
	position: relative;
	height: 100%;
}

.btn span::after {
	content: "";
	display: block;
	position: absolute;
	top:50%;
	left:-38px;
	transform: translateY(-50%);
	width: 90px;
	height:100%;
	border-radius:100px;
	background-color: #dc1e1e;
	z-index:-1;
	transition: var(--transition-basic);
}

.btn em {
	color:#dc1e1e;
}

@media screen and (min-width:1201px) {
	.btn:hover a::after {
		background-image: url('/asset/img/icon/arr03.png');
	}

	.btn:hover span::after {
		width:220px;
	}

	.btn:hover em {
		color:#fff;
	}
}
@media screen and (max-width:1200px) {
	.btn {
		height:70px;
	}

	.btn span::after {
		left:-28px;
		width: 70px;
	}
}
@media screen and (max-width:1024px) {
	.btn a {
		gap:16px;
	}
}
@media screen and (max-width:768px) {
	.btn {
		height:60px;
	}

	.btn a::after {
		width:24px;
		height:16px;
		background-size:auto 16px;
	}

	.btn span::after {
		left:-12px;
		width: 60px;
	}
}
@media screen and (max-width:576px) {
	.btn {
		height:50px;
	}

	.btn a {
		gap:10px;
	}

	.btn a::after {
		width:22px;
		height:14px;
		background-size:auto 14px;
	}

	.btn span::after {
		left:-12px;
		width: 50px;
	}
}


/* Sec01 */
.sec01 {
	padding:50px;
}

.sec01 .swiper-slide {
	height: 100%;
	overflow: hidden;
}

.sec01 .banner {
	position: relative;
	width: 100%;
	height: calc(var(--vh, 1vh)*100 - 190px);
	height: calc(100svh - 190px);
	overflow: hidden;
}

.sec01 .effect {
	position: absolute;
	top: 0;
	right: 0;
	width:150px;
	height:150px;
	border-radius: 0 0 0 180px;
	background: #dc1e1e;
	pointer-events: none;
	z-index: 10; 
	opacity: 0;
	transform-origin: top right;
	transition:var(--transition-basic3);
}

.sec01 .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	width: 100%;
	height:100%;
	padding:0px 100px;
	z-index:10;
}

.sec01 .text .t01,
.sec01 .text .t02 {
	opacity:0;
	transform: translateY(100%);
}

.sec01 .swiper {
	height: 100%;
}

.sec01 .swiper-wrapper {
	height:100%;
}

.sec01 .swiper-slide {
	position: relative;
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
}

.sec01 .swiper-slide01 {
	background-image: url('/asset/img/main/sec01_bak01.jpg');
}

.sec01 .swiper-slide02 {
	background-image: url('/asset/img/main/sec01_bak02.jpg');
}

.sec01 .swiper-slide03 {
	background-image: url('/asset/img/main/sec01_bak03.jpg');
}

.sec01 .pagination {
	display: flex;
	justify-content: center;
	position: absolute;
	left:50%;
	bottom:60px;
	transform: translateX(-50%);
	z-index:5;
}

.sec01 .pagination span {
	display: block;
	position: relative;
	width:8px;
	height:8px;
	background-color: #fff;
	margin:0px 8px !important;
	opacity: 1;
	transition: var(--transition-basic3);
}

.sec01 .pagination span::before {
	content: "";
	display: block;
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	background-color: transparent;
	width:14px;
	height:14px;
	border:3px solid #fff;
	border-radius: 50%;
	opacity:0;
	visibility: hidden;
	transition: var(--transition-basic3);
}

.sec01 .pagination span.swiper-pagination-bullet-active {
	background-color: transparent;
}

.sec01 .pagination span.swiper-pagination-bullet-active::before {
	opacity: 1;
	visibility: visible;
}

.sec01 .prev,
.sec01 .next {
	display: block;
	position: absolute;
	bottom: 0;
	width:150px;
	height:150px;
	cursor: pointer;
	z-index:10;
	transition:var(--transition-basic3);
}

.sec01 .prev span,
.sec01 .next span {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:10px;
	position: absolute;
	bottom:20px;
	line-height:1;
	z-index:10;
}

.sec01 .prev span::after,
.sec01 .next span::after {
	content: "";
	display: block;
	width: 27px;
	height:14px;
	background-repeat: no-repeat;
	background-position: center;
}

.sec01 .prev span::after {
	background-image: url('/asset/img/main/sec01_prev.png');
}

.sec01 .next span::after {
	background-image: url('/asset/img/main/sec01_next.png');
}

.sec01 .prev span {
	left:20px;
}

.sec01 .next span {
	right:20px;
}

.sec01 .prev .shape,
.sec01 .next .shape {
	display: block;
	width:0px;
	height:0px;
	border-style: solid;
}

.sec01 .prev {
	left: 0;
}

.sec01 .next {
	right:0;
}

.sec01 .prev .shape {
	border-width: 150px 0px 0px 150px;
	border-color: transparent transparent transparent #dc1e1e;
}

.sec01 .next .shape {
	border-width: 0px 0px 150px 150px;
	border-color: transparent transparent #DC1E1E transparent;
}

.sec01 .swiper-button-disabled {
	opacity:0;
	visibility: hidden;
	overflow: hidden;
}

.sec01 .swiper.effect-active .effect {
	opacity: 1;
	animation: circleAni 2s ease forwards;
}

.sec01 .swiper-slide.animation .swiper-slide {
	opacity:1;
}

.sec01 .swiper-slide.animation .tit-ani {
	animation: fade-up .5s ease-out forwards;
}

.sec01 .swiper-slide.animation .tit-ani01 {
	animation-delay: .15s;
}

.sec01 .swiper-slide.animation .tit-ani02 {
	animation-delay: .3s;
}

.sec01 .swiper-slide.animation .tit-ani03 {
	animation-delay: .45s;
}

@media screen and (max-width:1200px) {
	.sec01 {
		padding: 16px;
	}

	.sec01 .banner {
		height: calc(var(--vh, 1vh)*100 - 102px);
		height: calc(100svh - 102px);
	}

	.sec01 .text {
		justify-content: flex-end;
		padding:0px 60px 120px;
	}

	.sec01 .prev, .sec01 .next {
		width: 120px;
		height:120px;
	}

	.sec01 .prev span, .sec01 .next span {
		bottom:12px;
	}

	.sec01 .prev span {
		left: 14px;
	}

	.sec01 .next span {
		right: 14px;
	}

	.sec01 .prev .shape {
		border-width: 120px 0px 0px 120px;
	}

	.sec01 .next .shape {
		border-width: 0px 0px 120px 120px;
	}
}
@media screen and (max-width:1024px) {
	.sec01 .banner {
		/* height: calc(var(--vh, 1vh)*100 - 104px); */
		/* height: calc(100dvh - 104px); */
	}

	.sec01 .text {
		padding:0px 40px 100px;
	}

	.sec01 .prev, .sec01 .next {
		display: none;
	}

	.sec01 .pagination {
		bottom:40px;
	}
}
@media screen and (max-width:768px) {
	.sec01 .text {
		padding: 0px 30px 80px;
	}
	
	.sec01 .pagination {
		bottom:30px;
	}

	.sec01 .pagination span {
		width: 6px;
		height:6px;
		margin:0px 5px !important;
	}

	.sec01 .pagination span::before {
		width: 10px;
		height:10px;
		border-width: 2px;
	}
}
@media screen and (max-width:576px) {
	.sec01 .text {
		padding: 0px 24px 80px;
	}
}


/* Sec02 */
.sec02 {
	position: relative;
}

.sec02::before,
.sec02::after {
	content: "";
	display: block;
	position: absolute;
	left:-20px;
	width:40px;
	height:20px;
	background-color: #fff;
	z-index:5;
}

.sec02::before {
	top:-1px;
}

.sec02::after {
	bottom:-1px;
}

.sec02 .item {
	flex:1 1 25%;
	max-width: 25%;
	padding:50px;
	border:1px solid #dc1e1e;
	border-left:0px;
}

.sec02 .item:nth-child(1),
.sec02 .item:nth-child(2),
.sec02 .item:nth-child(3),
.sec02 .item:nth-child(4) {
	border-bottom:0px;
}

.sec02 .item:nth-child(4n) {
	border-right:0px;
}

.sec02 .item::before,
.sec02 .item::after {
	content: "";
	display: block;
	position: absolute;
	width:40px;
	height:20px;
	background-color: #fff;
	z-index:5;
}

.sec02 .item::before {
	top:-1px;
	right:-20px;
}

.sec02 .item::after {
	right:-20px;
	bottom:-1px;
}

.sec02 .item > a {
	display: block;
	overflow: hidden;
}

.sec02 .tit {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.sec02 .tit::before {
	content: "";
	display: block;
	position: absolute;
	left:-20px;
	width:40px;
	height:20px;
	background-color: #fff;
	z-index:5;
}

.sec02 .tit::before {
	bottom:-1px;
}

.sec02 .txt {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	padding:40px;
	z-index: 5;
}

.sec02 .txt .t01 {
	position: absolute;
	top:40px;
	right:40px;
	line-height: 0.8;
}

.sec02 .img {
	transition: var(--transition-custom2);
}

.sec02 .txt .t01,
.sec02 .txt .t02,
.sec02 .txt .t03 {
	opacity:0;
}

.sec02 .hover {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height: 100%;
	background: url('/asset/img/main/sec02_hover.png') no-repeat center / cover;
	z-index:4;
	opacity:0;
	pointer-events: none;
	transition: var(--transition-basic3);
}

.sec02 .btn {
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
}

.sec02 .txt-hover {
	position: absolute;
	left: 0;
	opacity: 0;
	bottom: -60px;
	width: 100%;
	padding: 40px;
	transition: var(--transition-custom);
}

.sec02 .txt-hover-txt {
	line-height: 1.7;
}

.sec02 .item.active .txt .t01,
.sec02 .item.active .txt .t02,
.sec02 .item.active .txt .t03 {
	opacity: 1;
	transition: var(--transition-custom);
}

/* .sec02 .item.active .txt .t01,
.sec02 .item.active .txt .t02,
.sec02 .item.active .txt .t03 {
	opacity: 1;
	transition: var(--transition-custom);
}

.sec02 .item.active .txt .t03 {
	line-height: 1.7;
	position: absolute;
	left: 50%;
	width: 100%;
	padding: 40px;
	bottom: 0px;
	transform: translateX(-50%);
} */

.sec02 .item.active .txt .t03 {
	line-height: 1.7;
}

@media screen and (min-width:1025px) {
	.sec02 .img {
		clip-path:inset(100% 100% 100% 100%);
	}

	.sec02 .txt .t01,
	.sec02 .txt .t02,
	.sec02 .txt .t03 {
		opacity:0;
		transform: translateY(60px);
	}

	.sec02 .item.active .txt .t01 {
		transition-delay: .3s;
	}

	.sec02 .item.active .txt .t02 {
		transition-delay: .4s;
	}

	.sec02 .item.active .txt .t03 {
		transition-delay: .8s;
	}

	.sec02 .item.active .img {
		clip-path:inset(0 0 0 0);
	}

	.sec02 .item.active .txt .t01,
	.sec02 .item.active .txt .t02 {
		transform: translateY(0);
	}
}

@media screen and (min-width:1201px) {
	.sec02 .item.active-hover:hover .hover {
		opacity: 1;
	}

	.sec02 .item.active-hover .txt .t02 {
		opacity: 0;
		transition-duration: 0s;
		transition-delay:0s !important;
	}

	.sec02 .item:hover .txt .t02 {
		opacity: 0;
		transition-duration: 0s;
		transition-delay:0s !important;
	}

	.sec02 .item:hover .txt-hover {
		opacity: 1;
		bottom: 0;
	}
}
@media screen and (max-width:1536px) {
	.sec02 .item  {
		padding:30px;
	}	

	.sec02 .txt {
		padding:30px;
	}

	.sec02 .txt .t01 {
		top:30px;
		right:30px;
	}

	.sec02 .txt-hover {
		padding: 30px;
	}
}
@media screen and (max-width:1366px) {
	.sec02 .item {
		padding: 24px;
	}

	.sec02 .txt {
		padding:18px;
	}

	.sec02 .txt .t01 {
		top:18px;
		right:18px;
	}

	.sec02 .txt-hover {
		padding: 18px;
	}

	.sec02 .hover {
		width: 110%;
		height: 110%;
	}
}
@media screen and (max-width:1200px) {
	.sec02 .item {
		padding: 18px;
	}

	.sec02 .item .txt .t02 {
		display:none;
	}

	.sec02 .txt-hover {
		bottom: 0;
		opacity: 1;
		/* height: 100%; */
	}
}
@media screen and (max-width:1024px) {
	.sec02 .item {
		flex:1 1 50%;
		max-width:50%;
	}

	.sec02 .item:nth-child(2n){
		border-right:0px;
	}

	.sec02 .item::before, .sec02 .item::after {
		width:30px;
	}

	.sec02 .item::before {
		right:-15px;
	}

	.sec02 .item::after {
		right:-15px;
	}

	.sec02 .txt .t02,
	.sec02 .txt .t03 {
		transform: translateX(-60px);
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
	.sec02 {
		width: 95%;
		margin:0 auto;
		overflow: hidden;
	}

	.sec02::before, .sec02::after {
		display: none;
	}

	.sec02 .item {
		flex:1 1 100%;
		max-width:100%;
		padding:12px 0px;
		border-right:0px !important;
	}

	.sec02 .item:nth-child(7) {
		border-bottom:0px;
	}

	.sec02 .item:last-child {
		display: none;
	}
	
	.sec02 .item::before, .sec02 .item::after {
		display: none;
	}

	.sec02 .item .img img {
		width: 100%;
	}

	.sec02 .tit::before {
		display: none;
	}

	.sec02 .txt {
		padding: 12px;
	}

	.sec02 .btn {
		left: unset;
		right:20px;
		transform: translateY(-50%);
	}
}


/* Sec03 */
.sec03 .art {
	position: relative;
	width: 100%;
}

.sec03 .art01 {
	height:100vh;
	overflow: hidden;
}

.sec03 .art02 {
	position: relative;
	z-index: 5;
	/* padding-bottom:400px; */
	background-color: #191919;
}

.sec03 .art03 {
	padding-top:300px;
	background-color: #191919;
}

.sec03 .con {
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	white-space: nowrap;
	z-index:99;
}

.sec03 .btn {
	position: absolute;
	top:50%;
	right:-160px;
	transform: translateY(-50%);
}

.sec03 .background {
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%) scale(0);
	width: 7680px;
	height:7680px;
	background-color:#191919;
	border-radius:50%
}

.sec03 .art01 .txt {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right:100px;
}

.sec03 .art01 .txt .t01 {
	line-height: 1.5;
}

.sec03 .art02 .img-wrap {
	display: flex;
	justify-content: space-between;
	/* align-items: flex-end; */
	font-size:0px;
}

.sec03 .art02 .img-wrap .lt,
.sec03 .art02 .img-wrap .rt {
	width: 44%;
}

.sec03 .art02 .txt {
	opacity:0;
	transform: translateX(100px);
	transition: var(--transition-custom);
}

.sec03 .art02 .txt .t01 span {
	margin-right:80px;
}

.sec03 .art02 .txt .t01 i {
	position: absolute;
	left:0;
	bottom:0;
	width:0;
	height:5px;
	background-color: #dc1e1e;
	transition: var(--transition-custom);
}


@media screen and (min-width:1025px) {
	.sec03 .art02 .img-wrap .lt .img,
	.sec03 .art02 .img-wrap .rt .img {
		opacity:0;
		transition: var(--transition-custom);
	}

	.sec03 .art02 .img-wrap .lt .img {
		transform: translateY(130px);
	}

	.sec03 .art02 .img-wrap .rt .img {
		transform: translateY(130px);
	}

	.sec03 .art02 .lt.on .img,
	.sec03 .art02 .rt.on .img {
		opacity: 1;
		transform: translateY(0);
	}
	
	.sec03 .art02 .rt.on .txt {
		opacity:1;
		transform: translateX(0);
		transition-delay: .15s;
	}

	.sec03 .art02 .rt.on .txt .t01 i {
		width: 100%;
		transition-delay: .5s;
	}
}
@media screen and (max-width:1200px) {
	/* .sec03 .art02 {
		padding-bottom:300px;
	} */

	.sec03 .art03 {
		padding-top:160px;
	}

	/* .sec03 .art02 .img-wrap .lt{
		width:56%;
	}

	.sec03 .art02 .img-wrap .rt {
		width:40%;
	} */

	.sec03 .art02 .txt .t01 span {
		margin-right:40px;
	}
}
@media screen and (max-width:1024px) {
	.sec03 .art01 {
		height: auto;
		padding:160px 0px;
	}
	
	.sec03 .art02 {
		padding:160px 0px;
	}

	.sec03 .art03 {
		display: none;
	}

	.sec03 .con {
		position: relative;
		top:unset;
		left: unset;
		transform: none;
		white-space: wrap;
		width: 95%;
		margin:0 auto;
		text-align: center;
	}
	
	.sec03 .art01::before {
		content: "";
		display: block;
		position: absolute;
		top:0;
		left:0;
    width: 0;
    height: 100%;
    background-color: #191919;
    transition: var(--transition-basic);
		z-index: -1;
	}

	.sec03 .art01 .txt {
		display: block;
		padding:0px;
	}

	.sec03 .btn {
		position: relative;
		top:unset;
		right: unset;
		transform: none;
		margin-top:40px;
	}

	.sec03 .background {
		display: none;
	}

	.sec03 .art02 .img-wrap {
		align-items: flex-start;
	}

	.sec03 .art02 .img-wrap .lt,
	.sec03 .art02 .img-wrap .rt .img {
		opacity:0;
		transform: translateY(100px);
	}

	.sec03 .art02 .txt .t01 span {
		margin-right:0px;
	}

	.sec03 .art02 .txt .t01 i {
		bottom: -4px;
	}

	.sec03 .art01.on::before {
		width: 100%;
		transition: var(--transition-custom6);
	}

	.sec03 .art01.on .tit p,
	.sec03 .art01.on .tit p span,
	.sec03 .art01.on .txt p {
		color:#fff;
		transition: var(--transition-custom5);
	}

	.sec03 .art02 .rt .txt.on {
		opacity:1;
		transform: translateX(0);
		transition-delay: .15s;
	}

	.sec03 .art02 .rt .txt.on i {
		width: 100%;
		transition-delay: .5s;
	}

	/* .sec03 .art02 .rt.on .img {
		transform:translateY(80px);
	} */


}
@media screen and (max-width:768px) {
	.sec03 .art01 {
		padding:120px 0px;
	}

	.sec03 .art02 {
		padding:120px 0px;
	}

	.sec03 .btn {
		margin-top:30px;
	}

	.sec03 .art02 .img-wrap {
		/* flex-wrap: wrap; */
		gap:60px;
	}

	/* .sec03 .art02 .img-wrap .lt {
		width: 100%;
	}

	.sec03 .art02 .img-wrap .rt {
		width: 100%;
	}

	.sec03 .art02 .img-wrap .lt .img img {
		width: 100%;
	} */

	.sec03 .art02 .txt .t01 i {
		height:3px;
		transition-delay: .4s;
	}

	.sec03 .art02 .txt.on {
		opacity: 1;
		transform: translateX(0px);
	}

	.sec03 .art02 .txt.on .t01 i {
		width: 100%;
	}
}
@media screen and (max-width:576px) {
	.sec03 .art01 {
		padding:100px 0px;
	}

	.sec03 .art02 {
		padding:100px 0px;
	}

	.sec03 .art02 .img-wrap {
		gap:40px;
	}

	.sec03 .btn {
		margin-top:24px;
	}
}


/* Sec04 */
.sec04 {
	padding:130px 0px;
}

.sec04 .bd {
	display: flex;
	border-top: 1px solid #dc1e1e;
	border-bottom: 1px solid #dc1e1e;
}

.sec04 .lt,
.sec04 .rt {
	flex:1 1;
}

.sec04 .lt {
	border-right: 1px solid #dc1e1e;
}

.sec04 .tit {
	display: flex;
	align-items: center;
	gap:100px;
}

.sec04 .tit .t01 {
	opacity:0;
	transform: translateX(-100px);
	transition: var(--transition-custom);
}

.sec04 .tit .t01 i {
	position: absolute;
	left:0;
	bottom:-7px;
	width:0;
	height:5px;
	background-color: #dc1e1e;
	transition: var(--transition-custom);
}

.sec04 .tit .t02 {
	opacity:0;
	transform: translateX(-100px);
	transition: var(--transition-custom);
	margin-top:20px;
}

.sec04 .tit .t02 {
	line-height:1.5;
}

.sec04 .item-wrap {
	position: relative;
	top:50%;
	transform: translateY(-50%);
	padding:50px;
}

.sec04 .item {
	position: relative;
	width:100%;
	height:0;
	padding-top:85%;
}

.sec04 .item .box {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	font-size: 0px;
	opacity:0;
	visibility: hidden;
	transition: var(--transition-custom);
}

.sec04 .list {
	position: relative;
}

.sec04 .list li {
	width: 100%;
	overflow: hidden;
}

.sec04 .list li:not(:last-child) {
	border-bottom: 1px solid #dc1e1e;
}

.sec04 .list .card {
	position: relative;
	display: block;
	padding-top:190px;
	transition:var(--transition-basic);
	cursor: pointer;
}

.sec04 .anchor {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	/* height:150px; */
	padding:50px 5%;
	opacity:1;
	overflow: hidden;
	/* transition:var(--transition-basic); */
}

.sec04 .anchor .arr {
	display: block;
	width:65px;
	height:45px;
	background: url('/asset/img/icon/arr01.png') no-repeat center / auto 45px;
	transition: var(--transition-basic3);
}

.sec04 .hover {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	max-height:0;
	opacity: 0;
	/* transition:var(--transition-basic2); */
}

.sec04 .hover-wrap {
	display: flex;
	position: relative;
	padding:50px 5%;
	visibility: hidden;
}

.sec04 .hover-wrap .txt,
.sec04 .hover-wrap .img {
	position: relative;
	width: 50%;
	font-size:0px;
}

.sec04 .hover-wrap .arr {
	display: block;
	position: absolute;
	left:0;
	bottom:0;
	width: 88px;
	height:60px;
	background: url('/asset/img/icon/arr01.png') no-repeat center / auto 60px;
	transition: var(--transition-basic3);
}

.sec04.active .tit .t01 {
	opacity: 1;
	transform: translateX(0);
}

.sec04.active .tit .t01 i {
	width: 100%;
	transition-delay: .4s;
}

.sec04.active .tit .t02 {
	opacity: 1;
	transform: translateX(0);
	transition-delay: .2s;
}

@media screen and (min-width:1025px) {
	.sec04 .anchor .arr:hover {
		transform: translateX(20px);
	}

	.sec04 .item .box.on {
		opacity:1;
		visibility: visible;
	}

	.sec04 .list li.on .anchor {
		opacity:0;
		/* transform: translateY(50px); */
	}

	.sec04 .list li.on .hover {
		opacity: 1;
	}

	.sec04 .list li.on .hover-wrap {
		visibility: visible;
	}

	.sec04 .hover-wrap .arr:hover {
		transform: translateX(20px);
	}
}
@media screen and (max-width:1200px) {
	.sec04 .tit {
		gap:60px;
	}

	.sec04 .list .card {
		padding-top:138px;
	}

	.sec04 .anchor {
		padding:30px 5%;
	}

	.sec04 .anchor .arr {
		width:55px;
		height:38px;
		background-size:auto 38px;
	}

	.sec04 .hover-wrap {
		padding:30px 5%;
	}
	
	.sec04 .hover-wrap .arr {
		width:70px;
		height:48px;
		background-size: auto 48px;
	}
}
@media screen and (max-width:1024px) {
	.sec04 {
		padding:100px 0px;
	}

	.sec04 .tit {
		flex-wrap: wrap;
		gap:20px;
	}
	
	.sec04 .tit p {
		width: 100%;
	}

	.sec04 .tit .t02 {
		margin-top:0px;
	}

	.sec04 .lt {
		display: none;
	}

	.sec04 .anchor {
		display: none;
	}

	.sec04 .list .card {
		padding-top:0px;
	}

	.sec04 .hover {
		position: relative;
		top:unset;
		left: unset;
		max-height: unset !important;
		opacity: 1;
	}

	.sec04 .hover-wrap {
		justify-content: space-between;
		padding:24px;
		visibility: visible;
	}

	.sec04 .hover-wrap .txt {
		width: calc(100% - 280px);
	}
	
	.sec04 .hover-wrap .img {
		width: 280px;
	}

	.sec04 .hover-wrap img {
		width: 100%;
	}

	.sec04 .hover-wrap .arr {
		width:60px;
		height:40px;
		background-size: auto 40px;
	}
}
@media screen and (max-width:768px) {
	.sec04 {
		padding:80px 0px;
	}

	.sec04 .tit .t01 i {
		height:3px;
	}

	.sec04 .hover-wrap {
		padding:18px;
	}

	.sec04 .hover-wrap .txt {
		width: calc(100% - 200px);
	}
	
	.sec04 .hover-wrap .img {
		width: 200px;
	}

	.sec04 .hover-wrap .arr {
		width:46px;
		height:32px;
		background-size: auto 32px;
	}
}
@media screen and (max-width:576px) {
	.sec04 .hover-wrap {
		flex-wrap: wrap;
		/* padding:12px; */
	}

	.sec04 .hover-wrap .txt {
		width: 100%;
		margin-bottom:12px;
	}
	
	.sec04 .hover-wrap .img {
		width: 100%;
	}

	.sec04 .hover-wrap .arr {
		left: unset;
		bottom: unset;
		top:50%;
		right:0;
		transform: translateY(-50%);
		width:32px;
		height:22px;
		background-size: auto 22px;
	}
}


/* Sec05 */
.sec05 {
	padding:160px 0px;
	background-color: #191919;
}

.sec05 .txt {
	gap:40px;
	justify-content: center;
	letter-spacing: -0.01em;
	/* justify-content: space-between; */
}

.sec05 .chg-ani {
	position: relative;
	width: 24.375%;
	padding:0px 2vw;
	/* width:30%;
	padding:0px 6.25vw; */
	text-align: center;
}

.sec05 .chg-ani::before,
.sec05 .chg-ani::after {
	display: block;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	font-style: italic;
	font-size:10rem;
	font-weight:300;
	color:#fff;
}

.sec05 .chg-ani::before {
	content: "(";
	/* left:2vw; */
	left:0;
}

.sec05 .chg-ani::after {
	content: ")";
	right:0;
	/* right:2vw; */
}

.sec05 .chg-ani img {
	margin:0 auto;
}

.sec05 .chg-ani .swiper {
	overflow: hidden;
	/* pointer-events: none; */
}

.sec05 .chg-ani .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.sec05 .chg-ani .swiper-slide {
	width: fit-content;
	background-color: #191919;
	overflow: hidden;
}

.sec05 .chg-ani .swiper-slide img {
	transition: none;
	opacity:0;
}

.sec05 .chg-ani .swiper-slide-active img {
	opacity: 1;
	transition:opacity 100ms;
}

.sec05 .link {
	display: flex;
	justify-content: center;
}

.sec05 .link a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding:0px 60px;
	max-width: 480px;
	width: 100%;
	height:100px;
	z-index:5;
}

.sec05 .link a::before {
	content: "";
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 73%;
	height: 100%;
	border-radius:100px;
	background-color: #dc1e1e;
	z-index: -1;
	transition: var(--transition-basic2);
}

.sec05 .link i {
	display: block;
	width:154px;
	height:45px;
	background: url('/asset/img/icon/arr02.png') no-repeat center;
	transition: var(--transition-basic2);
}

@media screen and (min-width:1201px) {
	.sec05 .link a:hover::before {
		width: 100%;
	}

	.sec05 .link a:hover i {
		transform: translateX(20px);
	}
}
@media screen and (max-width:1536px) {

}
@media screen and (max-width:1366px) {
	.sec05 .txt {
		gap:20px;
	}
}
@media screen and (max-width:1200px) {
	.sec05 .chg-ani {
		/* width:24%; */
		padding:0px 5%;
	}

	.sec05 .chg-ani::before, .sec05 .chg-ani::after {
		font-size: 7rem;
	}

	/* .sec05 .chg-ani::before {
		left: 7%;
	}

	.sec05 .chg-ani::after {
		right:7%;
	} */

	.sec05 .link a {
		max-width:400px;
		height:80px;
		padding: 0px 40px;
	}

	.sec05 .link i {
		width:138px;
		height:40px;
		background-size:auto 40px;
	}
}
@media screen and (max-width:1024px) {
	.sec05 {
		padding:120px 0px;
	}

	.sec05 .chg-ani::before, .sec05 .chg-ani::after {
		font-size: 5.6rem;
	}

	.sec05 .link a {
		max-width: 360px;
	}
}
@media screen and (max-width:768px) {
	.sec05 {
		padding:100px 0px;
	}

	.sec05 .txt {
		flex-wrap: wrap;
		justify-content:center;
	}

	.sec05 .chg-ani {
		width: 100%;
	}

	.sec05 .chg-ani::before, .sec05 .chg-ani::after {
		display: none;
	}

	.sec05 .chg-ani-wrap {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		max-width:400px;
		width: 100%;
		margin:0 auto;
		padding:0px;
		padding-left:100px;
	}

	.sec05 .chg-ani picture {
		display: block;
		position: absolute;
		top:50%;
		left:-30px;
		transform:translateY(-50%);
		width:200px;
	}

	.sec05 .chg-ani .chg-swiper-wrap {
		position: relative;
		width: 240px;
		padding:0px 20px;
	}

	.sec05 .chg-ani .chg-swiper-wrap::before, .sec05 .chg-ani .chg-swiper-wrap::after {
		display: block;
		position: absolute;
		top:50%;
		transform: translateY(-50%);
		font-style: italic;
		font-size:4rem;
		font-weight:300;
		color:#fff;
		z-index:10;
	}

	.sec05 .chg-ani .chg-swiper-wrap::before {
		content: "(";
		left:0;
	}

	.sec05 .chg-ani .chg-swiper-wrap::after {
		content: ")";
		right:0;
	}

/* 
	.sec05 .chg-ani {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		max-width:300px;
		width: 100%;
		padding:0px;
		padding-left:100px;
	}

	.sec05 .chg-ani::before, .sec05 .chg-ani::after {
		display: none;
		font-size: 4rem;
	}

	.sec05 .chg-ani picture {
		display: block;
		position: absolute;
		top:50%;
		left:-60px;
		transform:translateY(-50%);
		width:200px;
	}

	.sec05 .chg-ani .chg-swiper-wrap {
		position: relative;
		width: 200px;
		padding:0px 20px;
	}

	.sec05 .chg-ani .chg-swiper-wrap::before, .sec05 .chg-ani .chg-swiper-wrap::after {
		display: block;
		position: absolute;
		top:50%;
		transform: translateY(-50%);
		font-style: italic;
		font-size:4rem;
		font-weight:300;
		color:#fff;
		z-index:10;
	}

	.sec05 .chg-ani .chg-swiper-wrap::before {
		content: "(";
		left:0;
	}

	.sec05 .chg-ani .chg-swiper-wrap::after {
		content: ")";
		right:0;
	} */

	.sec05 .link a {
		max-width:300px;
		height:60px;
		padding:0px 30px;
	}

	.sec05 .link i {
		width:112px;
		height:32px;
		background-size:auto 32px;
	}
}
@media screen and (max-width:576px) {
	.sec05 {
		padding:80px 0px;
	}

	.sec05 .chg-ani-wrap {
		max-width:240px;
		padding-left: 70px;
	}

	.sec05 .chg-ani picture {
		width:120px;
		left:-15px;
	}

	.sec05 .chg-ani .chg-swiper-wrap {
		width: 160px;
	}

	.sec05 .chg-ani .chg-swiper-wrap::before, .sec05 .chg-ani .chg-swiper-wrap::after {
		font-size:2.4rem;
	}

	.sec05 .chg-ani .chg-swiper-wrap::before {
		left:10px;
	}

	.sec05 .chg-ani .chg-swiper-wrap::after {
		right:10px;
	}

	/* .sec05 .chg-ani {
		max-width:240px;
		padding-left:60px;
	} */

	/* .sec05 .chg-ani::before, .sec05 .chg-ani::after {
		font-size:3.2rem;
	} */

	/* .sec05 .chg-ani .chg-swiper-wrap {
		width:160px;
	}

	.sec05 .chg-ani .chg-swiper-wrap::before, .sec05 .chg-ani .chg-swiper-wrap::after {
		font-size:2.4rem;
	} */
	
	.sec05 .link a {
		max-width:240px;
		height:50px;
		padding:0px 20px;
	}

	.sec05 .link i {
		width:82px;
		height:24px;
		background-size:auto 24px;
	}
}


/* Animation */
@keyframes fade-up {
	0% {
		opacity:0;
		transform: translateY(100%);
	}
	100% {
		opacity:1;
		transform: translateY(0);
	}
}

@keyframes circleAni {
	0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(20);
    opacity: 0;
  }
}

/* Popup */
#popup {
	position: relative;
}

.popup-layer {
	z-index: 10000;
	position: absolute;
	background: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
	animation: popup-fade .65s ease-in-out .35s forwards;
	opacity: 0;
	max-width:800px;
}

@keyframes popup-fade {
	0% { opacity: 0;
	-webkit-transform: translateY(25px);
	-ms-transform: translateY(25px);
	transform: translateY(25px); }
	100% { opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0); }
}
.popup-layer__body {
	background: #fff;
}

.popup-layer__body img {
	display: block;
	margin: 0 auto;
	border: none;
	max-width: 100%;
}

.popup-layer__foot {
	background: #424242;
}

.popup-layer__foot ul {
	display:flex;
	flex-wrap: wrap;
}

.popup-layer__foot li {
	width:50%;
	padding:10px;
}

.popup-layer__foot li:first-child {
	padding-right:0;
}

.popup-layer__foot li:last-child {
	text-align: right;
}

.popup-layer__foot span {
	font-size: 1.5rem;
	color: #fff;
	cursor: pointer;
	transition:all 0.3s ease;
}

.popup-layer__foot label:hover span { opacity: .7; }

/* .popup-layer-foot { background: #424242; }
.popup-layer-foot span { font-size: 15px; color: #fff; }
.popup-layer-foot label:hover span { opacity: .7; }
.popup-layer-foot li:first-child { padding-right: 0; }
.popup-layer-foot li:last-child { text-align: right; } */


@media (max-width: 1024px){
	/* .popup-layer { z-index: 999; } */
	.popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
}
@media (max-width: 768px){

	.popup-layer {
		width:calc(100% - 10px);
	}

	.popup-layer img {
		max-width: none;
		width:100%;
		height: auto !important;
	}
	.popup-layer-foot span { font-size: 14px; }

}
@media (max-width: 375px){
	.popup-layer-foot li { width: 100%; }
	.popup-layer-foot li:last-child { text-align: left; }
}
