@charset "UTF-8";
/*
	トップYouTube
*/
#top-movie
{
	display: none;
	
	position: fixed;
	width: 100%;
	height: 100%;
	
	z-index: 10000;
}

#top-movie .bg
{
	position: absolute;
	width: 100%;
	height: 100%;
	
	background-color: rgba(232,240,247,0.7);
	
	z-index: 10001;
}

#top-movie .top-movie-video
{
	position: relative;
	margin: 50px auto 0;
	
	box-sizing: border-box;
	width: 853px;
	
	z-index: 10002;
}

#top-movie .top-movie-video .close-button-area
{
	text-align: right;
}

#top-movie .top-movie-video #top-movie-player
{
	margin-top: 4px;
}



@media screen and (max-width: 768px)
{
	#top-movie .top-movie-video
	{
		margin: 10% 0 0;
		width: inherit;
	}
	
	#top-movie .top-movie-video .top-movie-player-parent
	{
		position: relative;
		margin: 0 5%;
		padding-bottom: 56.2%;
		height: 0;
		
		overflow: hidden;
	}
	
	#top-movie .top-movie-video .top-movie-player-parent iframe
	{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	
	#top-movie .top-movie-video .close-button-area
	{
		margin: 0 5%;
	}
	
	#top-movie .top-movie-video .close-button-area .close-button img
	{
		width: 25px;
		height: 25px;
	}
}