/*************************************************

voice-list

*************************************************/
.voice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem 0;
  width: min(105rem, 100% - 2rem);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .voice-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.voice-list__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(50% - 2.5rem);
  padding: 3rem 2rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0.6rem 0.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.6rem 0.6rem 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .voice-list__item {
    width: 100%;
  }
}

.voice-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: #2f4050 solid 1px;
}

.voice-list__head-icon {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 10rem;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .voice-list__head-icon {
    width: 8rem;
  }
}

.voice-list__head-letters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 6rem;
  width: calc(100% - 10rem);
}
@media screen and (max-width: 767px) {
  .voice-list__head-letters {
    gap: 1rem 2.5rem;
    width: calc(100% - 8rem);
  }
}

.voice-list__head-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.voice-list__head-type {
  margin-bottom: 0.5rem;
  padding: 0 1rem;
  font-size: 1.3rem;
  background-color: #D9D9D9;
  border-radius: 10rem;
}

.voice-list__head-text {
  color: #ac1f28;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .voice-list__head-text {
    font-size: 1.6rem;
  }
}

.voice-list__text {
  font-size: 1.4rem;
  font-weight: 700;
}

.voice-list__disc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
  padding: 1.5rem 1rem;
  background-color: rgba(233, 235, 237, 0.4);
  border-radius: 1rem;
}

.voice-list__disc-row {
  width: 100%;
  font-size: 1.4rem;
}

.voice-list__disc-title {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.4285714286em;
  color: #ac1f28;
  font-weight: 700;
}
.voice-list__disc-title::before {
  position: absolute;
  top: 0.5714285714em;
  left: 0;
  display: block;
  content: "";
  width: 0.5714285714em;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ac1f28;
}

.voice-list__disc-body {
  font-weight: 700;
}