/* CSS Document */
.news_area{
  box-sizing: border-box;
  background-color: #000;
}
body[wc-view-type="sp"] .news_area,
body[wc-view-type="tb"] .news_area{
  padding: var(--headerHeight) 6vw 0;
}
body[wc-view-type="tb-l"] .news_area{
  padding: var(--headerHeight) 8vw 0;
}
body[wc-view-type="pc"] .news_area{
  padding: var(--headerHeight) calc((100vw - 850px) / 2) 0;
}
.news_area > article{
  position: relative;
  z-index: 1;
}
.news_area > article:first-of-type::before,
.news_area > article::after{
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  z-index: 2;
  left: 0;
  position: absolute;
  transition:all 0.8s ease;
}
.news_area > article[inview-state="true"]:first-of-type::before,
.news_area > article[inview-state="true"]::after{
  width: 100%;
}
.news_area > article:first-of-type::before{
  top: 0;
}
.news_area > article::after{
  bottom: 0;
}
.news_area > article a{
  display: flex;
  flex-direction: row-reverse;
  box-sizing: border-box;
  padding: 1rem;
  text-decoration: none;
  align-items: center;
}
body[wc-view-type="pc"] .news_area > article a{
  padding: 1.25rem 1rem;
  justify-content: flex-end;
}
.news_area > article a h1{
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 1.75rem;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  color: #fff;
  transition:opacity 0.8s 0.5s ease;
  opacity: 0;
  width: calc(100% - 90px);
}
.news_area > article[inview-state="true"] a h1{
  opacity: 1;
}
body[wc-view-type="sp"] .news_area > article a h1{
  width: calc(100% - 80px);
}
.news_area > article a h1::after{
  content: "";
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #fff;
  flex: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.news_area > article a time{
  color: #fff;
  font-family: "Inter";
  flex: none;
  margin-right: 0.75rem;
  transition:opacity 0.8s 0.5s ease;
  opacity: 0;
  width: 90px;
}
.news_area > article[inview-state="true"] a time{
  opacity: 1;
}
body[wc-view-type="sp"] .news_area > article a time{
  width: 80px;
}
