/* ========================================
   Application CTA Button - 審査誘導時のみ表示
   ======================================== */

.application-prompt-content {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%) !important;
    border: 2px solid #f59e0b !important;
}

.application-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    margin-top: 16px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.application-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.application-cta-button:active {
    transform: translateY(0);
}

/* ========================================
   Action Buttons - フラットモダンデザイン
   ======================================== */

.action-buttons-container {
    margin: 16px 0;
    padding: 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    animation: slideIn 0.3s ease-out;
}

.action-buttons-title {
    font-size: 15px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 16px;
    text-align: center;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 140px;
    gap: 12px;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.action-button-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.2s;
}

.action-button:hover .action-button-icon {
    transform: scale(1.1);
}

.action-button-content {
    text-align: center;
}

.action-button-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.action-button-content p {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

/* ボタン個別カラー */
.action-button-contact {
    border-color: #3b82f6;
}

.action-button-contact:hover {
    background: #eff6ff;
    border-color: #2563eb;
}

.action-button-contact .action-button-icon {
    background: #3b82f6;
}

.action-button-contact .action-button-content h4 {
    color: #2563eb;
}

.action-button-application {
    border-color: #10b981;
}

.action-button-application:hover {
    background: #f0fdf4;
    border-color: #059669;
}

.action-button-application .action-button-icon {
    background: #10b981;
}

.action-button-application .action-button-content h4 {
    color: #059669;
}

.action-button-phone {
    border-color: #f59e0b;
}

.action-button-phone:hover {
    background: #fffbeb;
    border-color: #d97706;
}

.action-button-phone .action-button-icon {
    background: #f59e0b;
}

.action-button-phone .action-button-content h4 {
    color: #d97706;
}

/* バッジ */
.action-button::after {
    content: attr(data-badge);
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    background: #6366f1;
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 12px;
}

.action-button-contact::after {
    content: 'おすすめ';
    background: #3b82f6;
}

.action-button-application::after {
    content: '人気';
    background: #10b981;
}

.action-button-phone::after {
    content: '即対応';
    background: #f59e0b;
}

/* レスポンシブ: タブレット */
@media (max-width: 768px) {
    .action-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .action-button {
        padding: 16px 8px;
        min-height: 120px;
    }

    .action-button-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .action-button-content h4 {
        font-size: 14px;
    }

    .action-button-content p {
        font-size: 11px;
    }
}

/* レスポンシブ: スマートフォン */
@media (max-width: 480px) {
    .action-buttons-container {
        padding: 16px;
        margin: 12px 0;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .action-button {
        flex-direction: row;
        justify-content: flex-start;
        padding: 16px;
        min-height: auto;
        gap: 16px;
    }

    .action-button-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        flex-shrink: 0;
    }

    .action-button-content {
        text-align: left;
        flex: 1;
    }

    .action-button-content h4 {
        font-size: 15px;
    }

    .action-button-content p {
        font-size: 13px;
    }

    .action-button::after {
        top: 12px;
        right: 12px;
    }

    .application-cta-button {
        padding: 16px 24px;
        font-size: 15px;
    }
}
