@charset "UTF-8";
/*-------------------------------------------
NEWS
-------------------------------------------*/
/* NEWS一覧 */
.news-list {
  margin-bottom: 80px;
}
.top-news {
  padding: 0px;
  margin-bottom: 40px;
}
.top-news dl {
  display: flex;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #d8d8d8;
}
.top-news dl:last-child {
  border-bottom: 1px solid #d8d8d8;
}
.top-news dt {
  margin: 0 20px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.top-news dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
.top-news dd a {
  text-decoration: none;
}
.news-list .pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-list .pagenation li {
  margin: 0 10px;
}
/* NEWS詳細 */
.news-post {
  display: flex;
}
.news-post .post {
  width: 100%;
  max-width: 680px;
  margin-right: 40px;
}
.news-post .post .newssection {
	 margin-bottom: 50px;
  border-bottom: solid 2px #dddddd
}
.news-post .post .thumbnail {
  margin-bottom: 40px;
}
.news-post .post .thumbnail img {
  width: 100%;
}
.news-post .post .info {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.news-post .post .info time {
  font-size: 12px;
}
.news-post .post .title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}
.news-post .post .content ul {
  margin: 0 0 30px 18px;
}
.news-post .post .content li {
  line-height: 1.8;
  list-style-type: disc;
}
.news-post .post .content p {
  line-height: 1.8;
  margin-bottom: 30px;
}
.news-post .sidebar {
  max-width: 280px;
}
.news-post .sidebar .title {
  border-bottom: solid 1px #707070;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.news-post .sidebar .post-list li {
  margin-bottom: 10px;
}
.news-post .sidebar .post-list a {
  display: flex;
  align-items: center;
}
.news-post .sidebar .post-list .post-title {
  font-size: 14px;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
	/* ブログ一覧 */
  .news-list {
    margin-bottom: 60px;
  }
  .top-news {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
  }
	.news-post {
		flex-direction: column;
		margin-bottom: 40px;
	}
	.news-post .post {
		margin: 0 0 40px;
	}
}