/* visual */
.visual{
	/* background: url(/include/img/visual01.jpg) no-repeat center / cover; */
	width: 100%;
	height: 150vh;
	position: relative;
	background-attachment: fixed;
}

.visual .bgBox{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}

.visual .bgBox .bgImg{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}

.visual .bgBox img{
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	width: auto !important;
	max-width: none;
	height: 100vh !important;
	/* width: 100%; */
	display: none;
}

.visual .bgBox video{
	
}

.visual .txtBox{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	text-align: center;
	opacity: 0;
	transition: all 0.4s;
	z-index: 3;
}

.quick .visual .txtBox{
	opacity: 1;
}

.visual .txtBox h2{
	width: 100%;
	font-size: 48px;
	color: #fff;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 30px;
	transition: all 1s;
	opacity: 0;
	transform: translateY(15px);
}

.quick .visual .txtBox h2{
	opacity: 1;
	transform: translateY(0px);
}

.visual .txtBox p{
	width: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 30px;
	line-height: 1.5;
	transition: all 1s;
	opacity: 0;
	transform: translateY(15px);
}

.quick .visual .txtBox p{
	opacity: 1;
	transform: translateY(0px);
}



/* ----------------------------------------------------------720 */
@media screen and (max-width: 720px){

/* visual */
.visual{
	/* background: url(/include/img/visual01_m.jpg) no-repeat center / cover; */
	background-attachment: fixed;
}

.visual .txtBox h2{
	font-size: 7vw;
	margin-bottom: 5vw;
}

.visual .txtBox p{
	font-size: 4vw;
}


}