html, body {
	width:100%;
	height:100%;
}

/* モーダル コンテンツエリア */
#modal-main {
	display: none;
	margin: 0;
	padding: 0;
	width:100%;
	height:100%;
	color: #666666;
	position:fixed;
	z-index: 2;
}
a{
	cursor:pointer;
}

/* モーダル 背景エリア */
#modal-bg {
	display:none;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.5);
	position:fixed;
	top:0;
	left:0;
	z-index: 1;
}

/* モーダル 背景エリア */
#modal-close-bg {
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0);
	position:fixed;
	top:0;
	left:0;
	z-index: 1;
}

/*
モーダルMovie用のiframe
heightはムービーの高さとタイトルの高さを足した数値にします
*/
#modal_frame{
	position: relative;
	width: 100%;
	height:100%;
}
#modal_movie_frame{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	z-index:1;
}