@charset "utf-8";

/* -----------------------------------------------------
共通
----------------------------------------------------- */

/* -----------------------------------------------------
一覧
----------------------------------------------------- */
.post_list_wrapper.news .post_list {
  flex-flow: column;
  gap: 18px;
}
.post_list_wrapper.news article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.post_list_wrapper.news .title a {
  gap: 8px;
  width: fit-content;
  text-decoration: none;
}
.post_list_wrapper.news .title a:hover span {
  text-decoration: underline;
}
.post_list_wrapper.news .title a span.private_label {
  padding: 0.5em 0.4em;
  font-size: 1.4rem;
  margin-right: 0.7em;
  line-height: 1;
}
.post_list_wrapper.news .title a:hover span.private_label {
  text-decoration: none;
}

.post_list_wrapper.news .date,
.post_list_wrapper.news .category {
  flex-shrink: 0;
}

.post_list_wrapper.news .category {
  padding: 0.2em 0.5em;
}

.post_list_wrapper.news .category p {
  max-width: 14em;
  min-width: 9em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .post_list_wrapper.news .post_list {
    gap: 16px;
  }
  .post_list_wrapper.news article {
    flex-wrap: wrap;
    align-items: center;
    gap: normal;
  }
  .post_list_wrapper.news article:has(.category) {
    gap: 2px 14px;
  }
  .post_list_wrapper.news .category {
    width: fit-content !important;
    max-width: 100%;
  }
  .post_list_wrapper.news .category p {
    max-width: 100%;
    min-width: auto;
  }
  .post_list_wrapper.news .title {
    width: 100%;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray_color_light);
  }
  .post_list_wrapper.news .category + .title {
    margin-top: 0.25em;
  }
}

/* -----------------------------------------------------
詳細
----------------------------------------------------- */
