.staff-voice-detail-head {
  display: grid;
  grid-template-columns: 71rem 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .staff-voice-detail-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
}
.staff-voice-detail-head__image img {
  border-radius: var(--radius);
  width: 100%;
}
.staff-voice-detail-head__body {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 5rem;
}
@media print, screen and (min-width: 768px) {
  .staff-voice-detail-head__body {
    min-height: 35rem;
  }
}
@media (max-width: 767px) {
  .staff-voice-detail-head__body {
    padding: 2.5rem;
  }
}

.staff-voice-detail__date {
  font-weight: bold;
  line-height: 1.5;
  color: var(--accent2);
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .staff-voice-detail__date {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
}
.staff-voice-detail__name {
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.4583333333;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .staff-voice-detail__name {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
  }
}
.staff-voice-detail__ruby {
  letter-spacing: 0.15em;
  color: var(--accent2);
  margin-bottom: 4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .staff-voice-detail__ruby {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
.staff-voice-detail__info dl {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem 2rem;
  font-weight: bold;
  align-items: center;
}
@media (max-width: 767px) {
  .staff-voice-detail__info dl {
    font-size: 1.4rem;
    gap: 1rem;
    grid-template-columns: 6.2rem 1fr;
  }
}
.staff-voice-detail__info dl dt {
  background-color: var(--accent1);
  padding: 0.3rem;
  text-align: center;
  color: #fff;
  border-radius: 0.5rem;
}
.staff-voice-detail__copy {
  color: var(--accent1);
  font-size: 4.8rem;
  line-height: 1.6666666667;
}
.staff-voice-detail__copy::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 0.5rem;
  background-color: var(--accent1);
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .staff-voice-detail__copy::before {
    width: 2.5rem;
    height: 0.3rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .staff-voice-detail__copy {
    font-size: 2.8rem;
    line-height: 1.4285714286;
  }
}

.staff-voice-detail-question {
  margin-bottom: 10rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "body" "image";
}
@media (max-width: 767px) {
  .staff-voice-detail-question {
    margin-bottom: 5rem;
    grid-template-areas: "image" "body";
  }
}
@media print, screen and (min-width: 768px) {
  .staff-voice-detail-question--type2 {
    display: flex;
    gap: 6rem;
    flex-direction: row-reverse;
  }
  .staff-voice-detail-question--type2 .staff-voice-detail-question__body {
    flex: 1;
  }
  .staff-voice-detail-question--type2 .staff-voice-detail-question__image {
    flex: 0 0 56rem;
    max-width: 56rem;
    margin-top: 0;
  }
}
.staff-voice-detail-question__ruby {
  font-family: var(--font-en);
  letter-spacing: 0.2em;
  color: var(--accent1);
  margin-bottom: 1.5rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .staff-voice-detail-question__ruby {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.staff-voice-detail-question__title {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .staff-voice-detail-question__title {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
}
.staff-voice-detail-question__image {
  grid-area: image;
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .staff-voice-detail-question__image {
    margin-top: 0;
    margin-bottom: 2.5rem;
  }
}
.staff-voice-detail-question__image img {
  border-radius: var(--radius);
  width: 100%;
}
.staff-voice-detail-question__body {
  grid-area: body;
}
