/* CSS Document */
div.news_area{
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.news_area{
  padding: var(--headerHeight) 7vw calc(var(--headerHeight) + 16vw) 7vw;
}
body[wc-view-type="tb"] div.news_area{
  padding: var(--headerHeight) 8vw calc(var(--headerHeight) + 13vw) 8vw;
}
body[wc-view-type="tb-l"] div.news_area{
  padding: var(--headerHeight) 8vw calc(var(--headerHeight) + 13vw) 8vw;
}
body[wc-view-type="pc"] div.news_area{
  padding: var(--headerHeight) calc((100vw - 1100px) / 2) calc(var(--headerHeight) + 128px) calc((100vw - 1100px) / 2);
}
div.news_area > p{
  font-weight: 300;
  margin-bottom: 1rem;
}
body:not([wc-view-type="sp"]) div.news_area > p{
  text-align: center;
  margin-bottom: 2rem;
}
div.news_wrap{
  display: flex;
  flex-wrap: wrap;
}
div.news_wrap > article{
  width: 51vw;
  flex: none;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  z-index: 1;
}
body[wc-view-type="sp"] div.news_wrap > article{
  width: 100%;
  margin-top: 1rem;
}
body[wc-view-type="tb"] div.news_wrap > article{
  width: calc((100% / 2) - 0.75rem);
}
body[wc-view-type="tb"] div.news_wrap > article:nth-of-type(odd){
  margin-right: 0.75rem;
  margin-top: 1rem;
}
body[wc-view-type="tb"] div.news_wrap > article:nth-of-type(even){
  margin-left: 0.75rem;
  margin-top: 1rem;
}
body[wc-view-type="tb-l"] div.news_wrap > article{
  width: calc((100% / 3) - 1.5rem);
  margin: 0 0.75rem 1rem 0.75rem;
}
body[wc-view-type="pc"] div.news_wrap > article{
  width: calc(275px - 1.5rem);
  margin:1rem 0.75rem 0 0.75rem;
}
div.news_wrap > article > div.news_text{
  display: flex;
  flex-direction: column-reverse;
  padding: 1rem 0.5rem;
  box-sizing: border-box;
}
div.news_wrap > article > div.news_text h1{
  color: #333;
  font-weight: 300;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  z-index: 1;
  padding-right: 1.5rem;
  box-sizing: border-box;
  height: 1.5rem;
}
div.news_wrap > article > div.news_text h1::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  -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: 1.4rem;
  mask-size: 1.4rem;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #333;
}
div.news_wrap > article > div.news_text time{
  font-size: 0.95rem;
  line-height: 1em;
  color: #333;
  font-weight: 300;
  text-align: right;
  margin-bottom: 0.5rem;
}
div.news_wrap > article > figure{
}
div.news_wrap > article > figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.news_wrap > article > figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body[wc-view-type="sp"] div.news_wrap > article > figure img{
  height: 55vw;
}
body[wc-view-type="tb"] div.news_wrap > article > figure img{
  height: 220px;
}
body[wc-view-type="tb-l"] div.news_wrap > article > figure img{
  height: 20.2vw;
}
body[wc-view-type="pc"] div.news_wrap > article > figure img{
  height: 195px;
}
div.news_wrap > article a{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

/*ページャー*/
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{
  margin: 0 0.25rem;
}
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{
  border:solid 1px #969ba0;
  border-radius:50%;
}
div.pager > ul li a{
  text-decoration: none;
}
div.pager > ul li p.active{
  background-color:#2fb2cf;
  color: #fff;
  border-radius: 50%;
  border:none;
}
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;
  border: solid 1px #969ba0;
  box-sizing: border-box;
  border-radius: 50%;
}
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;
}
