/* --------------------------------------------------
p-news
-------------------------------------------------- */
@media (min-width: 769px) {
  .p-news__cont {
    margin: 0 auto;
  }
}

.p-news__ttl {
  font-size: 0;
  line-height: 0;
  width: 489rem;
  padding: 143rem 0 52rem;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .p-news__ttl {
    width: 354rem;
    padding: 49rem 0 40rem;
  }
}

/* 下層ページ */
#p-newsLower .p-news__ttl {
  padding-bottom: 57rem;
}
@media (min-width: 769px) {
  #p-newsLower .p-news__ttl {
    padding-bottom: 50rem;
  }
}

.p-news__ttl a {
  display: block;
}
@media (min-width: 769px) {
  .p-news__ttl a {
  }
}

.p-news__ttl a img {
}
@media (min-width: 769px) {
  .p-news__ttl a img {
    width: 100%;
    height: auto;
  }
}

/* hover */
@media (min-width: 769px) {
  .p-news__ttl img {
    transition: .3s;
    transition-property: opacity;
  }
  .p-news__ttl img:hover {
    opacity: 0.5;
  }
}


.p-news__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20rem 16rem;
  font-feature-settings: "palt" 1;
}
@media (min-width: 769px) {
  .p-news__nav {
    gap: 10rem;
  }
}

.p-news__nav li {
  min-width: 206rem;
  height: 50rem;
}

@media (min-width: 769px) {
  .p-news__nav li {
    min-width: 150rem;
    height: 30rem;
  }
}

.p-news__nav li a {
  letter-spacing: -0.01em;
  padding: 0 5rem;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 22rem;
  color: #c8151d;
  border: 2rem solid #c8151d;
  line-height: 1;
  font-weight: 500;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;

  transition-duration: .3s;
  transition-property: background, color, transform;
}

@media (min-width: 769px) {
  .p-news__nav li a {
    letter-spacing: 0;
    padding: 0 5rem;
    font-size: 15rem;
    border-width: 1rem;
  }
}


/* カレント設定 */
.p-news__nav li.is-current a {
  background: #c8151d;
  color: #fff;
  cursor: default;
  pointer-events: none;
}


/* hover設定 */
.p-news__nav li:not(.is-current):hover a {
  background: #c8151d;
  color: #fff;
}


/* active（押下時）設定 */
.p-news__nav li:not(.is-current):active a {
  transform: scale(0.97);
}