.cc-column-cta {
    display: grid;
    grid-template-columns: 1fr 290px;
    align-items: stretch;
    margin: 24px 0;
    overflow: hidden;
    border: 1px solid #ead8e3;
    border-radius: 14px;
    /*background: #fff;*/
    background: radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 36%), linear-gradient(135deg, #fff9f7 0%, #fcfff3 55%, #eefffe 100%);
    box-shadow: 0 6px 16px rgba(80, 40, 60, 0.08);
    min-height: 156px;
}

.cc-column-cta-content {
    position: relative;
    padding: 16px 20px 14px;
}
.cc-column-cta-content::after {
    content: "";
    position: absolute;
    left: 24px;
    right: -28px;
    bottom: 14px;
    height: 1px;
    background: rgba(138, 47, 95, 0.18);
}
.cc-column-cta-label {
    position: relative;
    margin: 0 0 6px;
    padding-left: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: #8a2f5f;
}

.cc-column-cta-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 3px;
    height: 1.1em;
    border-radius: 999px;
    background: #8a2f5f;
}

.cc-column-cta-title {
    margin: 0 0 6px;
    font-size: 15px;
    /*font-weight: 700;*/
    line-height: 1.75;
    color: #2f2f2f;
    min-height: 50px;
}
/*
.cc-column-cta-text {
    position: relative;
    margin: 0;
    padding-bottom: 9px;
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    white-space: nowrap;
}*/

.cc-column-cta-action {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 22px 14px 42px;
    background: linear-gradient(135deg, #9a3a6b 0%, #7b2f55 100%);
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.cc-column-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #8a2f5f;
}

.cc-column-cta-svg {
    display: block;
    width: 38px;
    height: 38px;
}


.cc-column-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #fff;
    color: #8a2f5f !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(60, 20, 40, 0.18);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cc-column-cta-link:hover {
    opacity: 0.92;
    color: #8a2f5f !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.cc-column-cta-arrow {
    font-size: 18px;
    line-height: 1;
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
    .cc-column-cta {
        grid-template-columns: 1fr;
    }

    .cc-column-cta-content {
        padding: 22px 22px 16px;
    }
    .cc-column-cta-content::after {
        left: 22px;
        right: 22px;
        bottom: 0;
    }
    .cc-column-cta-action {
        width: 100%;
        padding: 18px 22px 20px;
        clip-path: none;
    }

    .cc-column-cta-icon {
        display: none;
    }

    .cc-column-cta-link {
        width: 100%;
        min-width: 0;
    }
}