hr {
  margin-top: 5rem;
}
@media (768px <= width) {
  hr {
    margin-top: 12rem;
  }
}

.voice-item {
  margin-top: 5rem;
  padding: 0 2rem 8rem;
  position: relative;
}
@media (768px <= width) {
  .voice-item {
    padding: 0 max(50% - 80rem, 6rem) 12rem;
    display: grid;
  }
}
.voice-item:nth-child(1 of .voice-item) {
  margin-top: 8rem;
}
@media (768px <= width) {
  .voice-item:nth-child(1 of .voice-item) {
    margin-top: 12rem;
  }
}
.voice-item:nth-of-type(even) {
  --imgrs: 12rem 2rem 2rem;
  --bgrs: 2rem 0 0 12rem;
}
@media (768px <= width) {
  .voice-item:nth-of-type(even) {
    --imgrs: 16rem 2rem 2rem;
    --bgrs: 3rem 0 0 16rem;
    --left: max(50% - 60rem, 12rem);
    --right: 0;
    grid-template-columns: calc(50% + 16rem) auto;
    --img: 1;
    --text: 2;
    --padding: 0 0 0 clamp(6rem, calc(120 / 800 * 100%), 12rem);
  }
}
.voice-item:nth-of-type(odd) {
  --imgrs: 2rem 12rem 2rem 2rem;
  --bgrs: 0 2rem 12rem 0;
}
@media (768px <= width) {
  .voice-item:nth-of-type(odd) {
    --imgrs: 2rem 16rem 2rem 2rem;
    --bgrs: 0 3rem 16rem 0;
    --left: 0;
    --right: max(50% - 60rem, 12rem);
    grid-template-columns: auto calc(50% + 16rem);
    --img: 2;
    --text: 1;
    --padding: 0 clamp(6rem, calc(120 / 800 * 100%), 12rem) 0 0;
  }
}
.voice-item::before {
  content: "";
  border-radius: var(--bgrs);
  position: absolute;
  top: 10rem;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: var(--color-bg);
}
@media (768px <= width) {
  .voice-item::before {
    top: 12rem;
    left: var(--left);
    right: var(--right);
  }
}
.voice-item__img-wrap img {
  border-radius: var(--imgrs);
}
@media (768px <= width) {
  .voice-item__img-wrap {
    order: var(--img);
  }
}
.voice-item__textbox {
  margin-top: 3rem;
  padding: 0 2rem;
}
@media (768px <= width) {
  .voice-item__textbox {
    margin-top: 6rem;
    order: var(--text);
    padding: var(--padding);
  }
}
.voice-item__no {
  color: var(--color-green);
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
.voice-item__no .lbl {
  font-size: 1.3rem;
  font-weight: 400;
}
@media (768px <= width) {
  .voice-item__no .lbl {
    font-size: 2rem;
  }
}
.voice-item__no .no {
  font-size: 4.4rem;
  letter-spacing: -0.04em;
}
@media (768px <= width) {
  .voice-item__no .no {
    font-size: 6.8rem;
  }
}
.voice-item__tag {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
}
@media (768px <= width) {
  .voice-item__tag {
    margin-top: 8.6rem;
    gap: 1rem;
  }
}
.voice-item__tag span {
  border-radius: 100rem;
  font-size: 1.3rem;
  line-height: 100%;
  padding: 0.6rem 1.5rem;
}
@media (768px <= width) {
  .voice-item__tag span {
    font-size: 1.5rem;
  }
}
.voice-item__tag span:nth-child(1) {
  border: 1px solid currentColor;
}
.voice-item__tag span:nth-child(2) {
  background: var(--color-gray);
  color: #fff;
}
.voice-item__title {
  margin-top: 2rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 166%;
}
@media (768px <= width) {
  .voice-item__title {
    margin-top: 4rem;
    font-size: 4rem;
  }
}
.voice-item__link {
  margin-top: 3rem;
}
@media (768px <= width) {
  .voice-item__link {
    margin-top: 6rem;
    width: 32rem;
  }
}