@charset "UTF-8";

.promotion {
    background-color: #fff;
}

.promotion a {
    display: block;
    padding: .5rem;
    color: inherit;
    position: relative;
}

.promotion a::before {
    content: "PR";
    display: block;
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    font-size: 80%;
    line-height: 1.2;
    padding: 0 .5em;
    border: 1px #888 solid;
    color: #888;
}

.promotion a::after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -0.5em;
    line-height: 1;
    right: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: no-repeat url(../img/svg/chevron-right-solid_black.svg) right center/contain;
    opacity: .5;
}

.promotion a figure {
    display: flex;
    align-items: self-start;
    gap: .5rem;
    justify-content: flex-start;
    padding-right: 2rem;
    text-align: justify;
}

.promotion a figure img {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
}

.promotion a figure figcaption {
    line-height: 1.4;
}

.promotion a figure figcaption em {
    font-size: 1.1em;
    display: block;
    background: none;
    margin-bottom: .5rem;
}

