@charset "utf-8";
/* NEWSアーカイブ・投稿ページ */

/*********************************************
NEWS一覧（アーカイブ）ページ
*********************************************/
/******************************
カテゴリリスト
******************************/
.news-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.news-category-title {
  white-space: nowrap;
}

.news-category-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-sanserif);
}

.news-category-btn {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--color-black-10);
  border-radius: 999px;
  white-space: nowrap;
  background-color: var(--color-white);
  color: var(--color-text);
	transition: all 0.4s;
}

.news-category-btn:hover {
  background-color: var(--color-text);
  color: var(--color-white);
}

/* active */
.news-category-btn.is-active {
  border-color: var(--color-black-10);
  background-color: var(--color-text);
  color: var(--color-white);
	transition: all 0.4s;
}
.news-category-btn.is-active:hover {
  background-color: var(--color-white);
  color: var(--color-text);
}

@media (max-width: 1024px) { 
  .news-category-title {
    font-size: 4.27vw;
  }
  .news-category {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.34vw;
    margin-bottom: 16vw;
  }
  .news-category-list {
    gap: 2.67vw;
  }
  .news-category-btn {
    padding: 0.8vw 4vw;
  }
}
/******************************
記事リスト
******************************/
.news-list_inner {
  margin-bottom: 100px;
}
.news-item {
  border-bottom: 1px solid var(--color-black-10);
  margin-bottom: 40px;
}
.news-item:last-child {
  margin-bottom: 0;
}
.news-item-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 40px;
}

.news-item-date {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-item-date-d {
  font-size: 6.53vh;
  line-height: 1;
}

.news-item-body-wrap {
  flex: 1;
  display: flex;
  gap: 40px;
}

.news-item-thumb {
  width: 26.09vh;
  overflow: hidden;
}

.news-item-thumb img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: top;
	scale: 1;
	filter: blur(20px);
	opacity: 0;
	transition: filter 0.4s ease-in, opacity 0.4s ease-in, scale 800ms ease;
	transition-delay: 100ms;
}

.news-item-thumb img.is-inview {
	filter: blur(0);
	opacity: 1;
}

.news-item-thumb img:hover {
	scale: 1.06;
}

.news-item-date-warp {
  flex: 1;
}
.news-item-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: stretch;
}

.news-item-title {
  font-size: 2.18vh;
  line-height: 1.6;
}
.news-item-title a {
  opacity: 1;
	transition: all 0.4s;
}
.news-item-title a:hover {
  opacity: 0.5;
}

.news-item-category-link {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 20px;
  border: 1px solid var(--color-black-10);
  background: var(--color-white);
  color: var(--color-text);
  border-radius: 999px;
  font-family: var(--font-sanserif);
  font-size: 1.31vh;
  font-weight: 400;
	transition: all 0.4s;
}
.news-item-category-link:hover {
  background: var(--color-text);
  color: var(--color-white);
}

@media (max-width: 1024px) {
  .news-list_inner {
    margin-bottom: 13.34vw;
  }
  .news-item {
    margin-bottom: 8vw;
  }
  .news-item-link {
    padding-bottom: 13.34vw;
  }
  .news-item-thumb {
    width: 100%;
  }
  .news-item-body-wrap {
    display: flex;
    flex-direction: column;
    gap: 4vw; 
  }
  .news-item-date-warp {
    display: flex;
    gap: 8vw;
  }
  .news-item-date-ym {
    font-size: 2.67vw
  }
  .news-item-date-d {
    font-size: 12vw;
  }
  .news-item-body {
    height: auto;
    gap: 2.67vw;
  }
  .news-item-title {
    font-size: 5.34vw;
    line-height: 1.4;
  }
  .news-item-category {
    font-size: 2.94vw;
  }
}
/******************************
ページネーション
******************************/
.news-pagination {
  display: flex;
  justify-content: center;
}
.news-pagination ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5.44vh;
}
.news-pagination li {
font-size: 2.18vh;
}
.news-pagination a,
.news-pagination span {
  min-width: 20px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 矢印 */
.news-pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.44vh !important;
  height: 5.44vh !important;
  background: var(--color-text);
  border-radius: 100px;
}
.news-pagination-arrow svg {
  width: 1.85vh;
  height: auto;
}
.news-pagination-arrow svg path {
  stroke-width: 2.5;
}
@media (max-width: 1024px) {
  .news-pagination ul {
    gap: 6.67vw;
  }
  .news-pagination li {
    font-size: 4vw;
  }
  .news-pagination a,
  .news-pagination span {
    min-width: 4vw;
  }
  .news-pagination-arrow {
    width: 9.34vw !important;
    height: 9.34vw !important;
  }
  .news-pagination-arrow svg {
    width: 3.2vw;
  }
}
/*********************************************
NEWS投稿ページ
*********************************************/
#news-single .subpage-maincontainer {
  margin-top: 200px;
}
.news-article {
  width: 100%;
}
#news-single .news-meta {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 80px;
}
#news-single .news-item-category {
  align-self: flex-end;
}
#news-single .news-item-date-ym {
  font-size: 2.18vh;
}
#news-single .news-item-date-d {
  font-size: 9.79vh;
}
#news-single .news-title {
  font-size: 4.35vh;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 100px;
}
.artist-wysiwyg {
  margin-bottom: 100px;
}
.artist-wysiwyg p {
  font-family: var(--font-sanserif);
  margin-bottom: 20px;
  overflow-wrap: break-word;
}
.artist-wysiwyg img {
  margin-bottom: 20px;
	filter: blur(20px);
	opacity: 0;
	transition: filter 0.9s ease-in, opacity 0.9s ease-in;
}

.artist-wysiwyg img.is-inview {
	filter: blur(0);
	opacity: 1;
}
.artist-wysiwyg figure {
  margin-bottom: 20px;
}

.artist-wysiwyg p:last-child {
  margin-bottom: 0;
}
.artist-wysiwyg a {
  text-decoration: underline;
}
.back-to-newsarchive-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  height: 4.35vh;
  border: 1px solid var(--color-black-10);
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto;color: var(--color-text);
	background: var(--color-white);
	transition: all 0.4s;
}
.back-to-newsarchive-btn .btn-arrow {
  transform: translate(-50%, -50%) rotateY(180deg);
}
.back-to-newsarchive-btn:hover {
	background: var(--color-text);
	color: var(--color-white);
}
.back-to-newsarchive-btn:hover .btn-arrow--bk {
	opacity: 0;
}
.back-to-newsarchive-btn:hover .btn-arrow--wh {
	opacity: 1;
}
@media (max-width: 1024px) {
  #news-single .subpage-maincontainer {
    margin-top: 26.67vw !important;
  }
  #news-single .news-meta {
    margin-bottom: 5.34vw;
  }
  #news-single .news-item-date-ym {
    font-size: 2.67vw;
  }
  #news-single .news-item-date-d {
    font-size: 12vw;
  }
  #news-single .news-title {
    font-size: 5.34vw;
    margin-bottom: 5.34vw;
  }
  .artist-wysiwyg img,
  .artist-wysiwyg p {
    margin-bottom: 5.34vw;
  }
  .artist-wysiwyg {
    margin-bottom: 13.34vw;
  }
  .back-to-newsarchive-btn {
    gap: 2.67vw;
    padding: 0 4vw;
    height: 12vw;

  }
}