@charset "utf-8";
/* NEWS投稿・アーカイブページ */

/*********************************************
NEWS投稿ページ
*********************************************/
.news-article {
  padding-bottom: 86px;
}

.news-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  margin-bottom: 40px;
}

.news-meta_date {
  font-size: 18px;
  letter-spacing: .06em;
  color: #747474;
}

.news-meta_badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 6px;
  font-size: 16px;
  background: #000;
  color: #fff;
}

.news-title {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 600;
  text-align: left;
  margin-bottom: 100px;
}

.artist-wysiwyg {
  margin-bottom: 100px;
}

.artist-wysiwyg img {
  max-width: 746px;
}

.artist-wysiwyg p {
  margin: 0 0 16px;
}

.artist-wysiwyg p:last-child {
  margin-bottom: 0;
}

.artist-wysiwyg a {
  text-decoration: underline;
}

/* ページナビゲーション */
.news-pager {
  padding: 26px 6px 0;
  border-top: 1px solid #BDBDBD;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.news-pager .c-btn-wh { /* c-btn-wh-linkと同値 */
  width: 169px;
  height: 46px;
  gap: 14px;
}
.news-pager .c-btn-wh-link {
  font-size: 18px;
  width: 169px;
  height: 46px;
  gap: 14px;
  border: none;
}

.news-pager_prev .c-btn-wh-arrow::before {
  transform: rotate(-135deg);
}

/*********************************************
NEWS一覧（アーカイブ）ページ
*********************************************/
.sec_news-grid {
  max-width: 1300px;
  margin: 0 auto;
}

.news-grid_inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 106px 28px;
}

.news-card {
  margin: 0;
}

.news-card_link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card_thumb {
  overflow: hidden;
}

.news-card_thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .35s ease;
}

.news-card_link:hover .news-card_thumb img {
  transform: scale(1.1);
}

.news-card_body {
  padding-top: 26px;
}

.news-card_title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
  text-transform: uppercase;
  width: 90%;
}

.news-card_meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-card_date {
  font-size: 16px;
}

.news-card_badge {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.news-card_meta .badge {
  height: 18px;
  padding: 0 6px;
  font-size: 14px;
}

.news-pagination {
  margin-top: 132px;
  display: flex;
  justify-content: center;
}

.news-pagination ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.news-pagination li {
  font-size: 24px;
}

.news-pagination a,
.news-pagination span {
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #BCBCBC !important;
  transition: opacity 0.4s ease;
  pointer-events: painted !important;
}

.news-pagination a:hover,
.news-pagination a:focus-visible,
.news-pagination span:hover,
.news-pagination span:focus-visible {
  opacity: 0.5;
}

.news-pagination .current {
  font-weight: 500;
  color: #000 !important;
}
.news-pagination a.prev,
.news-pagination a.next {
  position: relative;
}

.news-pagination a.prev::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transform: rotate(-45deg);
  display: block;
}
.news-pagination a.next::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  display: block;
}

/*********************************************
NEWS投稿ページ
*********************************************/
/*  responsive  */
@media (max-width: 798px) {
  .news-meta {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    line-height: 1;
    margin-bottom: 32px;
  }
  .news-meta_date {
    font-size: 14px;
  }
  .badge {
    height: 16px!important;
    padding: 0 4px!important;
    font-size: 12px!important;
  }
  .news-title {
    font-size: 26px;
    margin-bottom: 42px;
  }
  .news-article.l-container {
    width: calc(100% - 3vw);
  }
  .artist-wysiwyg p {
    margin: 0 0 1em;
  }
  .news-pager .c-btn-wh { /* c-btn-wh-linkと同値 */
    width: 100px;
    gap: 6px;
  }
  .news-pager .c-btn-wh-link {
    width: 100px;
    gap: 6px;
  }
}

/*********************************************
NEWS一覧（アーカイブ）ページ
*********************************************/
/* responsive */
@media (max-width: 860px) {
  .news-grid_inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .news-archive .contents-wrap {
    padding: 0 2vw;
  }

  .news-grid_inner {
    grid-template-columns: 1fr;
    gap: 110px;
  }

  .news-card_date {
    font-size: 14px;
    }
  .news-card_title {
    font-size: 6vw;
    width: 100%;
  }
}