.p-news_in {
  position: relative;
  z-index: 1;
}

.p-news_in__inner {
  padding: 135px 0 122px;
}
@media screen and (max-width: 899px) {
  .p-news_in__inner {
    padding: 105px 0 70px;
  }
}

.is-in .p-news_in__title {
  margin: 0 auto 48px;
}
@media screen and (max-width: 899px) {
  .is-in .p-news_in__title {
    margin: 0 auto 35px;
  }
}
.p-news_in__contents {
  flex: 1;
  width: 67.6%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 4px;
}
@media screen and (max-width: 899px) {
  .p-news_in__contents {
    width: 90%;
  }
}
.p-news_in__contents-list {
  margin-bottom: 39px;
}
@media screen and (max-width: 899px) {
  .p-news_in__contents-list {
    margin-bottom: 26px;
  }
}
.p-news_in__contents-list-item .p-in-link {
  color: var(--color-navy);
}
.p-news_in__contents-pagination {
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.8s var(--ease-main) 0.4s, opacity 0.8s var(--ease-main) 0.4s;
}
.is-in.is-load .p-news_in__contents-pagination {
  transform: translateY(0);
  opacity: 1;
}
.p-news_in__contents-pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-news_in__contents-pagination-list li {
  width: 40px;
  height: 40px;
  margin: 0 5.4px;
  border-radius: 50rem;
  font-family: var(--font-en);
  font-size: 2rem;
  transition: background-color 0.7s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-news_in__contents-pagination-list li:hover {
    background-color: var(--color-navy);
  }
  .p-news_in__contents-pagination-list li:hover a {
    color: var(--color-white);
  }
}
@media screen and (max-width: 899px) {
  .p-news_in__contents-pagination-list li {
    width: 35px;
    height: 35px;
    margin: 0 2.3px;
    font-size: 1.6rem;
  }
}
.p-news_in__contents-pagination-list li.is-current {
  background-color: var(--color-navy);
}
.p-news_in__contents-pagination-list li.is-current a {
  color: var(--color-white);
}
.p-news_in__contents-pagination-list li a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--color-navy);
  transition: color 0.7s var(--ease-main);
}
.p-news_in__contents-detail {
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.8s var(--ease-main) 0.3s, opacity 0.8s var(--ease-main) 0.3s;
}
.is-in.is-load .p-news_in__contents-detail {
  transform: translateY(0);
  opacity: 1;
}
.p-news_in__contents-detail-head {
  padding-bottom: 28px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-news_in__contents-detail-head {
    padding-bottom: 18px;
  }
}
.p-news_in__contents-detail-head::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/line_blue.png) repeat-x left center/auto 100%;
}
.p-news_in__contents-detail-head .p-in-date {
  margin-bottom: 10px;
  font-size: 1.5rem;
}
@media screen and (max-width: 899px) {
  .p-news_in__contents-detail-head .p-in-date {
    margin-bottom: 6px;
    font-size: 1.2rem;
  }
}
.p-news_in__contents-detail-head .p-in-title {
  font-size: 2rem;
}
@media screen and (max-width: 899px) {
  .p-news_in__contents-detail-head .p-in-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.p-news_in__contents-detail-text {
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 36px 0 46px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-news_in__contents-detail-text {
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 24px 0 27px;
  }
}
.p-news_in__contents-detail-text::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/line_blue.png) repeat-x left center/auto 100%;
}
.p-news_in__contents-detail-text a {
  color: var(--color-black);
  text-decoration: underline;
  font-weight: 700;
  transition: opacity 0.7s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-news_in__contents-detail-text a:hover {
    opacity: 0.5;
  }
}
.p-news_in__contents-detail-text iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.p-news_in__contents-detail-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
}
@media screen and (max-width: 899px) {
  .p-news_in__contents-detail-link {
    margin: 25px auto 0;
  }
}