/* CSS Document */
/*ページタイトル*/
.page_title .contents_title::before{
	content: "NEWS";
}
/*大枠*/
.news_wrap{
	display: flex;
	background-color: var(--defBgColor);
}
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{
	box-sizing: border-box;
}
body[wc-view-code="sp"] .news_wrap .n_contents{
	justify-content: center;
	padding: 0 0 3rem 0;
}
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;
}
/*一覧*/
.n_list{
	display: flex;
	flex-direction: column;
}
.n_list > a{
}
.n_list > a{
	text-decoration: none;
	padding: 0.75rem 0.5rem;
	box-sizing: border-box;
	border-top: var(--supportColor) solid 1px;
	transition: opacity linear 600ms,filter linear 625ms;
	opacity: 0;
	filter: blur(15px);
	width: 100%;
}
body[wc-view-code="sp"] .n_list > a{
	width: 86vw;
	margin: 0 auto;
}
.n_list > a:last-of-type{
	border-bottom: 1px solid var(--supportColor);
}
.n_list > a.wcvisible{
	opacity: 1;
	filter: blur(0);
}
/*
body[wc-view-type="tb"] .n_list > a,
body[wc-view-code="sp"] .n_list > a{
	width: 100%;
}
body[wc-view-type="tb-l"] .n_list > a{
	width: calc(50% - 0.5rem);
	padding: 1rem 0.75rem;
}
body[wc-view-code="pc"] .n_list > a{
	width: calc(50% - 0.75rem);
	padding: 1rem 0.75rem;
}
body[wc-view-type="tb"] .n_list > a:last-of-type,
body[wc-view-code="sp"] .n_list > a:last-of-type{
	border-bottom: var(--supportColor) solid 1px;	
}
body[wc-view-type="tb-l"] .n_list > a:nth-last-child(-n + 2),
body[wc-view-code="pc"] .n_list > a:nth-last-child(-n + 2){
	border-bottom: var(--supportColor) solid 1px;	
}*/
.n_list > a article{
	display: flex;
}
.n_list > a article figure{
	width: 95px;
}
body:not([wc-view-code="sp"]) .n_list > a article figure{
	width: 130px;
}
.n_list > a article figure img{
	height: 95px;
	border-radius: 1rem;
}
body:not([wc-view-code="sp"]) .n_list > a article figure img{
	height: 130px;
}
.n_list > a article .n_text{
	width: calc(100% - 95px);
	display: flex;
	flex-direction: column;
	padding-right: 0.5rem;
	box-sizing: border-box;
	padding: 0.25rem 0.75rem 0.25rem 0;
	gap:0.25rem;
}
body:not([wc-view-code="sp"]) .n_list > a article .n_text{
	width: calc(100% - 130px);
	padding: 0.5rem 0.5rem 0.5rem 0;
	gap:0.35rem;
}
.n_list > a article .n_text *{
	color: var(--defColor);
}
.n_list > a article .n_text time{
	order: 1;
  font-family: "Roboto";
  letter-spacing: 1px;
  line-height: 1em;
	margin-bottom: -0.15rem;
}
.n_list > a article .n_text h2{
	order: 2;
	font-size: 1.25rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.n_list > a article .n_text .category{
	order: 3;
	display: flex;
	list-style: none;
	list-style-position: outside;
	gap: 0.3rem;
	overflow: hidden;
}
.n_list > a article .n_text .category li{
	border: solid 1px var(--borderColor);
  color: var(--supportColor);
  font-size: 0.85rem;
  flex: none;
  padding: 0 0.25rem;
  border-radius: 1rem;
  background-color: rgba(255,255,255,0.5);
}
.n_list > a article .n_text .more{
	order: 4;
	width: fit-content;
	margin-left: auto;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap:0.25rem;
}
body:not([wc-view-code="sp"]) .n_list > a article .n_text .more{
	margin-top: auto;
}
.n_list > a article .n_text .more .m_icon{
	display: table;
	border: solid 1px var(--borderColor);
	border-radius: 50%;
	width: 18px;
	height: 18px;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	margin-top: 0.5px;
}
.n_list > a article .n_text .more .m_icon::before{
	content: "";
	width: 25px;
	height: 25px;
	background-color: var(--borderColor);
  -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%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/*ページャー*/
.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;
}
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: "Roboto";
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
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(--supportColor);
	color: #fff;
}

.pager_wrap > div a{
	background-color: #fff;
  color: var(--defBgColorRGB);
	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{
	box-sizing: border-box;
  background-color: #fff;
	border-radius: 1rem;
}
.sticky_block .in_sticky > dl dt{
}
.sticky_block .in_sticky > dl dt span{
	font-weight: 700;
	display: flex;
	align-items: center;
	width: fit-content;
	position: relative;
	z-index: 1;
	padding: 0.75rem 0.75rem 0 0.75rem;
	color: var(--supportColor);
}

.sticky_block .in_sticky > dl dt span::before{
	top: -2px;
	right: -22px;
}
.sticky_block .in_sticky > dl dt span::after{
	left: -2px;
	bottom: -22px;
}
.sticky_block .in_sticky > dl dd{
	padding: 0 0.75rem 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::after{
	content: "";
  width: 1.25rem;
  height: 1.25rem;
  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: calc(50% + 0.28rem);
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}
/*記事*/
.n_contents > article{
	display: flex;
	flex-direction: column;
	background-color: #fff;
	padding: 1rem;
	box-sizing: border-box;
	border-radius: 1rem;
}
body[wc-view-code="sp"] .n_contents > article{
	width: 86vw;
	margin: 0 auto;
}
.n_contents > article > *{
	margin-top: 1rem;
}
.n_contents > article .eyecatch{
	margin-top: 0;
}
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;
	border-radius: 1rem;
}
.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: "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;
}
.n_contents > article > .category_list li{
  border: solid 1px var(--borderColor);
  color: var(--supportColor);
  font-size: 0.85rem;
  flex: none;
  padding: 0 0.25rem;
  border-radius: 1rem;
  background-color: rgba(255,255,255,0.5);
}
.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;
  gap: 1rem;
  justify-content: center;
}
body[wc-view-code="sp"] .btn_block{
	margin-top: 2rem;
}