.c-return-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  left: 13px;
  bottom: 7px;
  z-index: 9999;
  opacity: 1;
  transition: 0.4s ease;
  background-color: #c3b95d;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  scale: 1.2;
  transform: translate(10px, -10px);
}
@media screen and (max-width: 1279px) {
  .c-return-top {
    left: 13px;
  }
}
@media screen and (max-width: 575px) {
  .c-return-top {
    scale: 1;
    transform: none;
  }
}
.c-return-top__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6px;
  padding: 0 10px;
}
.c-return-top__icon {
  width: 20px;
  height: 20px;
  -webkit-clip-path: polygon(50% 20%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 20%, 0% 100%, 100% 100%);
  overflow: hidden;
  background-color: #ffffff;
  animation: return-top 0.3s infinite linear alternate;
}
.c-return-top__text {
  font-size: 12px;
  text-align: center;
  color: #ffffff;
}

@keyframes return-top {
  0% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0px);
  }
}
.button-1 {
  border: solid 2px #bfbfbf;
  padding: 3px 30px;
  border-radius: 30px;
  transition-duration: 0.3s;
  cursor: pointer;
}
.button-1-post {
  background-color: #bfbfbf;
  color: #ffffff;
}/*# sourceMappingURL=button.css.map */