@charset "UTF-8";
/* 
//////////////////////////////////////////////////////////////////////////////

news.css
- お知らせ

//////////////////////////////////////////////////////////////////////////////
*/
/* 一覧
===============================================
=============================================== */
.sec-news_list {
  max-width: 1000px;
  margin: auto;
}
@media screen and (min-width: 600px) {
  .sec-news_list {
    margin: 0 40px;
  }
}
@media screen and (min-width: 960px) {
  .sec-news_list {
    margin: 0 60px;
  }
}
@media screen and (min-width: 1200px) {
  .sec-news_list {
    margin: auto;
  }
}

/* 詳細
===============================================
=============================================== */
.post {
  margin: 10px 0 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #d6c9a1;
}
@media screen and (min-width: 960px) {
  .post {
    padding-bottom: 60px;
  }
}
.post-title {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .post-title {
    margin-top: 60px;
  }
}
.post-time {
  display: inline-block;
  width: 100%;
  color: #666;
  text-align: right;
}
.post-sentence {
  margin: 20px 0 40px;
}
.post-sentence > :first-of-type {
  margin-top: 0;
}
.post-more {
  margin: auto;
}
.post-sentence {
  word-break: break-all;
  overflow-wrap: break-word;
}