@charset "utf-8";
/* NEWS投稿・アーカイブページ */

/*********************************************
NEWS投稿ページ
*********************************************/
.single-news {
  background-color: #fff;
}

#news-single .sec-title {
  margin-bottom: 120px;
}

.news-article {
  padding-bottom: 86px;
  width: min(1050px, calc(100% - 30px));
  margin: 0 auto;
}

.news-title {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 600;
  text-align: left;
  margin-bottom: 10px;
}

.news-meta {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 80px;
}

.news-meta_date {
  font-size: 18px;
  letter-spacing: .06em;
}

.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: #FFD900;
  color: #000;
}
.badge.badge-new {
  background: #E62A90;
  color: #fff;
}

.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: 40px 6px 0;
  border-top: 1px solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-pager-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8em;
  gap: 10px;
}

.news-pager-btn-link {
  display: flex;
  align-items: center;
  gap: 10px;
}


/* 矢印アイコン共通 */
.news-pager-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 26px;
  background-color: #000;
  border-radius: 100px;
}

/* PREV矢印：左向き */
.news-pager_prev .news-pager-btn-arrow {
transform: rotate(-180deg);
}

@media (max-width: 798px) {
  #news-single .sec-title {
    margin-bottom: 80px;
  }
  .news-article {
    width: calc(100% - 4vw);
  }
  .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: 12px;
  }
  .artist-wysiwyg p {
    margin: 0 0 1em;
  }
  .artist-wysiwyg iframe {
    width: 100%;
  }
  .news-pager-btn-link {
    gap: 6px;
  }
  .news-pager-btn-arrow {
    width: 38px;
    height: 22px;
  }
}

/*********************************************
NEWS一覧（アーカイブ）ページ
*********************************************/
.post-type-archive-news {
  background-color: #fff;
}

.sec_news-list {
  width: min(1050px, calc(100% - 30px));
  margin: 0 auto;
}

.news-list {
  border-bottom: 1px solid #000;
}

.news-list_body {
  padding: 30px 4px 0;
}

.news-list_title {
  margin: 8px 0 10px;
  text-align: left;
  width: 100%;
}

.news-list_meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-list_date {
  font-size: 16px;
}

.news-list_badge {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.news-list_meta .badge {
  height: 18px;
  padding: 0 6px;
  font-size: 14px;
}

/* ページネーション */
.news-pagination {
margin-top: 90px;
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: 22px;
font-weight: 500;
}

.news-pagination a,
.news-pagination span {
min-width: 20px;
height: auto;
display: inline-flex;
align-items: center;
justify-content: center;
color: #bcbcbc !important;
}

.news-pagination .current {
font-weight: 500;
color: #000 !important;
}

/* hover */
.page-numbers a {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.page-numbers a:hover  {
  opacity: 0.65;
  transition: opacity 0.3s ease-in-out;
}

.prev.page-numbers {
  margin-right: 12px;
}
.next.page-numbers {
  margin-left: 12px;
}

/* 前へ・次へ矢印ボタン */
.news-pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px !important;
  height: 26px !important;
  background: #000;
  border-radius: 100px;
}
  
@media (max-width: 520px) {
  #news-archive .sec-title {
    margin-bottom: 60px;
  }
  .sec_news-list {
    width: calc(100% - 4vw);
  }
  .news-list_date {
    font-size: 14px;
    }
}