.voice {
  margin-top: 45px;
}
.voice__item {
  position: relative;
  margin-bottom: 20px;
  padding: 3px;
  border-radius: 20px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
}
.voice__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff9835),
    to(#ff7165)
  );
  background: linear-gradient(90deg, #ff9835 0%, #ff7165 100%);
  border-radius: 20px;
}
.voice__item:last-of-type {
  margin-bottom: 0;
}
.voice__inner {
  z-index: +1;
  position: relative;
  padding: 15px 5% 20px;
  background-color: #fff;
  border-radius: 18px;
}
.voice__category {
  margin-left: 1em;
  padding: 2px 6px;
  background-color: #fa4033;
  color: #fff;
}
.voice__category.is-nursing {
  background-color: #ff9104;
}
.voice__ttl {
  margin-bottom: 0.8em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.voice__txt {
  line-height: 1.685;
}
.voice__txt span {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(30%, #fff45c),
    color-stop(30%, rgba(255, 244, 92, 0))
  );
  background: linear-gradient(0deg, #fff45c 30%, rgba(255, 244, 92, 0) 30%);
}
@media screen and (min-width: 768px) {
  .voice {
    margin-top: 90px;
  }
  .voice__item {
    margin-bottom: 45px;
    padding: 4px;
    border-radius: 40px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
  }
  .voice__item::before {
    border-radius: 40px;
  }
  .voice__inner {
    display: -webkit-box;
    display: flex;
    padding: 40px 40px 45px;
    border-radius: 36px;
  }
  .voice__img {
    width: 174px;
  }
  .voice__contents {
    -webkit-box-flex: 1;
    flex: 1;
  }
  .voice__category {
    padding: 3px 10px;
  }
  .voice__ttl {
    margin-top: 0.8em;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .voice__img {
    width: 60px;
    margin-bottom: 10px;
  }
  .voice__name {
    position: absolute;
    top: 35px;
    left: calc(5% + 70px);
  }
}
