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

break point

========================================= */
@import url("https://fonts.googleapis.com/css?family=Roboto");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif");
/* common */
.latest-posts {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  padding: 0 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .latest-posts {
    justify-content: space-around;
  }
}
.latest-posts li {
  width: calc(33.33% - 20px);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .latest-posts li {
    width: calc(100% - 20px);
  }
}
.latest-posts li a {
  color: #33443a;
}
.latest-posts li a img {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-posts li a .post-info {
  margin-top: 10px;
}
.latest-posts li a .post-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  display: -webkit-box; /* Flexboxのようなボックスレイアウトを利用 */
  -webkit-box-orient: vertical; /* ボックスの向きを縦方向に */
  -webkit-line-clamp: 3; /* 表示する行数を指定（ここでは3行） */
  overflow: hidden; /* 溢れた部分を非表示にする */
  text-overflow: ellipsis; /* 省略記号（…）を表示 */
}

.link-btn {
  max-width: 260px;
  width: 100%;
  margin: 30px auto 80px;
}
.link-btn a {
  display: block;
  color: #fff;
  background: #595757;
  padding: 14px 20px;
  line-height: 1;
  text-align: center;
}

.news-single {
  background-color: #a8c2b6;
  padding: 40px 20px 0px;
}
.news-single #menu-fix {
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .news-single #menu-fix {
    display: none !important;
  }
}
.news-single .news-hd {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.news-single .news-hd span {
  background: #fff;
}
.news-single .news-hd h2 {
  color: #fff;
}

.article-col {
  max-width: 800px;
  width: 100%;
  padding: 50px 20px 0px;
  margin: 0 auto;
  /* リスト */
  /* テーブル */
  /* テーブルはみ出し対応 */
}
@media screen and (max-width: 767px) {
  .article-col {
    padding: 30px 20px 0px;
  }
}
.article-col .article-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1e2521;
  margin-bottom: 10px;
}
.article-col .article-thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 430px;
}
@media screen and (max-width: 767px) {
  .article-col .article-thumb img {
    height: 230px;
  }
}
.article-col .article-content {
  margin-top: 30px;
}
.article-col .post-nav-prev a, .article-col .post-nav-next a {
  color: #a8c2b6;
  font-weight: bold;
}
.article-col ul, .article-col ol {
  margin: 0 0 1.2em 1.5em;
  padding: 0;
}
.article-col li {
  margin: 0.3em 0;
}
.article-col table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5em 0;
  font-size: 0.95em;
}
.article-col th, .article-col td {
  border: 1px solid #1e2521;
  padding: 0.6em 0.8em;
  text-align: left;
}
.article-col thead th {
  background: #f3f3f3;
  color: #222;
  font-weight: 700;
}
.article-col tbody tr:nth-child(even) {
  background: #f9f9f9;
}
.article-col table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.news-archive {
  margin-top: 50px;
}/*# sourceMappingURL=style.css.map */