
/*  Project
---------------------------------------------------------- */

/*heroArea*/
.p-heroArea{
	width: 100%;
	height: auto;
	position: relative;
	padding-top: 42.5%;
	overflow: hidden;
	min-width: 1160px;
	min-height: 493px;
}

.p-top_movie{
	position: absolute;
	top:0px; left: 0px;
	width: 100%; height: 100%;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*heroArea__catch*/
.p-heroArea__catch{
	position:absolute;
	left:50%;
	top:50%;
	width: 900px;
	margin-left:-450px;
	margin-top: 0;
	z-index: 1;
	opacity: 0;
	transition: opacity 1.2s 0.6s, margin-top 1.2s 0.6s, margin-left 0.4s, width 0.4s;
}
.p-heroArea__catch.is-appear{
	opacity: 1;
	margin-top: -10%;
}

@media screen and (min-width: 1600px) {
	.p-heroArea__catch{
		width: 1100px;
		margin-left:-550px;
	}
}

/*heroArea__play_mov_btn*/

.p-heroArea__play_mov_btn{
	width: 240px;
	text-align: center;
	position: absolute;
	top:100%;
	left: 50%;
	margin-left: -120px;
	margin-top: -60px;
	opacity: 0;
	transition: all 1s 1.2s;
	border: rgba(255,255,255,0.7) 1px solid;
}
.p-heroArea__play_mov_btn.is-appear{
	opacity: 1;
	margin-top: -100px;
}
.p-heroArea__play_mov_btn a{
	display: block;
	background-color: rgba(0,0,0,0.6);
	padding: 1rem 1rem 1.25rem;
	text-decoration: none;
	font-size: 1.125rem;
	color: #fff;
	line-height: 1;
	transition: background-color 0.3s;
	letter-spacing: 0.04em;
}
.p-heroArea__play_mov_btn a:hover{
	background-color: rgba(0,94,173,1);
}

.p-heroArea__play_mov_btn a::before{
	content: "";
	display: block;
	width: calc(100% + 8px);
	height: calc(100% + 8px);
	box-sizing: border-box;
	position: absolute;
	left: -4px; top:-4px;
	background-color: transparent;
	border: #fff 2px solid;
	border-radius: 3px;
	opacity: 0;
	transition: all 0.3s;
}
.p-heroArea__play_mov_btn:hover a::before{
	opacity: 0.7;
}

