@charset "UTF-8";

/*----------------------------mv-----------------------------------*/

/*スライド動作*/

#mv .mv_img li img{
	opacity: 0;
}

/*下記アニメーションkeyframes名を指定*/
/*参考　http://www.knockknock.jp/archives/184 */
#mv.slide01 .mv_img li.show img{
	animation-name: slide01;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}
#mv.slide02 .mv_img li.show img{
	animation-name: slide02;
	animation-timing-function: ease-out;
}
#mv.slide03 .mv_img li.show img{
	animation-name: slide03;
	animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
#mv.slide04 .mv_img li.show img{
	animation-name: slide04;
	animation-timing-function: ease-out;
}
#mv.slide05 .mv_img li.show img{
	animation-name: slide05;
	animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@keyframes slide01{/*ズームイン ease-out推奨*/
	0%{
		opacity: 0;
		transform: scale(1,1) translate(0,0);
	}
	15%{
		opacity: 1;
	}
	100%{
		opacity: 1;
		transform: scale(1.12,1.12) translate(0,0) rotate(0.1deg);
	}
}
@keyframes slide02{/*ズームアウト ease-out推奨*/
	0%{
		opacity: 0;
		transform: scale(1.12,1.12) translate(0,0);
	}
	15%{
		opacity: 1;
	}
	100%{
		opacity: 1;
		transform: scale(1,1) translate(0,0) rotate(0.1deg);
	}
}
@keyframes slide03{/*横スライド cubic-bezier(0.645, 0.045, 0.355, 1)推奨*/
	0%{
		opacity: 0;
		transform: translate(30%,0);
	}
	20%{
		opacity: 1;
		transform: translate(0,0);
	}
	70%{
		opacity: 1;
		transform: translate(0,0);
	}
	100%{
		opacity: 1;
		transform: translate(-50%,0);
	}
}
@keyframes slide04{/*フェードアウト トリミングなし ease-out推奨*/
	0%{
		opacity: 0;
	}
	15%{
		opacity: 1;
	}
	85%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
@keyframes slide05{/*横スライド トリミングなし cubic-bezier(0.645, 0.045, 0.355, 1)推奨*/
	0%{
		opacity: 0;
		transform: translate(30%,0);
	}
	20%{
		opacity: 1;
		transform: translate(0,0);
	}
	70%{
		opacity: 1;
		transform: translate(0,0);
	}
	100%{
		opacity: 1;
		transform: translate(-50%,0);
	}
}
#mv .mv_img li img.no_animation{
	opacity: 1 !important;
	animation: none !important;
	transform: none !important;
}

#mv_outer{
	position: relative;
}
#mv{
	margin: 0 auto;
	position: relative;
	padding: 0;
}
#mv:after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#mv .mv_img{
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

#mv .mv_img li{
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	z-index: 1;
}
#mv .mv_img li:nth-of-type(n+2){
	display: none;
}
#mv .mv_img li.show{
	display: block;
}
#mv .mv_img li img{
	max-width: none;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
#mv .mv_img li.pos_lt img{
	object-position: 10% 5%;
}
#mv .mv_img li.pos_ct img{
	object-position: 50% 5%;
}
#mv .mv_img li.pos_rt img{
	object-position: 90% 5%;
}
#mv .mv_img li.pos_l img{
	object-position: 10% 50%;
}
#mv .mv_img li.pos_c img{
	object-position: 50% 50%;
}
#mv .mv_img li.pos_r img{
	object-position: 90% 50%;
}
#mv .mv_img li.pos_lb img{
	object-position: 10% 95%;
}
#mv .mv_img li.pos_cb img{
	object-position: 50% 95%;
}
#mv .mv_img li.pos_rb img{
	object-position: 90% 95%;
}
/* IE11 */
/*
_:-ms-fullscreen, :root #mv .mv_img li img{
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: none;
}*/

#mv .mv_text{
	position: absolute;
	display: flex;
	z-index: 10;
	width: 1200px;
	left: calc(50% - 600px);
}
@media screen and (max-width: 1300px){
	#mv .mv_text{
		left: 50px;
		width: calc(100% - 100px);
	}
}
@media screen and (max-width: 600px){
	#mv .mv_text p.move{
		display: none;
	}
	.MvP{
		padding-top: 50px;
	}
}
@media screen and (max-width: 400px){
	#mv .mv_text{
		left: 2vw;
		width: calc(100% - 4vw);
	}
}
#mv .mv_text>div{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
#mv .mv_text.wmode_horizontal>div{
	width: auto;
}
#mv .mv_text.wmode_horizontal.t_align_center>div{
	width: auto;
}
#mv .mv_text.wmode_horizontal.t_align_left>div{
	margin-left: 0;
	margin-right: auto;
}
#mv .mv_text.wmode_horizontal.t_align_right>div{
	margin-left: auto;
	margin-right: 0;
}
#mv .mv_text h2,
#mv .mv_text p{
	display: block;
}

