/* 見出しの赤点 or ラベル色などに使うなら: --c-accent は未使用なら削ってもOK */
.news {
  --c-text: #111;
  --c-muted: #7a7a7a;
  --c-border: #eee;
  --c-pill: #f2f4f7;
  --c-accent: #e60012;
  margin: 48px auto;
  max-width: 1180px;
  padding: 0 20px;
  color: var(--c-text);
}

.news__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* 小見出し（赤） */
.news__eyebrow {
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(to right,
      #4285F4,
      /* 青 */
      #EA4335,
      /* 赤 */
      #FBBC05,
      /* 黄 */
      #34A853
      /* 緑 */
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: .02em;
  margin: 0 0 0px;
  font-size: clamp(12px, 1.6vw, 18px);
}

/* スマホ表示用（幅600px以下） */
@media (max-width: 600px) {
  .news__eyebrow {
    font-size: 22px;
    /* スマホ時は固定16px */
  }
}

.news__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: .02em;
}

.news__more {
  margin-left: auto;
  font-size: 14px;
  color: var(--c-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.news__more:hover {
  border-bottom-color: var(--c-muted);
}

.news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news__item {
  border-top: 1px solid var(--c-border);
  padding: 22px 0;
}

.news__item article {
  display: grid;
  grid-template-columns: 92px 130px 1fr;
  align-items: center;
  gap: 16px;
}

.news__item:last-child {
  border-bottom: 1px solid var(--c-border);
}

.news__date {
  display: inline-block;
  background: var(--c-pill);
  color: #555;
  font-size: 12px;
  border-radius: 20px;
  padding: 6px 10px;
  text-align: center;
  min-width: 72px;
}

.news__label {
  font-size: 12px;
  color: #e54848;
}

.news__label--info {
  color: #e54848;
}

.news__label--release {
  color: #ff7a00;
}

.news__label--owned {
  color: #888;
}

.news__link {
  color: var(--c-text);
  text-decoration: none;
  line-height: 1.7;
}

.news__link:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .news__item article {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .news__date {
    order: 1;
  }

  .news__label {
    order: 2;
  }

  .news__link {
    order: 3;
  }
}

@media (max-width: 720px) {
  .news {
    padding: 0 16px;
  }

  .news__item {
    padding: 18px 0;
    /* 少しコンパクト */
  }

  .news__item article {
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: 8px;
    /* 要素間の縦余白 */
  }

  .news__date {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f3f5f7;
    /* ほんのりコントラスト */
    color: #555;
    width: fit-content;
    /* 左に揃う */
  }

  .news__label {
    font-size: 13px;
    letter-spacing: .08em;
    font-weight: 600;
  }

  .news__link {
    display: block;
    /* タップ領域を広く */
    line-height: 1.8;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    margin-top: 2px;
  }

  /* 長すぎるタイトルは2行で省略 */
  .news__link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* 区切り線をやや明確に（でも薄く） */
  .news__item {
    border-top: 1px solid #eee;
  }

  .news__item:last-child {
    border-bottom: 1px solid #eee;
  }

  /* 「すべて見る」は小さめ＋軽い */
  .news__more {
    font-size: 13px;
    border-bottom: none;
  }
}

/* コンテナ */
.pagination {
  display: flex;
  justify-content: center;
  padding: 28px 0 8px;
}

/* WPの出力: <ul class="page-numbers"> */
.pagination .page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各ボタン */
.pagination .page-numbers li a,
.pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #e8e8ee;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  color: #444;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

/* 現在ページ */
.pagination .page-numbers .current {
  background: #c07ade;
  border-color: #c07ade;
  color: #fff;
  font-weight: 700;
}

/* ホバー */
.pagination .page-numbers a:hover {
  border-color: #c07ade;
  color: #c07ade;
}

/* 前後矢印（prev/next） */
.pagination .page-numbers .prev,
.pagination .page-numbers .next {
  font-weight: 700;
  min-width: 38px;
}

/* 省略「…」 */
.pagination .page-numbers .dots {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

/* モバイル：タップしやすく */
@media (max-width: 600px) {
  .pagination .page-numbers {
    gap: 6px;
  }

  .pagination .page-numbers li a,
  .pagination .page-numbers li span {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* コンテナ配置：PCは右寄せ、SPは中央 */
.news__morewrap {
  margin-top: 16px;
  text-align: right;
}

@media (max-width: 720px) {
  .news__morewrap {
    text-align: center;
  }
}

/* リストの一番したのボタン */
/* ボタン本体 */
.news__morebtn {
  min-width: 300px;
  --accent: #222222;
  display: inline-flex;
  /* 横並び＆中央寄せの準備 */
  align-items: center;
  /* 縦中央寄せ */
  justify-content: center;
  /* 横中央寄せ */
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
  /* きらめきをはみ出さない */
  box-shadow: 0 6px 16px rgba(192, 122, 222, .25);
  transition: transform .15s ease, box-shadow .2s ease;
}

/* シマー（“キラッ”） */
.news__morebtn::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -30%;
  width: 40%;
  height: 300%;
  transform: rotate(25deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, .6) 50%,
      rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity .1s ease;
}

/* hover/focusで走る */
.news__morebtn:hover,
.news__morebtn:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(192, 122, 222, .35);
}

.news__morebtn:hover::after,
.news__morebtn:focus::after {
  opacity: 1;
  animation: btn-shine 900ms cubic-bezier(.2, .6, .2, 1);
}

/* シマーのアニメーション */
@keyframes btn-shine {
  0% {
    transform: translateX(-120%) rotate(25deg);
  }

  100% {
    transform: translateX(220%) rotate(25deg);
  }
}

/* タップ配慮（SP） */
@media (max-width: 720px) {
  .news__morebtn {
    padding: 14px 22px;
  }
}

.news__morebtn,
.news__morebtn:hover,
.news__morebtn:focus {
  color: #fff;
}