/*
 * ブログカードのスタイル
 */
.blogcard {
  padding: 12px;
  margin: 10px 6px;
  border: 1px solid #AAA;
  word-wrap: break-word;
  border-radius: 5px;
}
.blogcard *:not(img) {
  display: block;
}
.blogcard > a:hover,
.blogcard > a {
  text-decoration: none;
}
.blogcard .ext::after {
  margin: 0 0 0 3px;
  font-family: "Font Awesome 5 Free", sans-serif;
  content: "\f35d";
  font-style: normal;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.blogcard:hover {
  opacity: 0.9;
  background-color: #DFD;
}
.blogcard .bc-thumbnail {
  float:left;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blogcard .bc-thumbnail img {
  width: auto;
  height: 100%;
  max-height: 100px;
  object-fit: contain;
}
.blogcard .bc-content {
  margin-left: 110px;
  min-height: 100px;
}
.blogcard .bc-title {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: bold;
  color: #111;
}
.blogcard .bc-excerpt {
  color: #333;
  font-size: 0.95rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.blogcard .bc-link {
  font-size: 0.9rem;
  color: #555;
  margin: 4px;
}
.blogcard .bc-link img {
  vertical-align: top;
}
.blogcard .bc-date {
  color: #555;
  font-size: 0.9rem;
  margin: 4px;
}
.blogcard .bc-clear {
  clear: both;
}

@media screen and (min-width: 1240px) {
  .blogcard .bc-content {
    line-height: 120%;
  }
}
