/* CSS Document */
section.page_title > h2::before{
  content: "News";
}
div.newspage_wrap{
  padding: var(--headerHeight) 0;
  box-sizing: border-box;
  background-color: #f7f0e6;
  border-bottom: 1px solid #190c01;
}
body[wc-view-type="sp"] div.newspage_wrap{
  padding: var(--headerHeight) 10vw;
}
body[wc-view-type="tb"] div.newspage_wrap{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb-l"] div.newspage_wrap{
  padding: var(--headerHeight) 8vw;
}
body[wc-view-type="pc"] div.newspage_wrap{
  padding: var(--headerHeight) calc((100vw - 800px) / 2);
}
div.newspage_wrap article{
  background-color: #fff;
  padding: 1.5rem;
  box-sizing: border-box;
}
body[wc-view-type="pc"] div.newspage_wrap article{
  padding: 2rem;
}
div.newspage_wrap article div.news_top{
  display: flex;
  flex-direction: column-reverse;
}
div.newspage_wrap article div.news_top > h2{
  font-size: 1.35rem;
  color: #190c01;
}
body[wc-view-type="sp"] div.newspage_wrap article div.news_top > h2{
  font-size: 1.3rem;
}
div.newspage_wrap article div.news_top > time{
  text-align: right;
  font-family: "Number";
  color: #190c01;
  margin-bottom: 0.5rem;
  line-height: 1em;
}
div.newspage_wrap article > div.news_text{
}
div.newspage_wrap article > div.news_text > p{
  line-height: 1.8rem;
  font-weight: 300;
  color: #190c01;
  margin-top: 1rem;
  padding: 0 1rem;
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.newspage_wrap article > div.news_text > p{
  padding: 0 0.5rem;
}
div.newspage_wrap article > div.news_text > figure{
  width: calc(100% - 2rem);
  margin: 1rem auto 0 auto;
}
body[wc-view-type="sp"] div.newspage_wrap article > div.news_text > figure{
  width: calc(100% - 1rem);
  margin: 1rem auto 0 auto;
}
div.newspage_wrap article > div.news_text > figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.newspage_wrap article > div.news_text > figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}