/* CSS Document */

/*大枠*/
.news_wrap{
	display: flex;
}
body[wc-view-code="pc"] .news_wrap{
	padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}
body[wc-view-code="tb"] .news_wrap,
body[wc-view-code="sp"] .news_wrap{
	padding: var(--headerHeight) 0;
}
body[wc-view-code="sp"] .news_wrap{
	flex-direction: column;
}
/*リストや記事部分*/
.news_wrap .n_contents{
	
}
body[wc-view-code="sp"] .news_wrap .n_contents{
	justify-content: center;
	padding: 0 0 3rem;
}
body[wc-view-code="tb"] .news_wrap .n_contents{
	padding-right: 1.5rem;
  padding-left: 2.5rem;
  width: calc(100% - 320px);
}
body[wc-view-code="pc"] .news_wrap .n_contents{
	width: 780px;
	padding-right: 3rem;
}
/*リストページ*/
.news_wrap .n_contents.n_list{
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	flex-direction: column;
}

.news_wrap .n_contents.n_list > a{
	display: block;
	text-decoration: none;
	box-shadow: 0px 0px 5px rgba(25,40,66,0.2);
	transform: translateY(1.5rem);
	transition: opacity 650ms ease,transform 650ms ease;
	opacity: 0;
}
body[wc-view-code="sp"] .news_wrap .n_contents.n_list > a{
	width: 86vw;
	margin-left: auto;
	margin-right: auto;
}
body[wc-view-code="tb"] .news_wrap .n_contents.n_list > a{
	width: 100%;
}
.news_wrap .n_contents.n_list > a.wcvisible{
	opacity: 1;
	transform: translateY(0);
}
.news_wrap .n_contents.n_list > a:not(:first-of-type){
	margin-top: 0.4rem;
}
.news_wrap .n_contents.n_list > a article{
	display: flex;
	flex-direction: column-reverse;
	padding: 0.75rem;
	box-sizing: border-box;
	background-color: #fff;
}
body[wc-view-code="pc"] .news_wrap .n_contents.n_list > a article{
	padding: 1rem;
}
.news_wrap .n_contents.n_list > a article > h2{
	padding-right: 1.41rem;
  box-sizing: border-box;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.15rem;
  color: var(--defColor);
  position: relative;
  z-index: 1;
	margin-top: 0.15rem;
}
.news_wrap .n_contents.n_list > a article > h2::after{
	content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--defColor);
  -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;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  right: 0;
}
.news_wrap .n_contents.n_list > a article > .n_info{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.news_wrap .n_contents.n_list > a article > .n_info time{
	font-family: "Number";
  flex: none;
  margin-right: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--defColor);
  line-height: 1em;
}
.news_wrap .n_contents.n_list > a article > .n_info .n_category{
	overflow: hidden;
	display: flex;
	list-style: none;
	list-style-position: outside;
	gap:0.25rem; 
}
.news_wrap .n_contents.n_list > a article > .n_info .n_category li{
	flex: none;
  background-color: rgba(25,40,66,0.1);
  font-size: 0.85rem;
  color: rgba(25,40,66,0.5);
  line-height: 1em;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
}




/*記事*/
.n_contents > article{
	display: flex;
	flex-direction: column;
}
body[wc-view-code="sp"] .n_contents > article{
	width: 86vw;
	margin: 0 auto;
}
.n_contents > article > *{
	margin-top: 0.5rem;
}
.n_contents > article .eyecatch{
}
body[wc-view-type="tb-l"] .n_contents > article .eyecatch,
body[wc-view-code="pc"] .n_contents > article .eyecatch{
	order: 4;
  width: calc(100% - 2rem);
  margin: 1rem auto 0;
}
.n_contents > article .eyecatch img{
}
body:not([wc-view-code="pc"]) .n_contents > article .eyecatch img{
	aspect-ratio:16/9;
}
body[wc-view-code="pc"] .n_contents > article .eyecatch img{
	height: 300px;
}
.n_contents > article > h2{
	font-size: 1.2rem;
	font-weight: 700;
}
body[wc-view-type="tb-l"] .n_contents > article > h2,
body[wc-view-code="pc"] .n_contents > article > h2{
	order:1;
}
.n_contents > article > time{
	display: table;
  margin-left: auto;
  font-family: "Number";
  font-weight: 700;
}
body[wc-view-type="tb-l"] .n_contents > article > time,
body[wc-view-code="pc"] .n_contents > article > time{
	order:2;
}
.n_contents > article > .category_list{
}
body[wc-view-type="tb-l"] .n_contents > article > .category_list,
body[wc-view-code="pc"] .n_contents > article > .category_list{
	order: 3;
}
.n_contents > article > .category_list{
	width: calc(100% - 1.5rem);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap:0.25rem;
	list-style: none;
	list-style-position: outside;
	overflow: hidden;
	margin-top: 0.5rem;
}
.n_contents > article > .category_list li{
  padding: 0rem 0.35rem;
  color: #bbb;
  font-size: 0.85rem;
  flex: none;
	border: solid 1px #bbb;
}
.n_contents > article > .news_text{
	padding: 0 1rem;
	box-sizing: border-box;
}
body[wc-view-type="tb-l"] .n_contents > article > .news_text,
body[wc-view-code="pc"] .n_contents > article > .news_text{
	order: 5;
}
.btn_block{
	margin: 3rem auto 0;
	opacity: 1;
}
body[wc-view-code="sp"] .btn_block{
	margin-top: 2rem;
}