/*-------------------------------
---.voice_contents
-------------------------------*/

.voice_contents .item .serial_number {
  width: 42px;
  height: 42px;
  font-size: 2rem;
}

.voice_contents .item .caption {
  text-align: unset;
  opacity: 1;
}

.voice_contents .item .caption .catch_copy {
  font-size: 1.2rem;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /** webkit以外のフォールバック */
  max-height: calc(1.2em * 2);
}

/*--- large item ---*/
.layout_A1 .item:nth-child(1) .catch_copy, .layout_B3 .item:nth-child(1) .catch_copy, .layout_C2 .item:nth-child(1) .catch_copy,
.layout_A2 .item:nth-child(5) .catch_copy, .layout_B1 .item:nth-child(5) .catch_copy, .layout_C3 .item:nth-child(5) .catch_copy,
.layout_A3 .item:nth-child(3) .catch_copy, .layout_B2 .item:nth-child(3) .catch_copy, .layout_C1 .item:nth-child(3) .catch_copy {
  font-size: 2rem;
  max-height: calc(2em * 2);
}

.voice_contents .item .caption .catch_copy br {
  display: none;
}