@charset "utf-8";

/* ブログカードのブックマークレットを作成しました  https://vanillaice000.blog.fc2.com/blog-entry-583.html */
/* カード全体像 */
.blogcard {
  position: relative;
  max-width: 600px;
  margin: 21px 0 0;
  border-radius: 2px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
  background: white;
  border: 1px solid #e6e6e6;
}

.blogcard a {
  text-decoration: none;
}

.blogcard a:hover {
  opacity: 0.6;
}

.blogcard .blogcard-content {
  display: flex;
}

/* 画像 */
.blogcard .blogcard-image {
  width: 40%;
  min-height: 130px;
  border-right: 1px solid #e6e6e6;
  aspect-ratio: 16/9;
}

.blogcard .blogcard-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.blogcard .blogcard-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogcard .blogcard-text {
  flex-grow: 1;
  padding: 10px 20px;
}

/* タイトル */
.blogcard .blogcard-title {
  margin: 0 0 0.5em;
  padding: 0 0;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  text-decoration: underline;
}

/* 引用 */
.blogcard blockquote {
  position: static;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.blogcard blockquote::before,
.blogcard blockquote::after {
  content: none;
}

/* 記事概要 */
.blogcard .blogcard-description {
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-decoration: none !important;
}

/* フッター(元記事サイト名とリンク) */
.blogcard .blogcard-footer {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 60%;
  padding: 0 10px;
  font-size: 0.75rem;
  line-height: 1.2;
  background-color: #fff;
}

.blogcard .blogcard-footer img {
  margin-right: 5px;
}

@media screen and (max-width: 450px) {
  .blogcard {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  }

  .blogcard .blogcard-image {
    width: 30%;
    min-height: 85px;
  }

  .blogcard .blogcard-text {
    padding: 5px 10px;
  }

  .blogcard .blogcard-title {
    font-size: 0.8125rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }

  .blogcard .blogcard-description {
    font-size: 0.75rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }

  .blogcard .blogcard-footer {
    bottom: 3px;
    padding: 0 10px;
    width: 70%;
    font-size: 0.625rem;
  }
}

/* has no image */
.blogcard-hasnoimage .blogcard-text {
  width: 100%;
}

.blogcard-hasnoimage .blogcard-footer {
  position: static;
  width: 100%;
  padding: 10px 20px;
}

@media screen and (max-width: 450px) {
  .blogcard-hasnoimage .blogcard-footer {
    padding-left: 10px;
    padding-bottom: 5px;
  }
}
