/* CSS Document */

section.page_title > h2::before{
  content: "News";
}
div.news_wrap{
  padding: var(--headerHeight) 0;
  box-sizing: border-box;
  background-color: #f7f0e6;
  border-bottom: 1px solid #190c01;
}
body[wc-view-type="sp"] div.news_wrap{
  padding: var(--headerHeight) 10vw;
}
body[wc-view-type="tb"] div.news_wrap{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb-l"] div.news_wrap{
  padding: var(--headerHeight) 8vw;
}
div.news_wrap > p{
  line-height: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  text-align: center;
}
div.news_wrap div.news_block{
}
body[wc-view-type="pc"] div.news_wrap div.news_block{
  width: 750px;
  margin: 0 auto;
}
div.news_wrap div.news_block > article{
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #190c01;
  -webkit-transition: opacity 800ms linear;
  transition: opacity 800ms linear;
  opacity: 0;
}
div.news_wrap div.news_block > article.wcvisible{
  opacity: 1;
}
div.news_wrap div.news_block > article:nth-of-type(1){
  border-top: 1px solid #190c01;
}
div.news_wrap div.news_block > article a{
  display: block;
  padding: 1.25rem 2.5rem 1.25rem calc(100px + 1.25rem);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
body[wc-view-type="sp"] div.news_wrap div.news_block > article a{
  padding: 1.25rem 2.5rem 1.25rem calc(70px + 1.25rem);
}
div.news_wrap div.news_block > article a::after{
  content: "";
  position: absolute;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  -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;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  background-color: #190c01;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
div.news_wrap div.news_block > article h2{
  color: #190c01;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1em;
  font-weight: 300;
}
div.news_wrap div.news_block > article > time{
  color: #190c01;
  font-family: "Number";
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  z-index: -1;
  font-size: 1.1rem;
  line-height: 1em;
}
body[wc-view-type="sp"] div.news_wrap div.news_block > article > time{
  font-size: 1rem;
}
