@charset "UTF-8";

/* 背景画像指定 */
.bg01 {background-image: url("../img/bg01_PC.jpg");}
.bg02 {background-image: url("../img/bg02_PC.jpg");}
.bg03 {background-image: url("../img/bg03_PC.jpg");}
.bg04 {background-image: url("../img/bg04_PC.jpg");}
.bg05 {background-image: url("../img/bg05_PC.jpg");}
.bg06 {background-image: url("../img/bg06_PC.jpg");}

/* 中にコンテンツなし・高さ指定をする */
.parallaxBox_Blank {
	width: 100%;
	height: 50vh;
	position: relative;
	overflow: hidden;
}

/* 中にコンテンツあり*/
.parallaxBox_incontents {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.parallaxBox_incontentsH {
	height: 100%;
	position: relative;
	overflow: hidden;
}

/*パララックス共通*/
/*慣性のスピードは「SmoothScroll.min.js」で調整*/
.parallax {
	width: 100%;
	height: calc(100vh + 100px);
	position: absolute;
	left: 0;
	transform: translateY(0);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	will-change: transform;
}

.parallaxH {
	width: 100%;
	height: 80%;
	position: absolute;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	will-change: transform;
}

.parallas_logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 24px;
}

.parallas_logo img {
	width: 150px;
	margin: 0 auto 20px auto;
}

/* ------------------------------------------------------ */
/* Media Query for Tablets */
@media only screen and (max-width : 1024px) {
/* ------------------------------------------------------ */

}

/* ------------------------------------------------------ */
/* Media Query for Tablets */
@media only screen and (max-width : 960px) {
/* ------------------------------------------------------ */
	
}

/* ------------------------------------------------------ */
/* Media Query for FAX */
@media only screen and (max-width : 823px) {
/* ------------------------------------------------------ */

}

/* ------------------------------------------------------ */
/* Media Query for FAX */
@media only screen and (max-width : 820px) {
/* ------------------------------------------------------ */

}

/* ------------------------------------------------------ */
/* Media Query for Lenobo to SmartPhone */
@media only screen and (max-width : 600px) {
/* ------------------------------------------------------ */
/* 背景画像指定 */
.bg01 {background-image: url("../img/bg01_SP.jpg");}

/*パララックス共通*/
/*慣性のスピードは「SmoothScroll.min.js」で調整*/
.bg02 {
	height: 150vh!important;
}

.parallax {
	height: calc(70vh + 100px);
}


}

/* ------------------------------------------------------ */
/* Media Query for FAX iPhoneSE */
@media only screen and (max-width : 320px) {
/* ------------------------------------------------------ */


}