/* #LP-A セクション10-11 合算バナー */
.result-section {
    position: relative;
    margin-bottom: 1.33vw;
}

.result-bg img {
    width: 100%;
    display: block;
}

.result-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    width: 90%;
    padding: 8vw 3.33vw;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5.33vw;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 10;
}

.result-banner::after {
    content: "RESULTS";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #353C51;
    color: #fff;
    padding: 1vw 5vw;
    font-size: 4.5vw;
    letter-spacing: 0.1em;
    border-radius: 26.4vw;
    white-space: nowrap;
}

.result-banner p {
    margin: 0;
    font-size: 5vw;
    /* 少しサイズ調整 */
    font-weight: 700;
    line-height: 1.5;
}

.result-strong {
    color: #b00000;
    background: linear-gradient(transparent 70%, rgba(176, 0, 0, 0.1) 70%);
}

.result-note {
    font-size: 0.8em;
    color: var(--muted);
}