@charset "utf-8";

.topics_item {
  width: 100%;
  padding: 0.5em 1em 0.8em;
  border-bottom: 2px solid #EAEAEA;
  display: flex;
  align-items: center;
  gap: 0.2em 1em;
  h3 {
    font-weight: normal;
    line-height: 1.8;
  }
  a {
    display: flex;
    align-items: center;
    gap: 0.2em 1em;
    @media screen and (max-width: 767px){
      flex-wrap: wrap;
      flex-direction: column;
      align-items: flex-start;
    }
  }
  &:first-of-type {
    padding-top: 0;
  }
  @media screen and (max-width: 767px){
      flex-wrap: wrap;
      flex-direction: column;
      align-items: flex-start;
    }
}

/* 詳細 */
.topics_txt {
  margin-top: 1em;
  &:first-of-type {
    margin-top: 0;
  }
  a {
    text-decoration: underline;
  }
}