@charset "UTF-8";
.p-news {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding-top: 5.6rem;
}
@media screen and (max-width: 960px) {
  .p-news {
    padding-top: 2.8rem;
  }
}
.p-news__container {
  width: 90%;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-news__inner {
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-news__category {
  display: block;
  position: relative;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 960px) {
  .p-news__category {
    margin-bottom: 2.4rem;
  }
}
.p-news__list {
  display: block;
  position: relative;
}
.p-news__list-item {
  display: block;
  position: relative;
}
.p-news__list-item + .p-news__list-item {
  margin-top: 1rem;
}
.p-news__pagination {
  width: 100%;
  display: block;
  position: relative;
  margin: 4rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-news__pagination {
    margin-top: 1.8rem;
  }
}
.p-news__back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-top: 2.6rem;
  padding-left: 3.2rem;
  color: var(--color-blue);
}
@media screen and (max-width: 960px) {
  .p-news__back {
    margin-top: 2.2rem;
  }
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .p-news__back {
      -webkit-text-decoration: 1px underline;
      text-decoration: 1px underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
    }
    .p-news__back:hover {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}
@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .p-news__back:hover {
      -webkit-text-decoration: 1px underline;
      text-decoration: 1px underline;
    }
  }
}
.p-news__back::after {
  content: "";
  width: 2rem;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  border-bottom: 1px solid var(--color-blue);
}
.p-news__back-text {
  display: block;
  position: relative;
  font-size: 2rem;
  letter-spacing: 0;
  font-family: "Cormorant", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
@media screen and (max-width: 960px) {
  .p-news__back-text {
    font-size: 1.35rem;
  }
}

.p-news_category {
  display: block;
  position: relative;
}
.p-news_category__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  position: relative;
}
.p-news_category__list-item {
  display: block;
  position: relative;
}
.p-news_category__link {
  display: block;
  position: relative;
  padding: 0 1rem;
  font-size: 1.6rem;
  font-family: "Cormorant", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  color: var(--color-blue);
}
@media screen and (max-width: 960px) {
  .p-news_category__link {
    font-size: 1.4rem;
  }
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .p-news_category__link {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
    }
    .p-news_category__link:hover {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}
@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .p-news_category__link:hover {
      text-decoration: underline;
    }
  }
}
.is-current .p-news_category__link {
  color: var(--color-teal);
  pointer-events: none;
}
.p-news_category__link::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-bottom: 1px solid currentColor;
  opacity: 0;
}
.is-current .p-news_category__link::before {
  opacity: 1;
}

.p-news_article {
  width: 100%;
  min-height: 6.5rem;
  display: block;
  position: relative;
  padding: 2.2rem 3rem;
  background: var(--color-white);
  box-shadow: 0 0 1rem 0 var(--color-shadow);
}
@media screen and (min-width: 961px) {
  .p-news_article {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
@media screen and (max-width: 960px) {
  .p-news_article {
    min-height: 5rem;
    padding: 1.2rem 1.7rem;
  }
}
.p-news_article::before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient-filter);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_article::before {
    content: "";
    transition: opacity 0.8s var(--ease_out);
  }
  .p-news_article:hover::before {
    opacity: 1;
  }
}
.p-news_article::after {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient-main);
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 1px calc(100% - 1px), 1px 100%, 100% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 1px calc(100% - 1px), 1px 100%, 100% 100%, 100% 0%);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_article::after {
    content: "";
    transition: opacity 0.8s var(--ease_out);
  }
  .p-news_article:hover::after {
    opacity: 1;
  }
}
.p-news_article__date {
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-family: "Cormorant", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  color: var(--color-blue);
}
@media screen and (min-width: 961px) {
  .p-news_article__date {
    min-width: 12.8rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_article__date {
    font-size: 1.4rem;
  }
}
.p-news_article__title {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (min-width: 961px) {
  .p-news_article__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 960px) {
  .p-news_article__title {
    font-size: 1.3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.p-news_single {
  width: 100%;
  display: block;
  position: relative;
}
.p-news_single__header {
  min-height: 6.5rem;
  display: block;
  position: relative;
  margin-bottom: 0.5rem;
  padding: 2.8rem 4rem;
  background: var(--color-white);
  box-shadow: 0 0 1rem 0 var(--color-shadow);
}
@media screen and (min-width: 961px) {
  .p-news_single__header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__header {
    min-height: 5rem;
    padding: 1.2rem 2rem;
  }
}
.p-news_single__header::before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient-filter);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_single__header::before {
    content: "";
    transition: opacity 0.8s var(--ease_out);
  }
  .p-news_single:hover::before {
    opacity: 1;
  }
}
.p-news_single__header::after {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient-main);
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 1px calc(100% - 1px), 1px 100%, 100% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 1px calc(100% - 1px), 1px 100%, 100% 100%, 100% 0%);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_single__header::after {
    content: "";
    transition: opacity 0.8s var(--ease_out);
  }
  .p-news_single:hover::after {
    opacity: 1;
  }
}
.p-news_single__date {
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-family: "Cormorant", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  color: var(--color-blue);
}
@media screen and (min-width: 961px) {
  .p-news_single__date {
    min-width: 12.2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__date {
    font-size: 1.4rem;
  }
}
.p-news_single__title {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-news_single__title {
    font-size: 1.3rem;
  }
}
.p-news_single__inner {
  display: block;
  position: relative;
  padding: 2.8rem 4rem 4rem;
  background: var(--color-white);
  box-shadow: 0 0 1rem 0 var(--color-shadow);
}
@media screen and (max-width: 960px) {
  .p-news_single__inner {
    padding: 2rem 2rem 3rem;
  }
}
.p-news_single__inner::before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient-filter);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_single__inner::before {
    content: "";
    transition: opacity 0.8s var(--ease_out);
  }
  .p-news_single:hover::before {
    opacity: 1;
  }
}
.p-news_single__inner::after {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient-main);
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 1px calc(100% - 1px), 1px 100%, 100% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 1px calc(100% - 1px), 1px 100%, 100% 100%, 100% 0%);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_single__inner::after {
    content: "";
    transition: opacity 0.8s var(--ease_out);
  }
  .p-news_single:hover::after {
    opacity: 1;
  }
}
.p-news_single__text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-news_single__text {
    font-size: 1.1rem;
  }
}
.p-news_single__text a {
  color: var(--color-teal);
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_single__text a:hover {
    text-decoration: none;
  }
}
.p-news_single__text img {
  max-width: 70%;
  height: auto !important;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-news_single__text img {
    max-width: 100%;
  }
}
.p-news_single__text iframe {
  max-width: 70%;
}
@supports (aspect-ratio: 16/9) {
  .p-news_single__text iframe {
    width: 100%;
    display: block;
    height: auto !important;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 960px) {
  .p-news_single__text iframe {
    max-width: 100%;
  }
}