/*
  /rakurakucloud/saikenkanri/asset/css/page/p-news-fv.css
  newsページFV＋次セクション用CSS
*/

.p-news {
  & .c-heading-h1 {
    font-size: 30px;
    padding: 0;
    @media screen and (max-width: 840px) {
      font-size: 25px;
    }
  }
  & .m-article-fv__lead {
    width: 100%;
    font-size: 20px;
    text-align: left;
    @media screen and (max-width: 840px) {
      font-size: 18px;
    }
  }
}

/* 右カラムarchive */
.p-news-archive-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 15px 15px 15px 20px;
  background: var(--gray-bg-02);
}
.p-news-archive-item__link {
  position: relative;
  text-decoration: underline;
  color: var(--black);
  font-size: 13px;
  &::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 8px;
    background: var(--gray-03);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    margin: 0 5px 0 0;
    position: relative;
    top: -1px;
  }
  &:hover {
    text-decoration: none;
  }
}
