/* CSS Document */
/*ページタイトル*/
.page_title h2::before{
  content: "News";
}
main{
	overflow: inherit !important;
}
main::before{
	display: none;
}
/*コンテンツ*/
.news_wrap{
  box-sizing:border-box;
  background: rgb(38,39,41);
  background: linear-gradient(0deg, rgba(38,39,41,1) 0%, rgba(0,0,0,1) 100%);
  display: flex;
}
body[wc-view-type="sp"] .news_wrap{
  padding: calc(var(--headerHeight) * 1.5) 7vw;
	flex-direction: column;
}
body[wc-view-type="tb"] .news_wrap{
  padding: calc(var(--headerHeight) * 1.5) 5vw;
}
body[wc-view-type="tb-l"] .news_wrap{
  padding: calc(var(--headerHeight) * 1.5) 5vw;
}
body[wc-view-type="pc"] .news_wrap{
  padding: calc(var(--headerHeight) * 1.5)  calc((100vw - 1100px) / 2);
}
body[wc-view-type="tb-l"] .news_wrap,
body[wc-view-type="pc"] .news_wrap{
  column-gap: 1rem;
}
body[wc-view-type="tb"] .news_wrap .news_block{
	width: 400px;
}
body[wc-view-type="tb-l"] .news_wrap .news_block{
	width: 550px;
}
body[wc-view-type="pc"] .news_wrap .news_block{
	width: 700px;
}
.news_wrap .news_block > a{
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
body[wc-view-type="sp"] .news_wrap .news_block > a{
  width: 86vw;
}
body:not([wc-view-type="sp"]) .news_wrap .news_block > a{
  width: 100%;
}
.news_wrap .news_block a .n_border{
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 1px;
  background-color: #fff;
  left: 0;
  right: 100%;
  transition: all 1s 0.25s ease;
}
.news_wrap .news_block a[inview-state="true"] .n_border{
  width: 100%;
  right: 0;
}
.news_wrap .news_block a .n_border.n_top{
  bottom: inherit;
  top: 0;
}
body[wc-view-type="tb-l"] .news_wrap .news_block a:nth-child(n+3) .n_border.n_top,
body[wc-view-type="pc"] .news_wrap .news_block a:nth-child(n+3) .n_border.n_top{
  display: none;
}
body[wc-view-type="sp"] .news_wrap .news_block a:nth-child(n+2) .n_border.n_top,
body[wc-view-type="tb"] .news_wrap .news_block a:nth-child(n+2) .n_border.n_top{
  display: none;
}
.news_wrap .news_block a .n_border span{
  position: absolute;
  inset:0;
  display: block;
}
.news_wrap .news_block a .n_border span::before,
.news_wrap .news_block a .n_border span::after{
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 15%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
}
.news_wrap .news_block a .n_border span::before{
  left: 0;
  transition: opacity 0.5s ease;
}
.news_wrap .news_block a .n_border span::after{
  right: 0;
  transition: opacity 0.5s 1s ease;
}
.news_wrap .news_block a[inview-state="true"] .n_border span::before,
.news_wrap .news_block a[inview-state="true"] .n_border span::after{
  opacity: 1;
}
.news_wrap .news_block a article{
  display: flex;
  padding: 0.75rem;
  box-sizing: border-box;
}
body:not([wc-view-type="sp"])  .news_wrap .news_block a article{
  padding: 1rem;
}
body[wc-view-type="sp"] .news_wrap .news_block a article{
  padding: 1rem;
}
.news_wrap .news_block a article .n_text{
  width: calc(100% - 100px);
  padding-right: 0.75rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}
body:not([wc-view-type="sp"]) .news_wrap .news_block a article .n_text{
  padding-right: 1rem;
}
body[wc-view-type="tb"] .news_wrap .news_block a article .n_text,
body[wc-view-type="tb-l"] .news_wrap .news_block a article .n_text{
  width: calc(100% - 150px);
}
body[wc-view-type="pc"] .news_wrap .news_block a article .n_text{
  width: calc(100% - 150px);
}
.news_wrap .news_block a article .n_text > h2{
  color: #fff;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-right: 1.25rem;
  box-sizing: border-box;
  transition: opacity 1s 0.25s ease,filter 1s 0.25s ease;
  opacity: 0;
  filter: blur(10px);
	font-weight: 700;
	font-size: 1.1rem;
}
body[wc-view-type="sp"] .news_wrap .news_block a article .n_text > h2{
	font-size: 1.05rem;
}
.news_wrap .news_block a[inview-state="true"] article .n_text > h2{
  opacity: 1;
  filter: blur(0);
}
.news_wrap .news_block a article .n_text > h2::after{
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 2;
  -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;
  background-color: #fff;
}
.news_wrap .news_block a article .n_text > .c_flex{
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
body[wc-view-type="sp"] .news_wrap .news_block a article .n_text > .c_flex,
body[wc-view-type="tb"] .news_wrap .news_block a article .n_text > .c_flex{
	flex-direction: column-reverse;
  gap: 0.45rem;
  margin-bottom: 0.15rem;
}
body[wc-view-type="pc"] .news_wrap .news_block a article .n_text > .c_flex{
	margin-bottom: 0.35rem;
}
.news_wrap .news_block a article .n_text > .c_flex > time{
  line-height: 1em;
  font-family: "Oswald";
  letter-spacing: 2px;
  color: #fff;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  transition: opacity 1s 0.25s ease,filter 1s 0.25s ease;
  opacity: 0;
  filter: blur(10px);
}
body[wc-view-type="sp"] .news_wrap .news_block a article .n_text > .c_flex > time,
body[wc-view-type="tb"] .news_wrap .news_block a article .n_text > .c_flex > time{
	margin-left: auto;
	margin-bottom: 0;
}
.news_wrap .news_block a article .n_text > .c_flex .category{
	display: flex;
	width: calc(100% - 95px);
	overflow: hidden;
	gap:0.25rem;
  transition: opacity 1s 0.25s ease,filter 1s 0.25s ease;
  opacity: 0;
  filter: blur(10px);
}
body[wc-view-type="tb"] .news_wrap .news_block a article .n_text > .c_flex .category,
body[wc-view-type="sp"] .news_wrap .news_block a article .n_text > .c_flex .category{
	width: 100%;
}
.news_wrap .news_block a[inview-state="true"] article .n_text > .c_flex .category{
  opacity: 1;
  filter: blur(0);
}
.news_wrap .news_block a article .n_text > .c_flex .category > h3{
	background-color: #262729;
  border-radius: 0.35rem;
  font-size: 0.82rem;
  padding: 0 .4rem;
  flex: none;
  color: #c8c8c8;
  font-weight: 700;
  height: 23px;
  line-height: calc(1rem +(1em - 1lh) / 2);
  display: flex;
  align-items: center;
}
body[wc-view-type="sp"] .news_wrap .news_block a article .n_text > .c_flex .category > h3{
	height: 20px;
}
.news_wrap .news_block a[inview-state="true"] article .n_text .c_flex > time{
  opacity: 1;
  filter: blur(0);
}
.news_wrap .news_block a[inview-state="true"] article .n_text > time{
  opacity: 1;
  filter: blur(0);
}
body[wc-view-type="tb"] .news_wrap .news_block a article .n_text > time{
  margin-bottom: 1rem;
}
.news_wrap .news_block a article figure{
  width: 100px;
  transition: opacity 1s 0.25s ease,filter 1s 1s ease;
  opacity: 0;
  filter: grayscale(100%);
}
.news_wrap .news_block a[inview-state="true"] article figure{
  opacity: 1;
  filter: grayscale(0);
}
body[wc-view-type="tb"] .news_wrap .news_block a article figure,
body[wc-view-type="tb-l"] .news_wrap .news_block a article figure{
  width: 150px;
}
body[wc-view-type="pc"] .news_wrap .news_block a article figure{
  width: 150px;
}
.news_wrap .news_block a article figure img{
  aspect-ratio:1.414/1;
  border-radius: 1rem;
}
body[wc-view-type="sp"] .news_wrap .news_block a article figure img{
  border-radius: 0.75rem;
}
/*ページャー*/
.pager_wrap{
	justify-content: center;
}
/*サイドカラム*/
.news_wrap .side_column{
	position: relative;
  z-index: 1;
	box-sizing:border-box;
}
body[wc-view-type="tb"] .news_wrap .side_column{
	width:calc(100% - 400px);
	padding-left: 1.5rem;
}
body[wc-view-type="tb-l"] .news_wrap .side_column{
	width: calc(100% - 550px);
  padding-left: 2rem;
}
body[wc-view-type="pc"] .news_wrap .side_column{
	width: calc(400px - 2rem);
	margin-left: 2rem;
	flex: none;
}
.news_wrap .side_column .sticky_block{
	display: flex;
	flex-direction: column;
	gap:1rem;
}
body[wc-view-type="sp"] .news_wrap .side_column .sticky_block{
	margin-top: 1.5rem;
}
body:not([wc-view-type="sp"]) .news_wrap .side_column .sticky_block{
	position: sticky;
  z-index: 15;
	top: var(--headerHeight);
  right: 0;
}
.news_wrap .side_column .sticky_block > dl{
	background-color: #262729;
	border-radius: 1rem;
	box-sizing: border-box;
	padding: 1rem;
}
.news_wrap .side_column .sticky_block > dl dt{
	box-sizing: border-box;
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  background-color: rgba(0,0,0,0.5);
  border-radius: 0.75rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.news_wrap .side_column .sticky_block > dl dt::after{
	font-family: "Oswald";
	color: rgba(255,255,255,0.5);
	font-size:1rem;
	letter-spacing: 1px;
}
.news_wrap .side_column .sticky_block > .new_block dt::after{
	content: "New";
}
.news_wrap .side_column .sticky_block > .category_block dt::after{
	content: "Category";
}
.news_wrap .side_column .sticky_block > .archive_block dt::after{
	content: "Archive";
}
.news_wrap .side_column .sticky_block > dl dd{
	display: flex;
	flex-direction: column;
	gap:0.5rem;
	padding: 0.5rem 0.5rem 0 0.5rem;
	box-sizing: border-box;
}
.news_wrap .side_column .sticky_block > dl dd a{
	display: block;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px dashed;
  padding: 0 1.75rem 0.25rem 0.5rem;
}
.news_wrap .side_column .sticky_block > dl dd a::after{
	content: "";
	width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  z-index: 2;
  -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;
  background-color: #fff;
}