@charset "utf-8";
/* ===================================================================
CSS information

 file name  :  header.css
 style info :  スタイル指定
=================================================================== */
/**********
//backgroundMedia
**********/
.backgroundMedia {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
	color: #fff;
    width: 100%;
    height: 100vh;
	transition: all 2s ease;
}
.backgroundMedia__videos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	transition: all 2s ease;
}
.backgroundMedia__video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.backgroundMedia__src {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    transform: translate(-50%, -50%) translateZ(0);
}
.backgroundMedia .kvTextWrap {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 10;
	text-align: center;
	padding: 0 30px;
	transform: translateY(-50%);
	transition: all 1s ease;
}
.backgroundMedia .kvTextWrap h1 {
	margin-bottom: 70px;
}
.backgroundMedia .kvTextWrap h2 {
	font-size: 26px;
	font-weight: 400;
	line-height: 2;
	margin-bottom: 65px;
}
.backgroundMedia .scrollAttention {
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 5;
	transform: translateX(-50%);
	transition: all 1s ease;
}
.is_scroll .backgroundMedia .kvTextWrap {
	opacity: 0;
}
.is_scroll .backgroundMedia .scrollAttention {
	opacity: 0;
}
@media only screen and (max-width: 1440px) {
}
@media only screen and (max-width: 991px) {
}
@media only screen and (max-width: 768px) {
.backgroundMedia__src {
    height: 100vh;
    min-height: 100vh;
}
}
@media only screen and (max-width: 767px) {
.backgroundMedia .kvTextWrap h1 {
	width: 60vw;
	margin: 0 auto 40px;
}
.backgroundMedia .kvTextWrap h2 {
    font-size: 21px;
	line-height: 1.6;
    margin-bottom: 30px;
}
.backgroundMedia .scrollAttention {
	display: none !important;
}
}
@media only screen and (max-width: 679px) {
}
@media only screen and (max-width: 479px) {
}
@media only screen and (max-width: 320px) {
.backgroundMedia .kvTextWrap h2 {
    font-size: 16px;
}
}
/*PC mobile*/
@media only screen and (orientation: landscape) {
.backgroundMedia .kvTextWrap {
    transform: translateY(-50%);
}
}
@media only screen and (orientation: portrait) {
.backgroundMedia .kvTextWrap {
    transform: translateY(-70%);
}
}
/*SMP*/
@media only screen and (max-device-width:480px) and (orientation:landscape) {
.backgroundMedia .kvTextWrap {
    transform: translateY(-50%);
}
}
@media only screen and (min-device-width:320px) and (orientation:portrait) {
.backgroundMedia .kvTextWrap {
    transform: translateY(-70%);
}
}

