/* ==========================================================================
  ブログカードiframeのスタイル上書き
========================================================================== */
.wp-embed {
    max-width: none !important;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    display: flex;
    background-color: white;
    border-radius: 10px;
    border: 1px solid rgba(0, 169, 113, 0.1);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.08);
    transition: all 0.3s ease;
    padding: 15px;
    overflow: visible;
    box-sizing: content-box;
    z-index: 1;
}
.wp-embed a {
    text-decoration: none !important;
}
.wp-embed:hover {
    border: 1px solid #00A971;
}
.wp-embed-featured-image {
    height: 100%;
    object-fit: cover;
    margin-bottom: 0px;
    border-top-right-radius: 20px;
    overflow: hidden;
}
.wp-embed-featured-image img {
    height: 100%;
}
.wp-embed a {
    width: 40%;
    padding-left: 0;
    font-size: 14px;
    line-height: 1.6;
}
.modified-date {
    font-size: 14px;
    color: #00A971;
    margin-bottom: 5px;
}
p.wp-embed-heading {
    width: 100%;
    color: black;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}
.wp-embed-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wp-embed-footer {
    display: none;
}
.wp-title-block {
    flex: 1;
    font-size: 12px;
    padding-left: 15px;
    padding-right: 0;
}
@media screen and (max-width: 580px) {
    .wp-embed {
        display: block;
    }
    .wp-title-block {
        padding-left: 0px;
    }
}