/* CSS Document */
div.news_wrap{
  background-color: #fff;
  box-sizing: border-box;
  padding: var(--headerHeight) 0;
  border-bottom: 1px solid #00a79e;
}
body[wc-view-type="sp"] div.news_wrap{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb"] div.news_wrap{
  padding: var(--headerHeight) 7.5vw;
}
body[wc-view-type="tb-l"] div.news_wrap{
  padding: var(--headerHeight) 10vw;
}
div.news_wrap > p{
  line-height: 1.8rem;
}
body:not([wc-view-type="sp"]) div.news_wrap > p{
  text-align: center;
}
body[wc-view-type="sp"] div.news_wrap > p{
  margin-bottom: 1.8rem;
}
body[wc-view-type="tb"] div.news_wrap > p{
  margin-bottom: 2rem;
}
body[wc-view-type="tb-l"] div.news_wrap > p,
body[wc-view-type="pc"] div.news_wrap > p{
  margin-bottom: 2.25rem;
}
div.news_box article{
  border-bottom: 1px solid #bbb;
  box-sizing: border-box;
  -webkit-transition: opacity 800ms linear,transform 800ms linear;
  transition: opacity 800ms linear,transform 800ms linear;
  transform: translateY(1rem);
  opacity: 0;
}
div.news_box article.wcvisible{
  opacity: 1;
  transform: translateY(0);
}
div.news_box article:nth-of-type(1){
  border-top: 1px solid #bbb;
}
body[wc-view-type="pc"] div.news_box article{
  width: 800px;
  margin: 0 auto;
}
div.news_box article a{
  display: flex;
  flex-direction: row-reverse;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  text-decoration: none;
  align-items: center;
}
div.news_box article a time,
div.news_box article a h1{
  color: #333;
}
div.news_box article a time{
  font-family: "Number";
  color: #333;
  font-size: 1rem;
}
body[wc-view-type="sp"] div.news_box article a time{
  width:calc(70px + 1rem);
}
body[wc-view-type="tb"] div.news_box article a time{
  width:calc(80px + 1rem);
}
body[wc-view-type="tb-l"] div.news_box article a time,
body[wc-view-type="pc"] div.news_box article a time{
  width:calc(100px + 1rem);
  font-size: 1.2rem;
}
div.news_box article a h1{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 2rem;
  position: relative;
  z-index: 1;
}
body[wc-view-type="sp"] div.news_box article a h1{
  width: calc(100% - (70px + 1rem));
}
body[wc-view-type="tb"] div.news_box article a h1{
  width: calc(100% - (80px + 1rem));
}
body[wc-view-type="tb-l"] div.news_box article a h1,
body[wc-view-type="pc"] div.news_box article a h1{
  width: calc(100% - (100px + 1rem));
}
div.news_box article a h1::after{
  content: "";
  background-color: #333;
  position: absolute;
  top: 50%;
  right: -0.35rem;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
body[wc-view-type="sp"] div.news_box div.btn{
  margin-top: 1.8rem;
}
body[wc-view-type="tb"] div.news_box div.btn{
  margin-top: 2rem;
}
body[wc-view-type="tb-l"] div.news_box div.btn{
  margin-top: 2.25rem;
}
body[wc-view-type="pc"] div.news_box div.btn{
  margin-top: 2.25rem;
}

