a.ascon-embed-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
}

.wp-embed {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  font-family: var(--theme-base-font-base-family);
  font-size: var(--theme-base-font-size-pc-px);
  display: flex;
  padding: 20px;
  color: var(--theme-base-color-txt);
  border-color: var(--theme-base-color-line);
  transition: all 0.3s ease-in 0s;
  border-radius: var(--theme-base-border-radius);
}
@media (max-width: 499px) {
  .wp-embed {
    font-size: var(--theme-base-font-size-sp-px);
    padding: 10px;
    max-height: 110px;
  }
}
.wp-embed.ascon-no-thumbnail {
  display: block;
  padding: 30px 35px 20px;
}
@media (max-width: 499px) {
  .wp-embed.ascon-no-thumbnail {
    padding: 10px 15px;
  }
}
.wp-embed:hover {
  opacity: 0.8;
}
.wp-embed:hover .wp-embed-heading {
  text-decoration: underline;
}
.wp-embed .wp-embed-heading {
  font-size: 1.11em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  .wp-embed .wp-embed-heading {
    margin-bottom: 5px;
    font-size: 1em;
  }
}
@media (max-width: 499px) {
  .wp-embed .wp-embed-heading {
    font-size: var(--theme-base-font-size-sp-px);
    min-height: 2.6em;
  }
}
.wp-embed .wp-embed-featured-image {
  max-width: 180px;
  width: 180px;
  height: 135px;
  flex-shrink: 1;
  flex-grow: 1;
  margin-bottom: 0;
  margin-right: 32px;
}
@media (max-width: 800px) {
  .wp-embed .wp-embed-featured-image {
    margin-right: 20px;
  }
}
@media (max-width: 499px) {
  .wp-embed .wp-embed-featured-image {
    width: 90px;
    height: 67px;
    margin-right: 12px;
    flex-shrink: 0;
    flex-grow: 0;
  }
}
@media (max-width: 323px) {
  .wp-embed .wp-embed-featured-image {
    width: 80px;
    height: 60px;
    margin-right: 8px;
  }
}
.wp-embed .wp-embed-featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.wp-embed:not(.ascon-no-thumbnail) .ascon-embed-txtarea {
  width: calc(100% - 212px);
}
@media (max-width: 499px) {
  .wp-embed:not(.ascon-no-thumbnail) .ascon-embed-txtarea {
    width: calc(100% - 21vw - 12px);
  }
}
.wp-embed .wp-embed-excerpt {
  font-size: 0.89em;
  line-height: 2;
}
@media (max-width: 800px) {
  .wp-embed .wp-embed-excerpt {
    font-size: 0.8em;
    line-height: 1.6;
  }
}
@media (max-width: 499px) {
  .wp-embed .wp-embed-excerpt {
    display: none;
  }
}
.wp-embed .wp-embed-footer {
  width: auto;
  margin: 10px 0 0 auto;
  font-size: 15px;
}
@media (max-width: 499px) {
  .wp-embed .wp-embed-footer {
    margin-top: 7px;
    font-size: 13px;
  }
}
@media (max-width: 323px) {
  .wp-embed .wp-embed-footer {
    margin-top: 5px;
    font-size: 12px;
  }
}
.wp-embed .wp-embed-footer .wp-embed-site-title {
  font-weight: normal;
}