.fade {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.5s, transform 1s;
}.fade.active {
	opacity: 1;
	transform: translateY(0px);
}

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

.yurayura{
	text-align: center;
	   /*⬇︎⬇︎2秒ごとに画像が動くようになっている*/
 animation: fluffy1 2s ease infinite; 
}
@keyframes fluffy1 {
  0% {
    transform: translateY(0); }
  5% {
    transform: translateY(0); }
  10% {
    transform: translateY(0); }
  20% {
    transform: translateY(-10px); }
  25% {
    transform: translateY(0); }
  30% {
    transform: translateY(-10px); }
  50% {
    transform: translateY(0); }
  100% {
    transform: translateY(0); }
}

/* widget全体の設定 */
.btn-area {
  position: relative;
  /* 横幅 */
  width: 100%;
  /* 最大幅 */
  max-width: 100%;
  /* 高さ */
  height: auto;
  /*真ん中寄せにしない場合は下記削除*/
  margin: 0 auto;
}
/* ボタンの設定 */
.btn {
  /* 外側の余白 */
  margin: 0 auto;
  /* 内側の余白 */
  display: block;
  position: relative;
  /* アニメーションの速さ */
  transition: opacity 0.2s;
  /* 透明度 */
  opacity: 1;
  /*アニメーション。変化の対象、変化の始まりから終わりまでの時間、変化の仕方の順に指定*/
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  text-decoration: none;
  border: none;
  box-sizing: border-box;
  outline: none;
  overflow: hidden;
}
/* ボタンホバー時 */
.btn:hover {
  /* 透明度 */
  opacity: 0.8;
}
/*ボタンの上にカーソルを乗せた時*/
.btn:hover {
  /*ボタンの上にカーソルを乗せた時の文字の色*/
  color: #825121;
  /*ボタンの上にカーソルを乗せた時の背景色を指定*/
 
  text-decoration: none;
}
 .btn:before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  /*きらりと光るアニメーションのスタート位置*/
  left: 0;
  /*きらりと光るアニメーションの幅*/
  width: 100px;
  /*きらりと光るアニメーションの高さ*/
  height: 100%;
  /*きらりと光るアニメーションの色*/
  background-color: #fff;
  /*きらりと光るアニメーションの指定*/
  animation: shiny-brite 3s ease-in-out infinite;
}
/*ボタンを押した時に凹むアニメーション*/
.btn:active {
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .3),
    -4px -4px 6px 0 rgba(116, 125, 136, .2),
    inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}
@-webkit-keyframes shiny-brite {
  /*光るアニメーションの流れに沿った中間ステップのキーフレーム指定*/
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}