@charset "UTF-8";
/*/////////////////////////////////////

  社員インタビュー 一覧ページ

////////////////////////////////////*/
@media screen and (min-width:1104px) {
  /* ====================================================
    一覧
  ====================================================*/
  .interview-list {
    display: flex;
    flex-direction: column;
    gap: 32px 0;
  }
  .interview-card {
    border: 1px solid #ddd;
    border-left: 4px solid #004659;
  }
  .interview-card_inner {
    display: flex;
    align-items: center;
    gap: 0 32px;
    padding: 32px;
    text-decoration: none;
  }
  .interview-card_photo {
    flex-shrink: 0;
  }
  .interview-card_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    margin: auto 0 0 auto;
    border-radius: 4px;
    background-color: #1a6bd8;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
  }
  .interview-card_btn::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
    background: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
}
@media screen and (max-width:1103px) {
  /* ====================================================
    一覧
  ====================================================*/
  .interview-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .interview-card {
    border: 1px solid #ddd;
    border-top: 0.4rem solid #222;
  }
  .interview-card_inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.6rem;
    text-decoration: none;
  }
  .interview-card_photo {
    width: 48%;
    margin: 0 auto;
  }
  .interview-card_photo img {
    width: 100%;
    height: auto;
  }
  .interview-card_btn {
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 1rem;
    border-radius: 4px;
    background-color: #1a6bd8;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .interview-card_btn::before {
    content: "";
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    margin-right: 0.8rem;
    background: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
}
