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

/*　ーー　ローディング画面　ーー　*/
.loading {
    background: #ffdce5;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: 999999;
    transition: opacity 1s ease;
}
.falling {
    position: absolute;
    top: -50px;
    left: 50%;
    font-size: 50px;
    animation: fall 3s infinite linear;
}
@keyframes fall {
  0% {
    transform: translateY(-100px) rotate(0);
  }
  100% {
    transform: translateY(100vh) rotate(360deg)
      ;
  }
}
#container {
    display: none; /* 初期状態では非表示 */
    opacity: 0; /* フェードイン用 */
    transition: opacity 1s ease; /* フェードイン時のトランジション */
    width: 100%;
    height: auto;
}

/*　ーー　header　ーー　*/
header {
	top: -150px;
	opacity: 0;
	transition: all 0.5s ease-out;
}
header.header_active {
	top: 0;
	opacity: 1;
	transition: all 0.5s ease-out;
}
header .humbergar_menu.active {
	display: block;
	opacity: 1;
}


/*　ーー　ハンバーガーメニュー　ーー　*/
.openbtn{
	position: relative;
	background: #ffffff;
	cursor: pointer;
    width: 48px;
    height: 48px;
	border-radius: 50%;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
	transform: translateX(-50%);
    height: 2px;
    border-radius: 5px;
	background: #241d1b;
  	width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top:17px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:29px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    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: 30px;
    left: 50%;
    transform:  translate(-50%,-6px) rotate(45deg);
    width: 30%;
}
/*　ーー　/ハンバーガーメニュー　ーー　*/

/*　ーー　イラストパターン　ーー　*/
@keyframes scrollBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -468px 0;
  }
}
/*　ーー　/イラストパターン　ーー　*/

/*　ーー　スライダー　ーー　*/
#pickup .slider_pickup .slick-dots {
    bottom: -50px;
}
#pickup .slider_pickup .slick-dots li {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: none;
    padding: 0;
    margin: 0 1em 0 0;
}
#pickup .slider_pickup .slick-dots li:last-of-type {
    margin: 0;
}
#pickup .slider_pickup .slick-dots li.slick-active button:before {
    color: #672421;
}
#pickup .slider_pickup .slick-dots li button:before {
    font-size: 25px;
    width: 25px;
    height: 25px;
    color: #ffffff;
    opacity: 1;
}
.slick-dots li button {
    width: 25px;
    height: 25px;
}
/*　ーー　/スライダー　ーー　*/



/*　ーー　fadeUp　ーー　*/
.fuwa_scroll_fadeUp {
	opacity: 0;
	transform: translate(0,30);
	transition: translate all 0.5s;
}
.fuwa_scroll_fadeUp.active {
	opacity: 1;
	transform: translate(0,0);
	animation-name: fadeUpAnime;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/*　ーー　/fadeUp　ーー　*/

/*　ーー　回転　ーー　*/
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(720deg);
    }
}

.rotate {
    animation: rotate 0.5s linear forwards;
}
/*　ーー　/回転　ーー　*/

/*　ーー　bound　ーー　*/
.bound {
  animation: bound 3s infinite;
}
@keyframes bound {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-25px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-15px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}
/*　ーー　/bound　ーー　*/

@media screen and (max-width: 769px) {
	/*　ーー　スライダー　ーー　*/
    #pickup .slider_pickup .slick-dots {
        bottom: -30px;
    }
    #pickup .slider_pickup .slick-dots li {
        width: 20px;
        height: 20px;
    }
    #pickup .slider_pickup .slick-dots li button:before {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
    .slick-dots li button {
        width: 20px;
        height: 20px;
    }
    /*　ーー　/スライダー　ーー　*/
}
@media screen and (max-width: 480px) {
    /*　ーー　スライダー　ーー　*/
    #pickup .slider_pickup .slick-dots {
        bottom: -25px;
    }
    #pickup .slider_pickup .slick-dots li {
        width: 15px;
        height: 15px;
    }
    #pickup .slider_pickup .slick-dots li button:before {
        font-size: 15px;
        width: 15px;
        height: 15px;
    }
    .slick-dots li button {
        width: 15px;
        height: 15px;
    }
    /*　ーー　/スライダー　ーー　*/
    
}






