@charset "utf-8";

/*----------------------------------------------------
  メイン
----------------------------------------------------*/
.mainimage {
  background-color: #322a29;
  margin-top: 2rem;
}
.txt-main {
  margin: 2rem 0 3rem;
}
/*----------------------------------------------------
  新着情報
----------------------------------------------------*/
.news-title-wrap {
  background-color: #006bb6;
  padding: 1rem;
}
.news-title {
  border-left: 3px solid #fff;
  padding-left: 1rem;
  color: #fff;
  line-height: 1;
}
.news-list-area {
  padding: 0 1.5rem;
  border: 1px solid #dfd9c9;
  margin-bottom:4rem;
}
ul.news-list {
  padding-left: 0;
  list-style: none;
}
.news-list li {
  border-bottom: 1px #eee solid;
  display: flex;
}
.news-list li:last-child {
  border-bottom: none;
}
.news-list time,
.news-list div {
  padding: 1rem 0.5rem;
}

.news-list time {
  flex: 0 0 120px;
  font-weight: bold;
  color: #444;
}
.news-list div {
  flex: 0 1 100%;
}
/*----------------------------------------------------
  バナー
----------------------------------------------------*/
a.banner-link {
  display: inline-block;
  margin-right: 5px;
}
@media screen and (max-width: 767.98px) {
  .mainimage {
    margin-top: 1rem;
  }
  .news-list-area {
    padding: 0 1rem;
  }
  .news-list li {
    display: block;
  }
  .news-list time,
  .news-list div {
    padding: 0 1.5rem;
  }
  .news-list time {
    display: block;
    padding-top: 1rem;
  }
  .news-list div {
    padding-bottom: 1rem;
  }
}