/*--------------------------------------------------------------
# 一覧
--------------------------------------------------------------*/
#voice_archive .container {
}
#voice_archive .link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;

  & li {
    text-align: center;
  }
}
.archive_group{
  line-height: 1;
}
.archive_entering {
  line-height: 1;
  &::before {
    content: "／";
  }
}
.archive_name {
  display: block;
  font-size: clamp( 2rem, calc( 1.657142857142857rem + 0.9523809523809524vw ), 2.8rem );
  line-height: 1;
  margin: 0.1em 0 0.2em;
}
.archive_role {
  line-height: 1;
}
/*--------------------------------------------------------------
# 記事
--------------------------------------------------------------*/
.voice_content {
  padding-top: 0;
}
.voice_content .content_block + .content_block {
  margin-top: 8rem;
  @media (min-width:768px) {
    margin-top: 12rem;
  }
}
.voice_content .group {
  color: var(--key-color);
}
.voice_content .entering {
  color: var(--key-color);
  &::before {
    content:"／";
  }
}
.voice_content .name {
  color: var(--key-color);
  font-size: var(--fs-page-title);
  line-height: 1;
  margin: 0.2em 0;
}
.voice_content .role {
  color: var(--key-color);
}
.voice_content .work {
  & dt {
    line-height: 1.56;
    width: fit-content;
    margin: 1.5em 0 0.5em;
    padding: 0 1em;
    border: 0.1rem solid;
  }
  & dd {
    line-height: 1.56;
  }
}
.voice_content .question {
  display: flex;
  font-size: var(--fs-large);
  line-height: 1.5;
  align-items: center;
  margin-bottom: 1.5rem;
  &::before {
    display: inline-block;
    content: "Q";
    color: var(--key-color);
    font-family: var(--ff-en);
    font-size: clamp( 3rem, calc( 1.7142857142857146rem + 3.571428571428571vw ), 6rem );
    margin-right: 1.5rem;
  }
}
.voice_content .answer + .question {
  margin-top: 5rem;
  @media (min-width:768px) {
    margin-top: 7rem;
  }
}
.voice_content .img_wrap {
  margin-top: 3rem;
  @media (min-width:768px) {
    margin-top: 0;
  }
  & img + img {
    margin-top: 3rem;
  }
}
@media (min-width:768px) {
  .voice_content .profile {
    justify-content: left;
    align-items: center;
    .text_wrap {
      max-width: 37rem;
    }
    .img_wrap {
      width: auto;
      margin-right: calc(50% - 47vw);
    }
  } 
  .voice_content .interview {
    .text_wrap {
      width: 50%;
    }
    .img_wrap {
      width: 43%;
    }
  } 
}
/*--------------------------------------------------------------
# その他の先輩
--------------------------------------------------------------*/
.other {
  padding-top: 8rem;
  background: var(--bg-bage);
}
.other .other_title {
  font-family: var(--ff-en);
  font-size: 3rem;
}
.other .voice_list {
  counter-reset: count 0;
  padding: 3rem 0;
  border-bottom: 0.2rem solid var(--key-color);
  & li {
    counter-increment: count 1;
    width: fit-content;
    & a {
      color: var(--fc-base);
      position: relative;
      &::before {
        content: "Interview "counter(count,decimal-leading-zero);
        color: var(--key-color);
        font-family: var(--ff-en);
        writing-mode: vertical-lr;
        position: absolute;
        top: 0;
        left: 0;
      }
    }
  }
}
.other .text_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 2rem;

  &::after {
    display: block;
    content: "";
    width: 21%;
    aspect-ratio: 56 / 37;
    background: url(/assets/img/common/link_arrow.svg) no-repeat center /contain;
  }
}
