/* CSS Document */

div.news_wrap > div.news_block > article.wcvisible figure img{
	animation: fade 2.3s cubic-bezier(.115,.405,.24,1) 0s forwards;
}
/*ページタイトル*/
section.page_title h2.contents_title_center::before{
  content: "News"
}
/*コンテンツ*/
div.news_wrap{
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.news_wrap{
  padding: var(--headerHeight) 7vw calc(26vw + 1rem) 7vw;
}
body[wc-view-type="tb"] div.news_wrap{
  padding: var(--headerHeight) 10vw calc(var(--headerHeight) * 2.5) 10vw;
}
body[wc-view-type="tb-l"] div.news_wrap{
  padding: var(--headerHeight) 10vw calc(var(--headerHeight) * 1.2) 10vw
}
body[wc-view-type="pc"] div.news_wrap{
  padding: var(--headerHeight) calc((100vw - 1100px) / 2) calc(var(--headerHeight) + 120px) calc((100vw - 1100px) / 2);
}
div.news_wrap > div.news_block{
  display: flex;
  flex-wrap: wrap;
}
body[wc-view-type="sp"] div.news_wrap > div.news_block{
  flex-direction: column;
}
div.news_wrap > div.news_block article{
	box-sizing: border-box;
	display: flex;
	flex-direction: column-reverse;
	flex: none;
	position: relative;
	z-index: 1;
}
body[wc-view-type="sp"] div.news_wrap > div.news_block > article{
  margin-bottom: 2.5rem;
  width: 100%;
}
body[wc-view-type="sp"] div.news_wrap > div.news_block > article:last-of-type{
  margin-bottom: 0;
}
body:not([wc-view-type="sp"]) div.news_wrap > div.news_block > article{
  margin: 0 0.75rem 1.5rem 0.75rem;
}
body[wc-view-type="tb"] div.news_wrap > div.news_block > article{
  width: calc((100% / 2) - 1.5rem);
}
body[wc-view-type="tb-l"] div.news_wrap > div.news_block > article{
  width: calc((100% / 3) - 1.5rem);
}
body[wc-view-type="pc"] div.news_wrap > div.news_block > article{
  width: calc((100% / 3) - 1.5rem);
}
div.news_wrap > div.news_block > article div.n_text{
	display: flex;
	flex-direction: column-reverse;
}
div.news_wrap > div.news_block > article div.n_text h2{
	font-size: 1.25rem;
	font-weight: 300;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  z-index: 1;
  padding-right: 2.25rem;
  box-sizing: border-box;
	line-height: 1em;
  height: 1.5rem;
}
div.news_wrap > div.news_block > article div.n_text h2::after{
content: "";
  width: 2.5rem;
  height: 2.2rem;
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background-color: #333;
  -webkit-mask-image: url("/img/svg/arrow.svg");
  mask-image: url("/img/svg/arrow.svg");
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: var(--headerBtnSize);
  mask-size: var(--headerBtnSize);
}
div.news_wrap > div.news_block > article div.n_text time{
	font-family: "Number";
	font-size: 0.95rem;
	margin-top: 0.5rem;
	text-align: right;
}
div.news_wrap > div.news_block > article figure{
}
div.news_wrap > div.news_block > article figure picture{
	width: 100%;
	height: 100%;
	display: block;
}
div.news_wrap > div.news_block > article figure img{
	width: 100%;
	height: auto;
	aspect-ratio: 1.168 / 1;
	object-fit: cover;
	opacity: 0;
}
div.news_wrap > div.news_block > article.wcvisible figure img{
	-webkit-mask-image: url("/img/animation/ani_image.webp");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 200%;
  -webkit-mask-position: center bottom;
  z-index: 0;
  mask-image: url("/img/animation/ani_image.webp");
  mask-mode: alpha;
  mask-position: center bottom;
  mask-repeat: no-repeat;
  mask-size: auto 200%;
  opacity: 1;
}
div.news_wrap > div.news_block > article a{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	display: block;
  box-sizing: border-box;
}
/*ページャー*/
div.pager{
  margin: 1rem 0 0 0;
}
div.pager > ul{
  display: flex;
  list-style: none;
  list-style-position: outside;
  justify-content: center;
}
div.pager > ul li{
}
div.pager > ul li a,
div.pager > ul li p{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #969ba0;
}
div.pager > ul li p{
}
div.pager > ul li a{
  text-decoration: none;
}
div.pager > ul li p.active{
  color: #333;
}
div.pager > ul li.prev{
}
div.pager > ul li.next{
}
div.pager > ul li.prev a,
div.pager > ul li.next a{
  position: relative;
  z-index: 1;
}
div.pager > ul li.prev a::before,
div.pager > ul li.next a::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  -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: 40px;
  height: 40px;
  background-color: #333;
}
div.pager > ul li.prev a::before{
  left: 0;
}
div.pager > ul li.next a::after{
  right: 0;
}
