/* Blog post */

.interview_back_btn {
  margin-top: 2rem;
  position: relative;
  border: 1px solid #005bac;
  padding: 0.44rem 1rem 0.44rem 2.33rem;
  width: 10.56rem;
  @media (min-width: 768px) {
    margin-top: 4.44rem;
  }
  .txt {
    display: grid;
    place-content: center;
    color: #005bac;
    font-weight: 500;
    font-size: 0.89rem;
  }
  &::before {
    position: absolute;
    top: 50%;
    left: 0.78rem;
    transform: translateY(-50%) scale(-1);
    display: block;
    content: "";
    background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/arrow_blue_04.svg") no-repeat center / contain;
    width: 0.44rem;
    height: 0.78rem;
  }
}

/* // 社員インタビュー */
.interview_list {
  display: grid;
  gap: 1rem;
  @media (min-width: 768px) {
    margin-top: 3.11rem;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.39rem;
    row-gap: 2.67rem;
  }
}
.interview_item_link {
  display: grid;
  grid-row: span 4;
/*   row-gap: 0.56rem; */
  opacity: 1;
  transition: 0.3s all ease-in-out;
  &:hover {
    opacity: 0.75;
  }
}
.interview_img {
  margin: unset;
  position: relative;
  aspect-ratio: 290 / 212;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  img {
    position: absolute;
    margin: auto;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.interview_name {
  margin: 0.56rem 0 0 0;
  color: #005bac;
  font-weight: 700;
  font-size: 0.89rem;
}
.interview_job-title {
  margin: 0.56rem 0 0 0;
  color: #000000;
  font-weight: 700;
  font-size: 0.89rem;
}
.interview_job-year {
  margin: unset;
  color: #000000;
  font-weight: 700;
  font-size: 0.89rem;
}


/* .blog-post {
  margin: 0 auto;
  max-width: 960px;
}

.blog-post__meta {
  margin-bottom: 1.4rem;
}

.blog-post__meta a {
  text-decoration: underline;
}

.blog-post__timestamp {
  display: block;
}

.blog-post__tags svg {
  height: auto;
  margin-right: 0.35rem;
  width: 15px;
}

.blog-post__tag-link {
  font-size: 0.875rem;
}

/* Blog related posts */

.blog-related-posts {
  background-color: #F8FAFC;
}

.blog-related-posts h2 {
  text-align: center;
}

.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
}

.blog-related-posts__post {
  flex: 0 0 100%;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 1000px) {
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 3);
  }
}

.blog-related-posts__image {
  height: auto;
  max-width: 100%;
}

.blog-related-posts__title {
  margin: 0.7rem 0;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 680px;
}

.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}
 */