/* CTAセクション */
.appPage-CtaSection_Body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
}

.appPage-CtaSection_Desc {
    font-size: 13px;
    color: rgba(34, 34, 34, 0.5);
    line-height: 1.6;
    margin: 0 0 12px;
}

.appPage-CtaSection_Link {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    color: rgba(34, 34, 34, 0.7);
    text-decoration: none;
    padding: 4px 16px;
    border: 1px solid rgba(34, 34, 34, 0.2);
    border-radius: 4px;
}

.appPage-CtaSection_Link:hover {
    opacity: 0.6;
}

/* テーマカラー適用（タブ内の[data-content-type]経由） */
[data-content-type="sanshi"] .appPage-CtaSection_Link {
    color: #9b59b6;
    border-color: #9b59b6;
}

[data-content-type="uniken"] .appPage-CtaSection_Link {
    color: #3568b8;
    border-color: #3568b8;
}

@media screen and (min-width: 768px) {
    .appPage-CtaSection_Desc,
    .appPage-CtaSection_Link {
        font-size: 16px;
    }
}