@charset "UTF-8";
.p-news__list-item + .p-news__list-item {
  margin-top: 11px;
}

.p-news_detail__header {
  margin-bottom: 10px;
  padding: 14px 0 16px;
  border-radius: 10px;
  background: var(--color-main);
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-news_detail__header {
    padding: 17px 0;
    border-radius: 8px;
    text-align: left;
  }
}
.p-news_detail__header-wrap {
  width: 92.7%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-news_detail__header-wrap {
    width: 88%;
  }
}
.p-news_detail__date {
  color: var(--color-bg-green);
  font-family: "Outfit", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  .p-news_detail__date {
    margin-bottom: 3px;
    font-size: 13px;
    letter-spacing: 0.04rem;
  }
}
.p-news_detail__ttl {
  color: var(--color-white);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
  .p-news_detail__ttl {
    font-size: 14px;
    line-height: 1.5;
  }
}
.p-news_detail__inner {
  padding: 33px 0 50px;
  border-radius: 10px;
  background: var(--color-white);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s, opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}
@media screen and (max-width: 900px) {
  .p-news_detail__inner {
    padding: 26px 0 35px;
  }
}
.is-load .p-news_detail__inner {
  transform: translateY(0px);
  opacity: 1;
}
.p-news_detail__article {
  width: 92.7%;
  margin: 0 auto;
  font-size: 18px;
  letter-spacing: 0.06rem;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .p-news_detail__article {
    width: 88%;
    font-size: 13px;
  }
}
.p-news_detail__article a {
  color: var(--color-link);
  text-decoration: underline;
}
@media (hover: hover) {
  .p-news_detail__article a:hover {
    text-decoration: none;
  }
}
.p-news_detail__article img {
  max-width: 100%;
}
.p-news_detail__article iframe {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.p-news_detail__article u {
  vertical-align: baseline;
}
.p-news_detail__article strong {
  vertical-align: baseline;
}
.p-news_detail__article span {
  vertical-align: baseline;
}