@charset "UTF-8";
.p-news {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  padding: 5.2rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-news {
    padding: 3.5rem 0 0;
  }
}
.p-news__container {
  width: 90%;
  max-width: 100rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-news__header {
  display: block;
  position: relative;
  margin-bottom: 4rem;
}
@media screen and (max-width: 960px) {
  .p-news__header {
    margin-bottom: 3rem;
  }
}
.p-news__inner {
  display: block;
  position: relative;
}
.p-news__list {
  display: block;
  position: relative;
}
.p-news__list-item {
  display: block;
  position: relative;
}
.p-news__list-item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid var(--color-line);
  pointer-events: none;
}
.p-news__list-item:last-child::before {
  border-bottom: 1px solid var(--color-line);
}
.p-news__back {
  width: 20rem;
  display: block;
  position: relative;
  margin: 2.8rem auto 0;
}
.p-news__footer {
  width: 100%;
  display: block;
  position: relative;
  margin: 4.2rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-news__footer {
    margin-top: 2.6rem;
  }
}

.p-news_article {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 2.75rem 0;
}
@media screen and (max-width: 960px) {
  .p-news_article {
    align-items: flex-start;
    padding: 2.5rem 0 1.6rem;
  }
}
.p-news_article__date {
  min-width: 14rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-right: 3.2rem;
}
@media screen and (min-width: 961px) {
  .p-news_article__date::before {
    content: "";
    width: 1.2rem;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: -1.2rem;
    background: url("../img/star.png") no-repeat center/contain;
  }
}
@media screen and (max-width: 960px) {
  .p-news_article__date {
    min-width: 8rem;
    margin-right: 2rem;
  }
}
.p-news_article__date-year {
  display: block;
  position: relative;
  margin-right: 1.4rem;
  writing-mode: vertical-lr;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 0.8;
  font-family: "Vidaloka", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
@media screen and (max-width: 960px) {
  .p-news_article__date-year {
    margin-right: 0.8rem;
    font-size: 1rem;
  }
}
.p-news_article__date-day {
  display: block;
  position: relative;
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 0.9;
  font-family: "Vidaloka", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
@media screen and (max-width: 960px) {
  .p-news_article__date-day {
    font-size: 2.4rem;
    letter-spacing: 0.16rem;
  }
}
.p-news_article__title {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-news_article__title {
    font-size: 1.25rem;
    min-height: 4em;
    top: -0.2em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .p-news_article__title {
      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_article:hover .p-news_article__title {
      -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_article:hover .p-news_article__title {
      text-decoration: underline;
    }
  }
}
.p-news_article__title-text {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-news_article__title-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 960px) {
  .p-news_article__title-text {
    font-size: 1.25rem;
    line-height: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
.p-news_article__category {
  min-width: 7rem;
  display: block;
  position: relative;
  color: var(--color-white);
  background: var(--color-category-bg);
  border-radius: 20rem;
}
@media screen and (min-width: 961px) {
  .p-news_article__category {
    margin-left: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news_article__category {
    min-width: 5.5rem;
    display: block;
    position: absolute;
    bottom: 2.4rem;
    left: 1rem;
  }
}
.p-news_article__category-text {
  display: block;
  position: relative;
  padding: 0.3rem;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-align: center;
  font-family: "Vidaloka", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
@media screen and (max-width: 960px) {
  .p-news_article__category-text {
    padding: 0.25rem;
    font-size: 0.8rem;
  }
}

.p-news_single {
  display: block;
  position: relative;
}
.p-news_single__header {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 960px) {
  .p-news_single__header {
    gap: 1rem 0.5rem;
    padding-bottom: 2.4rem;
  }
}
.p-news_single__header::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px solid var(--color-line);
}
.p-news_single__date {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-family: "Vidaloka", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  letter-spacing: 0.1rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-news_single__date {
    font-size: 1.3rem;
  }
}
.p-news_single__category {
  min-width: 7rem;
  display: block;
  position: relative;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: 20rem;
}
.p-news_single__category-text {
  display: block;
  position: relative;
  padding: 0.3rem;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-news_single__category-text {
    padding: 0.25rem;
    font-size: 0.8rem;
  }
}
.p-news_single__title {
  width: 100%;
  display: block;
  position: relative;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.05rem;
}
@media screen and (max-width: 960px) {
  .p-news_single__title {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.p-news_single__inner {
  display: block;
  position: relative;
  padding: 3rem 0 2.4rem;
}
@media screen and (max-width: 960px) {
  .p-news_single__inner {
    padding: 2.5rem 0 2rem;
  }
}
.p-news_single__text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-news_single__text {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.p-news_single__text a {
  color: var(--color-white);
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_single__text a:hover, .p-news_single__text a:focus-visible {
    text-decoration: none;
  }
}
.p-news_single__text img {
  max-width: 100%;
  height: auto !important;
  position: relative;
  margin: 1em 0;
}
.p-news_single__text iframe {
  max-width: 80%;
  margin: 1em 0;
}
@supports (aspect-ratio: 16/9) {
  .p-news_single__text iframe {
    width: 80%;
    display: block;
    height: auto !important;
    aspect-ratio: 16/9;
  }
}