@charset "utf-8";
/* CSS Document */
/*　ーー　ローディング画面　ーー　*/

#loading {
	position: fixed;
	top: 0;
	left: 0;
	background: url("../images/main_image.webp") no-repeat 100% top;
	background-size: cover;
	width: 100%;
	height: 100vh;
	z-index: 999999;
}
#loading::before {
	content: '';
  	background: inherit;
	-webkit-filter: blur(25px);
	filter: blur(25px);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}
#loading .loading {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 80%;
	max-width: 300px;
	height: auto;
	animation: 1s fadeIn;
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/*　ーー　/ローディング画面　ーー　*/

/*　ーー　ハンバーガーメニュー　ーー　*/
.openbtn {
	cursor: pointer;
    width: 58px;
}
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
	transform: translateX(-50%);
    height: 2px;
    border-radius: 5px;
	background: #1d9894;
  	width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top: 19px;
}
.openbtn span:nth-of-type(2) {
	top: 28px;
}
.openbtn span:nth-of-type(3) {
	top: 37px;
}
.openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 50%;
    transform: translate(-50%,6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 33px;
    left: 50%;
    transform:  translate(-50%,-6px) rotate(45deg);
    width: 30%;
}
/*　ーー　/ハンバーガーメニュー　ーー　*/

/*　ーー　fadeUp　ーー　*/
.fuwa_scroll_fadeUp {
	opacity: 0;
	transition: translate all 0.5s;
}
.fuwa_scroll_fadeUp.active {
	opacity: 1;
	animation-name: fadeUpAnime;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}





