@charset "UTF-8";
/* フォント読込 */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
main .p_title h1 {
  position: relative;
}

main .p_title h1::after {
  content: url("../img/p_sub_newslist.svg");
  display: block;
  width: 140px;
  position: absolute;
  bottom: -47px;
  right: -57%;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}

@media screen and (max-width: 768px) {
  main .p_title h1::after {
    width: 120px;
    bottom: -47px;
    right: -47%;
  }
}

main #news ol li {
  padding-bottom: 50px;
  border-bottom: 3px solid #e5e1dd;
  margin-bottom: 50px;
}

main #news ol li h2 {
  font-weight: bold;
  font-size: 18px;
  margin: 20px 0 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24px 1fr;
      grid-template-columns: 24px 1fr;
  gap: 10px;
}

@media screen and (max-width: 480px) {
  main #news ol li h2 {
    font-size: 1.1rem;
  }
}

main #news ol li h2::before {
  content: url("../img/leaf.svg");
  display: block;
  width: 22px;
  padding-top: 5px;
}

main #news ol li p {
  font-size: 14px;
}

main #news ol li img {
  display: block;
  margin: 3rem 0 0;
  width: auto;
  max-width: 100%;
  cursor: pointer;
}

main #news ol li img:hover {
  opacity: 0.9;
}

main #news ol li video {
  width: auto;
  max-width: 100%;
}
/*# sourceMappingURL=news.css.map */