.news-detail {
  width: 78%;
  max-width: 1060px;
  margin: 0 auto;
}
.news-detail__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 160%;
  background: #fff;
  border-radius: 8px;
  padding: 32px 58px 25px;
  margin-bottom: 16px;
}
.news-detail__title span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.news-detail__body {
  font-size: 1.5rem;
  background: #fff;
  border-radius: 8px;
  padding: 45px 58px 58px;
}
.news-detail__body figure {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-detail__body figure img {
  width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .news-detail {
    width: calc(100% - 30px);
  }
  .news-detail__title {
    font-size: 1.8rem;
    padding: 20px 15px;
    margin-bottom: 12px;
  }
  .news-detail__title span {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .news-detail__body {
    padding: 30px 15px;
  }
  .news-detail__body figure {
    flex-direction: column;
  }
  .news-detail__body figure img {
    width: 100%;
    margin-top: 30px;
  }
  .news-detail__body figure img + img {
    margin-top: 12px;
  }
}/*# sourceMappingURL=news.css.map */