/*==================================================
sp pc
==================================================*/
@media all and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media all and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/*--------------------------------------
news
----------------------------------------*/
.news-lists-wrap {
  align-items: start;
  display: grid;
  gap: 6.4rem;
  grid-template-columns: 28rem 1fr;
}
@media all and (max-width: 768px) {
  .news-lists-wrap {
    gap: 8rem;
    grid-template-columns: 1fr;
  }
}

@media all and (min-width: 769px) {
  .news-category {
    position: sticky;
    left: 0;
    top: calc(var(--height-header) + 2rem);
  }
}
.news-category__ttl {
  align-items: center;
  color: var(--dark-color);
  display: flex;
  font-size: 2rem;
  font-weight: var(--font-weight-base);
  gap: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.news-category__ttl::after {
  background-color: var(--border-color);
  content: "";
  flex: 1;
  height: 0.1rem;
}
.news-category__body {
  margin-top: 2.5rem;
  padding-left: 1rem;
}
.news-category__subttl .news-category__link {
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  padding-left: 0;
}
.news-category__subttl .news-category__link.-active {
  color: var(--dark-color);
  pointer-events: none;
}
.news-category__links {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.news-category__link {
  color: var(--main-color);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  padding-left: 1.5rem;
}
.news-category__link.-active {
  color: var(--dark-color);
  pointer-events: none;
}

.news-lists {
  display: grid;
  gap: 4rem;
}

.news-list__item, .news-list__link {
  display: block;
}
.news-list__time {
  color: var(--main-color);
  display: block;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
.news-list__ttl {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 1rem;
}
.news-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 1rem;
}
@media all and (max-width: 768px) {
  .news-list__tags {
    gap: 1rem;
  }
}
.news-list__tag {
  border-radius: 0.4rem;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 0.7rem 1.6rem 0.8rem;
}
.news-list__tag.-black {
  background-color: var(--dark-color);
  color: #fff;
}
.news-list__tag.-gray {
  background-color: var(--gray-lt);
}

.m-pagers {
  margin-top: 4rem;
}