@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in2 {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-dw {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.swiper-container {
	width: 100%;
	height: 680px;
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
}

.swiper-container .swiper-wrapper .swiper-slide {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}


/* 01 */
.swiper-container .swiper-wrapper .swiper-slide p.title {
	display: block;
	position: absolute;
	top: 19%;
	right: 10%;
	color: #ffffff;
	font-size: 2.8em;
	font-weight: bold;
}

.swiper-container .swiper-wrapper .swiper-slide p.title img {
	width: 320px;
	height: auto;
	
}

.swiper-container .swiper-wrapper .swiper-slide-active p.title {
	animation-name: fade-in;
	animation-duration: 1s;
	animation-delay: 1s;
	animation-fill-mode: both;
}


/* 02 */
.swiper-container .swiper-wrapper .swiper-slide p.title2 {
	display: block;
	position: absolute;
	top: 35%;
	right: 10%;
	color: #ffffff;
	font-size: 2.6em;
	font-weight: bold;
}

.swiper-container .swiper-wrapper .swiper-slide-active p.title2 {
	animation-name: fade-dw;
	animation-duration: 1s;
	animation-delay: 2.5s;
	animation-fill-mode: both;
}


/* 03 */
.swiper-container .swiper-wrapper .swiper-slide p.subtitle {
	display: block;
	position: absolute;
	top: 42%;
	right: 10%;
	color: #ffffff;
	font-size: 2.6em;
	font-weight: bold;
}

.swiper-container .swiper-wrapper .swiper-slide-active p.subtitle {
	animation-name: fade-in2;
	animation-duration: 1s;
	animation-delay: 2.5s;
	animation-fill-mode: both;
}


/*
.mv01 {
	background: url(../images/main-01.jpg);
}

.mv02 {
	background: url(../images/main-02.jpg);
}

.mv03 {
	background: url(../images/main-03.jpg);
}

.mv04 {
	background: url(../images/main-04.jpg);
}

.mv05 {
	background: url(../images/main-05.jpg);
}
*/















