@charset "utf-8";

/* Loading背景画面設定　*/
#splash {
	/*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99999;
	text-align: center;
	color: #fff;
}

/* Loading画像中央配置　*/
#splash_text {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 999;
	transform: translate(-50%, -50%);
	color: #fff;
	width: 100%;
}


/*割れる画面のアニメーション*/
.loader_cover {
	width: 100%;
	height: 50%;
	background: #9b9898;
	transition: all .2s cubic-bezier(.04, .435, .315, .9);
	transform: scaleY(1);
}

/*上の画面*/
.loader_cover-up {
	transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
	position: absolute;
	bottom: 0;
	transform-origin: center bottom;
}

/*クラス名がついたらY軸方向に0*/
.coveranime {
	transform: scaleY(0);
}


.btn_std {
	/*ボタンの形状*/
	display: inline-block;
	padding: 10px 60px;
	margin: 20px 0 0 0;
	border-radius: 30px;
	text-decoration: none;
	border: 1px solid #fff;
	color: #fff;
	/*アニメーションの指定*/
	transition: all 0.4s ease-out;
}


/*hoverした際、色と影表示*/
.btn_std:hover {
	/*ボタンの形状：ボーダーラインを透明*/
	border-color: transparent;
	color: #666;
	/*背景の色と形状*/
	/* background: #7af8db; */
	background-color: #fff;
	background-position: right center;
	/*ボックスの影*/
	box-shadow: 0 5px 10px rgba(11, 9, 10, 0.4);

}

/*===========================================================*/
/*ゆっくりズームアウト全画面表示*/
/*===========================================================*/
#slider {
	height: 100vh;
	/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}



/*===モーダル表示のためのcss　*/

.hide-area {
	/*モーダル表示をする場所をあらかじめ隠す*/
	display: none;
}

.modaal-fullscreen .modaal-content-container {
	/*full画面の色設定*/
	background: #666;
	color: #fff;
	text-align: center;
}

.modaal-fullscreen .modaal-close {
	/*ボタンの色、位置*/
	background: none;
	right: 20px;
}

/*クローズボタンの×の色変更*/
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
	background: #666;
}

/*キャプション*/
.caption {
	display: block;
	padding: 10px 0;
}

/*画像の横幅を100%にしてレスポンシブ化*/
.modaal-content-container img {
	width: 100%;
	max-width: 700px;
	height: auto;
	vertical-align: bottom;
	/*画像の下にできる余白を削除*/
}


/* ぼかしから出現 */
.blur {
	animation-name: blurAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes blurAnime {
	from {
		filter: blur(10px);
		transform: scale(1.02);
		opacity: 0;
	}

	to {
		filter: blur(0);
		transform: scale(1);
		opacity: 1;
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
	opacity: 0;
}


/* テキストが1文字ずつ出現*/
.eachTextAnime span {
	opacity: 0;
}

.eachTextAnime.appeartext span {
	animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* スクロール1画面移動*/
.box {
	padding: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#box1 {
	background: url("../img/prof.jpg") no-repeat center;
	background-size: cover;
}

#box1.box {
	justify-content: flex-start;
}

@media screen and (max-width:768px) {
	#box1.box {
		justify-content: center;
	}
}

#box2 {
	background: url("../img/nature_1.jpg") no-repeat center;
	background-size: cover;
}

#box3 {
	background: url("../img/born_1.jpg") no-repeat center;
	background-size: cover;
}

#box4 {
	background: url("../img/stage_4.jpg") no-repeat center;
	background-size: cover;
}

#box5 {
	background: url("../img/contact.jpg") no-repeat center;
	background-size: cover;
}

#box6 {
	background: url("../img/price_1.jpg") no-repeat center;
	background-size: cover;
}

/*========= ページネーションCSS ===============*/

.pagination {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1em;
	z-index: 10;
	list-style: none;
}

.pagination a {
	display: block;
	height: 20px;
	margin-bottom: 5px;
	color: #fff;
	position: relative;
	padding: 4px;
}

.pagination a.active:after {
	box-shadow: inset 0 0 0 5px;
}

.pagination a .hover-text {
	position: absolute;
	right: 15px;
	top: 0;
	opacity: 0;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	padding-right: 15px;
}

.pagination a:hover .hover-text {
	opacity: 1;
}

.pagination a:after {
	-webkit-transition: box-shadow 0.5s ease;
	transition: box-shadow 0.5s ease;
	width: 10px;
	height: 10px;
	display: block;
	border: 1px solid;
	border-radius: 50%;
	content: '';
	position: absolute;
	margin: auto;
	top: 0;
	right: 3px;
	bottom: 0;
}

@media screen and (max-width:768px) {
	.pagination a .hover-text {
		display: none;
	}
}