/* お気に入りボタン */
.simplefavorite-button {
  cursor: pointer;
  outline: none;
  font-size: 30px;
  color: #f5ba07;
}
.simplefavorite-button span::before {
  font-family: FontAwesome;
  content: '\f006';
}
.simplefavorite-button.active {
  animation: favPop .5s;
}
.simplefavorite-button.active span::before {
  font-family: FontAwesome;
  content: '\f005';
  font-weight: 900;
}
.simplefavorite-button.nonActive {
  animation: favPop2 .5s;
}
.simplefavorite-button.nonActive span::before {
  font-family: FontAwesome;
  content: '\f006';
}
@keyframes favPop {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
}
@keyframes favPop2 {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
}
