.sec {
	position: relative;
	width:100%;
	height:calc(var(--vh, 1vh) * 100);
	/* height:100vh; */
	background-color: #000;
}

.sec .banner {
	position: relative;
	width:100%;
	height:100%;
}

.sec .swiper-container {
	height:100%;
}

.sec .swiper-wrapper {
	height:100%;
}

.sec .swiper-slide {
	height:100%;
	overflow: hidden;
}

.sec .swiper-navi {
	position:absolute;
	left: 50%;
	bottom:50px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 1680px;
	width:90%;
	margin:0 auto;
	overflow: hidden;
	z-index:50;
}

.sec .swiper-navi::after {
	content:'';
	position:absolute;
	left:0;
	bottom:12px;
	width:100%;
	height:2px;
	background:rgba(255,255,255,.3);
	z-index:30;
}

.sec .next,
.sec .prev {
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width:40px;
	height:66px;
	background-repeat: no-repeat;
	background-position: center;
	z-index:50;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.sec .prev {
	left:60px;
	background-image: url('/img/main/sec_prev_off.png');
}

.sec .next {
	right:60px;
	background-image: url('/img/main/sec_next_off.png');
}

.sec .prev:hover {
	background-image: url('/img/main/sec_prev_on.png');
}

.sec .next:hover {
	background-image: url('/img/main/sec_next_on.png');
}


.sec .swiper-pagination-custom {
	position: relative;
	display: flex;
	max-width:820px;
	width:100%;
}

.sec .swiper-pagination-switch {
	display: block;
	position: relative;
	top:unset;
	left:unset;
	bottom: unset;
	right:unset;
	width:33.33%;
	height:42px;
	line-height:40px;
	text-align: center;
}

.sec .swiper-pagination-switch .switch-title {
	display: block;
	position: relative;
	font-size: 1.6rem;
	font-weight:600;
	color:#d2d2d2;
	cursor: pointer;
}

.sec .swiper-pagination-switch .switch-title::after {
	content: "";
	display: block;
	position: absolute;
	left:50%;
	bottom:-21px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 12px;
	height: 12px;
	background-color:#fff;
	border-radius:50%;
	-webkit-transition:all .5s ease-in-out 0s;
	-moz-transition:all .5s ease-in-out 0s;
	-ms-transition:all .5s ease-in-out 0s;
	transition:all .5s ease-in-out 0s;
	z-index:1;
}

.sec .swiper-pagination-switch .switch-title::before {
	content: "";
	display: block;
	position: absolute;
	left:50%;
	bottom:-28px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 12px;
	height: 12px;
	border:12px solid transparent;
	background-color: rgba(30,61,142,.3);
	border-radius:50%;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	z-index:1;
	opacity:0;
}

.sec .swiper-pagination-progressbar {
	position: relative;
	left:-60px;
	max-width:820px;
	width: 100%;
	height: 2px;
	margin-bottom: 14px;
	background-color: transparent;
}

.sec .swiper-pagination-progressbar-fill {
	top: 2px;
	height:2px;
	background-color: #fff;
	transition-duration:3s !important;
}

.sec .context {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	left:50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all .5s ease .3s;
	-moz-transition: all .5s ease .3s;
	-ms-transition: all .5s ease .3s;
	transition: all .5s ease .3s;
	opacity: 0;
	max-width:1310px;
	width:90%;
	height:100%;
	margin:0 auto;
	z-index:10;
}

.sec .title {
	font-size: 6.4rem;
	font-weight:800;
	line-height:1;
	color:#ffffff;
	margin-bottom:40px;
	-webkit-transform:translateY(50px);
	-moz-transform:translateY(50px);
	-ms-transform:translateY(50px);
	transform:translateY(50px);
	-webkit-transition:all 1s ease;
	-moz-transition:all 1s ease;
	-ms-transition:all 1s ease;
	transition:all 1s ease;
	opacity:0;
}

.sec .text {
	font-size:2.4rem;
	font-weight:500;
	line-height:1.3;
	color:#fff;
	-webkit-transform:translateY(50px);
	-moz-transform:translateY(50px);
	-ms-transform:translateY(50px);
	transform:translateY(50px);
	-webkit-transition:all 1s ease .5s;
	-moz-transition:all 1s ease .5s;
	-ms-transition:all 1s ease .5s;
	transition:all 1s ease .5s;
	opacity:0;
}

.sec .background {
	position: relative;
	width:100%;
	height:100%;
	/* background-repeat: no-repeat;
	background-position: center;
	background-size:cover; */
}

.sec .background video {
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* .sec .background01 {
	background-image: url('/img/main/sec_banner_01.png');
}

.sec .background02 {
	background-image: url('/img/main/sec_banner_02.png');
}

.sec .background03 {
	background-image: url('/img/main/sec_banner_03.png');
} */

.sec .swiper-slide-active .context {
	opacity:1;
}

.sec .swiper-slide-active .title {
	-webkit-transform:translateY(0px);
	-moz-transform:translateY(0px);
	-ms-transform:translateY(0px);
	transform:translateY(0px);
	opacity: 1;
}

.sec .swiper-slide-active .text {
	-webkit-transform:translateY(0px);
	-moz-transform:translateY(0px);
	-ms-transform:translateY(0px);
	transform:translateY(0px);
	opacity: 1;
}

.sec .swiper-pagination-switch.active .switch-title {
	color:#fff;
}

.sec .swiper-pagination-switch.active .switch-title::before {
	opacity: 1;
}

@media screen and (max-width:1536px) {
	.sec .next,
	.sec .prev {
		width:36px;
		height:56px;
		background-size:auto 56px;
	}

	.sec .prev {
		left:20px;
	}

	.sec .next {
		right:20px;
	}
}
@media screen and (max-width:1200px) {
	.sec .title {
		font-size:4.8rem;
	}

	.sec .text {
		font-size:2rem;
	}

	.sec .swiper-pagination-switch .switch-title {
		font-size:1.5rem;
	}

	.sec .next,
	.sec .prev {
		display: none;
	}
}
@media screen and (max-width:1024px) {
	.sec .title {
		margin-bottom:28px;
	}
}
@media screen and (max-width:768px) {
	.sec .swiper-navi {
		bottom:30px;
	}

	.sec .swiper-navi::after {
		height:1px;
	}

	.sec .swiper-pagination-custom {
		bottom:0px;
	}

	.sec .swiper-pagination-switch {
		height:36px;
		line-height:34px;
	}

	.sec .swiper-pagination-switch .switch-title {
		font-size:1.4rem;
	}

	.sec .swiper-pagination-switch .switch-title::before {
		bottom:-13px;
		width:8px;
		height:8px;
		border-width:8px;
	}

	.sec .swiper-pagination-switch .switch-title::after {
		bottom:-9px;
		width:8px;
		height:8px;
	}

	.sec .swiper-pagination-progressbar {
		height:1px;
	}

	.sec .swiper-pagination-progressbar-fill {
		height:1px;
	}

	.sec .context {
		text-align: center;
	}

	.sec .title {
		font-size:3.6rem;
		margin-bottom:24px;
	}

	.sec .text {
		font-size:1.8rem;
	}
}
@media screen and (max-width:576px) {
	.sec .swiper-pagination-switch .switch-title {
		font-size:1.2rem;
	}

	.sec .title {
		font-size:2.8rem;
		margin-bottom:18px;
	}

	.sec .text {
		font-size:1.6rem;
	}
}


/* 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 button {
	background-color: transparent;
	border:0px;
}

.popup-layer__foot span {
	font-size:15px;
	/* 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; }
}

