@media screen and (min-width: 768px) {
  .news-list {
    min-height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .news-list .contents-title {
    font-size: calc(83 / 750 * 100vw);
  }
}
.news-list .container {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .news-list .container {
    max-width: 960px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .news-list .container {
    padding: 8% 0;
    width: 92%;
  }
}
.news-list .news-article {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 1rem 1rem;
  border-bottom: 1px solid rgba(179, 179, 179, 0.4117647059);
}
.news-list .news-article:hover {
  border-bottom: 1px solid rgba(255, 115, 1, 0.5019607843);
}
.news-list .news-article-link {
  display: inline-block;
  width: 100%;
}
.news-list .news-article-link:hover {
  background: rgba(255, 115, 1, 0.1215686275);
  color: #ff7301;
}
.news-list .news-article-date {
  font-size: 0.88rem;
  opacity: 0.7;
}
.news-list .news-article-title {
  font-weight: bold;
}

.news-detail .detail-container {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .news-detail .detail-container {
    padding: 4% 0;
    width: 80%;
    max-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .news-detail .detail-container {
    padding: 8% 0;
    width: 92%;
  }
}
@media screen and (min-width: 768px) {
  .news-detail .detail-container img {
    margin: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .news-detail .detail-container img {
    margin: 10px 0;
  }
}
.news-detail .detail-container .date {
  padding: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .news-detail .detail-container .date {
    font-size: calc(32 / 750 * 100vw);
  }
}
.news-detail .detail-container .title-area {
  border-bottom: 1px solid #444444;
}
@media screen and (min-width: 768px) {
  .news-detail .detail-container .title-area {
    padding: 15px 0;
  }
}
@media screen and (max-width: 767px) {
  .news-detail .detail-container .title-area {
    padding: 15px 5px;
  }
}
.news-detail .detail-container .news-content {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .news-detail .detail-container .news-content {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .news-detail .detail-container .news-content {
    width: 100%;
  }
}
.news-detail .detail-container .list-btn {
  display: block;
}
@media screen and (min-width: 768px) {
  .news-detail .detail-container .list-btn {
    margin: 40px auto;
    width: 12%;
  }
}
@media screen and (max-width: 767px) {
  .news-detail .detail-container .list-btn {
    margin: 50px auto;
    width: 40%;
  }
}