@charset "UTF-8";

/*************************
NEWSエリア
**************************/
.news {
  padding: 80px 0;
  background-color: #d4dee0;
}

.news-details {
  background-color: #fff;
  padding: 40px;
}

.news-details-text .news-number {
  display: block;
  color: #705c53;
  font-size: 1rem;
  text-align: right;
  margin: 0 0 10px;
}

.news-details-text .news-title {
  margin: 0 0 10px;
  font-size: 1.75rem;
  letter-spacing: .2rem;
  color: #705c53;
}

.news-main-image {
  max-width: 100%;
  height: 450px;
  overflow: hidden;
}

.news-main-image img {
  max-width: 100%;
}

.news-details-main {
  margin: 40px 0 0;
  color: #705c53;
}

.news-details-main p+p {
  margin-top: 10px;
}

/*************************

以下、スマホ用CSS

**************************/
@media screen and (max-width:768px) {
  .news {
    padding: 60px 0;
  }

  .news-main-image {
    height: auto;
  }

  .news-details-text .news-title {
    font-size: 1.25rem;
  }

  .news-details-main {
    margin: 20px 0 0;
  }
}