/* CSS Document */

.imgbox img {
-webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
    display: block;
	transition-duration: 0.9s;	/*変化に掛かる時間*/
}
.imgbox img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
    transform: scale(1.02);	/*画像の拡大率*/
	transition-duration: 0.9s;	/*変化に掛かる時間*/
}
/* L 594*/

#bg-video{
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	background-repeat: no-repeat;
	background-image: url(../images/bg_03.jpg);
	background-size: cover;
}






@media screen and (max-width: 736px) {
.mv_box {
	width: 100%;
	min-height: none;
	max-width: none;
}
.mv_box_in {
	width: 100%;
	background-image: url(../images/bg_03.jpg);
	background-size: cover;
	min-height: 400px;
	background-position: center center;
    }
.mv_logo {
	width: 70%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding-top: 150px;
	position: static;
    animation-name: SlideDown;/* アニメーション名 */
animation-duration: 2s;/* アニメーション時間 */
}
}
