body {
  background: #fff;
  color: #23241f;
  font-family: 'Zen Kaku Gothic New', 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}
.news-detail-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.news-detail-section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* .news-detail-title {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-align: center;
  margin: 40px 0 0 0;
} */
.news-detail-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  margin: 8px 0 80px 0;
  letter-spacing: 0.1em;
}
.news-detail-image-placeholder {
  width: 100%;
  height: auto;
  margin: 0 auto 80px auto;
  border-radius: 2px;
}
.news-detail-article {
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .news-detail-article {
    max-width: 400px;
  }  
}
@media (max-width: 500px) {
  .news-detail-article {
    max-width: 250px;
  }  
}
.news-detail-article-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}
.news-detail-date {
  font-size: 1rem;
  color: #23241f;
  margin-bottom: 24px;
}
.news-detail-content {
  font-size: 1rem;
  line-height: 2.1;
  margin-bottom: 36px;
}
@media (max-width: 500px) {
  .news-detail-article-title {
    font-size: 18px;
  }
  .news-detail-content {
    font-size: 16px;
    line-height: 26px;
  }
}
.news-detail-btn-wrap {
  text-align: center;
  margin: 80px 0 0 0;
}
.news-detail-btn {
  display: inline-block;
  padding: 10px 40px;
  border: 1px solid #23241f;
  border-radius: 24px;
  background: #fff;
  color: #23241f;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.news-detail-btn:hover {
  background: #23241f;
  color: #fff;
}
footer {
  padding-top: 160px;
}
@media (max-width: 1000px) {
  .news-detail-image-placeholder {
    width: 700px;
    height: auto;
  }
}
@media (max-width: 700px) {
  .news-detail-image-placeholder {
    width: 500px;
    height: auto;
  }
}
@media (max-width: 500px) {
  .news-detail-image-placeholder {
    width: 300px;
    height: auto;
  }
}
/* @media (max-width: 700px) {
  .news-detail-title {
    font-size: 2.1rem;
  }
  .news-detail-image-placeholder {
    height: 140px;
  }
}  */

