.m-like-button-wrap {
  margin-bottom: 56px;
}
.m-like-button-wrap.left {
  text-align: left;
}
.m-like-button-wrap.center {
  text-align: center;
}
.m-like-button-wrap.right {
  text-align: right;
}
.m-like-button-wrap.fixed {
  margin-bottom: 0;
}
.m-like-button-wrap.fixed .m-like-button {
  position: fixed;
  right: 32px;
  bottom: 32px;
}
@media screen and (max-width: 768px) {
  .m-like-button-wrap.fixed .m-like-button {
    right: 10px;
    bottom: 14px;
  }
}

.m-like-button {
  display: inline-block;
  padding: 0 10px;
  user-select:none;
  -webkit-user-select:none;
  -ms-user-select: none;
  -moz-user-select:none;
  -khtml-user-select:none;
  -webkit-user-drag:none;
  -khtml-user-drag:none;
  cursor: pointer;
}

.m-like-button__animation {
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 6px rgba(0,0,0,0.2);
  -webkit-transition: ease box-shadow .4s;
  -o-transition: ease box-shadow .4s;
  background: #ffffff;
  transition: ease box-shadow .4s;
}
.m-like-button__animation:hover {
  -webkit-box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
}
@media screen and (max-width: 768px) {
  .m-like-button__animation {
    width: 60px;
    height: 60px;
    margin-bottom: 6px;
  }
}

.m-like-button__count {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .m-like-button__count {
    font-size: 14px;
  }
}