@charset "UTF-8";
/* CSS Document */

/*初期設定*/
/*.bg01{
	background-image: url("../img/parallax_pc01.jpg");
	z-index: -4;
}

.bg02 {
	background-image: url("../img/parallax_pc02.jpg");
	z-index: -3
}

.bg03 {
	background-image: url("../img/parallax_pc03.jpg");
	z-index: -2;
}

.bg04 {
	background-image: url("../img/parallax_pc04.jpg");
	z-index: -1;
}*/

/*パララックスの窓の高さ*/
.viewpoint  {
	min-height: 100vh;
}

/*フェードインの距離*/
/*JSも修正すること*/
.fadein .contents_area,
.fadein .contents_area0 {
	top: 100px;
}

/*最初のフェードインダミー*/
.dispose {
	height: 1px;
}

/*丈夫隙間埋め*/
.whiteBlock {
	background-color: #ffffff;
	display: block;
}

/*トップページの背景色（パララックスなど背景透過がある場合）*/
.index .fadein .contents_area {
	
}

/*以下共通*/
.viewpoint  {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	background-size: cover;
	background-attachment: fixed;
	background-position: center top;
	position: relative;
	overflow: hidden;
}

.new_parallax {
	position: fixed;
	width: 100%;
	height: 120vh;
	z-index: -1;
	bottom: 0;
	opacity: 0;
	background-size: cover;
	background-attachment: fixed;
	background-position: center top;
}


.fadein .contents_area {
	padding: 100px 0;
	position: relative;
	opacity: 0;
    transition: top 1s, opacity 0.5s; /* アニメーションの持続時間を設定 */
	width: 100%;
}

.fadein .contents_area0 {
	padding: 0 0 100px 0;
	position: relative;
	opacity: 0;
    transition: top 1s, opacity 0.5s; /* アニメーションの持続時間を設定 */
	width: 100%;
}

.fadein .noSpace {
	padding: 0;
}

.fadein .in_contents {
	top: -0px;
	opacity: 1;
}

/* ------------------------------------------------------ */
@media only screen and (max-width : 600px) {
/* ------------------------------------------------------ */
.fadein .contents_area {
	padding: 50px 0;
}

}