@charset "UTF-8";
/************
* topページのcss
************/
/* コンテンツタイトル */
.title {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 28px;
}

.txt-lead {
  text-align: center;
  line-height: 150%;
}

/* 各ブログのブロック */
.blog-title {
  margin-bottom: 30px;
  text-align: center;
  color: #000088;
  font-size: 140%;
  line-height: 150%;
  font-weight: bold;
}

.blog-descripton {
  line-height: 150%;
}

.blog-list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-list > div {
  margin-bottom: 30px;
}

.blog-list > div:nth-child(2n) {
  margin-left: 4%;
}

/* 記事リスト */
.feed-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.feed-list li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  min-height: 200px;
}

@media screen and (max-width: 959px) and (min-width: 768px) {
  .feed-list li {
    width: 89%;
    min-height: 350px;
  }
}

@media (max-width: 767px) {
  .feed-list li {
    width: 96%;
    min-height: auto;
  }
}

.feed-list li:not(:first-child) {
  border-top: 1px solid #eee;
}

.feed-list li .feed-content:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.feed-list li a {
  display: block;
  text-decoration: none;
  color: #333;
}

.feed-list li a:hover {
  opacity: 0.8;
  color: #333;
}

.feed-list li figure {
  float: left;
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.feed-list li figure img {
  width: 100%;
  height: auto;
}

.feed-list li .feed-txt {
  float: left;
  width: calc(100% - 130px);
  line-height: 150%;
}

.feed-list li .feed-title {
  margin-bottom: 4px;
  color: #000088;
  font-size: 18px;
  font-weight: bold;
  line-height: 150%;
}

.feed-list li .feed-title:hover,
.feed-list li .feed-title:focus {
  text-decoration: underline;
}

.feed-list li .feed-date {
  margin-bottom: 0;
  color: #cc0000;
}

.feed-list li .feed-date::before {
  font-family: "FontAwesome";
  font-weight: 400;
  content: "\f017";
  margin-right: 2px;
  color: #cc0000;
}

/* top smp */
@media (max-width: 767px) {
  .blog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-list > div {
    width: 100%;
  }
  .blog-list > div:nth-child(2n) {
    margin-left: 0;
  }
}