.page-event-news {
  padding-block: 2rem 5.5rem;
}
@media (min-width: 768px) {
  .page-event-news {
    padding-block: 4.5rem 11.5rem;
  }
}
.page-event-news .hline01 {
  margin-bottom: 3.3rem;
}
@media (min-width: 768px) {
  .page-event-news .hline01 {
    margin-bottom: 8rem;
  }
}
.page-event-news__content {
  width: 100%;
}
@media (min-width: 768px) {
  .page-event-news__content {
    min-height: 39.5rem;
  }
}

.p-inner {
  max-width: 116rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 3rem;
}

.p-filter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  margin-bottom: 3.6rem;
}
@media (min-width: 768px) {
  .p-filter {
    -moz-column-gap: 1.15vw;
    column-gap: 1.15vw;
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 6rem;
  }
}
@media (min-width: 1200px) {
  .p-filter {
    -moz-column-gap: 2.2rem;
    column-gap: 2.2rem;
  }
}
.p-filter__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.5rem;
  padding-block: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.022em;
  white-space: nowrap;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-filter__item {
    height: 5rem;
    font-size: 1.18vw;
    transition: opacity 0.2s ease;
  }
  .p-filter__item:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}
@media (min-width: 1200px) {
  .p-filter__item {
    font-size: 1.4rem;
  }
}
.p-filter__item.is-active {
  color: #FFF;
  cursor: inherit;
  pointer-events: none;
}
.p-filter__item.is-active[data-category=all] {
  background: linear-gradient(to right, #0071B2, #417E8C);
}
.p-filter__item.is-active[data-category=news] {
  background-color: #706caa;
}
.p-filter__item.is-active[data-category=event] {
  background-color: #507A9B;
}
.p-filter__item.is-active[data-category=shop-news] {
  background-color: #0A8291;
}
.p-filter__item.is-active[data-category=campaign] {
  background-color: #7DA5A5;
}
.p-filter__item.is-active[data-category=other] {
  background-color: #A0D2E6;
}
.p-filter__item.is-active::before {
  opacity: 0;
}
.p-filter__item::before {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #0071B2;
  opacity: 1;
  transition: opacity 0.2s ease;
  content: "";
}

.p-btn-more {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 6.5rem;
  cursor: pointer;
}
.p-btn-more.is-hidden {
  display: none;
}
@media (min-width: 768px) {
  .p-btn-more {
    margin-top: 8rem;
    transition: 0.2s opacity ease;
  }
  .p-btn-more:hover {
    opacity: 0.8;
  }
}
.p-btn-more span {
  position: relative;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-btn-more span {
    font-size: 1.8rem;
  }
}
.p-btn-more span::after {
  display: inline-block;
  position: absolute;
  right: -3.3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 1.2rem;
  background: url("../img/common/icon_arrow_07.svg") no-repeat center;
  background-size: 2.2rem auto;
  content: "";
}
@media (min-width: 768px) {
  .p-btn-more span::after {
    right: -3.8rem;
  }
}