/*******************************************************************
* JOY FIT 
*******************************************************************/
.joyfit__img:not(:first-child) {
  margin-top: clamp(16px, 1.6666666667vw, 32px);
}

.joyfit__label {
  color: #c31632;
  background: #f9e8ea;
  font-weight: bold;
  font-size: clamp(18px, 1.40625vw, 27px);
  display: inline-block;
  padding: 4px 12px;
}

.joyfit__indent {
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .joyfit__indent {
    padding-left: 0;
    font-size: 13px !important;
  }
}

.joyfit__shop {
  padding-left: 1rem;
  position: relative;
  font-weight: bold;
  color: #c31632;
  margin: 0;
  font-size: 20px;
  margin-bottom: 4px;
}
.joyfit__shop::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 16px solid #c31632;
  border-right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.joyfit__shop:not(:first-child) {
  margin-top: clamp(12px, 1.25vw, 24px);
}

.joyfit__btn-area {
  margin-bottom: 8px;
}

.joyfit__btn {
  background: #c31632;
  color: #f9e8ea;
  display: inline-block;
  width: 368px;
  text-align: center;
  padding: 4px 0;
  border-radius: 3px;
  font-weight: bold;
  transition: all 0.5s ease;
}
@media (any-hover: hover) {
  .joyfit__btn:hover {
    background: #f9e8ea;
    color: #c31632;
  }
}