.p-news {
  opacity: 0;
}
.is-ended .p-news {
  opacity: 1;
  transition: opacity 0.6s var(--ease-out-quart);
}
.p-news__list {
  margin-top: 2.4rem;
}
@media screen and (max-width: 750px) {
  .p-news__list {
    margin-top: 1.5rem;
  }
}
.p-news__more {
  margin-top: 4.2rem;
}
@media screen and (max-width: 750px) {
  .p-news__more {
    margin-top: 2rem;
  }
}
.p-news__article {
  margin-top: 9.6rem;
}
@media screen and (max-width: 750px) {
  .p-news__article {
    margin-top: 0;
  }
}
.p-news__back {
  margin-top: 6.3rem;
}
@media screen and (max-width: 750px) {
  .p-news__back {
    margin-top: 2.2rem;
  }
}

.p-news_item__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-gray);
  text-decoration: none;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .p-news_item__link {
    display: block;
    padding-bottom: 2rem;
  }
}
.p-news_item__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-quart);
}
@media (hover: hover) {
  a.p-news_item__link:hover::before {
    opacity: 0.2;
  }
}

.p-news_item__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 26rem;
}
@media screen and (max-width: 750px) {
  .p-news_item__head {
    width: 100%;
  }
}
.p-news_item__date {
  width: 9.2rem;
  color: var(--color-gray);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  .p-news_item__date {
    width: 7.2rem;
    font-size: 1rem;
  }
}
.p-news_item__category {
  box-sizing: border-box;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.2rem 1rem;
  background: var(--color-blue);
  border-radius: 5rem;
  font-size: 1.1rem;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .p-news_item__category {
    padding: 0.2rem 0.9rem;
    font-size: 0.9rem;
  }
}
.p-news_item__body {
  flex-basis: 0;
  flex-grow: 1;
}
.p-news_item__body::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -4.3rem;
  width: 0.5rem;
  height: 100%;
  background: url(../img/arrow.svg) no-repeat center center/100% auto;
}
.p-news_item__title {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .p-news_item__title {
    margin-top: 0.5rem;
    font-size: 1.2rem;
  }
}

.p-news_article__head {
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 750px) {
  .p-news_article__head {
    padding-bottom: 2.5rem;
  }
}
.p-news_article__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.p-news_article__info-date {
  width: 9.2rem;
  color: var(--color-gray);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  .p-news_article__info-date {
    width: 7.4rem;
    font-size: 1.1rem;
    letter-spacing: 0em;
  }
}
.p-news_article__info-category {
  box-sizing: border-box;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.2rem 1.1rem;
  background: var(--color-blue);
  border-radius: 5rem;
  font-size: 1.1rem;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .p-news_article__info-category {
    padding: 0.2rem 0.9rem;
    font-size: 0.85rem;
  }
}
.p-news_article__title {
  margin-top: 1.2rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .p-news_article__title {
    margin-top: 1.3rem;
    font-size: 1.5rem;
    line-height: 1.35;
  }
}
.p-news_article__body {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (max-width: 750px) {
  .p-news_article__body {
    padding-bottom: 3.1rem;
  }
}
.p-news_article__content a {
  color: var(--color-blue);
  transition: opacity 0.5s var(--ease-out-quart);
}
@media (hover: hover) {
  .p-news_article__content a:hover {
    opacity: 0.6;
  }
}
.p-news_article__content img {
  width: 100%;
  max-width: 54rem;
}
.p-news_article__content iframe {
  width: 100%;
  max-width: 54rem;
}