@charset "UTF-8";

/* 正本は提携式場ページの CTA バンド。色は納品確定値をリテラルで持ち、全ページで共有する。 */
.cta-band {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 686px;
    margin-inline: auto;
    padding: 26px 30px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: linear-gradient(135deg, #2f7548 0%, #073413 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid var(--color-brand-gold);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.cta-band .cta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.cta-band .cta-copy {
    position: relative;
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cta-band .cta-eye {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    border: 1px solid var(--color-brand-gold);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--color-surface);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.cta-band .cta-eye::before {
    content: "\2756";
    color: var(--color-brand-gold);
    font-size: 12px;
}

.cta-band .cta-eye b {
    margin: 0;
    color: var(--color-surface);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.cta-band .cta-eye b .n {
    margin: 0 1px 0 0;
    font-family: var(--font-family-accent);
    font-size: 18px;
    font-weight: 800;
    vertical-align: -1px;
}

.cta-band .cta-head {
    font-family: var(--font-family-serif);
    font-size: 23px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--color-surface);
}

.cta-band .cta-sub {
    max-width: 470px;
    font-size: 13px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
}

.cta-band .cta-actions {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: 100%;
}

.cta-band .cta-actions .hp-btn-tel {
    flex: 1.6;
}

.cta-band .cta-actions .hp-btn-doc {
    flex: 1;
}

.cta-band .cta-panda {
    flex: 0 0 auto;
    align-self: flex-end;
    display: block;
    width: auto;
    height: 118px;
    margin-bottom: -14px;
    margin-right: 26px;
    position: relative;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
}

.cta-band .cta-pair {
    display: none;
}

.hp-btn-tel,
.hp-btn-doc {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    text-decoration: none;
    cursor: pointer;
    transition:
        filter 0.15s,
        transform 0.12s,
        box-shadow 0.15s;
}

.hp-btn-tel:hover,
.hp-btn-doc:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.hp-btn-tel {
    flex-direction: column;
    gap: 1px;
    padding: 12px 24px;
    background: var(--color-brand-primary-dark);
    color: var(--color-surface);
    box-shadow: 0 7px 20px var(--color-tel-shadow);
}

.hp-btn-tel .lbl {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hp-btn-tel .lbl svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.hp-btn-tel .num {
    font-family: var(--font-family-accent);
    font-size: 27px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--color-surface);
    white-space: nowrap;
}

.hp-btn-tel .note {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-tel-note);
    white-space: nowrap;
}

.hp-btn-doc {
    gap: 9px;
    padding: 14px 22px;
    border: 1.5px solid var(--color-brand-primary);
    background: var(--color-surface);
    color: var(--color-brand-primary-dark);
    font-size: 16.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.hp-btn-doc svg {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.cta-band .hp-btn-tel {
    background: var(--color-cta-on-green-tel-bg);
    color: var(--color-cta-on-green-tel-fg);
    box-shadow: 0 7px 20px var(--color-cta-on-green-shadow);
}

.cta-band .hp-btn-tel .num {
    color: var(--color-cta-on-green-tel-fg);
}

.cta-band .hp-btn-tel .note {
    color: var(--color-cta-on-green-tel-note);
}

.cta-band .hp-btn-doc {
    border-color: var(--color-cta-on-green-doc-border);
    background: var(--color-cta-on-green-doc-bg);
    color: var(--color-cta-on-green-doc-fg);
}

@media (max-width: 767px) {
    .cta-band {
        width: 80%;
        max-width: none;
        margin-top: 22px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .cta-band::before {
        display: none;
    }

    .cta-band .cta-top,
    .cta-band .cta-actions {
        display: none;
    }

    .cta-band .cta-pair {
        display: flex;
        flex-direction: column;
        gap: 11px;
    }

    .cta-band .cta-pair a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        height: 80px;
        border-radius: 11px;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-decoration: none;
        transition:
            filter 0.15s,
            transform 0.12s;
    }

    .cta-band .cta-pair a:active {
        transform: translateY(1px);
        filter: brightness(0.96);
    }

    .cta-band .cta-pair .cp-tel {
        background: var(--color-brand-primary-dark);
        color: var(--color-surface);
        box-shadow: 0 6px 18px var(--color-tel-shadow);
    }

    .cta-band .cta-pair .cp-tel svg {
        width: 30px;
        height: 30px;
        fill: var(--color-surface);
    }

    .cta-band .cta-pair .cp-doc {
        border: 1.5px solid var(--color-brand-primary);
        background: var(--color-surface);
        color: var(--color-brand-primary-dark);
    }

    .cta-band .cta-pair .cp-doc svg {
        width: 30px;
        height: 30px;
        fill: var(--color-brand-primary-dark);
    }
}
