/* ========================================
   転職意向確認ポップアップ用CSS
   BUILD CAREER カラーパレット対応
   ======================================== */

/* オーバーレイ */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ポップアップコンテンツ */
.popup-content {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* タイトル */
.popup-title {
    font-size: 24px;
    font-weight: bold;
    color: #2E3A45;
    margin-bottom: 12px;
}

/* サブタイトル */
.popup-subtitle {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 30px;
}

/* ボタンコンテナ */
.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ボタン共通スタイル */
.popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.popup-btn i {
    font-size: 20px;
}

/* プライマリボタン */
.popup-btn-primary {
    background: #1E3A8A;
    color: white;
    border-color: #1E3A8A;
}

.popup-btn-primary:hover {
    background: #1E40AF;
    border-color: #1E40AF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* セカンダリボタン */
.popup-btn-secondary {
    background: white;
    color: #1E3A8A;
    border-color: #1E3A8A;
}

.popup-btn-secondary:hover {
    background: #EFF6FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

/* モバイル対応 */
@media (max-width: 640px) {
    .popup-content {
        padding: 30px 20px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 13px;
    }
    
    .popup-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .popup-btn i {
        font-size: 18px;
    }
}
