/* postLinkEmbed */
.wp-embed {
  padding: 0;
  border: none;;
  background-color: transparent;
  box-shadow: none;
}
.postLinkEmbed {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background-color: #fff;
  border: 1px solid #FF8103;
  border-radius: 10px;
  padding: 20px 18px 18px;
}
.postLinkEmbed * {
 box-sizing: border-box;
}
.postLinkEmbed a {
  text-decoration: none;
}
.postLinkEmbed .postEmbedThumbnail{
  width: 180px;
  line-height: 1;
  margin-right: 20px;
}
.postLinkEmbed .postEmbedThumbnail a {
  display: block;
  width: 100%;
}
.postLinkEmbed .postEmbedThumbnail a img {
  width: 100%;
  height: auto;
  aspect-ratio: 180/111;
  object-fit: cover;
  object-position: center;
}
.postLinkEmbed .postEmbedPrimary {
  width: calc(100% - 200px);
  margin-top: -1px;
}
.postLinkEmbed .postEmbedPrimary a {
  text-decoration: none;
}
.postLinkEmbed .postEmbedPrimary .postEmbedNote {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #FF8103;
  line-height: 1.8;
  border-radius: 5px;
  padding: 1px 10px;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.postLinkEmbed .postEmbedPrimary .postEmbedTitle {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.2;
  color: #000;
  margin-bottom: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.postLinkEmbed .postEmbedPrimary .postEmbedDate {
  display: none;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
@media screen and (min-width: 680px) {
    .postLinkEmbed a:hover {
        opacity: 0.8;
    }
}
@media screen and (max-width: 679px) {
  .postLinkEmbed .postEmbedThumbnail {
    display: none;
  }
  .postLinkEmbed .postEmbedPrimary {
    width: 100%;
  }
  .postLinkEmbed {
    padding: 4.4vw 4.7vw 3.3vw;
  }
  .postLinkEmbed .postEmbedPrimary .postEmbedNote {
    font-size: 3.4vw;
    padding: 3px 10px;
    margin-bottom: 1.3vw;
  }
  .postLinkEmbed .postEmbedPrimary .postEmbedTitle {
    font-size: 3.93vw;
    line-height: 1.5;
    margin-bottom:2.9vw;
  }
  .postLinkEmbed .postEmbedPrimary .postEmbedDate {
    position: relative;
    display: block;
    font-size: 3.4vw;
    color: #4B4B4B;
    padding-left: 5.7vw;
    margin: 0;
  }
  .postLinkEmbed .postEmbedPrimary .postEmbedDate::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4.4vw;
    aspect-ratio: 1 / 1.1;
    background: url(../img/icon-update.svg)no-repeat top left/100%;
  }
}
/* postLinkEmbed */