/* CSS Document */
.news_wrap{
  box-sizing: border-box;
}
body[wc-view-type="sp"] .news_wrap,
body[wc-view-type="tb"] .news_wrap{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb-l"] .news_wrap{
  padding: var(--headerHeight) 10vw;
}
body[wc-view-type="pc"] .news_wrap{
  padding: var(--headerHeight) calc((100vw - 750px) / 2);
}

.news_wrap > a{
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #444455;
  transition: opacity 600ms ease,transform 600ms ease;
  opacity: 0;
  transform: translateY(1rem);
}
.news_wrap > a[inview-state="true"]{
  opacity: 1;
  transform: translateY(0);
}
.news_wrap > a:first-of-type{
  border-top: 1px solid #444455;
}
.news_wrap > a article{
  display: flex;
  box-sizing: border-box;
  padding: 0.5rem 0.75rem;
}
.news_wrap > a article *{
  color: #444455;
}
body[wc-view-type="sp"] .news_wrap > a article{
  flex-direction: column-reverse;
}
body:not([wc-view-type="sp"]) .news_wrap > a article{
  flex-direction: row-reverse;
  padding: 0.75rem 1.75rem;
  align-items: center;
}
.news_wrap > a article time{
  font-family: "Oswald";
  font-weight: 700;
  font-size: 0.9rem;
}
body:not([wc-view-type="sp"]) .news_wrap > a article time{
  width: calc(65px + 1rem);
  flex: none;
}
.news_wrap > a article h1{
  font-weight: 700;
  padding-right: 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body:not([wc-view-type="sp"]) .news_wrap > a article h1{
  width: calc(100% - (65px + 1rem));
}
.news_wrap > a article h1::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -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;
  background-color: #444455;
  width: 1.5rem;
  height: 1.5rem;
  transform: translateY(-50%);
}
/*ページャー*/
.pager_wrap{
  display: flex;
}
body[wc-view-type="sp"] .pager_wrap{
  gap:5px;
  margin-top: 2rem;
}
body:not([wc-view-type="sp"]) .pager_wrap{
  justify-content: space-between;
  width: 450px;
  margin: 2.5rem auto 0 auto;
}
.pager_wrap > div{
  width: 35px;
  box-sizing: border-box;
}
body:not([wc-view-type="sp"]) .pager_wrap > div{
  width: 40px;
}
.pager_wrap > .active,
.pager_wrap > div a{
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald";
  font-size: 1.25rem;
  font-weight: 700;
  width: 35px;
  height: 35px;
}
body:not([wc-view-type="sp"]) .pager_wrap > .active,
body:not([wc-view-type="sp"]) .pager_wrap > div a{
  width: 40px;
  height: 40px;
}
.pager_wrap > .active{
  border:solid 1px #444455;
  color: #444455;
}
.pager_wrap > div a{
  color: #444455;
  text-decoration: none;
}
.pager_wrap > .prev a,
.pager_wrap > .next a{
  position: relative;
  z-index: 1;
}
.pager_wrap > .prev a::before,
.pager_wrap > .next a::before{
  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;
  background-color: #444455;
  width: 35px;
  height: 35px;
  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;
}