/*t_align_center*/
#mv .mv_text.t_align_center{
	text-align: center;
}
#mv .mv_text.t_align_center>div{
	margin-left: auto;
	margin-right: auto;
}

/*t_align_right*/
#mv .mv_text.t_align_right{
	text-align: right;
}
#mv .mv_text.t_align_right>div{
	margin-left: auto;
	margin-right: 0;
}

/*wmode_horizontal*/
#mv .mv_text.wmode_horizontal{
	align-items: center;
}
#mv .mv_text.wmode_horizontal>div{
	display: inline-block;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
#mv .mv_text.wmode_horizontal h2{
	line-height: 1.5;
}
#mv .mv_text.wmode_horizontal p{
	padding-top: 0;
	padding-right: 30px;
	line-height: 2;
}
/*wmode_horizontal || t_align_left*/
#mv .mv_text.wmode_horizontal.t_align_left{
	align-items: flex-end;
}
/*wmode_horizontal || t_align_center*/
#mv .mv_text.wmode_horizontal.t_align_center>div{
	text-align: left;
}
/*wmode_horizontal || t_align_right*/
#mv .mv_text.wmode_horizontal.t_align_right>div{
	text-align: left;
}

#mv .mv_scroll{
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: 20px;
	left: calc(50% - 25px);
	z-index: 15;
}
#mv .mv_scroll a{
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -10000px;
	outline: none;
	line-height: 1px;
	font-size: 1px;
}
#mv .mv_scroll a:before{
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	left: 9.5px;
}

#mv .mv_pointer{
	display: block;
	width: 100%;
	height: 20px;
	position: absolute;
	bottom: 10px;
	left: 0;
	box-sizing: border-box;
	padding: 0 20px;
	z-index: 10;
}
#mv .mv_pointer li{
	display: inline-block;
	width: 40px;
	height: 20px;
	margin: 0 5px 0 0;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}
#mv .mv_pointer li:before{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	margin-top: 9px;
	transition: 0.3s ease-in-out;
}
#mv .mv_pointer li.current{
	width: 60px;
}

#mv .mv_arrow{
	position: absolute;
	top: calc(50% - 25px);
	left: 0;
	height: 0;
	width: 100%;
	overflow: visible;
	display: block;
	z-index: 10;
}
#mv .mv_arrow li{
	display: block;
	width: 50px;
	height: 50px;
}
#mv .mv_arrow li.mv_arrow_prev{
	float: left;
}
#mv .mv_arrow li.mv_arrow_next{
	float: right;
}
#mv .mv_arrow li span{
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -10000px;
	outline: none;
	line-height: 1px;
	font-size: 1px;
	cursor: pointer;
	position: relative;
}
#mv .mv_arrow li.mv_arrow_prev span:before{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	transform: rotate(-45deg);
	position: absolute;
	top: 14px;
	left: 17px;
}
#mv .mv_arrow li.mv_arrow_next span:before{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	transform: rotate(135deg);
	position: absolute;
	top: 14px;
	left: 10px;
}

@media screen and (max-width: 800px){
	#mv .mv_pointer{
		bottom: 0;
	}
	#mv .mv_pointer li{
		width: 20px;
	}
	#mv .mv_pointer li.current{
		width: 30px;
	}
}
@media screen and (max-width: 100vh){
	#mv.spfullheight{
		height: 100vh!important;
	}
}

#mv_outer #mv .mv_text div p.static{
	display: inherit !important;
}
@media screen and (max-width: 600px){
	#mv_outer #mv .mv_text div p.static{
		font-size: 1.6rem;
		line-height: 1.6;
	}
	#mv_outer #mv .mv_text div p.none{
		display: none !important;
	}
}

#mv.slide04,
#mv.slide05{
	max-width: 1980px;
	max-height: none !important;
	min-height: 0 !important;
}
#mv.slide04 .mv_img li img,
#mv.slide05 .mv_img li img{
	object-fit: contain;
	object-position: 50% 50%;
	max-width: none;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 1980px){
	#mv.slide04,
	#mv.slide05{
		margin-left: auto;
		margin-right: auto;
	}
}