/* CSS Document */
/*ページタイトル*/
.page_title > h2::before{
  content: "NEWS";
}
/*コンテンツ*/
.news_wrap{
  display: flex;
  flex-direction: column;
  gap:1rem;
  box-sizing: border-box;
}
body[wc-view-type="sp"] .news_wrap{
  gap:0.5rem;
  padding: var(--headerHeight) 6vw;
}
body[wc-view-type="tb"] .news_wrap,
body[wc-view-type="tb-l"] .news_wrap{
  padding: var(--headerHeight) 4.5vw;
}
body[wc-view-type="pc"] .news_wrap{
  padding: var(--headerHeight) calc((100vw - 800px) /2);
}
.news_wrap > a{
  display: block;
  text-decoration: none;
  transition: opacity 600ms ease,transform 600ms ease;
  opacity: 0;
  transform: translateY(1rem);
}
.news_wrap > a[inview-state="true"]{
  transform: translateY(0);
  opacity: 1;
}
.news_wrap > a:not(:first-of-type){
  margin-top: 0.75rem;
}
.news_wrap > a article{
  display: flex;
  background-color: #efefef;
  border-radius: 1rem;
  flex-direction: row-reverse;
}
.news_wrap > a article time,
.news_wrap > a article h2{
  box-sizing: border-box;
  color: #121823;
  font-weight: 700;
}
.news_wrap > a article time{
  border-right: 2px solid #fff;
  padding: 1rem 0.75rem 1rem 1rem;
  font-family: "inter";
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  width: 110px;
}
body:not([wc-view-type="sp"]) .news_wrap > a article time{
  width: 150px;
}
.news_wrap > a article h2{
  padding: 1rem 1.55rem 1rem 0.75rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1em;
  width: calc(100% - 110px);
  position: relative;
  z-index: 1;
}
body:not([wc-view-type="sp"]) .news_wrap > a article h2{
  width: calc(100% - 150px);
  padding: 1rem 1.65rem 1rem 0.75rem;
}
.news_wrap > a article h2::after{
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 49%;
  transform: translateY(-50%);
  z-index: 2;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #121823;
  -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;
}
/*ページャー*/
.pager_wrap{
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}
body:not([wc-view-type="sp"]) .pager_wrap{
  width: 400px;
  margin: 2rem auto 0 auto;
}
.pager_wrap > div{
}
.pager_wrap > div,
.pager_wrap > div a{
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "inter";
  font-weight: 700;
  border-radius: 50%;
}
body:not([wc-view-type="sp"]) .pager_wrap > div,
body:not([wc-view-type="sp"]) .pager_wrap > div a{
  width: 40px;
  height: 40px;
}
.pager_wrap > .active{
  color: #fff;
  background-color: #121823;
}
.pager_wrap > div a{
  border: solid 1px #121823;
  box-sizing: border-box;
  border-radius: 50%;
  text-decoration: none;
  color: #121823;
}
.pager_wrap > .prev a,
.pager_wrap > .next a{
  position: relative;
  z-index: 1;
}
.pager_wrap > .prev a::before,
.pager_wrap > .next a::before{
  content: "";
  width: 35px;
  height: 35px;
  background-color: #121823;
  -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;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}

body:not([wc-view-type="sp"]) .pager_wrap > .prev a::before,
body:not([wc-view-type="sp"]) .pager_wrap > .next a::before{
  width: 40px;
  height: 40px;
}