@charset "utf-8";
/* CSS Document */

/*========================================
	設定
========================================*/

body{
	margin:0;
	overflow: hidden;
	cursor:none;
}

/*カーソル設定*/

.cursor{
	cursor:url(../images/common/cursor.png),none;
}

/*画面設定*/

figure{
	margin:0px;
	padding:0px;
	position:relative;
	z-index:1;
}
video{
	position:fixed;
	top:50%;
	left:50%;
	transform: translateY(-50%) translateX(-50%);
	z-index:10;
}
.videohidden {
	width:1px;
	height:1px;
}
p[id^="img"]{
	margin:0px;
	padding:0px;
	position:absolute;
	top:0px;
	left:0px;
	z-index:500;
	min-width:100%;
	min-height:100%;
}
p img{
	/*width:100%;
	height:100%;
	min-width:100%;
	min-height:100%;*/
	width: 100%;
	height: auto;
	min-width: 0;
	min-height: 0;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

/*画面下部の流れるお知らせ欄*/

#info1{
	position:fixed;
	bottom:0;
	left:0;
	font-size:40px;
	display:block;
	width:100%;
	height:80px;
	line-height:80px;
	color:#fff;
	background:rgba(000,000,000,0.4);
	z-index:100;
}

