/* ===== 共通レイアウト ===== */

.salary-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin: 0 auto 20px;
    padding: 20px;
    box-sizing: border-box;
}

.salary-card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.salary-section {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

/* ========== 会員登録 CTA ========== */
.salary-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px 0 40px;
    border-top: 1px solid #eee;
    gap: 16px;
}

.salary-cta-button {
    background-color: #FF8A00;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.salary-cta-icon {
    width: 24px;
    height: 24px;
}

.salary-cta-button:hover {
    background-color: #e88a00;
}

/* ===== カラム構成（レイアウト制御） ===== */

.salary-col {
    box-sizing: border-box;
    padding: 0 8px;
}

/* ===== テキストスタイル ===== */

.salary-label {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.salary-type {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

.salary-main {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.salary-amount-number {
    font-size: 32px;
    color: #b38b00;
    font-weight: bold;
}

.salary-sub {
    font-size: clamp(11px, 1.2vw, 14px);
    color: #666;
    line-height: 1.6;
}

.salary-sub-range {
    font-weight: 700;
    font-size: 13px;
}

.salary-cta-text {
    font-size: 14px;
    color: #333;
    flex: 1;
    line-height: 1.6;
}

@media (min-width: 769px) {
    .salary-col.label {
        width: 30%;
        display: flex;
        align-items: center;
    }

    .salary-col.center {
        width: 30%;
    }

    .salary-col.sub {
        width: 40%;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .salary-col.label {
        width: 100%;
        margin-bottom: 4px;
    }

    .salary-col.center {
        width: 50%;
    }

    .salary-col.sub {
        width: 50%;
        font-size: 12px;
    }

    .salary-sub {
        font-size: 12px;
        color: #666;
        line-height: 1.6;
    }

    .salary-main {
        margin-top: 6px;
    }

    .salary-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    .salary-cta-button {
        font-size: 16px;
        width: 100%;
        justify-content: center;
        padding: 14px 0;
    }

    .salary-cta-icon {
        width: 24px;
        height: 24px;
    }

    .salary-cta-text {
        font-size: 13px;
    }
}
