.voice {
  margin-top: 109px;
}

.voice__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.voice__card {
  background-color: #F5F5F5;
  border-radius: 6px;
  padding: 33px 40px 48px;
}

.voice__card.is-color-red {
  border: 1px solid #DC1E37;
}

.voice__card.is-color-blue {
  border: 1px solid #0080C1;
}

.voice__card.is-color-green {
  border: 1px solid #199200;
}

.voice__card.is-color-yellow {
  border: 1px solid #CE7E00;
}

.voice__card-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid;
  margin-bottom: 32px;
}

.is-color-red .voice__card-heading {
  border-color: #DC1E37;
}

.is-color-blue .voice__card-heading {
  border-color: #0080C1;
}

.is-color-green .voice__card-heading {
  border-color: #199200;
}

.is-color-yellow .voice__card-heading {
  border-color: #CE7E00;
}

.voice__card-cat {
  font-size: 22px;
  font-weight: 500;
  color: #FFF;
  padding: 0 16px;
  width: fit-content;
  border-radius: 6px;
  line-height: 1.5;
  margin-bottom: 5px;
}

.is-color-red .voice__card-cat {
  background-color: #DC1E37;
}

.is-color-blue .voice__card-cat {
  background-color: #0080C1;
}

.is-color-green .voice__card-cat {
  background-color: #199200;
}

.is-color-yellow .voice__card-cat {
  background-color: #CE7E00;
}

.voice__card-job {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1px;
}

.voice__card-area {
  font-size: 14px;
  font-weight: 700;
  color: #C1C1C1;
  line-height: 1.3;
}

.voice__card-body {
  display: grid;
  gap: 27px;
}

.voice__card-unit {
  display: grid;
  gap: 8px;
}

.voice__card-q {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.voice__card-q-icon,
.voice__card-q-ttl {
  font-size: inherit;
  display: inline;
}

.is-color-red .voice__card-q {
  color: #DC1E37;
}

.is-color-blue .voice__card-q {
  color: #0080C1;
}

.is-color-green .voice__card-q {
  color: #199200;
}

.is-color-yellow .voice__card-q {
  color: #CE7E00;
}

.voice__card-skill {
  width: fit-content;
  font-size: 16px;
  line-height: 1;
  padding: 8px 14px;
  background-color: #FFF;
  border-radius: 4px;
}

.is-color-red .voice__card-skill {
  border: 1px solid #DC1E37;
  color: #DC1E37;
}

.is-color-blue .voice__card-skill {
  border: 1px solid #0080C1;
  color: #0080C1;
}

.is-color-green .voice__card-skill {
  border: 1px solid #199200;
  color: #199200;
}

.is-color-yellow .voice__card-skill {
  border: 1px solid #CE7E00;
  color: #CE7E00;
}

.voice__card-a {
  font-size: 16px;
  line-height: 1.75;
}

.ease {
  margin-top: 109px;
  padding-bottom: 200px;
}

.ease__unit {
  display: flex;
  justify-content: start;
  align-items: center;
}

.ease__unit.is-reverse {
  flex-direction: row-reverse;
  justify-content: end;
}

.ease__unit-img {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.ease__unit-item {
  position: relative;
}

.ease__unit-ttl {
  font-size: 22px;
  font-weight: 500;
  padding: 7px 32px 9px;
  color: #FFF;
  background-color: #DC1E37;
  border-radius: 30px;
  width: fit-content;
  line-height: 1.4;
  margin-bottom: -24px;
  position: relative;
  z-index: 1;
  margin-left: 33px;
}

.ease__unit-body {
  padding: 48px 32px 32px;
  border-radius: 12px;
  border: 1px solid #DC1E37;
  background-color: #FFF;
  position: relative;
}

.ease__unit-body::before,
.ease__unit-body::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 18px;
  top: 50%;
  transform: translate(0, -50%);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.ease__unit-body::before {
  background-color: #DC1E37;
  right: 100%;
}

.ease__unit-body::after {
  background-color: #FFF;
  right: calc(100% - 2px);
}

.is-reverse .ease__unit-body::before,
.is-reverse .ease__unit-body::after {
  transform: translate(0, -50%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: auto;
}

.is-reverse .ease__unit-body::before {
  background-color: #DC1E37;
  left: 100%;
}

.is-reverse .ease__unit-body::after {
  background-color: #FFF;
  left: calc(100% - 2px);
}

.ease__unit-txt {
  font-size: 16px;
  color: #DC1E37;
}

@media screen and (min-width: 661px) {
  .ease__unit-item {
    margin: 0 0 0 -20px;
  }

  .is-reverse .ease__unit-item {
    margin: 0 -20px 0 0;
  }

}

@media screen and (max-width: 660px) {
  .voice {
    margin-top: 55px;
  }

  .voice__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .voice__card {
    padding: 20px;
  }

  .voice__card-heading {
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .voice__card-icon {
    width: 80px;
  }

  .voice__card-cat {
    font-size: 16px;
  }

  .voice__card-job {
    font-size: 18px;
  }

  .voice__card-area {
    font-size: 13px;
  }

  .voice__card-q {
    font-size: 16px;
  }

  .voice__card-a {
    font-size: 14px;
  }

  .voice__card-skill {
    font-size: 14px;
  }

  .ease {
    margin-top: 55px;
    padding-bottom: 80px;
  }

  .ease__unit {
    flex-direction: column !important;
  }

  .ease__unit-item {
    max-width: 300px;
    margin: -32px auto 0;
  }

  .ease__unit-ttl {
    font-size: 18px;
    padding: 6px 16px;
    margin-left: 16px;
    margin-bottom: -16px;
  }

  .ease__unit-body {
    padding: 32px 16px 16px;
    border-radius: 8px;
  }

  .ease__unit-body::before,
  .ease__unit-body::after {
    display: none;
  }

  .ease__unit-txt {
    font-size: 14px;
  }
}