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

.bottom-coupon-sp {
position: fixed;
    z-index: 999;
    bottom: 80px;
    right: 10px;
    width: 120px;
	animation: floatUpDown 3s ease-in-out infinite;
}

@media screen and (min-width: 761px) {
.bottom-coupon-sp {
    bottom: 20px;
    right: 10px;
    width: 140px;
}
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* 上に10px */
  }
  100% {
    transform: translateY(0);
  }
}

/* パネルの出勤状態の色 */
/*
.c-list-therapist__status--notime {
  background: rgba(255, 116, 159, 0.8);
}

.c-list-therapist__status--reservable {
  background: rgba(80, 163, 193, 0.9);
}

.c-list-therapist__status--soldout {
  background: rgba(173, 56, 56, 0.9);
}

.c-list-therapist__status--end {
  background: rgba(100, 100, 100, 0.9);
}

.c-list-therapist__status--work {
  background: rgba(204, 157, 0, 0.9);
}

.c-list-therapist__status--today {
  background: rgba(83, 193, 142, 0.8);
}

.c-list-therapist__status--notime {
  background: rgba(100, 100, 100, 0.9);
}

.c-list-therapist__status--reservable {
  background: rgba(255, 30, 30, 0.9);
}

.c-list-therapist__status--soldout {
  background: rgba(100, 100, 100, 0.9);
}

.c-list-therapist__status--end {
  background: rgba(100, 100, 100, 0.9);
}

.c-list-therapist__status--work {
  background: rgba(255, 30, 30, 0.9);
}

.c-list-therapist__status--today {
  background: rgba(255, 30, 30, 0.9);
}
*/
/* パネルの出勤状態の色 */


