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: 40px;
  color: var(--theme-base-color-txt);
  border-color: var(--theme-base-color-line);
  transition: all 0.3s ease-in 0s;
}
@media (max-width: 800px) {
  .wp-embed {
    padding: 30px;
  }
}
@media (max-width: 499px) {
  .wp-embed {
    font-size: var(--theme-base-font-size-sp-px);
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px 25px 25px;
  }
}
.wp-embed.ascon-no-thumbnail {
  display: block;
  min-height: 200px;
}
@media (max-width: 499px) {
  .wp-embed.ascon-no-thumbnail {
    padding: 25px;
  }
}
@media (max-width: 800px) {
  .wp-embed.ascon-no-thumbnail .wp-embed-heading {
    margin-bottom: 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;
  }
}
@media (max-width: 499px) {
  .wp-embed .wp-embed-heading {
    font-size: 1.13em;
    margin-bottom: 20px;
    line-height: 1.5;
  }
}
.wp-embed .wp-embed-featured-image {
  max-width: 180px;
  width: 180px;
  height: 135px;
  flex-shrink: 1;
  flex-grow: 1;
  margin-bottom: 0;
  margin-right: 24px;
}
@media (max-width: 800px) {
  .wp-embed .wp-embed-featured-image {
    margin-right: 20px;
  }
}
@media (max-width: 499px) {
  .wp-embed .wp-embed-featured-image {
    height: auto;
    max-width: none;
    width: 100%;
    flex-shrink: 0;
    margin-right: 0;
    order: 2;
  }
}
.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;
  vertical-align: bottom;
}
@media (max-width: 499px) {
  .wp-embed .wp-embed-featured-image img {
    aspect-ratio: 3/2;
  }
}
.wp-embed .wp-embed-featured-image .no-img {
  background-color: var(--theme-base-color-sub01);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in 0s;
  height: 100%;
}
@media (max-width: 499px) {
  .wp-embed .wp-embed-featured-image .no-img {
    font-size: 1.2em;
    aspect-ratio: 3/2;
  }
}
.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: 100%;
    order: 1;
  }
}
.wp-embed .wp-embed-excerpt {
  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:not(.ascon-no-thumbnail) .wp-embed-excerpt {
    display: none;
  }
}
.wp-embed .wp-embed-footer {
  width: auto;
  margin: 10px 0 0 auto;
  font-size: 15px;
}
.wp-embed .wp-embed-footer .wp-embed-site-title {
  font-weight: normal;
}
@media (max-width: 499px) {
  .wp-embed:not(.ascon-no-thumbnail) .wp-embed-footer {
    display: none;
  }
}