/* CSS Document */
/*ページタイトル*/
.pagetitle .contents_title::before{
	content: "NEWS";
}
/*大枠*/
.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: calc(var(--headerHeight) + 1.5rem) 0 var(--headerHeight);
}
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 5vw 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;
  gap: 1rem;
  flex-direction: column;
}
.news_wrap .n_contents.n_list > a{
	display: block;
	text-decoration: none;
	transition: opacity 800ms ease,filter 800ms ease;
	opacity: 0;
	filter: blur(10px);
	width: 100%;
}
.news_wrap .n_contents.n_list > a.wcvisible{
	opacity: 1;
	filter: blur(0);
}
.news_wrap .n_contents.n_list > a:last-of-type{
	margin-bottom: 1.5rem;
}
.news_wrap .n_contents.n_list > a > article{
	display: flex;
  flex-wrap: wrap;
  background-color: #efefef;
  border-radius: 5px;
  padding: 0.75rem;
}
.news_wrap .n_contents.n_list > a > article > h2{
	font-weight: 500;
	order:2;
	width: calc(100% - 80px);
	padding-left: 5px;
	overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
	color: var(--defColor);
	padding-right: 1.75rem;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	font-size: 1.2rem;
}
.news_wrap .n_contents.n_list > a > article > h2::before,
.news_wrap .n_contents.n_list > a > article > h2::after{
	content: "";
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
}
.news_wrap .n_contents.n_list > a > article > h2::before{
	width: 1.4rem;
	height: 1.4rem;
	z-index: 2;
	background-color: rgba(27,30,41,0.855);
	border-radius: 4px;
}
.news_wrap .n_contents.n_list > a > article > h2::after{
	z-index: 3;
	width: 1.5rem;
	height: 1.5rem;
	background-color: #fff;
	-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;
	top: 50%;
	transform: translateY(-50%);
}
.news_wrap .n_contents.n_list > a > article > time{
	width: 80px;
	order:1;
	color: var(--defColor);
	font-family: "Roboto";
	padding: 0.3rem 0;
	box-sizing: border-box;
}
.news_wrap .n_contents.n_list > a > article > .category{
	display: flex;
	overflow: hidden;
	gap:2px;
	list-style: none;
	list-style-position: outside;
	order: 3;
	margin-top: 3px;
}
.news_wrap .n_contents.n_list > a > article > .category li{
	flex: none;
	background-color: #fff;
	padding: 0.15rem 0.2rem;
	font-size: 0.85rem;
	color: rgba(27,30,41,0.75);
	line-height: 1em;
}
/*ページャー*/
.pager_wrap{
	width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.pager_wrap > div{
	width: 40px;
	height: 40px;
	border: solid var(--defColor) 1px;
}
body[wc-view-code="sp"] .pager_wrap > div{
	width: 36px;
	height: 36px;
}
.pager_wrap > .active,
.pager_wrap > div a{
	display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lexend";
  width: 40px;
  height: 40px;
  font-weight: 700;
}
body[wc-view-code="sp"] .pager_wrap > .active,
body[wc-view-code="sp"] .pager_wrap > div a{
	width: 36px;
	height: 36px;
}
.pager_wrap > .active{
	background-color: var(--defColor);
	color: #fff;
}
.pager_wrap > div a{
	color: var(--defColor);
  text-decoration: none;
}
.pager_wrap > .prev a,
.pager_wrap > .next a{
	position: relative;
	z-index: 1;
}
.pager_wrap > .prev a::before,
.pager_wrap > .next a::before{
	content: "";
  width: 40px;
  height: 40px;
  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%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.pager_wrap > .prev a{
}
.pager_wrap > .next a{
}
/*スティッキー*/
.sticky_block{
	flex: none;
	position: relative;
	z-index: 8800;
	box-sizing: border-box;
}

body[wc-view-code="sp"] .sticky_block{
	padding: 0 7vw;
}
body[wc-view-code="tb"] .sticky_block{
	width: 320px;
	padding-right: 2.5rem;
}
body[wc-view-code="pc"] .sticky_block{
	width: 320px;
}
.sticky_block .in_sticky{
	position: sticky;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	gap:0.75rem;
}
.sticky_block .in_sticky > dl{
	border: solid 1px var(--defColor);
	box-sizing: border-box;
}
.sticky_block .in_sticky > dl dt{
}
.sticky_block .in_sticky > dl dt span{
	color: var(--defColor);
  font-weight: 500;
  width: fit-content;
  padding: 0.5rem 0.75rem 0 0.75rem;
  display: table;
	font-size: 1.1rem;
}
.sticky_block .in_sticky > dl dd{
	padding: 0.5rem 0.75rem;
	box-sizing: border-box;
}
.sticky_block .in_sticky > dl dd a{
	display: block;
	padding-right: 1.5rem;
	padding-left: 0.5rem;
	position: relative;
	z-index: 1;
	text-decoration: none;
	border-bottom: solid 1px #dcdee1;
	box-sizing: border-box;
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
	color: var(--defColor);
	overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sticky_block .in_sticky > dl dd a::before{
	content: "";
  width: 1.3rem;
  height: 1.3rem;
  z-index: 2;
  background-color: rgba(27,30,41,0.855);
  border-radius: 4px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sticky_block .in_sticky > dl dd a::after{
	content: "";
  width: 1.3rem;
  height: 1.3rem;
  background-color: #fff;
  -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%;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
}
/*記事*/
.n_contents > article{
	display: flex;
  flex-direction: column;
  background-color: #efefef;
  padding: 0.5rem 1rem;
}
.n_contents > article > *{
	margin-top: 1rem;
}
.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{
	aspect-ratio:16/9;
}
.n_contents > article > h2{
	font-size: 1.2rem;
	font-weight: 500;
}
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: "Roboto";
}
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;
}
body[wc-view-code="sp"] .n_contents > article > .category_list,
body[wc-view-type="tb"] .n_contents > article > .category_list{
	width: 100%;
}
.n_contents > article > .category_list li{
  flex: none;
  background-color: #fff;
  padding: 0.15rem 0.35rem;
  font-size: 0.85rem;
  color: rgba(27,30,41,0.75);
  line-height: 1em;
}
.n_contents > article > .news_text{
	box-sizing: border-box;
  margin: 1rem auto;
	padding: 0.75rem;
  background-color: #fff;
}
body[wc-view-type="tb-l"] .n_contents > article > .news_text,
body[wc-view-code="pc"] .n_contents > article > .news_text{
	order: 5;
	width: calc(100% - 2rem);
}
.btn_block{
	margin: 3rem auto 0;
}
body[wc-view-code="sp"] .btn_block{
	margin-top: 2rem;
}
body[wc-view-type="tb"] .btn_block{
	flex-direction: column;
	width: fit-content;
	gap:0.5rem;
	margin: 2rem auto 0 auto;
}